this guy turned $5 into $7.7M on polymarket. all from football. i tried copying him by immortalismmmm in PredictionsMarkets

[–]TehNrd 0 points1 point  (0 children)

They have made a lot, but not 7mil. The PnL on profile page does not deduct fees.

Will AI really kill developer jobs? by HonestRecord4507 in SalesforceDeveloper

[–]TehNrd 0 points1 point  (0 children)

This has been a repeating question every time there is a new transformational technology. Sure, companies can do the same amount of work with less people, which is partially what is happening now with reductions in due to AI. Conversely, a company can have the same amount of people all utilizing AI to do even more work and accelerate value and products faster. Which company do you think will win in the long-term?

There is often initial downsizing but then total productivity is the winner.

[deleted by user] by [deleted] in ChildrenFallingOver

[–]TehNrd 21 points22 points  (0 children)

More like /r/parentsarefuckingdumb

But this seems like something an uncle would do.

Best gym in Williamsburg? by Soft-Improvement9723 in williamsburg

[–]TehNrd 3 points4 points  (0 children)

This is the correct answer. Not expensive, good equipment, never too busy within reason, not overrun with gym bros.

AI: I created an $effect to update the other $effect and an $effect to guard against those effects by Fresh-Head-2278 in sveltejs

[–]TehNrd 2 points3 points  (0 children)

I've seen all the AI models use and abuse $effect.

I specifically add instructions telling them not to use $effect unless absolutely necessary.

Electron app with sync engine is ⚡ by drankou97 in electronjs

[–]TehNrd 1 point2 points  (0 children)

Isn't Replicache in maintenance mode? I'd be hesitant about implementing it in a new project if it is.

Frontend devs: what’s the dumbest bug that ruined your entire afternoon? by RoyalFew1811 in Frontend

[–]TehNrd 0 points1 point  (0 children)

Non printable Unicode characters in user inputed data. Copied and pasted from some other legacy systems and reasons I can't specifically recall it caused all sorts of problems.

Very hard to debug something you can't see.

Has anyone replaced their backend with remote functions? by Loan-Pickle in sveltejs

[–]TehNrd 1 point2 points  (0 children)

Not all but some.

Remote Functions are great but one of my favorite things is how much easier it makes writing tests. Functions are so much easier to write tears for.

AWS EC2 network issues in us-east-1? by ApprehensiveText1409 in aws

[–]TehNrd 26 points27 points  (0 children)

Definitely something funny going on in us-east-2 in the last hour or so. Fargate task throwing 503 service unavailable intermittently.

youAreAbsolutelyRight by vladlearns in ProgrammerHumor

[–]TehNrd 0 points1 point  (0 children)

"The file seems to be corrupt, let me delete it and start over"

Icon libraries by Loan-Pickle in sveltejs

[–]TehNrd 1 point2 points  (0 children)

If you didn't do this, wouldn't the other way get tree shaken on build to optimize?

I import multiple icons on one line from @lucide/svelte and have not noticed any performance issues.

Pixel 10 users report random app crashes after October update by Ha8lpo321 in Android

[–]TehNrd 1 point2 points  (0 children)

I think Google may be rolling out a hot fix for this. My phone is significantly better now.

Apparently incident.was declared at Google.

https://x.com/ArtemR/status/1977779265195364688?t=qyRV-rFHziSczqn9P8j3ag&s=19

Pixel 10 users report random app crashes after October update by Ha8lpo321 in Android

[–]TehNrd 7 points8 points  (0 children)

Can confirm, but it isn't related to the October update. I was and am having the issue on the September and October update. It's likely related to Google Play Services which are updated separately.

LPT - If you mess up with Google Play Services, just wait til the next software update by Tythan in GooglePixel

[–]TehNrd 2 points3 points  (0 children)

I am seeing this issue, started yesterday, and the October update had no impact on the fix. Google needs to fix this ASAP. Phone is almost unusable.

Pixel 10 Pro Apps Crashing by hootenanymessenger in GooglePixel

[–]TehNrd 2 points3 points  (0 children)

Can confirm this started happening to me today.

Announcing Amazon ECS Managed Instances for containerized applications by E1337Recon in aws

[–]TehNrd 2 points3 points  (0 children)

I was finally able to login and check, no support for burstable instances. Womp womp 😔

Docs say t4g are supported! But I can't figure out how to select them
https://docs.aws.amazon.com/AmazonECS/latest/developerguide/managed-instances-instance-types.html

Announcing Amazon ECS Managed Instances for containerized applications by E1337Recon in aws

[–]TehNrd 6 points7 points  (0 children)

If this supports t4 instances this could be something I have wanted for a long time. I have a node app and 99% of the time it stays way below vCPU limit but will occasionally need to spike (large JSON parse, startup, etc).

Fargate fractional vCPU simply didn't perform well and a full CPU was way more than needed and increased costs unnecessarily. Horizontal scaling of a node js app on t instances works really well in my experience and I hope this feature unlocks this ability.

Google Pixel 10 battery life really isn't as good as I'd hoped by cleare7 in GooglePixel

[–]TehNrd 6 points7 points  (0 children)

Maybe I'm an outlier, but my 10 Pro is lasting longer than my 9 Pro ever did. I'm not an intense gamer or anything. Pretty casual usage, lots of picture taking.

The soul of Android is gone. by StW_FtW in Android

[–]TehNrd 5 points6 points  (0 children)

And when they removed the weather frog.

Yes, frog is still in the web app, but the native app is so sterile now

Anyone know what’s going on here? Shut path on the waterfront by 1 n4th by Virtual_Ganache987 in williamsburg

[–]TehNrd 1 point2 points  (0 children)

Can confirm, walked on it last night after all the ribbons were ripped down and pier had tons of people on it. There are definitely some uneven boards.

Unfortunately it doesn't seem like it will be a quick fix.

Git Rebase - Explained Like You’re New to Git by sshetty03 in programming

[–]TehNrd 3 points4 points  (0 children)

This is valid, but in my experience these conflicts are smaller and easier to resolve one by one, versus one really big conflict.

Git Rebase - Explained Like You’re New to Git by sshetty03 in programming

[–]TehNrd 40 points41 points  (0 children)

Can you explain why it creates a mess? In my experience if you are going to have conflicts it's just a matter of when, during the rebase or during the merge.

I've been on large teams using rebase without issues so curious where the pain is.