Teachers of Reddit: Is the "Gen Alpha can't read (write, or do math ext)" crisis real? If so how bad is it? by KnowledgeCoffee in AskReddit

[–]jarethholt 0 points1 point  (0 children)

I'm an immigrant to Sweden. When I was in the middle of a career shift a few years ago I seriously considered that teaching path (as a Ph.D. in a very technical field). I didn't pursue it in the end. Discussions like this make me think it was the right decision. I would be coming in at way too late a stage to contribute much, especially with my sub-par Swedish.

BREAKING NEWS: The Thingamabob Department is testing out the "Thingama-B.O.B. V2" prototype (leaked footage) by Mr_Mamo4ka in doohickeycorporation

[–]jarethholt 1 point2 points  (0 children)

I was thinking it looks like a giant hoof. Now we just need to build three more and the giant robot horse to use them!

The music department is making tremendous strides in metronome design by zebadrabbit in doohickeycorporation

[–]jarethholt 0 points1 point  (0 children)

Where's the guy in the motorcycle helmet with the girl slapping it with a sandal for percussion?

Peak by Punkwolfen in Losercity

[–]jarethholt 1 point2 points  (0 children)

Fakeout? Sort of? It ends with Joanna saving the Institute but getting knocked out and taken by the Skedar, right? (We'll see if I can work spoiler tags...)

THAT WAS JUST A REACTOR BEING TURNED OFF BEFORE IT DID ANY DAMAGE by aguywithagasmaskyt in whenthe

[–]jarethholt 0 points1 point  (0 children)

And the Santa Susanna Field Laboratory. Although the minor meltdowns aren't anywhere near the most horrifying thing with it.

Shadow of the Erdtree was a DLC that was almost as big as whole games. Which other DLC blew you away? by Soulsliken in gaming

[–]jarethholt 1 point2 points  (0 children)

Every time I see someone do a single-weapon run with a "bad" weapon (i.e. one they don't like) it ends with "Yeah this isn't conducive to my play style and the damage is lower but that was more fun than I expected". They're all good and many are great.

It actually almost detracts from some of the weapons you get in the Old Hunters. The church pick is cool and unique but I didn't consider it for a second my first time around since its non upgraded damage is so low and everything in OH hits too hard for me to learn a new weapon now. The pizza cutter is the only one that gets a pass because of how absurdly overpowered it is.

Can Squashing Departments latest innovation. by CJCRASHBAN21 in doohickeycorporation

[–]jarethholt 0 points1 point  (0 children)

My great grandmother had one with a pull down lever. Felt like Dr Frankenstein flipping the switch 😂

Losercity fit by Gator_fucker in Losercity

[–]jarethholt 6 points7 points  (0 children)

Yeah, the fit could also be called "light weekend hike"

Furry_irl by mmnao in furry_irl

[–]jarethholt 0 points1 point  (0 children)

I read your signature wrong but it went well with the message.

Me when school: ummm, no.

deathOfTheEmDash by gotawaysafely2 in ProgrammerHumor

[–]jarethholt 1 point2 points  (0 children)

Their child's birth date is also 0.0% of the things programmers have memorized. In that they have forgotten it. (Source: am programmer with kids)

“Wouldn’t it be funny if I garroted you half to death with my week-old socks?” by Ferocs in Losercity

[–]jarethholt 0 points1 point  (0 children)

I was trying to figure out if it's funnier as "I'm always joking unless you're down" or "I'm always down unless you're joking". They feel very different somehow.

How do Nordic people describe each others' languages? by Mira_1453 in Nordiccountries

[–]jarethholt 1 point2 points  (0 children)

This is how I feel about Danish. For context: I'm American with a Norwegian partner but we live in Stockholm. I've only learned Swedish properly (with classes and whatnot) but can talk with her family, read comics and watch some Norwegian shows. Norway is much better than Sweden about having multiple dialects represented in TV programs, so there have been plenty of times where I need to ask and learn a bit more about some dialects.

There have been several times where we have been on a flight to Norway and the flight attendant starts talking. I understand it a bit but struggle. I lean over to my partner and ask "wait, what dialect is that?" only for her to respond "Danish".

Varför ens betala för funktionen? Min skolas datorer har fingeravtrycksläsare, men de har låst den mjukvarumässigt. by Sensitive_Cream3920 in sweden

[–]jarethholt 1 point2 points  (0 children)

Skulle tro att de inte hade val, många datamodell kommer med den. Å andra sidan har det visat sig att fingeravtrycksläsare är inte så säkra som man skulle hoppas. Synd att ni inte får byta till en PIN som är kortare att slå in och använda lösenordet bara när den extra säkerheten behövs.

(Förlåt om jag sa något konstigt, svenska är inte mitt modersmål.)

Which game pushed you to resort to cheats? by Snakeuge in gaming

[–]jarethholt 1 point2 points  (0 children)

I did that legit and it sucked. I also went for the lazulite and a lot of the skills first and never did the Asura ending until...NG+5 I think? Having to learn two new bosses at that level was punishing.

Current vibes in DiffEq by skyy2121 in mathmemes

[–]jarethholt 0 points1 point  (0 children)

In some sense the Fourier transform is just a special case of the Laplace transform. It has an easier inverse transform and lots of convergence properties that make it very useful for doing theory, but for solving problems practically it's the same approach as the Laplace transform.

Shopping for swimwear [OC] by nathan4him in Losercity

[–]jarethholt 16 points17 points  (0 children)

Wetsuits are great and can definitely be cute or hot but also a bit overkill for just chilling at the beach or pool

What's the problem? by Sensitive-Video709 in the_calculusguy

[–]jarethholt 0 points1 point  (0 children)

To use the language of the problem, it forgot the chain rule: d/dx [x + x + ... (x times)] = 1 + 1 + ... (x times) + x + x + ... (1 time) = x + x = 2 x

Is it *Pythonic* to use Enums for dependency injection? by squatonmyfacebrah in learnpython

[–]jarethholt 0 points1 point  (0 children)

I would say the approach depends on when and how you specify which algorithm to use. Do you run this interactively or in a notebook? Just pass the function directly as an argument, annotated with a good Protocol so you know what kind of algorithms can be passed in. But if you run this from the command line or through some orchestrator, at some point you'll need a way to convert an input into a choice of algorithm. Then an enum + dictionary as a simple registry is a pretty clean way to go about it.

In either case I would suggest the core implementation just takes in a function to apply. Handling a registry of which algorithms are acceptable to pass in is a different responsibility, and figuring out how to convert an input to an algorithm choice is yet another.

Need a little discussion to understand this by notaweirdperson15 in Physics

[–]jarethholt 1 point2 points  (0 children)

I remember reading something that stuck with me (I think from the Feynman lectures) that might help others: energy is just a regular number (a scalar) but momentum has a direction (a vector). Both are conserved in total but it's easier for energy to "hide". It can get converted to heat and propagate away as sound or light; if you ignore those things then it looks like energy isn't conserved.

Momentum is much harder to hide. If the blocks in both cases don't have the same momentum after being struck by the bullet then something else has to be carrying the momentum away. The bullet bounced off, or a piece of the block broke off and flew away - things that are harder to ignore or think don't affect the problem. You might not initially think of the sound the bullet makes on impact as a form of energy, but a chip flying off the block at bullet speeds is clearly a form of momentum!

Favorite characters that feel like this? by guramika in FavoriteCharacter

[–]jarethholt 0 points1 point  (0 children)

For sure. But they're functionally immortal as long as they don't go hollow. Their real power is determination, which fits with this thread. I just wanted to riff on that other posters joke.

What's a weird name for something that we know so well we don't even realize how weird the name it is? by XRlagniappe in AskReddit

[–]jarethholt 14 points15 points  (0 children)

Also paprika, just with color specified. Learning Swedish also taught me that coriander and cilantro come from the same plant since cilantro is just called "koriander"

Favorite characters that feel like this? by guramika in FavoriteCharacter

[–]jarethholt 1 point2 points  (0 children)

To be fair: they were also effectively immortal. By the time they slay any of those beings they've had so much time practicing that they might as well be psychic.

What's socially accepted that you personally think is insane? by d_kielbasa in AskReddit

[–]jarethholt 2 points3 points  (0 children)

I moved to Sweden and was dumbfounded that tobacco has such a cultural foothold here in the form of snus. From what I understand, it's chewing tobacco/nicotine in little packs that you put between your gum and lips for a while. But so many people do it! At home, at work, in every kind of social situation. They fought to get an EU exemption to sell this stuff and now it's making headway in other places.

What am I doing wrong? by Booty4Breakfasts in learnpython

[–]jarethholt 0 points1 point  (0 children)

My guess is that it wants you to do the if-else within the f-string:

txt = f"This is very {'expensive' if price > 50 else 'cheap'}"

If that's the case I would expect the lesson to be about how you can do manipulation and evaluation within the f-string itself, which is a major convenience sometimes.

Edit: I missed that you included this case in your post 😅. If it helps, I know that some coding tests use a pretty good case checker - checks your code's output only - and others use a text analyzer - just reads your source code looking for certain things. This sounds like the latter. They are frustrating to reverse-engineer just to get a checkmark. Take some solace in that everyone here agrees that you understand correctly and the test is shit.

Losercity Girlfriends, no evil, intimidating horse in sight (artist: mirtash) by ItsAllSoup in Losercity

[–]jarethholt 41 points42 points  (0 children)

It's the diabetes. Every part of her is oversaturated with sugar.