The complaints about yaml’s quirks (no
evaluating to false
, implicit strings, weird number formats, etc.) are valid in theory but I’ve never encountered them causing any real-life issues.
The complaints about yaml’s quirks (no
evaluating to false
, implicit strings, weird number formats, etc.) are valid in theory but I’ve never encountered them causing any real-life issues.
If GRUB is too confusing, just uninstall it? You said you have a UEFI system, you don’t need a bootloader. You can just put the vmlinuz and initramfs onto the ESP and boot into it directly. You can use efibootmgr
to create the boot entry, something like this:
efibootmgr \
--create \
--disk /dev/sda \
--part 1 \
--index 0 \
--label "Void linux" \
--loader /vmlinuz-6.6.52_1 \
--unicode " \
root=PARTLABEL=VOID_ROOT \
rw \
initrd=\\initramfs-6.6.52_1.img \
loglevel=4 \
net.ifnames=0 \
biosdevname=0 \
nowatchdog \
iomem=relaxed \
"
--disk /dev/sda
: What disk is the esp on?--part 1
What partition number (counting from 1) is the esp on?--index 0
At what index in the boot menu should the boot entry appear?--loader
Path to the vmlinuz
file. These are normally in /boot, you have to move it to the esp yourselfroot=PARTLABEL=VOID_ROOT
this is the linux root partiion. I’m using PARTLABEL to identify mine, but you can use pretty much anything that /etc/fstab supportsinitrd=\\initramfs-6.6.52_1.img
Again, you have to move the initramfs file from /boot into the esp. For some reason this uses backslashes, not forward slashes as path separator (double backslashes in this case are to prevent the shell from interpreting it as an escape sequence)Just search for EFISTUB
for more info.
It’s not their official policy, but my personal philosophy with alpine goes like this:
Context:
TLDR:
There is a busybox/musl version of Void as well, but iirc it’s only for use in containers, not a bootable distro. But yeah alpine is also great, I love it as well.
This meme was brought to you by an arch user desperately trying to justify the mental gymnastics of using systemd in their supposedly “keep it simple” distro
EDIT: I joke of course. If arch/systemd works well for you, that’s all that matters!
School. I don’t miss any of it.
You see movies and TV shows romanticising middle/high school a lot, as though it’s all about parties, friends, hanging out, and getting into relationships. It’s not that. Just an endless barrage of busywork with the occasional holiday.
“Well known” is so patronizing. It’s like OP is saying “yeah, everyone knows about this, what are you, some kind of loser?”. Another one of those phrases that immediately discredits whatever allegation is to follow.
I’m not even a .ml user and posts like these are pushing me to switch to their instance lol.
They want a revolution and it’s acceptable if people have to die to achieve it.
Yeah that’s how revolutions work. Because the alternative, at least in theory, is more people dying of poverty, environmental pollution, institutionalized oppression, and other consequences of the current global economic system.
I just have a pair of hiking boots that I wear indoors. I have them laced up very loose so that I can just pull them on without undoing the laces, almost like slippers. They’re very warm and comfy.
Also, my cat doesn’t routinely give misinformation about the capabilities of the products made by their companies.
💀💀💀
I mean that’s just the theoretical power from adding up all of the PSU ratings. Actual power is less, since it’s just the video cards working, optimized for hashes per watt (i.e. not maximum power), and most of the time it would be two or one computer running, since the others would be away from their desk or playing games or doing something important
My old housemates were the opposite lol. We tried saving every penny on heating costs. In the winter, we taped the windows over with cardboard for better insulation (they are old single-pane windows), and fashioned an automatic door closer from an elastic cord to keep the door into the living room shut (our “warm zone”). Instead of using gas heating, we mined ETH with our gaming PC’s (this was before ethereum went proof-of-stake). Between the three of us, the total energy output was close to 2kW, so totally viable for keeping the living room warm. Pretty sure we ended up earning money from heating the house lol.
Figure out a system to prevent overuse
If we’re going down the “government should pay for it” route, then a good solution would be subsidizing thermal insulation. It’s a big investment upfront, but will save a lot of money for both homeowners and the government in the future. Not to mention the obvious ecological benefits.
I still can’t fathom why electron needs to exist when PWA is a thing. Like, almost every app is just plain better running in a normal web browser instead of electron. Webapps never need to be updated manually, electron apps do (e.g. discord). Webapps are sandboxed inside the browser, electron has you running some rando developer’s code natively. With electron, you have to trust the developers of every app to keep the electron version up-to-date to avoid critical bugs (e.g. libwebp). With webapps, if your browser is patched, then every webapp is safe. Electron also suffers from random bugs and regressions that aren’t an issue in most web browsers.
Ecofascism tries to solve the looming problem of mass extinction with… mass extinction.
Isn’t debloated windows just a regular windows install after running https://github.com/Sycnex/Windows10Debloater ? Is there more to it?
If you’re interested in another approach to containerizing GUI applications, also checkout out x11docker. It’s a small independent project maintained by one guy, nothing big like flatpak, but also pretty cool. The name is actually a bit limiting – it supports both docker and podman, and can run wayland apps as well. One of the coolest features, in my opinion, is the ability to run a separate X server inside every sandbox and forward individual windows to the “host” X server. That way you can prevent apps from spying on your keyboard or other apps’ windows.
OK but how can json have a license? I understand a particular json parser having a license, but how can a specification, which contains no code, even be considered “software”?