In his newest (and worst) How Do You Do Fellow Kids moment, Mark Zuckerberg launches the Poob service, accessible exclusively through the Metaverse. What does it do? Fucked if we know.
I take my shitposts very seriously.
- 3 Posts
- 278 Comments
rtxn@lemmy.worldMto linuxmemes@lemmy.world•What's your mnemonic for pwd?- OMG it means print working directory. My mind instantly goes to password every time. I had to reach puddle wuv dud levels of autism before thinking otherwise. I shame my12·9 days agoadduser
is an interactive wrapper foruseradd
. It can, for example, prompt the user to set a password rather than executepasswd
separately. Very useful if you just want to manage a user without reading throughuseradd
’s command line options, then runningusermod
because you forgot to set something.It doesn’t excuse the bad naming, I’d rather have something like
useradd --interactive
, but it’s worth remembering.
I wish my one bad experience in 2015 had been the absolute last time Pulse failed for anyone ever. Alas, time doesn’t work that way, and Pulse remained failure-prone for years after my encounter with it.
Extremely frequently. Digital musical instruments generally don’t output production quality sounds – they output MIDI data that describes what note is being played, and an audio synthesizer device or software interprets it and generates the audio data.
Very mature. If you’re going to act like a toddler, I’ll put you in the timeout box.
For the record, your reply to my comment had no bearing on my decision, and I’ll preserve the entire comment chain in case I find myself on YPTB.
Very mature. If you’re going to act like a toddler, I’ll put you in the timeout box.
Memes are not necessarily meant to be funny. They’re meant to represent a common experience within a group. The horrid failure rate of PulseAudio just a couple years ago fits that definition perfectly, and in fact it’s why I gave up on Ubuntu 14.04 in 2015.
It should be Neovim and Lua. Nobody should be subjected to the curse and torment of writing Elisp.
I think you’re confusing it with Manjaro, which has had several.
Proxmox is a great starting point. I use it in my home server and at work. It’s built on Debian, with a web interface to manage your virtual machines and containers, the virtual network (trivial unless you need advanced features), virtual disks, and installer images. There are advanced options like clustering and high availability, but you really don’t have to interact with those unless you need them.
Not even the man RMS himself uses GNU/Hurd or Guix, which is hilarious.
rtxn@lemmy.worldMto linuxmemes@lemmy.world•After 2 years on Lemmy, I finally installed it this weekend.6·20 days agoYou should check out the
tldr
program. It’s a community-driven quick reference tool that lists common practical examples for commands.
Windows devs used to have fun.
rtxn@lemmy.worldto Selfhosted@lemmy.world•Why are anime catgirls blocking my access to the Linux kernel?English382·26 days agoNew developments: just a few hours before I post this comment, The Register posted an article about AI crawler traffic. https://www.theregister.com/2025/08/21/ai_crawler_traffic/
Anubis’ developer was interviewed and they posted the responses on their website: https://xeiaso.net/notes/2025/el-reg-responses/
In particular:
Fastly’s claims that 80% of bot traffic is now AI crawlers
In some cases for open source projects, we’ve seen upwards of 95% of traffic being AI crawlers. For one, deploying Anubis almost instantly caused server load to crater by so much that it made them think they accidentally took their site offline. One of my customers had their power bills drop by a significant fraction after deploying Anubis. It’s nuts.
So, yeah. If we believe Xe, OOP’s article is complete hogwash.
rtxn@lemmy.worldto Selfhosted@lemmy.world•Why are anime catgirls blocking my access to the Linux kernel?English23·26 days agoThat’s why the developer is working on a better detection mechanism. https://xeiaso.net/blog/2025/avoiding-becoming-peg-dependency/
rtxn@lemmy.worldto Selfhosted@lemmy.world•Why are anime catgirls blocking my access to the Linux kernel?English3·26 days agoWith how much authority you wrote with before, I thought you’d be able to grasp the concept. I’m sorry I assumed better.
rtxn@lemmy.worldto Selfhosted@lemmy.world•Why are anime catgirls blocking my access to the Linux kernel?English4·26 days agoTHEN (and this is the part you don’t seem to understand) the client process has to waste time solving the challenge, which is, by the way, orders of magnitudes lighter on the server than serving the actual meaningful content, or cancel the request. If a new request is sent during that time, it will still have to waste time solving the challenge. The scraper will get through eventually, but the challenge delays the response and reduces the load on the server because while the scrapers are busy computing, it doesn’t have to serve meaningful content to them.
rtxn@lemmy.worldto Selfhosted@lemmy.world•Why are anime catgirls blocking my access to the Linux kernel?English6·26 days agoIt’s not client-side because validation happens on the server side. The content won’t be displayed until and unless the server receives a valid response, and the challenge is formulated in such a way that calculating a valid answer will always take a long time. It can’t be spoofed because the server will know that the answer is bullshit. In my example, the server will know that the prime factors returned by the client are wrong because their product won’t be equal to the original semiprime. Delegating to a sub-process won’t work either, because what’s the parent process supposed to do? Move on to another piece of content that is also protected by Anubis?
The point is to waste the client’s time and thus reduce the number of requests the server has to handle, not to prevent scraping altogether.
Linux has two different kinds of “used” memory. One is memory allocated for/by running processes that cannot be reclaimed or reallocated to another process. This memory is unavailable. The other kind is memory used for caching (ZFS, write-back cache, etc) that can be reclaimed and allocated for other things as needed. Memory that is not allocated in any way is free. Memory that is either free or allocated to cache is available.
It looks like
htop
only shows unavailable memory as “used”, while proxmox shows the sum of unavailable and cached memory. Proxmox “uses” 11 GB, but it’s not running out of memory because most of it is “available”.