

I saw that one too and thought similarly!
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.
Zuckerberg is garbage and shouldn’t be allowed to keep living with his tremendous, ill-gotten, wealth.
Folks should unionize. The people mandating these “return to office” schemes can’t do shit unless labor cooperates.
I think at around 5 million you no longer need to labor to live. You can put that in safe investments and just coast. That’s maybe not super rich, but it’s definitely above a milestone.
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
The idea that players all make their characters in isolation and just show up on session 0 with them sounds like such a recipe for disaster. I know it can work sometimes, much like “just grab four things from the fridge and throw them into the soup” can work sometimes. But sometimes you get like gummy bear pizza bites with shrimp and mayo topping.
I think a lot of games that came after D&D figured out solutions to common problems, but D&D insists on staying kind of archaic.
The didn’t listen when the GM talked about Theme and mood and end up with a character who doesn’t fit with the party/canpaign
Hah, for a second I thought this was my own post because I wrote something very similar here. But yes, this is one that bugs me.
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:
Having a minor crisis realizing that 9th grade was far more than seven years ago for me. This is fine.
Opportunity costs still exist
I think there’s also a pair:
I’m old and tired and generally am super tired of “wacky” ideas like the second one there. I feel like I’ve come full circle. As a youth, I thought like “let’s play vampires and struggle with humanity!” was cool . Then there was a bit where i wanted to flip it- “let’s play vampires but like go to theme parks and don’t do anything sad or deep!”. Now I’m back around to wanting to just play the theme as intended.
This is especially true if it comes up after session 0. Like, if you want to do a D&D game about running a BBQ shop, fine. Let’s do it. Let’s kill, cook, and sell some weird monster parts. But please don’t derail the whole game on session 3 when you insist on going back to town to cook the monster meat when it was clearly a random encounter and everyone else wants to continue the dungeon dive pitched in session 0.
One of the reasons I despair D&D is the most popular RPG. It’s almost all combat, and not even great combat at that.
Also never heard of it, but if it was exclusive to china that explains why.
Any word on the gameplay? Main line borderlands games are kind of mediocre, so I don’t imagine an MMO would be better.
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.
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