

Let’s hope it’s not a repeat of AKG’s story.
Let’s hope it’s not a repeat of AKG’s story.
Did you waive your rights to the code anywhere? If not then it’s still your code and they used it without obtaining the rights to using it - depending on your jurisdiction ofc.
The whole deployment is done via ansible, so the ansible source is my documentation.
postmaster@domain
is always fun
Das endet dann für alle beschissen, siehe Newag.
I think I remember some weird power bugs in the 2700x, though I never encountered them myself. The best thing I could find was this reddit thread https://www.reddit.com/r/Amd/comments/apw8im/ryzen_freezes_in_linux_even_if_linux_is_in_vm/
Do you still have the live iso you used to install arch? Does it work? Do other distros work (just the live systems are enough)?
Edit:
Some more things: Did you try disconnecting the pc from mains, pressing the power button (to discharge all capacitors) and reconnecting. Reseat the button cell for the bios?
Docker container can’t read a bind mount. Permission issue? No, it’s SELinux, again. And I didn’t even install it explicitly, it just got pulled in by another package.
And to be clear, the issue isn’t SELinux really, but unexpected non standard behaviour which I never asked for (never explicitly installed it).
I already did that. It doesn’t change the fact, that a normal user will not do that and google will just not tell you straight up.
I have used the page linked to in the comments. But that just said that they received my request - no indication if I had an affected device or not. Also for my jurisdiction I cannot get the free battery replacement, just the money or store credit.
I still have to hear back from them.
Seems like I have an affected device. No thanks to google for helping me figure that out. Their useless page shows no information regarding that. Had to look at the serial number of the battery: sudo cat /sys/class/power_supply/battery/serial_number
. Which contains the string from the mastodon post.
Now, I have a custom ROM, so that means I won’t suffer degraded battery capacity, it just might be dangerous to continue to use my phone.
I just keep my history file around and have set it up to never truncate. Then grep
or ^R
.
Something like that should do it:
i = ~((~i + 1) + ~0) + 1
Nein, eher so braun-türkis.
Not yet, though thats a feature worth looking at. I’m thinking that it should be collections instead of playlists. If you add 3 shows to a playlist only the episodes will appear there, while the collection will only show the tv show (or season, whatever you added).
Ah, should probably make that more clear. Everything can be done in the settings of the plugin.
It just manages a native jellyfin playlist, so that should work just fine.
Yes, but it’s incompatible with the way I handle access control. I think I did it with Remote User authentication, which breaks all the login mechanisms of diverse apps, even though it’s officially supported by the projects. That’s why I only choose projects where the frontend is a PWA or they support oidc.
So I just installed the PWA, which works great.
Ja, das aber war eher so gemeint, dass es total unerwartet ist.
def is_even(n: int) -> bool: if n < 0: return is_even(-n) r = True for _ in range(n): r = not r return r