

Finishing a Dark Souls game.
And finishing a Dark Souls game.
I take my shitposts very seriously.


Finishing a Dark Souls game.
And finishing a Dark Souls game.
The archaeologically appropriate description: “Object of worship for fertility rituals.”
The object: a huge thick veiny dildo.


You should also look at which processes use the largest amount of memory. ZFS is weird and might allocate its cache memory as “used” instead of “cached”. See here to set its limits: https://forum.proxmox.com/threads/limit-zfs-memory.140803/


The most useful is probably cat /proc/meminfo. The first couple of lines tell you everything you need to know.
MemTotal is the total useful memory.MemFree is how much memory is not used by anything.Cached is memory used by various caches, MemAvailable is how much memory can be allocated, i.e. MemFree + Cached.Some people, for reasons I can only speculate on, don’t like speaking in first person singular. In most cases that I’ve seen, they use “we”. I don’t necessarily agree with the practice from a linguistic perspective, the English language is already a garbage fire as it is without introducing more ambivalent speech… but then I also want to go back to using “thou” for second person singular, so I’m probably not qualified to speak on the matter.
“It’s just one goto, what’s the worst that could happen?”
Even if Galaxy is running under Wine:
Besides, a Linux-native port doesn’t need to package anything. It can simply mark Wine/Proton and various compatibility solutions as dependencies. Lutris, for example, is still a great utility even if it doesn’t use the packaged Wine versions: all it really needs to do is execute some program in the correct runtime environment with the correct arguments.
If you open the GOG website inside Heroic, it acts as an affiliate link and the HGL team gets a revenue split. An official partnership would still be better, but it’s something.
(edit) Further details here: https://www.gog.com/forum/general/support_heroic_launcher/page1
And Heroic’s GOG affiliate link: https://heroicgameslauncher.com/donate (it uses Adtraction and might trigger some ad blockers)


Machinist’s levels usually have adjustment screws on each end: https://www.ebay.com/itm/406571322248
Here’s one in use: https://www.youtube.com/watch?v=ue5W2fwKb4s
Two-day suspension.
“Everything is a file” means that many of the system’s components are represented as abstractions in the filesystem. It’s simply an API that allows reading from and writing to it by integrating into the hierarchical file structure.
If you take a look inside /sys, you will find a fuckton of files, but they don’t represent data stored on a mass storage medium. Instead, the directory contains a mounted sysfs filesystem that contains file-like representations of various parts and properties of the system. For example, you can read them like a file by running cat /sys/block/sda/queue/rotational to check if the sda block device is a spinning disk (1) or solid-state storage (0). Or you can write to them like a file by running echo 1 > /sys/block/sda/devices/delete to command sda’s driver to detach the device. Similarly, /proc contains a mounted procfs filesystem that presents information about running processes as file-like entries; /dev contains a mounted devfs that points to various devices; and /tmp and /run contain tmpfs mounts for temporary storage in volatile memory (RAM or swap).
Windows uses various other APIs (like the Component Object Model and others) to accomplish the same that are not necessarily tied into the filesystem.
It follows the same convention as most programming languages that expose the argument list. Python’s sys.argv has the program name at index 0 and the first argument at index 1. C’s char **argv does the same: index 0 is the program name, index 1 is the first argument. So it stands to reason that Zsh’s $0 should be the program name and $1 should be the first argument…
…which, by the way, is exactly what Bash does as well.
When someone kicks you in the nuts, I hope you remember that it’s actually your fault for having nuts in the first place and not avoiding people who possess legs capable of kicking.
And that means they don’t get to enjoy it if they started watching it later? This post has no value beyond ruining the suspense.
One day time-out. Both of you. If you want to toss shit at each other, take it to Twitter.
That isn’t incorrect, but it’s not as important as people make it out to be. Linux isn’t certified as POSIX-conformant either.
People are way too stuck on POSIX regarding Fish specifically, but in shell scripting, POSIX compliance boils down to “can it run a pure sh script”. Bash is compliant. Zsh is partially compliant and needs to set an option to emulate sh. Fish uses a different syntax and is not compliant; if that is a problem, don’t execute sh scripts in Fish.
POSIX compliance for shell scripts was important in the 80s and 90s when the #! directive wasn’t as commonly implemented and every script might be executed by the user’s $SHELL instead. That is no longer the case as virtually every Unix-like system’s program loader supports #!.
DDG gets its results from other search engines. Bing is one of them.
There was also a big thing about DDG allegedly selling user data to Microsoft, which the living brain donors of 4chan probably interpreted as DDG being a different front-end to Bing.