LinkedIn.com

VN:F [1.9.22_1171]
Rating: 6.0/10 (1 vote cast)

LinkedIn exists to help you make better use of your professional network and help the people you trust in return.
Linkedin.com

Flickr.com

VN:F [1.9.22_1171]
Rating: 8.5/10 (2 votes cast)

Almost certainly the best online photo management and sharing application in the world

120930140805_MG_0418

10 April 2024 @ 7:51 am

120930131310_MG_9553

31 March 2024 @ 8:50 am

The heat .

18 March 2024 @ 4:20 am

Atacama

22 February 2024 @ 1:57 am

sunflowers in Kiyose

29 July 2023 @ 2:10 pm

Some Things Never Change

28 July 2023 @ 12:22 am

Eat me like a doll

27 July 2023 @ 10:48 pm

Sunset

26 July 2023 @ 4:59 pm

MySpace.com

VN:F [1.9.22_1171]
Rating: 4.0/10 (1 vote cast)

Social mix of music, videos and friends
myspace.com

Facebook.com

VN:F [1.9.22_1171]
Rating: 4.0/10 (2 votes cast)

The largest corporate social network on the web, with censorship at it’s heart.

Twitter.com

VN:F [1.9.22_1171]
Rating: 5.9/10 (8 votes cast)

Social out bursts news and comments all within 140 characters. Beware of BOTS and corporate censorship.

Metacafe.com

VN:F [1.9.22_1171]
Rating: 6.0/10 (1 vote cast)

Online Video Entertainment – Free video clips for your enjoyment
Metacafe.com

StackOverflow.com

VN:F [1.9.22_1171]
Rating: 9.4/10 (10 votes cast)

Random snippets of all sorts of code, mixed with a selection of help and advice.

Why would someone use full stack React like Next js when you could just use a real BE language?

19 April 2024 @ 9:40 pm

just asking for a friend. Because why would you want to write BE js code? Beyond a simple application with little logic, if you're doing db stuff, lots of logic, why not use a language actually suited for that sort of stuff?

Issue with displaying Vue.js components inside q-expansion-item

19 April 2024 @ 9:40 pm

I'm working on a Vue.js project using the Quasar Framework and I'm facing an issue. I have a list of items (essentialLinks) that I'm displaying using EssentialLink components inside a q-expansion-item. The EssentialLink components have some CSS styles defined (in another file), but these styles are not being applied when the EssentialLink components are rendered inside the q-expansion-item. But, the styles work fine for the EssentialLink components that are rendered outside of the q-expansion-item, after a q-separator. I don't think the approach I'm using is correct, is there an alternative approach I should be using?? <q-expansion-item EssentialLink v-for="link in essentialLinksSubMenu" <!--Here the it doesn't work as expected--> :key="link.title" v-bind="link" :miniState="drawerMiniState" > <q-separator/> <EssentialLink v-for="link in essentialLinksSubMenu&q

R Tidyverse recursive function path creation issue

19 April 2024 @ 9:39 pm

In the context of the bill of materials, I have a tree structure and I want to perform a recursive function to find the different paths of this tree. I did, however, a mistake when trying to define a path for materials that are shared by sub-assemblies. What should I do to solve this? Please help! Here is my bom structure: BOM <- tibble( bomID = 1:24, finiGoodID = c(rep(1, 12), rep(2, 12)), matID = c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 5, 6, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 6), parentMatID = c(NA, 1, 2, 2, 4, 4, 4, 4, 4, 1, 3, 3, NA, 11, 12, 12, 14, 14, 14, 14, 14, 11, 13, 13), ) Now the function is: bomPath <- function(mat, fg) { row <- subset(BOM, matID == mat & finiGoodID == fg) if (nrow(row) == 0) { return(mat) } parent = row$parentMatID[1] if (is.na(parent)) { return(mat) } else { # Recursively build the path parent_path = Recall(parent, fg)

ORA-00939: too many arguments for function, Im using cx_oracle in pycharm to pull from database, and encountering this error below:

19 April 2024 @ 9:39 pm

the length of the variable hour is 792 and the uitid is 15, so both under 1000, so I don't know why I recieve this error, I tried it two ways as it can be seen below: first way: query = """SELECT HOUR, UNITSCHEDULEID, VERSIONID, MINRUNTIME FROM int_Stg.UnitScheduleOfferHourly WHERE Hour in (to_date({hour_binds}), 'dd-mon-yyyy hh24') AND UnitScheduleId in ({id_binds})""".format( hour_binds=",".join((f":{idx}" for idx, _ in enumerate(hour, 1))), id_binds=",".join((f":{idx}" for idx, _ in enumerate(unitid, len(hour) + 1))), ) res = connection.cursor().execute(query, (*hour, *unitid)).fetchall() print(res) second def generate_sql_in_binds( name: str, size: int, start: int = 1, max_binds: int = 1000, ) -> str: in_clauses = ( "{name} IN ({binds})".format( name=name, binds=",".join(

How can I fix this variable problem in my game

19 April 2024 @ 9:39 pm

import java.io.IOException; import java.util.ArrayList; import java.util.PriorityQueue; public class BattleSimulation { private ArrayList lanes; private ArrayList approachingTitans; private WeaponRegistry weaponRegistry; private int numberOfTurns; private int numberOfTitansPerTurn; private BattlePhase battlePhase; private int resourcesGathered; public BattleSimulation(ArrayList lanes, WeaponRegistry weaponRegistry) { this.lanes = lanes; this.approachingTitans = new ArrayList<>(); this.weaponRegistry = weaponRegistry; this.numberOfTurns = 0; this.numberOfTitansPerTurn = 5; this.battlePhase = BattlePhase.EARLY; this.resourcesGathered = 100; } public void purchaseWeapon(Lane lane) throws InvalidLaneException, InsufficientResourcesException { Check if the lane is lost if (lane.isLaneLost()) { throw new InvalidLaneException("Cannot purchase weapon for a lost lane"); } Check if resources are sufficient int weaponPrice = weapo

Powershell script to verify all security groups in all GPO's are NOT empty

19 April 2024 @ 9:39 pm

Looking to verify stale GPO's in domain. One of the criteria is ensuring any linked GPO's are not actually filtering empty security groups. So I need to script out checking all domain GPO's, their groups, and whether the filtered groups are empty. Been toying around but having issues: `# Function to count members of an AD group function Get-ADGroupMemberCount { param ( [string]$GroupName ) $group = Get-ADGroup -Filter {Name -eq $GroupName} if ($group) { $members = Get-ADGroupMember -Identity $group -Recursive | Measure-Object | Select-Object - ExpandProperty Count return $members } else { return "Group $GroupName not found" } } # Get all GPOs in the domain $GPOs = Get-GPO -All # Iterate through each GPO foreach ($GPO in $GPOs) { Write-Host "GPO: $($GPO.DisplayName)" try { $permissions = Get-GPPermission -Guid $GPO.Id -TargetType Group -ErrorAction Stop foreach ($permission in $permissions) { $groupName

global context hook- substution not working

19 April 2024 @ 9:38 pm

I have a front end call to an api that works well: const handleSubmit = async (e: any) => { e.preventDefault(); setLoading((loading) => !loading); setResult(''); const login = useRouterseUser() console.log('submitted form') try { // login= useUser() //the substitute i'de like to make// // login(email,password)//subsitute i'de like to make for the api call below\\ const response = await axios.post('/api/login', {email, password} ) // Send as query paramers ); setIsloggedin(()=> true) router.replace('/dashboard') } catch (error) { alert(JSON.stringify(error.response.data.detail)); } finally{ setLoading((loading) => !loading) } } however, i created another file to make the api call from within an usecontext hook so i could use the response as globally available variables for the whole app. To this end i defined a function in the context and

Empty mini/side cart when adding products - Wocommerce

19 April 2024 @ 9:37 pm

I'm working on a client's site and have this problem (showed in images) with the mini cart of the store. When you add a product to the cart the page reloads and the side cart (which i assume works with AJAX) shows empty, it doesn't say the "empty cart" message but it literally doesn't load the content. The cart price is updated correctly, even if you go to the cart page the product was added successfully but the mini-cart is still not working. The cart finally updates and shows the content when you go to the home page. When i reload the page with "Ctrl + Shift + R" the browser alerts me that "the form data will be resubmitted", and after reloading, the product is added to the cart again (i can tell by the price seen on the mini-cart header button) but the problem persists. The store is https://pokelan.com/tienda It runs with Elementor (Hello Elementor theme), WooCommerce, and a set of Cr

Unable to send data to the web server. "Not found: /api/posts", 404

19 April 2024 @ 9:37 pm

I'm new to Django REST framework and I'm still trying to wrap my head around it. I'm trying to develop a desktop app and a forum website, where the desktop app would be able to send data to the forum website, resulting in creation of new posts/threads. Currently, when I try to send data with the desktop app to the website, I get the following message in my cmd: "POST /api/posts HTTP/1.1" 404 4155 Not Found: /api/posts I have this in my urls.py from django.urls import path, include from .views import ThreadListView, ThreadDetailView, CreateThreadView, CreatePostView, PostViewSet from rest_framework.routers import DefaultRouter router = DefaultRouter() router.register(r'posts', PostViewSet) urlpatterns = [ path('', ThreadListView.as_view(), name='thread_list'), path('thread/<int:pk>/', ThreadDetailView.as_view(), name='thread_detail'), path('thread/create/', CreateThreadView.as_view(), name='create_thread')

DataDog not tracing @Service annotated class that uses Kotlin's operator fun invoke

19 April 2024 @ 9:37 pm

I have the following service class in a Spring Boot (2.7.12) application @Service class GetAllUsers(val userRepository: UserRepository) { operator fun invoke(): List<User> { return userRepository.findAll() } } And I'm tracing it using the DD_TRACE_METHODS env var DD_TRACE_METHOD: "com.application.user.GetAllUsers[invoke]" However, when I make an API call, only the Controller and Repository methods are shown in the trace (UsersController.getAll --> UserRepository.findAll). Even strange. If I add a method inside the invoke method and add it to the list of methods to trace, DataDog shows the class and the invoke methods in the trace. Example: @Service class GetAllUsers(val userRepository: UserRepository) { operator fun invoke(): List<User> { hello() return userRepository.findAll() } fun hell

HootSuite.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (2 votes cast)

Professional Twitter, FaceBook, MySpace & Linkedin client online

blogTV.com

VN:F [1.9.22_1171]
Rating: 5.0/10 (1 vote cast)

Watch Live Internet TV and webcam video chat
blogTV.com

Delivr.com

VN:F [1.9.22_1171]
Rating: 6.0/10 (1 vote cast)

Effortless sharing with a tricked-out, mobile-friendly URL.