

They dont usually have benefits (eg: health insurance) or time off
They dont usually have benefits (eg: health insurance) or time off
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 saw that one too and thought similarly!
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.
games? I found a civilization port for the phone and it sucked up a lot of time. Turn based so you can do it for a few minutes at a time: https://yairm210.itch.io/unciv
learn a language? duolingo and other apps are out there
Reminds me of my first big success at work. There was a weekly report that people wanted generated - it showed how much like each operator had done, how much each warehouse had shipped, how many orders we lost from stock issues, etc. it was a low tech company, so they had someone going through the limited UI, looking up each thing one at a time, copying it into excel, and making the report that way. It took hours, and was error prone from stuff like mis-pasting or accidentally skipping a user.
Took a look at it and was like you could definitely automate this. Used some very primitive scripting to pull all the info out of the system’s UI and dump it into a TSV. Took like a couple minutes to run it, import into excel, and add the colors. But it was super janky because it was manipulating the UI like a user instead of, like, directly querying whatever underlying data store it was running on.
Still, management was impressed. I later learned no one actually looked at the report most weeks, so that took some of the wind out of my sails.
This is an ancient joke but they replaced the original pigeon with a blue thing instead. :confused:
Maybe the design is bad, then.
Javascript could throw an error to alert you that the input is supposed to be a string, like most languages would do.
Javascript is like Dungeons and dragons. It’s a mess, weighed down by legacy decisions, too heavy in some places and too light in others, and used in far more places than it should be. It also has some diehard fans, and some diehard fans who have never used anything else.
Spotify kind of sucks. I’ve been buying music from the musicians (mostly via Bandcamp) for years. Buying one album a month for like $8 means is cheaper than a subscription, and I now have a huge library of music.
I had an issue with installing mint. Never figured it out. Got the older LTS and it worked fine though. Maybe try a different version?
Funny, because when I go to the suburbs or other sparsely populated areas, walking around without anybody else feels dystopian. Feels like a post-apocalyptic setting, where everyone else got taken by aliens or plague or something.
It’s not always tourists but stopping in unexpected places is a common irritation in NYC. Like, they’re walking on the sidewalk and just stop, and mess up the flow of foot traffic. Maybe to look at their map or to gawk at something. It’s extra annoying and a little dangerous when it’s on the stairs
If you know a way to get from here to there, please share. At my old job I tried to radicalize my coworkers so they’d understand our interests align with each other more than ownership. I had some success.
More generally, it’s in-group vs out-group. For many people, the in-group is “white men” and the out-group is “everyone else”. But this behavior is pretty baked into humans. We’ll form stupid groups over anything. I was reading a book about how people change their minds, and it talked about some experiments they did. Like, they gave kids at a summer camp different colored shirts, and sure enough they formed separate groups. They had to stop the experiment when one group tried to burn down the cabin of the other group.
I don’t know how to fix this.
At one of my old jobs, we had a suite of browser tests that would run on PR. It’d stand up the application, open headless chrome, and click through stuff. This was the final end-to-end test suite to make sure that yes, you can still log in and everything plays nicely together.
Developers were constantly pinging slack about “why is this test broken??”. Most of the time, the error message would be like “Never found an element matching css selector #whatever” or “Element with css selector #loading-spinner never went away”. There’d be screenshots and logs, and usually when you’d look you’d see like the loading spinner was stuck, and the client had gotten a 400 back from the server because someone broke something.
We put a giant red box on the CI/CD page explaining what to do. Where to read the traces, reminding them there’s a screenshot, etc. Still got questions.
I put a giant ascii cat in the test output, right before the error trace, with instructions in a word bubble. People would ping me, “why is this test broken?”. I’d say “What did the cat say?” They’d say “What cat?” And I’d know they hadn’t even looked at the error message.
There’s a kind of learned helplessness with some developers and tests. It’s weird.
I see what you did there and I’m not going to fully fall for it.