Spyke

Replies

Comment on

[Question] Does anyone run their own email server?

I used to run an OpenBSD mailserver for my personal email address for a few years. It wasn't that difficult to setup, more tedious and annoying than anything. I stopped doing it when I started searching for a job as I was too paranoid about my emails getting rejected without me knowing about it. I don't send many emails, but when I do send them I want to know they are getting to where they need to go. I know I was never blocked by gmail, but I couldn't be sure about other providers.

Now I just use my domain name as a catchall on mailbox.org and access it using offlineimap. All my emails are saved and backed up, so switching providers is no problem at all.

Comment on

If I gave you $1 million in cash to spend in 1 hour, after which the money will disappear, what would you buy?

What does it mean for the money to disappear? Can I just not spend anymore or would it disappear from whoever I bought from. If the latter, I couldn't in good conscience buy anything. I wouldn't mind if say Walmart lost some profit, but thousands of dollars worth of cash suddenly going missing would cause people to lose their jobs.

If the former, I'd buy as much electronics as I could from Walmart and then buy a bunch of scratch offs and lottery tickets. Those are the only two placed open around here at 11pm.

linux

Comment on

ELI5: What is an immutable OS, in practical terms?

The most basic benefit of immutable OSes like Fedora Silverblue is that you are prevented from messing up your system enough that you are unable to boot into it and fix it. This isn't strictly true, you can always go out of your way to screw things up (say deleting required partitions), but in normal usage you will always have a backup to boot and fix whatever you messed up. It also makes it extremely easy to undo things even if they aren't errors.

It's possible to do this without immutable OSes using btrfs snapshots before you change anything system-wide, in fact I believe MicroOS uses btrfs snapshots for their immutable system, but that adds cognitive load as it requires you to remember to create a snapshot. OpenSUSE Tumbleweed provides snapshotting automatically and adds entries to the bootloader for previous iterations, but it isn't immutable because you can still go and modify your root partition without taking a snapshot. MicroOS, however, has a read-only root partition so it becomes a lot more difficult to make a change without a snapshot. You can still do it, but you have to go out of your way to do it.

You reached the end