Lol, it took me a while to realize it’s the compiler essentially saying “how high”.
I’ll be honest, I’m just here for the memes.
Lol, it took me a while to realize it’s the compiler essentially saying “how high”.
Did you mean Sozu instead of “Suzu”? I can’t find anything in “Suzu”
To the person who decided I and l should look the same in fonts, I wish you a pleasant eternity in hell.
I wrote a brief manifesto on my hatred of Python because some refactoring ended up having a comma at the end of a line, which screwed me over for about an hour until I happened to noticed it.
My mama was fat, but now she is exfat
Correct me if I’m wrong, but it’s not enough to delete the files in the commit, unless you’re ok with Git tracking the large amount of data that was previously committed. Your git clones will be long, my friend
If we’re gonna have a dystopian future, then damn it, it’s gonna be memory safe.
Shouldn’t it have its own time system? And have its own time zones? You can’t give the moon its own single time zone (unless you’re into the idea of a single universal time zone).
Do HDDs noticably degrade when powered off? I’m thinking about getting one of these for cold storage backups. Also, how much of an impact does repeated power cycling have on lifespan?
I’ve been interested in doing this, but I can’t tell why I need to login to Beeper in order to self host. I noticed their previous self-host solution did not require that.
Because of that login step, I decided to look into this other repo which uses Ansible to deploy a Matrix homeserver and the same bridges that Beeper uses. I haven’t finished it yet since there’s a lot of config and choices to make, but it seems like it’ll serve the same end goal.
Edit: lol, maybe if I read the intro, I’ll get my answer.
You can connect any† standard Matrix application service to your Beeper account without having to self-host a whole Matrix homeserver.
Still might go with the second option so that I don’t rely on their cloud services.
I just started using Backblaze B2, switching from AWS S3. I use it through Rclone to encrypt everything before I upload it. Only $6/TB/mo and it only charges what you use. You can download up to 3x your data stored per month for free, so if you ever decide to move or you need to restore a backup, you don’t have to pay egress costs. It was the cheapest service I could find, but there may be others.
You can set price limits on your account to ensure you don’t go over too. It will alert you when you approach the limit. There are some minor costs, like pinging the API, but they are free up to a reasonable amount.
Too complicated. Just enter a negative number.
Really just an English problem. Read it as it is a subsystem by Windows for Linux.
But yeah, LSW would’ve been more clear. Plus, it’s almost LSD.
In simple terms, it’s like a VM for an application. You set it up with the right dependencies and your application will “just work” on it, without having to deal with other applications existing alongside it.
What makes it better than a VM is that it is much faster. It interfaces with kernel features that help isolate the processes and files from the rest of the system. It is not virtualization, rather it is namespacing.
Docker also provides a bunch of tools that help with creating this environment automatically and allowing for some escaping into the host, such as binding ports and sharing data with the host’s file system.
Once this environment is created, it can be shared with uses as a single downloadable bundle, called an image. This makes it really easy to download and run an application without having to prepare your system with the right dependencies and files.
Nothing is free though, and the cost here is more disk space and some performance overhead, although it is close to native speed.
For those unaware, the 1 means you’re setting the “sticky” bit
I mean at this point, people use that phrase themselves, so I don’t think it really makes fun of them anymore.
I use EndeavorOS, btw
It actually is possible to segfault in safe Rust, although it is considered a bug. Proofs of concept are shown in this cve-rs crate.
If you want an explanation of why this happens, I recommend this video: https://youtu.be/vfMpIsJwpjU
I use Home Assistant for controlling my smart lights. They do support Docker, but I installed it as a VM with KVM. You get more features with it, such as add-ons. But you should definitely look into your options. They have a diagram on this page.
90% of my work is done in WSL anyways… I would much rather have KDE as my DE than Windows 11. Please Microsoft, if you love Linux so much now, port Office to it, and maybe my employer would be ok with it.
Back when I was still doing JS stuff, switching to TS was so good for the developer experience. Yeah, there’s still JS jank, and types are not validated at runtime, which was a pain in the backend (pun intended), but still I much prefer it to vanilla JS