

Yes! It used to be so hit or miss with Wine, but I played WoW in it around the same time and it was crazy that it worked (at least most of the time).
Yes! It used to be so hit or miss with Wine, but I played WoW in it around the same time and it was crazy that it worked (at least most of the time).
There’s just no reason to do this work. Even if you ignore the fork’s controversial maintainer, and just favor the fact that it’s maintained at all (which is what the proposal’s author is suggesting) just… Why?
X11 is basically over at this point, why throw a last minute wrench into the existing, working Xorg infrastructure?
When we dropped XFree86 back in the day there were license issues, packaging issues and a real alternative didn’t exist - all justifying the effort to switch. None of these are a problem today.
Sports gambling is just terrible for everyone except the bloodsuckers that run it. Sports teams don’t want it because it incentivizes cheating / rigging games. Personal bankruptcy and domestic abuse skyrocket when people lose money they can’t afford to lose. Now the apps feed an unstable addiction literally all day long.
Thanks to the Supreme Court for pulling a bullshit ruling out of their collective asses in 2018 that makes everything worse for average Americans.
Shit, I don’t even gamble and I’m just sick of their logos and ads all over every thing when I watch a game. Used to be they had “Gambling Prohibited” up around the stadium, now they may as well own the teams.
Pace makers keep you from dying so they’re sort of on a different level of need. Also, if corps did planned obsolescence on one, you’re probably not around to buy another.
If they were invented today, they would definitely have a predatory subscription model for “monitoring” your heart, or require occasional maintenance at cost to the end user.
The prequels were redeemed? That’s news to me.
I’m with you on 1 and 2, but “reduced lingual skills” I think is a bit of a stretch. Becoming fluent in another language takes a lot of effort and people only do it if they have a good long term reason.
I think it’s more likely this would cover the vacation / short term business case that is already covered by human interpreters (or apps already) instead.
I agree. I have become more amenable to things like Flatpak or Podman/Docker to keep the base system from being cluttered up with weird dependencies, but for the most part it doesn’t seem like there’s a huge upside to going full atomic if you’re already comfortable.
I used mutt back in the day, opening vim for message editing.
I wouldn’t do a mailing list these days, but as someone who spent the early part of my career interacting with devs that preferred this method, it’s actually pretty ergonomic by a 2005 standard. A message thread aware, text based email client that can turn messages into patches in a keystroke makes it actually pretty comparable to modern code review…
I think it’s hard for younger devs to get this because they’re used to email being stuck in a crappy, unthreaded browser interface or Outlook etc. (which are terrible for mailing lists) and most collaboration taking place in code review and chat platforms like Teams/Slack but for decades before these were feasible, email was the way…
GNOME 3 introduced the current shell paradigm where you don’t really have a start menu but a variety of searches, integrated indicators, per-app desktops with a dock etc.
Before, it was far more conventional experience like Plasma/Windows/Cinnamon are now. GNOME 2 was forked to be the MATE desktop if you want to check it out.
I have a couple of very minor commits in Linux and, in the 3.0 era, had my name at the top of a source file for a platform that never saw the light of day and was later removed wholesale.
Still feel that invisible feather in my cap.
Basically just start with what you’re aiming to enable and work backwards (as you’ve started to do). With judicious use of grep find out where that symbol is defined. If it’s in arch configs for other arches but not your own, it’s probably that.
There may be better tools out there to do this, but in my experience just sleuthing it out a bit will answer your question. The Kconfig system can be complex, but the files are pretty readable.
I’ve only used Jellyfin, what does Plex do better for the non-expert user?
It’s possible that it’s not supported on your arch.
I mean, fuck Elon and Tesla but if you’re spending money on a car you’re giving it to a bastard one way or another. The CEOs of Ford, BMW, et. al. might not be making asses of themselves on the global stage, but I’m sure they’re still horrible. Even used cars run on gas 99% of the time.
The only thing Samba is really great for is interop with Windows. If that’s not an issue, Dolphin can browse SFTP directly by adding it as a network share (you may need to setup a password-less key pair to avoid having to login). SSHFS is a similar option and works even if the client is totally naive (it just looks like any other mounted FS).
Right. GCC -f optimizations are basically like “how hard are we going to try to be clever” and are, I believe, orthogonal to the actual instructions used. Machine dependent args start with -m, like -march or -mavx etc.
So you’re right that this is a bit arbitrary because the line between the standard lib and the language is blurry, but someone writing Rust is going to expect Vec to work, it doesn’t even require an extra “use” to get it.
Perhaps a better core example would be operator overloading (or really any place using traits). When looking at “a + b” in Rust you have to be aware that, depending on the types involved, that could mean anything.
Anyway, I love Rust, it just doesn’t have the 1:1 relationship with the assembly output that C basically still has.
Huh weird, these pull requests just magically accepted themselves
I couldn’t find the specific reasoning for this change, but I feel like QEMU is probably just too holistic to be appropriate for this kind of project.
QEMU needs to be able to emulate all the ARM hardware with enough fidelity to boot a naive operating system. For the purposes of running userspace applications almost all of that is not required, you really just need to convert one ABI to the other and translate the instructions. No need to handle firmware, the MMU, interrupts, disks etc.