

The Xbox One controller is a bit goofy. I noticed the newest firmware actually makes it misbehave with the usual stack under linux. Haven’t had the time to debug since my controller was on it’s last legs anyway. Try rolling it back a release or 2.


The Xbox One controller is a bit goofy. I noticed the newest firmware actually makes it misbehave with the usual stack under linux. Haven’t had the time to debug since my controller was on it’s last legs anyway. Try rolling it back a release or 2.


Eh, that may just promote a lot of “What are your opinions about x” posts where the first comment is the ad. Suppose it’s an open call to list alternatives though.


Note: BTRFS defrag will result in a different copy at the end of the day. If you’re using snapshots this will lead to increased utilization.


I’m going to guess it’s because of some linux native things. I remember source engine games used to have issues with non-ext4 filesystems (or maybe it was just workshop stuff as I still have left 4 dead 2 on a separate disk), but I’m pretty sure that’s been fixed.
Been running BTRFS and XFS partitions for years, so it’s certainly a rare issue.


Out of curiosity, how?
< urls.txt while read -r url; ...
Is a syntax error.
while read -r url < urls.txt; ...
Result in an infinite loop.


You can also avoid cat since you aren’t actually concatenating files (depending on file size this can be much faster):
while read -r url; do echo "download $url"; done < urls.txt


Legit thought it was just going to be a wall of text editors and nothing else
I suppose I could have phrased that better. The registers themselves correspond to particular applications/stages, but the values store in those registers should change based on how the application/stage was loaded. Switch the order or inject a new binary and the hash from that stage on should change.
Any changes in the boot process should change various PCR registers. https://wiki.archlinux.org/title/Trusted_Platform_Module#Accessing_PCR_registers


If I resort to using a Mac I want someone to put me out of my misery.
There was a rather famous piece of software at my last job. Guy writing it wanted job security. A lot of the core variables of the application were named based on the sounds a helicopter made. God damn onomatopoeia variables. Pretty sure that shit is still in use somewhere.


There were old wrappers that emulated sendmail but reformatted the message for use with gotify and such


Well, I wouldn’t go that far. Let’s not forget Nextcloud started as a fork for the same reason. The permissive license doesn’t stop us from keeping it alive, but it is something to be cautious of.


I’m curious about opencloud. It’s flashy, uses go, and has everything that I’m actively using in Nextcloud. The license does make me a little cautious about it though. Apache v2 on the server side is unusually permissive. AGPLv3 on the web ui is cool, but it’s also not really helpful if you’re not required to publish server changes.
deleted by creator


It does, but it’s disabled by default. It’s explicitly for docker compatibility though, not a core part of the application.
You shouldn’t need to use the aur unless cachy is restricting your repo access. It’s all in arch extras.
If the initramfs is using systemd, it’s actually able to look up the root (by label) and ESP partitions (by guid) automatically. GRUB can also detect the ESP and enumerate UKI images. There’s still some assumptions being made, but it’s cleaner than ever.