- 2 Posts
- 389 Comments
DaPorkchop_@lemmy.mlto Linux@lemmy.ml•Curious about performance of nouveau on old laptops with discrete graphics3·10 hours agoIn my experience, nouveau is painfully slow and crashes constantly to the point of being virtually unusable for anything. The developers agree, as in the last couple months nouveau has been phased out of Mesa entirely. More recent Mesa versions now implement OpenGL on Nvidia using Zink on NVK, and the result is quite a bit faster and FAR more stable.
If your distribution currently still ships a Mesa version which uses nouveau, I would personally recommend you just stick with the Intel graphics for now.
DaPorkchop_@lemmy.mlto AskBeehaw@beehaw.org•What should be done with the unemployable people?2·11 hours agoBased on that plus the various other mistakes, my guess is that OP’s native language isn’t English, but probably one of the many languages which uses masculine pronouns as gender-neutral, and they’re just doing a literal translation from their native language.
one must imagine sisyphus gaming
I wouldn’t ever criticize women for being wary of men by default, but I would criticize someone for comparing me (and all other men) to fucking Musk. There is a difference between saying “enough men are dangerous that I should assume they’re always a threat” and “all men are the same as one of the most despicable people of our time”.
what a horrible day to have eyes
DaPorkchop_@lemmy.mlto PC Gaming@lemmy.ca•Games run faster on SteamOS than Windows 11, Ars testing findsEnglish1·6 days agoAnd linux has io_uring which can handle millions of syscalls from a single thread without breaking a sweat. In my experience, I/O on Windows is just really slow, every file operation takes 10s to 100s of times longer than on any Unix-like kernel (1000s if windows defender is enabled)
DaPorkchop_@lemmy.mlto Crazy Fucking Videos@lemmy.world•Truck driver waits for rescue inside the dangling cab of a semi-truck after a bridge collapse in China's Guizhou province.English4·6 days agoThe cab breaks off and he plummets to his death?
Aside from checking the kernel log (
sudo dmesg
) and system log (sudo journalctl -xe
) for any interesting messages, I might suggest simply watching for any processes which are abnormally high while the system is running slow. My initial approach would be to usehtop
(disable “Hide Kernel Threads” and enable “Detailed CPU Time”), and seeing which processes, if any, are eating up your CPU time. The colored core utilization bars at the top show how much CPU time is being spent on what: gray for disk wait, red for kernel, green for regular user process, etc. That information will be a good starting point.
DaPorkchop_@lemmy.mlto No Stupid Questions@lemmy.world•Could I seek asylum as a US trans person in Costa Rica (or other countries)?2·6 days agoI mean, there are plenty of wealthy immigrants here, but I would say there are probably more immigrant families from regular or (relatively) poor families around. Like, people with a regular income who are working a regular job, not your average finance expat from an English-speaking country on an all-expenses-paid expat package plus a neat half million bucks per year salary on top.
That said, the non-expat immigrants I know are overwhelmingly from eastern European countries, so I wouldn’t be surprised if the acceptance policy is biased against non-Europeans. You don’t see many average working-class Americans around here unless they married a Swiss person.
DaPorkchop_@lemmy.mlto Ghazi@lemmy.blahaj.zone•Massive Creator Platform Fansly Bans Furries12·6 days agoSadly, Visa and MasterCard are well-established as the ones who get to decide what is and isn’t acceptable online.
Again, that would be TIFF. TIFF images can be encoded either with each line compressed separately or with rectangular tiles compressed separately, and separately compressed blocks can be read and decompressed in parallel. I have some >100GiB TIFFs containing elevation maps for entire countries, and my very old laptop can happily zoom and pan around in them with virtually no delay.
There is a reason why TIFF is one of the most popular formats for raster geographic datasets :)
DaPorkchop_@lemmy.mlto Electric Vehicles@slrpnk.net•China's Electric Vehicle Factories Have Become Tourist Hotspots3·8 days agoI remember touring one of the Mercedes factories in Germany many years ago and it was the coolest fucking thing watching an army of robot arms putting cars together. Of course they’ve since stopped giving tours (and I think closed the factory altogether?), probably because manufacturing in China is cheaper. >:(
DaPorkchop_@lemmy.mlto Are The Straights OK?@lemmy.blahaj.zone•The manosphere is very normal.English4·8 days agoOmegle
DaPorkchop_@lemmy.mlto Ask Lemmy@lemmy.world•What does 1000€ buy you in your favourite hobby?2·8 days ago1/13th of an AMD Epyc 9755
how the hell do you get thighs like that
True, but there are also some legitimate applications for 100s of gigabytes of RAM. I’ve been working on a thing for processing historical OpenStreetMap data and it is quite a few orders of magnitude faster to fill the database by loading the 300GiB or so of point data into memory, sorting it in memory, and then partitioning and compressing it into pre-sorted table files which RocksDB can ingest directly without additional processing. I had to get 24x16GiB of RAM in order to do that, though.