Maybe they left it running for a while. The current Steam Client is basically an Electron App.
I miss the old Steam Client that was made entirely in Valve’s own GUI Framework which was written in C++.
(_____(_____________(#)~~~~~~
- 1 Post
- 91 Comments
Hey, I’m posting this via lem.el! I’ve been using it for a few months now.
Could still use some work, but far better than using a Web Browser.
FuckBigTech347@lemmygrad.mlto
Programmer Humor@programming.dev•99% of Windows usability issues would be fixed if Windows had the guts to add this button
1·3 months agoYou can use the
lsofutility though to list all currently open file handles.
FuckBigTech347@lemmygrad.mlto
Comradeship // Freechat@lemmygrad.ml•Why are some people so vehemently against genAI?
52·3 months agoThe Silicon is what gives Life; After all it carries out all those thousands of floating point Instructions that are required for the
MatrixBrain to work!
FuckBigTech347@lemmygrad.mlto
Comradeship // Freechat@lemmygrad.ml•Why are some people so vehemently against genAI?
143·3 months agoExcellently put. It’s really just Capitalists doing Capitalist things, it’s just sometimes they happen to be located in China.
I rather deal with that than any Micro$oft® Garbage®.
It’s crazy how many people are just OK with running completely proprietary code that monitors everything that happens on the machine and phones home all the time, all with the promise to “catch cheaters”.
Fortunately every game I’ve seen so far with such malware is just a generic competitive multiplayer dopamine farm that targets the Streamer crowd.
“But all my friends are playing it!” - Is it really worth it to run omnipresent malware on your machine just to play the currently trending game for a few weeks until you move on to the next?
FuckBigTech347@lemmygrad.mlto
Programmer Humor@programming.dev•New Jetbrains Update Dropped
1·4 months agoEclipse 15 years ago was OK. Decent Debugger, useful Plugins (like WindowBuilder). It had issues, but instead of focusing on those they over time just kept piling crap on top of it.
FuckBigTech347@lemmygrad.mlto
Comradeship // Freechat@lemmygrad.ml•Do some people just regurgitate arguments blindly?
31·4 months agoEvery thread here about veganism ends up like this.
Ironically, browsing lemmygrad for a few years has given me a negative bias towards vegans and veganism in general.
FuckBigTech347@lemmygrad.mlto
Comradeship // Freechat@lemmygrad.ml•Do some people just regurgitate arguments blindly?
74·4 months agoit’s insane how you’re getting hit with downvotes.
FuckBigTech347@lemmygrad.mlto
Linux@programming.dev•Firefox 32-bit Linux Support to End in 2026
2·5 months agoDoes anyone out there still use a 32-Bit Computer as their daily driver? The most recent 32-Bit hardware I’ve used as a Desktop was an RPi3 and running a modern web browser on that thing would almost cook the chip.
FuckBigTech347@lemmygrad.mlto
Programmer Humor@programming.dev•Context: Docker bypasses all UFW firewall rules
1·5 months agoI pretty much share the same experience. I avoid using docker or any other containerizing thing due to the amount of bloat and complexity that this shit brings. I always get out of my way to get Software running w/o docker, even if there is no documented way. If that fails then the Software just sucks.
FuckBigTech347@lemmygrad.mlto
World News@lemmygrad.ml•South Korea tells China it wants to normalise ties, upgrade economic relations
13·5 months agoUnofficial American Province tries to become more independent? Looks like Washington will have to set things straight again.
FuckBigTech347@lemmygrad.mlto
Programmer Humor@programming.dev•I created the weirdest political compass
2·5 months agoCoding directly in assembly is rare.
I used to think that, but when you’re dealing with a lot of low-level stuff you’ll eventually realize that Compilers are pretty bad at generating fast and reliable Assembly where it’s needed. Also, some Architectures have specific machine instructions that Compilers just don’t take advantage of, no matter what flags you enable.
FuckBigTech347@lemmygrad.mlto
Linux@programming.dev•Kent Overstreet winning hearts and minds in the LKML again.
2·6 months agoYou could spend your limited time and energy setting up an emulator of the powerPC architecture, or you could buy it at pretty absurd prices — I checked ebay, and it was $2000 for 8 GB of ram…
You’re acting as if setting up a ppc64 VM requires insane amounts of effort, when in reality it’s really trivial. It took me like a weekend to figure out how to set up a PowerPC QEMU VM and install FreeBSD in it, and I’m not at all an expert when it comes to VMs or QEMU or PowerPC. I still use it to test software for big endian machines:
start.sh
#!/usr/bin/env sh if [ "$(id -u)" -ne 0 ]; then printf "Must be run as root.\n" exit 1 fi # Note: The "-netdev" parameter forwards the guest's port 22 to port 10022 on the host. # This allows you to access the VM by SSHing the host on port 10022. qemu-system-ppc64 \ -cpu power9 \ -smp 8 \ -m 3G \ -device e1000,netdev=net0 \ -netdev user,id=net0,hostfwd=tcp::10022-:22 \ -nographic \ -hda /path/to/disk_image.img \ # -cdrom /path/to/installation_image.iso -boot dAlso you don’t usually compile stuff inside VMs (unless there is no other way). You use cross-compilation toolchains which are just as fast as native toolchains, except they spit out machine code for the architecture that you’re compiling for. Testing on real hardware is only really necessary if you’re like developing a device driver, or the hardware has certain quirks to it that are just not there in VMs.
FuckBigTech347@lemmygrad.mlto
Programmer Humor@programming.dev•Why shouldn't you use YAML to store eye tracking data? /s
41·7 months agoExactly. All modern CPUs are so standardized that there is little reason to store all the data in ASCII text. It’s so much faster and less complicated to just keep the raw binary on disk.
I’m starting to think that feds are spamming the “TAX” idea as a distraction. If you genuinely believe that “taxing the rich” will get us Communism then you need to read more. “The Principles of Communism”, “Wage Labour and Capital” and “The Communist Manifesto” are good starting points.
FuckBigTech347@lemmygrad.mlto
Comradeship // Freechat@lemmygrad.ml•Wild comrade spotting
11·8 months agoIt’s his Pixelfed Account on the pixelfed.social Instance: https://pixelfed.social/Yogthos
One time I asked DeepSeek for guidance on a more complex problem involving a linked list and I wanted to know how a simple implementation of that would look like in practice. The most high level I go is C and they claim it knows C, so I asked it to write in the C language. It literally started writing code like this:
void important_function() { // important_function code goes here } void black_magic() { // Code that performs black magic goes here. }I tried at least 2 more times after that and while it did actually write code this time, the code it wrote made no sense whatsoever. For example one time it started writing literal C# in the middle of a C function for some reason. Another time it wrongly assumed that I’m asking for C++ (despite me explicitly stating otherwise) and the C++ it produced was horrifying and didn’t even work. Yet another time it acted like the average redditor and hyper focused on a very specific part of my prompt and then only responded to that while ignoring my actual request.
I tried to “massage” it a lot in hopes of getting some useful information out of it but in the end I found that some random people’s Git repos and Stackexchange questions were way more helpful to my problem. All of my experiences with LLMs have been like this thus far and I’ve been messing with them for 1+ years now. People claim they’re very useful for writing repetitive or boiler plate code but I am never in a position where I’d want or need that. Maybe my use cases are just too niche lol.



This whole thing feels like a celebrity ad.