Speak for yourself, carbon lifeform
( /j )
Speak for yourself, carbon lifeform
( /j )


Jesus christ people in the comments here are pathetic. This clearly has nothing to do with racial slurs or otaku culture. It’s a play on the totally normal english word “tycoon” which just means “very rich businessman” and “mogul” which is a synonym for “magnate”. You can look these up, every half-decent dictionary has these words. They probably changed it because “coon” is a slur for black people and they didn’t want to cause any misunderstandings. If any of this offends you, please, please just step outside, touch some grass, take a deep breath, relax.


I can’t believe nobody has posted this edit yet



Yeah this is the way. Debian stable has outdated packages, debian testing has broken packages. Ubuntu is difficult for beginners because of snap. Linux mint is the perfect just-works debian-based beginner distro. Same for DE: Gnome is hard to use, KDE is bloated and unstable, and XFCE is too minimalist/diy/quirky for beginner users (you need to add a panel applet in order for the volume keys to work? Huh??). Cinnamon is the perfect middle ground between resource usage and features.
Make sure during installation that you create a 4 GB swap partition too
Or at least as large as your RAM if you want to be able to hibernate.
To all the people downvoting: plastering the political compass in contexts where it makes no fucking sense is a kind of ironic humor meant to highlight the reductive nature of judging political ideology by two axes. It’s a shitpost, and a top-tier one at that.
What desktop environment? KDE, right? Just make sure you aren’t using the encFS backend for your vaults, it’s insecure https://defuse.ca/audits/encfs.htm
I don’t use KDE, so they may have already dropped support for encfs, idk. Just wanted to leave a warning for you/anyone else


I think that’s a “no motorbikes” sign. The thick thing above the back wheel is usually how they differentiate motorcycles from bikes on signs.


but I do have encrypted directories for my sensitive data
What do you use for encrypted directories? Ecryptfs?
some people can’t handle that most humans just wanna be friends regardless of gov politics bs
Yes exactly. There are lots of internet weirdos trying to spread culture war nonsense, but if you actually go outside every once in a while, you realize that most people just aren’t like that. I work in a restaurant that has a lot of ukrainian and russian visitors (migrants). At one point, a large group of russians came in for a birthday party, and they asked the owner to put on a playlist of russian music. Like, really cheesy russian pop. After some time, a girl from a smaller table of ukrainians calls me over and complains about the music. I relay it to the owner, and he asks them what they would rather listen to instead. They tell him, and he adds their songs on the queue. The rest of the evening was spent playing and dancing to russian and ukrainian and armenian songs (the owner is armenian, and there were some armenian guests too) and the atmosphere was just generally very chill. Not a single fuck was given about politics that evening.
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.
Can’t believe nobody has linked the relevant xkcd yet

Fake, they’re government surveillance robots /j

Teams is such a confusing app. To start off, what is it meant to be? A frontend for onedrive? A chat app? A videocall app? It’s like microsoft’s attemp to make their own everything app. What was wrong with Skype? Actually, Teams shows up as “skypeforlinux” (complete with a Skype icon) in Pavucontrol, so is the videocalling part of teams just a re-packaged skype? Why does the web version of teams have its own integrated Excel which is slightly different from standard web excel? It feels like the UI was specifically designed to mislead. There is a list of icons on the left that allow you to switch between different contexts in the app. The visual design makes it look like a set of radiobuttons, except clicking on some of them twice does a different action… There is a home screen, and then also a second SUPER HOME screen!? I can’t even get angry it at for being a slow bloated jumble of spyware like the rest of microsoft’s garbage (which it is), I just feel a sense of morbid fascination every time I’m forced to use it. It feels like an AI-generated app from a future where AI is much more capable but still utterly fails at understanding humans. It’s the uncanny valley of user experience.
YAML is good for files that have a very flexible structure or need to define a series of steps. Like github workflows or docker-compose files. For traditional config files with a more or less fixed structure, TOML is better I think
At first I though this was just a regular shitpost but then I saw the screen tear edit lol
On a more serious note, is there a way to actually fix screen tearing under x11? I’ve always thought a compositing manager like xcompmgr would do it, but for me it only makes it worse?
Forgejo is an activitypub-enabled Git forge software, and codeberg is one of the largest forgejo instances.
Tangentially related, but git-annex, and, in particular, its sync subcommand are a great tool for storing files and managing git repos across multiple machines (and even just loose drives) in a “P2P” way without any centralised server