

If calculators routinely gave the wrong answer this would be more compelling.
If calculators routinely gave the wrong answer this would be more compelling.
Yeah I think a lot about the guy I knew that took a job at palantir. When asked about working on questionable stuff, he just shrugged. He was always nice to people he knew personally, so far as I can tell, but bigger picture stuff didn’t seem to matter to him
Crawl is one of my favorite rogue likes!
One of my friends who is in no way a coder knows the vim navigation from crawl now
Dislike:
I want it to get to a level where you find the good stuff reddit used to have. Like niche hobbies, detailed analysis, etc.
I’m doing my part, I guess
will humanity ever learn to stop acting like dumb angry monkeys?
Seems unlikely.
As to your broader point about the tools themselves not being bad, the root problem remains capitalism, or “a few people have unaccountable power over many”
I feel like the current AI stuff has been net negative. It prompted layoffs and hiring freezes, but then didn’t produce quality results.
You have to jump when you’re doing it, too. if you touch the ground before it finishes, it won’t work and you’ll just get shocked.
If you clear some post-game optional challenges, there’s a special move you can unlock that does it easier, but that’s only useful if you want to do NG+
Hours on the centipede man, you say? Once you get into the deflect rhythm, they’re very satisfying. Fill their posture right up and then finish them. But without the timing, you’re going to take a lot of chip damage or get posture broken yourself :(
Sekiro is one of my favorites. I like that it’s not really about leveling, and it pretty much gets right into it. I could pick it up today and blast through a new game.
Do you know how to do the lightning reversal? There are a handful of bosses that it really counters.
You know how scam emails intentionally include mistakes because they want to filter out smart people? Same idea.
Reasonably smart people will see this and go “this is garbage”. The idiots will go deeper, and become loyal gop voters.
I think I remember some doge goon asking online about using an LLM to parse JSON. Many people don’t understand things.
“Use a different language” is a common defense of javascript, but kind of a weird one.
Yeah. My last job, a PR with commented out code typically wouldn’t get approved. Either leave it in version history, or stick it on a branch
Call the function from the if block.
Now your tests can more easily call it.
I think at my last job we did argument parsing in the if block, and passed stuff into the main function.
no different than taking a bunch of books you bought second-hand and throwing them into a blender.
They didn’t buy the books. They took them without permission.
Oh yeah. Cars are bad on like every metric.
Socially they isolate people. You don’t interact with anyone when you’re driving except to get angry. The micro interactions you have on the train matter. Seeing people that aren’t just like you, also annoyed that the train is delayed, or just having a nice time with their kids, matters. More than makes up for when other people are annoying.
Economically they hurt. It’s much harder to just pop into an interesting looking shop when you’re cruising along at 40mph. All the space dedicated to parking could be used for other stuff- housing, commerce, communal space, whatever.
They make spaces less safe. Other than the direct impact (no pun intended) of people getting hit by cars, or crashing into stuff, a space that has steady foot traffic is generally safer. If everyone was in their car instead, you’d probably be alone on foot with no one to help if something happened.
They’re bad for the environment. Air pollution, micro plastics, whatever.
Drunk driving is way more dangerous than drunk “riding the train”.
The more non-car options are built out, the better it will be for people who need to drive for whatever reason.
Cars culture is trash and if we ever escape from it, it’s going to take years.
I don’t think I know anyone who’s cheated. But I also hang out with a lot of polyamorous people, where cheating is possible but I feel like is less common.
Huh. I don’t think I know anyone who cheats so I guess I got lucky. Your post is plausible
Anyone entering through web development. If you’re self taught or did a “coding boot camp”, it might be the only language you’ve used. A lot of places use it for backend stuff now, too
I don’t know about “fine”. It has a lot of weird stuff baked in. Hoisting. Unexpected type coercion. Too many ways to loop over something and I always forget which one is which. “There’s more than one way to do it” is kind of a recurring problem, come to think of it. Several function declaration syntaxes. Dot notation AND bracket notation for objects.
Also it will forever bother me that object keys aren’t quoted.
const foo = "hello";
const bar = { foo: "world" }
That should be, in my mind, { "hello": "world" }
. It’s not. It’s { "foo": "world" }
But if you want to do that, you need to do const bar = { [foo]: world }
. Which looks like your key is an array with one entry, a string with a value of “foo”
You also end up learning a whole framework, with its syntax and idioms, every couple years. Angular. React. Redux. Whatever.
There’s also a lot of people who have never used anything else, and want to use javascript for everything.
Javascript is basically D&D. Wildly popular. Full of legacy jank. People try to use it for anything even though there are better or more specialized tools.
That’s such a non sequitur I don’t even know what you’re trying to communicate