yeah, I have a 65" TV connected and it gets comically large. I wouldn’t be nearly as productive without it.
Eager Eagle
- 21 Posts
- 2.59K Comments
Eager Eagle@lemmy.worldto
Programming@programming.dev•Most of your tech debt is freeEnglish
5·2 days agoyeah, that phrase grinds my gears. If you heard from a supposed professional that they only do the bare minimum to get a pass, you’d never hire their services. It’s at best disrespectful with your colleagues who give a shit and have standards.
Eager Eagle@lemmy.worldto
Linux@lemmy.ml•What's your preferred method for upgrading your system drive?English
9·3 days agodisk destroyer? I prefer just formatting and
rsync-ing things. Unless I care about preserving metadata.
Eager Eagle@lemmy.worldto
Programming@programming.dev•Most of your tech debt is freeEnglish
10·3 days agoYup, the longer you wait to update something, the higher the cost to eventually do that. I hate the “if ain’t broke don’t fix it” adage because of this. If I am the one who will eventually need to update it, you bet I will be “fixing” it more often than I have to.
Eager Eagle@lemmy.worldto
Mildly Infuriating@lemmy.world•Mike Solana, a multimillionaire investor, on college-educated Americans frustrated by narrowing economic opportunities or as he calls them, “broke losers with bachelors”English
10·3 days agonever heard of this person, but an editor in chief writing like that must be a recession signal
Eager Eagle@lemmy.worldto
Technology@lemmy.ml•Chinese doctor performed surgery from 5,000 kilometers away (video)English
7·4 days ago5000km is the distance my grandparents would walk every day to school
Eager Eagle@lemmy.worldto
linuxmemes@lemmy.world•You have lost CPU time privilegesEnglish
2·4 days agoFor most things. The only exception I see is if you have really over dimensioned memory, or have a very predictable load so that having the extra reclaimable space won’t make a difference.
I’ll second the other comment,. Establish and end to end encrypted backup of all data you plan to encrypt at rest first - at least the parts you really care about not losing. Ideally a “3-2-1” setting. Test the backup. Then look for encrypting your local working copy at rest.
Eager Eagle@lemmy.worldto
Technology@lemmy.world•DeepSeek’s updated V4 Pro AI model struggles on benchmarks, shines in cybersecurity: impresses in niche areas but leaves some developers disappointed in its overall capabilities.English
15·4 days agoI’d say that “struggles” is a bit too much. And it’s still 5x to 10x cheaper than the models they compared to in benchmarks, let’s see by how much they’re increasing that cost.
Eager Eagle@lemmy.worldto
linuxmemes@lemmy.world•You have lost CPU time privilegesEnglish
2·4 days agoyeah, swap is definitely still useful and it gets used by the kernel well before the main memory is full
Eager Eagle@lemmy.worldto
Games@sh.itjust.works•Saber Interactive Denies Replacing Lead Writer With ChatGPT, CEO Responds to AccusationsEnglish
10·4 days agoRideshare “Stimulator” sounds like a softcore porn game
Eager Eagle@lemmy.worldto
linuxmemes@lemmy.world•You have lost CPU time privilegesEnglish
7·4 days agoit’s not, because it takes swap usage into account, so you can benefit from swap without risking a frozen system
Eager Eagle@lemmy.worldto
Programming@programming.dev•Rust is adopting an LLM policyEnglish
8·4 days agodirect link to the policy
Eager Eagle@lemmy.worldto
linuxmemes@lemmy.world•You have lost CPU time privilegesEnglish
15·4 days agothe only times I had OOM killer kick in, the machine was already frozen for a long time trying to swap things in and out and whatnot. So I started using earlyoom - it’ll just nuke that memory hogging process out of existence before it takes the whole machine down.
Eager Eagle@lemmy.worldto
Programmer Humor@programming.dev•Battle.net's discord permissionsEnglish
21·5 days agoThis is so annoying and exhausting. Today I gave up linking a bank account with a broker via plaid because they wanted access to all my transactions.


























No point in messing with swappiness settings, trust me. You want to address the reason this happens in the first place, not disable to reduce swap.
I’ve had a nearly identical scenario at work. The reason? A data verification process that went through 100s of thousands of files to run their checksums and check integrity. This was working as intended, but the system alerts were firing because of that high buffer/cache utilization. So check which processes have highest IO and you might find the answer. Swap is just a side effect.