

Denying that the logo used to have a cornucopia is a thing? Sheesh, TIL.
Denying that the logo used to have a cornucopia is a thing? Sheesh, TIL.
I agree, RFK should stop telling people to kill themselves by ignoring modern medicine.
Arcane.
Sick. I’ve tried a few times in the past to find a frontend for postgres that I liked, and was never able to. Will have to give this a try.
The most straightforward thing to do, on a private LAN, is to make all your own certs, from a custom root cert, and then manually install that cert as “trusted” on each machine. If none of the machines on this network need to accessed from outside the LAN, then you’re golden.
Not banned… at least not that I know of. Just saw the writing on the wall after the API horseshit.
Part of the reason that “JavaScript sucks” is BECAUSE it doesn’t have alternatives. If you want to build a WebApp that manipulates the DOM, JS has the ONLY API to do it.
For me, “JavaScript sucks” not really because of the language itself, but because there’s such a massive disconnect between what it was designed for (small amount of bells and whistles within a web page), and what the ecosystem uses it for (foundation for entire GUI applications).
If you want to build WebApps, learn JavaScript, then do all your development with TypeScript, and be VERY mindful of the third-party dependencies you pull into your project.
It’s very much not clear, lol, I was coming here to ask. FASCINATING photo.
Recall elections are a thing, are they not?
Wait, I’m supposed to be doing my home improvements?
It’s fraud. They publicly claimed, point-blank, to do a certain thing for years, and were instead doing the opposite, in the interest of making more money. The affiliate link thing is only one of several points that they’re suing over. The far more egregious one is that they don’t actually “scour the internet to find you the best coupons” They will actively hide better coupons that they know about, if marketplaces pay them to, and still tell you in the browser “this is the best coupon.”
A very large portion (maybe not quite a majority) of software developers are not very good at their jobs. Just good enough to get by.
And that is entirely okay! Applies to most jobs, honestly. But there is really NO appropriate way to express that to a coworker.
I’ve seen way too much “just keep trying random things without really knowing what you’re doing, and hope you eventually stumble into something that works” attitude from coworkers.
The two models, […] each offer a minimum of 3TB per disk
Huh? The hell is this supposed to mean? Are they talking about the internal platters?
I meeeeeeean… this seems like a question they SHOULD be asking. No, it’s not sustainable as a for-profit business, which is why they should get out of the business and leave it to non-profits and state institutions.
What DOES the new scanner do with its scan output, then?
He alluded to it in the first video, and I think it’s spot on.
They ended up with an “inventory problem”. Which is to say, some business major in the company somewhere, or a consultant or whatever saw that they were spending money to store it all, and said “A company’s assets should never cost money, they should MAKE money” or some such business speak. Ultimately that translated into every layer of the business being instructed to prioritize using that that old inventory, somehow, or pushing it to customers.
“People don’t really want to buy all this older hardware off of us, but we can convince people who don’t know any better to rent it.”
“We don’t have enough 4090s to keep up with demand for these high-end rentals, but we’re sure as hell not buying more when we have all these perfectly-good 4080s lying around.”
A little off-topic: anyone else read this as “BCA Chefs”, initially?
As if the new notepad wasn’t already enough of a downgrade.
Yeah, I was thinking the same thing, when I first heard this story. He’s not saying he hopes Mehdi dies, he made an extremely cavalier joke about him dying. Just as bad, but, y’know, not as good of a sound bite.
My big reason would be “it hurts readability”. That is, when writing code, readibility for others who aren’t familiar with it (including future me) is my top-priority, and that means indentation and alignment are HIGHLY important, and if I spend the time to write code with specific indentation and alignment, to make it readable at a glance, I want to be certain that it’s always going to display exactly that way. Tabs specifically break that guarantee, because they’re subject to editor settings, which means shit like the below example can occur:
I write the following code with an editor that uses a tab size of 4.
If someone pulls this up in an editor that uses a tab size of 8, they get…
Not really a big deal, in this simple case, but it illustrates the point.
My second reason would be that it makes code more difficult to WRITE, I.E. it’s not that hard to insert spaces when you mean to insert tabs, considering that you’re not LITERALLY using only tabs just only tabs for indentation and alignment. And if you do accidentally have spaces mixed in, you’re not going to be able to tell. The guy on another machine with different editor settings will, though.
I’m aware there are fonts that can make spaces and tabs visible and distinct, but that sounds like a NIGHTMARE to write and read code with. I mentioned above, my top priority is easy readability, and introducing more visual noise to make tabs and spaces distinct can only hurt readability.