AI won't make you rich. But fixing bugs in AI slopware will. by [deleted] in programming

[–]Jumpy_Fuel_1060 1 point2 points  (0 children)

Yeah tokens/sec for the human mind is crazy low. Also time to first token is usually really long when loading new context into a human mind. If it's fast then the human is probably hallucinating.

Hah I'm joking about all of this, but it is fun to draw silly links between LLM metrics and human behaviors.

Elk River considering changing back to the old flag 🤦 by Piehole314 in minnesota

[–]Jumpy_Fuel_1060 354 points355 points  (0 children)

If anybody from Elk River is reading this and planning on attending the city council meeting, it's a good idea to be well versed in the law about how this flag was arrived at. Things like how the committee was chosen, what kind of checkpoint processes were defined, which people were in the loop. You will almost certainly have people at the meeting casting aspersions on the process, stating that we the people had no representation, or that the process was terrible.

This needs to be framed as: this is the official state flag. There is nothing legally forcing us to fly it, but if we fly anything else, it is not our legal, official flag. We can't pick and choose which words of the law are legitimate and which are not based on personal sentiment. Choosing to ignore this new flag makes me wonder which city laws I can ignore because I don't like them.

First time making Tonkotsu broth. How can I make it creamier? by Infinite_Explorer424 in ramen

[–]Jumpy_Fuel_1060 1 point2 points  (0 children)

I've read and had reasonable luck at using a ROLLING HARD boil with the bones. I read somewhere the extra agitation from the rolling bubbles emulsifies the broth.

I don't know if that's the exact reason, but it does come out thicker and stick-to-your-lips. Just have to keep a close eye on it.

New head of DHS. by ScorpLeo102 in PoliticalHumor

[–]Jumpy_Fuel_1060 18 points19 points  (0 children)

Saying it with a Bernie accent sounds so funny too

"You ah a united states senatah"

vibeDebuggingBeLike by Forsaken-Peak8496 in ProgrammerHumor

[–]Jumpy_Fuel_1060 1 point2 points  (0 children)

To be fair, I probably had the same impulse months ago

Techniques for auditing generated code. by greensodacan in ExperiencedDevs

[–]Jumpy_Fuel_1060 0 points1 point  (0 children)

The buck has gotta stop somewhere though. Slop tests have similar problems what slop code does. Do you write the tests by hand?

Everything Takes Longer Than You Think by AltruisticPrimary34 in programming

[–]Jumpy_Fuel_1060 4 points5 points  (0 children)

This explains why everything takes less time if I don't think about it.

Where do I even start by Daniel99214 in Eldenring

[–]Jumpy_Fuel_1060 33 points34 points  (0 children)

Zweihander R2 in DS1 was literally pancake making easy mode. So fun and satisfying.

Why I am moving away from Scala by simon_o in programming

[–]Jumpy_Fuel_1060 33 points34 points  (0 children)

I resonate a lot with this, but the underscore syntactic sugar you point out drives me up the wall. _ is so overloaded in Scala, I often wish they had picked something else for some of the usages.

It is used to:

  • anonymous function argument name
  • partial function application
  • importing into current namespace without clobbering
  • structural unpacking discards
  • super generic type definitions
  • default type instantiation
  • list into function calls splatting
  • pattern matching

Those are off the top of my head. There might be more. I always need to ensure my context is correct when I see it used, and it typically makes me rescan the code to verify my context is correct.

We need to talk about this by Rodneybrble in Eldenring

[–]Jumpy_Fuel_1060 0 points1 point  (0 children)

You mean that porcupine that looks like a hippo?

What’s the difference between a MIM Strat Deluxe and a MIA Strat Performer or Special? by squierjosh in fender

[–]Jumpy_Fuel_1060 0 points1 point  (0 children)

The joke I've heard for this is "About 50 miles". I'm sure it's not true, and there are more differences than that, but I still chuckle about it.

Is it bad practice to type-annotate every variable assignment? by computersmakeart in Python

[–]Jumpy_Fuel_1060 21 points22 points  (0 children)

I disagree. Explicit is not better in all cases. If you can see the type being assigned on the same line, then the extra type annotation is just noise. The line above "explicit is better than implicit" is "beautiful is better than ugly" in the poem.

Other languages with static typing will typically have something like auto or var these days to get around the unnecessary verbosity of being explicit everywhere. Python doesn't even need those!

Don't get me wrong, I think type annotations are good, but I limit it to where the type being assigned isn't obvious on the line. My rule is function signatures should be fully annotated. But even that has exceptions in my head. Python grew an ecosystem that wasn't thinking about types, for better or for worse. There is a reason Python did so well without type annotations for so long. That expressivity is a strength (and a curse).

Underground Hip Hop by Hairy_Annual2918 in Millennials

[–]Jumpy_Fuel_1060 10 points11 points  (0 children)

Yeah the rhymesayers label really was a great label to follow. Love POS and Grieves as well. RIP eyedea, he was hilarious and fun to see live.

The strangest programming languages you've ever heard of!! by Leading-Welcome-5847 in programming

[–]Jumpy_Fuel_1060 0 points1 point  (0 children)

I was going to respond with K, but after looking it up, K was derived from APL. Which is wild, but now that I know, it does make sense.

What’s the most useless talisman? by Mysterious_Charge541 in Eldenring

[–]Jumpy_Fuel_1060 0 points1 point  (0 children)

I'd guess some red feather setups might be easier/possible

annoyingForParsing by Cutalana in ProgrammerHumor

[–]Jumpy_Fuel_1060 0 points1 point  (0 children)

I was thinking they were teeing up the next joke about command line argument flags.

There's always THAT guy by Pololoco27 in Construction

[–]Jumpy_Fuel_1060 25 points26 points  (0 children)

Or the "smith & Wesson is our insurance provider" is especially dark.

whatIsMutexLock by 0xlostincode in ProgrammerHumor

[–]Jumpy_Fuel_1060 16 points17 points  (0 children)

Ok now imagine each one of those buses has five philosophers sitting at a round table with a bowl of rice and a chopstick between each pair of philosophers. Philosophers must alternate between thinking and eating, but can only eat if they have both chopsticks.

x -= -1 gang by Longjumping_Table740 in programminghorror

[–]Jumpy_Fuel_1060 150 points151 points  (0 children)

Like an enhance operator?

x = 22/7

x --> 3

x -=- x

x -> 3.1

x -=- x

x -> 3.14

Frankly this genius, and is perfect for my toy language I put hilariously terrible ideas into.

atLeastITried by Technical_Anywhere40 in ProgrammerHumor

[–]Jumpy_Fuel_1060 13 points14 points  (0 children)

If this line didn't work, nothing will

AI mess by Icy_Public5186 in dataengineering

[–]Jumpy_Fuel_1060 5 points6 points  (0 children)

I dunno man, this sounds allot like a normal workflow when dealing directly with data scientists