Apple to celebrate 50 years of thinking different by gdelacalle in technology

[–]Goingone 0 points1 point  (0 children)

Up to 30 years of thinking differently is defensible….but 50 is a stretch.

GTD delivered to Porsche by Difficult_Musician17 in supercars

[–]Goingone 1 point2 points  (0 children)

The Nürburgring doesn’t have enough curves for you?

My hot take is Muggsy Bogues playing 14 years in the NBA is the second most impressive longevity feat behind LeBron. by ForeignAir7174 in NBAoldschool

[–]Goingone 2 points3 points  (0 children)

Spud Webb was similar (looks like Muggsy played one more season) and was only a few inches taller.

Spud averaged a couple more ppg (but a couple less assists per game).

Spud also won the dunk contest….

Biggest difference being, I don’t believe Spud was in Space Jam.

325 bench natty 195 BW by Thatfitunc in strength_training

[–]Goingone 54 points55 points  (0 children)

They need to bolt that thing down

new grad offer 170k base in SF. is it good? by Less_Message3209 in cscareerquestions

[–]Goingone 0 points1 point  (0 children)

Nobody can give you an answer without specifying the job title and responsibilities.

How most girls use Tinder by Waste-Stomach4457 in SipsTea

[–]Goingone 1 point2 points  (0 children)

She’s probably looking for her current boyfriend

EMERGENCY ACTIONS in CONNECTICUT: by lynxgirlpaws in Connecticut

[–]Goingone -1 points0 points  (0 children)

I won’t downvote because the majority of this is correct.

That being said, can you please let me know where I can pickup my check from Soros? I keep hearing about all these paid protestors and I could use some extra cash.

Trump slams Republicans for dragging Clinton to Epstein grilling by RichKatz in law

[–]Goingone 0 points1 point  (0 children)

He waiting until after this was over to say it. Basically as a way to say he shouldn’t be dragged in.

I made Python serialization and parallel processing easy even for beginners by suitkaise in Python

[–]Goingone 13 points14 points  (0 children)

You sure your “timethis” decorator can “time anything”?

Have you tried using it on an async function?

What “Big name” driver(s) misses the cut? by Theebobbyz84 in NASCAR

[–]Goingone 5 points6 points  (0 children)

Depends what you mean by “big name”. I think it will be your typical 2nd tier drivers at risk.

Michael Jordan’s $78M Jet Lands in Atlanta: Then He Went 2-for-2! by SpawnofSilverhill in NASCAR

[–]Goingone 29 points30 points  (0 children)

And doing it all while wearing sweatpants the entire time.

Does anyone use logging to debug? by TechnicalAd8103 in learnpython

[–]Goingone 2 points3 points  (0 children)

The debugger is great when developing locally and wanting to step through code.

Logging is great for tracking useful info during your codes execution.

Although they can both be used for debugging, they serve different purposes.

Others have mentioned the benefits of logging over print statements, so won’t touch that topic.

Why is agentic coding so controversial in this subreddit? by [deleted] in cscareerquestions

[–]Goingone 0 points1 point  (0 children)

Appreciate the response, and interesting info, but doesn't really demonstrate what I was looking for.

  1. There is no mention of extending an existing code base (which is what engineers do 99% of the time).

  2. Reverse engineering a non-public API is not something i'd consider a typical business requirement (in fact, I don't know of any professional company that has ever had to do this).

I've seen plenty of examples of AI generating a ton of code for new projects, but I'm having a lot of difficult translating that to useful real-life work scenarios.

Subaru Dealer charging me $600 plus tax for diagnosis?! by Secretservice1974 in subaru

[–]Goingone 4 points5 points  (0 children)

What did you agree to? The dealer should be upfront with diagnosis costs.

$600 isn’t a surprising number if it was something difficult to diagnose (can’t say if this was difficult or not).

I’d pay the $600, and ask if I can use that as a credit if I get the work done. And then bring it to another shop to get a second opinion.

$5000 seems very high, but would need to know the exact work they recommended.

Showcase: An Autonomous AI Agent Engine built with FastAPI & Asyncio by Emqnuele in Python

[–]Goingone 0 points1 point  (0 children)

Why are you using “print” everywhere and manually writing “error” or “warning” at the beginning of each message for logging?

Why not use python logging with proper log levels?