

Then, nobody says “megagram” - it’s “ton”. So there are quirks to remember.
We absolutely should, though… That and megameters, for car mileage. We always round off to the nearest thousand kilometer anyway.
Then, nobody says “megagram” - it’s “ton”. So there are quirks to remember.
We absolutely should, though… That and megameters, for car mileage. We always round off to the nearest thousand kilometer anyway.
Well something about 200 kms away will take 2 hours to get there on the highway going 100 km/h…
It’s not as neat as 1 mile = 1 minute at 60mph, but it’s still pretty easy to do the mental math.
Yeah, mine is a 2024, got it late last summer (Elon’s antics were relatively limited to Twitter at that point…) so it’s way too early to change. My M3 has ~50 more miles of range than your Mach-E and I did need all of it a couple times last winter when it was -20°C. Good to know about the insurance; but I think my next car will probably be a Kia or Hyundai, I really like their offerings in that space. Main reason I didn’t buy one this time was the delivery delays; it was 6+ months here in Qc.
Tesla owner here. Yeah, it sucks.
I live in a rural area without any form of public transit within ~50km, I frequently travel long-ish distances, so I wanted to reduce my carbon footprint by switching to an electric car. After comparing the different options, I went with the one that had the best price / range / charging options / availability for my needs and that happened to be the Model 3 Long-Range.
Fuck me, right?
At this point, I just hope vandals will see my “deport Elon to Mars” sticker before setting mine on fire.
I liked Freeland because Russia hates her. I also think she did a good job handling Trump in the NAFTA re-negotiation 4 years ago. Both her and Carney were very good options for Canada, IMO.
In the near future: Journalists use AI to turn 1 or 2 sentences into a full article. Meanwhile, readers use AI to summarize long articles into 1 or 2 sentences.
Coming at this from the JS world… Why the heck would 2 projects share the same library? Seems like a pretty stupid idea that opens you up to a ton of issues, so what, you can save 200kb on you hard drive?
I’m no Python expert either and yeah, from an outsider’s perspective it seems needlessly confusing. easy_install
that’s never been easy, pip
that should absolutely be put on a Performance Improvement Plan, and now this venv
nonsense.
You can criticize javascript’s ridiculous dependencies all you want (left-pad?), but one thing that they absolutely got right is how to manage them. Everything’s in node_modules
and that’s it. Yeah, you might get eleven copies of left-pad on your system, but you know what you NEVER get? Version conflicts between projects you’re working on.
I’ve always wondered if vegetables from a farm that uses horse-drawn tills instead of tractors would be vegan… It’s a real question, but everyone I ask thinks that I’m trolling.
There’s also a Kirkland near Montreal, so it could be Canada. But as it’s already been mentioned, it has nothing to do with location in this case.
Something something dining philosophers.
I’ve read all of them, and I really enjoyed them. It’s true that it’s basically “Royal Navy in space”, and it might be a little cheezy, but it’s a pretty relaxing read.
The space combat stuff gets much better in the later books, Weber managed to build satisfying mechanics for it. There’s some good political intrigue too. The one thing that pulled me “out” of the books a couple times were some character names, some of them are pretty ridiculous (Queen Elizabeth III for example).
I’m one of these, my name is definitely male but when you read it it’s really easy to confuse with the female version. It doesn’t help that it’s really rare in my generation while the female version is much more popular. All this resulted in me getting misgendered on a regular basis. A few examples:
Anyway, I thought pronouns were a bit of a weird thing for trans and non-binary people, but as a very cis man who’s had issues with people reading my name wrong, I put my pronouns in my signature now.
It’s true that you can easily fall into analysis paralysis when you start learning JS, but honestly things have somewhat stabilized in recent years. 10 years ago everybody was switching frameworks every 6 months, but these days we’re going on 8+ years of absolute React dominance. So I guess that’s it for the view layer.
The data layer has seen some movement in more recent years with Flux then GraphQL / Relay, but I think most people have settled on either Apollo or react-query now (depending on your backend).
On the backend there was basically only express.js, and I think it’s still the king if you only want to write a backend.
Static websites came back in fashion with Jekyll and Github Pages so Gatsby solved that problem in js-land for a while, but nowadays Next also fulfills that niche, along with the more fullstack-oriented apps.
Svelte, Vue, Aurelia and Mithril are mostly niche frameworks. They have a dedicated, vocal fanbase (see the Svelte guy as sibling to your comment) but most of the industry has settled along the lines I’ve mentioned.
Honestly I think the main thing that the JS ecosystem does well is dependency / package management (npm). The standard library is very small so everything has to be added as a dependency in package.json, but it mostly works without any of the issues you often see in other languages.
Yeah, it’s not perfect, but it’s better than anything else I’ve tried:
In contrast, NPM is pretty simple: it creates a node_modules and puts everything there. No conflicts because project A uses left-pad 1.5 and project B uses left-pad 2.1. They can both have their own versions, thank you very much.
The only people who managed to mess this up are Linux distributions, who insist on putting things in folders owned by root.
Yes, they do. I think the Swiss partly do a as well.
C is crazy. While you are learning it you are learning Make and gcc without your consent.
Java is crazy. While you are learning Spring you are learning Maven or Gradle even without your consent.
To any non-js dev taking this too seriously: A good half of the technologies mentioned in this meme are redundant, you only need to learn one of them (in addition to the language). It’s like complaining that there are too many Linux distributions to learn: you don’t, you just pick one and go with it.
My main gripe is that the web version only asks that once it spent ages loading the old version… And it’s not even a choice because I already switched on desktop. Can’t you just load the fucking new version to begin with?
I’m gonna have to disagree here, it’s always a guessing game of how many layers of abstraction they’ve used to seemingly avoid writing any implementation code… Can’t put the code related to “bicycles” in the
Bicycle
class, no, that obviously goes inWheeledDeviceServiceFactoryBeanImpl
that’s in the ‘utils’ package.