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.
(_____(_____________(#)~~~~~~
- 0 Posts
- 14 Comments
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·1 month agoYou can use the
lsofutility though to list all currently open file handles.
FuckBigTech347@lemmygrad.mlto
Memes@lemmy.ml•The feeling of losing connections with online friends
8·2 months agoI befriended this guy in an online game. Eventually we became friends on Steam and it turned out we both had a lot in common and we started playing a few other games together as well.
One day he told me that he got a girlfriend, who he later then married. After some time they got divorced and he hasn’t messaged me since.
I really miss staying up until 6 in the morning, playing long AoE2 and Stronghold Crusader matches with him.
I rather deal with that than any Micro$oft® Garbage®.
FuckBigTech347@lemmygrad.mlto
Programmer Humor@programming.dev•New Jetbrains Update Dropped
1·2 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.
There is no way that User isn’t just some Internet troll. Lol.
FuckBigTech347@lemmygrad.mlto
Programmer Humor@programming.dev•Context: Docker bypasses all UFW firewall rules
1·4 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
Programmer Humor@programming.dev•I created the weirdest political compass
2·4 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
Open Source@lemmy.ml•The Open-Source Software Saving the Internet From AI Bot Scrapers
2·5 months agoBut most importantly, it won’t work in the end. These scraping tech companies have much deeper pockets and can use specialized hardware that is much more efficient at solving these challenges than a normal web browser.
A lot of people don’t seem to be able to comprehend this. Even the most basic Server Hardware that these companies have access to is many times more powerful than the best Gaming PC you can get right now. And if things get too slow they can always just spin up more nodes, which is trivial to them. If anything, they could use this as an excuse to justify higher production costs, which would make resulting datasets and models more valuable.
If this PoW crap becomes widespread it will only make the Internet more shitty and less usable for the average person in the long term. I despise the idea of running completely arbitrary computations just so some Web Admin somewhere can be relieved to know that the CPU spikes they see coming from their shitty NodeJS/Python Framework that generates all the HTML+CSS on-the-fly, does a couple of roundtrips and adds tens of lines of log on every single request, are maybe, hopefully caused by a real human and not a sophisticated web crawler.
My theory is people like to glaze Anubis because it’s linked to the general “Anti-AI” sentiment now (thanks to tech journalism), and also probably because its mascot character is an anime girl and the Developer/CEO of Techaro is a streamer/vtuber.
FuckBigTech347@lemmygrad.mlto
Programmer Humor@programming.dev•Why shouldn't you use YAML to store eye tracking data? /s
41·6 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.
That’s only been my experience with software that depends on many different libraries. And it’s extra painful when you find out that it needs hyper specific versions of libraries that are older than the ones you have already installed. Rust is only painless because it just downloads all the right dependencies.
Some old software does use 8-Bit ASCII for special/locale specific characters. Also there is this Unicode hack where the last bit is used to determine if the byte is part of a multi-byte sequence.
Interesting feature, I had no idea. I just verified this with gcc and indeed the return register is always set to 0 before returning unless otherwise specified.
spoiler
int main(void) { int foo = 10; }produces:
push %rbp mov %rsp,%rbp movl $0xa,-0x4(%rbp) # Move 10 to stack variable mov $0x0,%eax # Return 0 pop %rbp retint main(void) { int foo = 10; return foo; }produces:
push %rbp mov %rsp,%rbp movl $0xa,-0x4(%rbp) # Move 10 to stack variable mov -0x4(%rbp),%eax # Return foo pop %rbp ret
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++.