“npm install” in particular is getting me.
- 5 Posts
- 183 Comments
JakenVeina@lemm.eeto politics @lemmy.world•Newsom floats withholding federal taxes as Trump threatens CaliforniaEnglish82·12 days agoSee, when people say Democrats need to start DOING things to push back against Trump, this is what they’re talking about.
Is this a foolproof idea? Probably not. Could it backfire? Possibly. Will it really help? If it makes the admin second-guess what it can get away with, yeah, that’s helpful. This is the energy we need. Stop playing softball with these fascists.
JakenVeina@lemm.eeto politics @lemmy.world•Musk says Trump is ‘in the Epstein files’ in latest digEnglish1·12 days agoI mean, Nazis fighting is Nazis fighting, sure, but it’s still all running over an undercurrent of Nazis veing in charge of the country.
JakenVeina@lemm.eeto politics @lemmy.world•Musk says Trump is ‘in the Epstein files’ in latest digEnglish8·13 days agoBro, we all already fucking knew that. This says WAY more about you than it does Trump.
Either you’re just drawing the obvious conclusion, like the rest of us, in which case, this statement is pointless, and you’re an idiot. Or you actually DO know it for a fact, and you’ve been cool with it, this entire time. Also, in case #2, we gotta wonder how you learned that fact. The obvious answer is “because you’re on there, too”.
JakenVeina@lemm.eeto politics @lemmy.world•Illinois state lawmakers attempt long-shot repeal of BDS banEnglish2·27 days agoI hope Pritzker understands that opposing this will LOSE him votes, whether it’s for Governor or President.
It doesn’t even fucking MATTER how you feel about Israel, how the hell is outlawing boycotts and divestment EVER acceptable?
C, C++, C#, to name the main ones. And quite a lot of languages are compiled similarly to these.
To be clear, there’s a lot of caveats to the statement, and it depends on architecture as well, but at the end of the day, it’s rare for a
byte
orbool
to be mapped directly to a single byte in memory.Say, for example, you have this function…
public void Foo() { bool someFlag = false; int counter = 0; ... }
The
someFlag
andcounter
variables are getting allocated on the stack, and (depending on architecture) that probably means each one is aligned to a 32-bit or 64-bit word boundary, since many CPUs require that for whole-word load and store instructions, or only support a stack pointer that increments in whole words. If the function were to have multiplebyte
orbool
variables allocated, it might be able to pack them together, if the CPU supports single-byte load and store instructions, but the nextint
variable that follows might still need some padding space in front of it, so that it aligns on a word boundary.A very similar concept applies to most struct and object implementations. A single
byte
orbool
field within a struct or object will likely result in a whole word being allocated, so that other variables and be word-aligned, or so that the whole object meets some optimal word-aligned size. But if you have multiple less-than-a-word fields, they can be packed together. C# does this, for sure, and has some mechanisms by which you can customize field packing.
JakenVeina@lemm.eeto Selfhosted@lemmy.world•Self-hosting is having a moment. Ethan Sholly knows why.English1·28 days agoI’ll take another look, but I didn’t see any such setting when I was trying to diagnose. And I haven’t changed any Plex settings since the last time we had an internet outage and it worked properly, just a month or two ago.
JakenVeina@lemm.eeto Selfhosted@lemmy.world•Self-hosting is having a moment. Ethan Sholly knows why.English35·29 days agoI recently discovered that Plex no longer works over local network, if you lose internet service. A) you can’t login without internet access. B) even if you’re already logged in, apps do not find and recognize your local server without internet access. So, yeah, Plex is already there.
JakenVeina@lemm.eetoTucson Politics•Texas judge dismisses 'trespassing' charges against border crossers accused of violating military rulesEnglish1·1 month agoDon’t get too excited, the argument here is basically “you need more signage, to make sure people are aware of the law they’re violating, before you can arrest them for it.” Like, it’s nice to hear a judge actually considering and following the law But this doesn’t really invalidate the administration’s end-run around the laws on who they can and can’t deport. If anything, it gives them a better roadmap for implementing it.
On the other hand, when we talk about people within the system leveraging beauracracy for resistance, “nah, you need to build more signage first” does kinda fit that model.
JakenVeina@lemm.eeto politics @lemmy.world•Supreme Court Justice Rips Into Trump DOJ: “Assume You’re Dead Wrong”English39·1 month agoYet, it seems to me that your argument is, ‘We get to keep on doing it until everyone who is potentially harmed by it figures out how to file a lawsuit and hire a lawyer.’
Nailed it. Because they know full-well that most people DON’T have the capacity to file a lawsuit and hire a lawyer. They are ignoring laws because they know no one will make them stop.
Can’t wait to see the court vote 6-3 the other way.
JakenVeina@lemm.eeto politics @lemmy.world•Judge arrested by Trump administration fights back with Trump’s own immunity caseEnglish12·1 month agoOn one hand, turnabout is always a good time. Maybe it’ll clue some folks in to how bullshit that decision was, from the start.
On the other hand, lol, no it fucking won’t. They’ll just make up some other new bullshit reason that “no, that doesn’t actually apply, in this one specific case, where the person we want to prosecute doesn’t agree with us”.
That’s a good analogy.
It’s far more often stored in a word, so 32-64 bytes, depending on the target architecture. At least in most languages.
JakenVeina@lemm.eeto ADHD memes@lemmy.dbzer0.com•Anyone else hating Shorts (the videos, not the pants or financial instruments)?English1·1 month agoYes, absolutely.
JakenVeina@lemm.eeto Gaming@beehaw.org•What are the best gaming moments of the last decade?English1·1 month agoEntire final hour of Tears of the Kingdom.
JakenVeina@lemm.eeto Programmer Humor@programming.dev•AI will replace programmersEnglish25·1 month agoYou know what we, in the industry, call a detailed specification fo requirements detailed enough to produce software? Code.
The REAL problem is that the industry collectively uses JS almost exclusively for shit it was never meant to do. Like you say, it’s intended for it to not throw errors and kill your whole web page, because it was only ever intended to be used for minor scripts inside mostly-static HTML and CSS web pages. Then we all turned it into the most-popular language in the world for building GUI applications.
JakenVeina@lemm.eeto Programming@programming.dev•Courses for SIMPLE, website-orientated, javascript developmentEnglish1·2 months agoHonestly, if you’re having trouble finding stuff for vanilla JS, I’d recommend looking at jQuery. Not that you should USE jQuery, necessarily, but the library is basically a giant wrapper around all the native JS APIs, so the approach to building stuff is essentially the same: it all focuses on tracking and manipulation of DOM elements.
I do vanilla JS (actually TypeScript) dev at work, daily, and that was my big takeaway from spearheding our team’s migration from jQuery to vanilla TypeScript: I honestly don’t know what benefit jQuery provides, over vanilla, because all the most-common jQuery APIs that we were using have a 1:1 native equivalent.
We do also use 2 third-party libraries alongside vanilla, so I’l mention those: require.js and rx.js. Require you probably don’t need, with modern JS having bundling and module support built-in but we still use it for legacy reasons. But rx.js is a huge recommend, for me. Reactive programming is the IDEAL way to build GUIs, in my opinion.
My wife runs a large online D&D guild, with games 4-5 nights a week (not that you play in all of them, they just have that many people). They’re no strangers to kicking people that cause drama, and they have several trans and non-binary members already.
I will say that they might not be able to bring their character in, as-is, if it’s heavily based on “official” D&D lore and sourcebooks. The group has spent 8 years building all their own lore and tuning some homebrew rules and classes. It’s mostly built on the 5e foundation, though.
I believe this is where they’d go to apply.
Alternative image for C: Mr. Incredible: “A PARAMETER IS A PARAMETER!”