

Well to be fair, atheism and pagan also are assigned to non-Linux OSes here.


Well to be fair, atheism and pagan also are assigned to non-Linux OSes here.
Even counting all who voted for them, as the voter turnout was 64%. I’m not sure how much of the population 100% would be with that voter registration system the US has (is 100% all registered voters or all that could in theory register), but even if 100% was all the population, it would only be around 35% MAGA voters
The artist David Revoy has a home page with all of them: https://www.peppercarrot.com/en/webcomics/miniFantasyTheater.html
You can also find Pepper & Carrot there, a comic with a larger format and longer episodes.
He uses only open source software and also publishes the Krita source files for every comic.
A lot of Dockerfiles start with installing dependencies via the base image’s package manager, without specifying exact versions (which isn’t always possible, as most distros don’t keep all history of all packages in their repos). So all your dependencies may have different versions, when you build again.
I thought the default interactive shell is still bash on Ubuntu, dash is only used for /bin/sh, isn’t it? At least bash is also installed by default, as there are so many scripts that wouldn’t run otherwise
I switched to zsh at a time where completion for commands parameters except file paths in bash wasn’t really a thing, you could add some with a script, but they didn’t work well. I’m sure the situation has improved by now, but someone told me recently, there are still no descriptions for the completions. I find it very helpful and it saves me opening a man page a lot of times. For example, typing grep -<Tab> gives me this:

And now I’m so used to many little features (mostly around the syntax) that wouldn’t be a reason to switch on their own, that I find bash cumbersome to use.
Isn’t sha512sum a regular binary, that should not depend on the shell at all? What does nushell do that something like that can break o.O


I’m not sure if supports encryption though, which is probably where a dedicated server would be useful.
Well, ideally you encrypt your data before transferring, so the provider never sees your data. I’m using a storagebox to backup btrfs incremental snapshots (using btrbk) and just AES encrypt them locally before sending them over, so I don’t care if the storagebox itself is encrypted.
If your bulbs use Bluetooth and your phone is an android, that’s because on Android you need location permission to scan for Bluetooth devices (as known Bluetooth beacons in range could give away your location). It’s still bad, because you can’t know if the app uses that permission for anything else.
I used fzf before atuin, and it works pretty similar, but atuin has a few additional features, as it tracks more information than the normal shell history. For example, you can also search only for commands that you executed in the current directory (great for stuff that is project specific). Or, if you use the history syncing feature, you can toggle search for commands you executed on either any or only the current machine.
In zsh, you can configure the completion to also show descriptions.
Thank you, from a quick glance it seems to be able to do everything I need. I will try it for my next load test.
The only thing I still use Postman for at work is when running API performance benchmarks, as I wasn’t yet motivated enough to write a curl wrapper to do such tests and plot the results. Especially when doing things like ramp up etc. it becomes more than a simple for-loop.
Can someone recommend an existing command line tool for that?
Also, even zsh scripts don’t read your .zshrc by default.
The author seems to be Ellis Rosen (I searched based on the signature in the comic)
Do most packages usually have a manual entry ?
Usually there are manual pages for commands, for libraries and drivers like libwacom it is less common, and they are not necessarily the same as the package name. Some packages also just have a Readme file or an HTML manual installed under /usr/share/doc or similar.
When unsure, I often just check the list of files that belong to a package, most package managers can do it. E.g. on Debian-based (i.e. apt using) distros, dpkg -L $packagename will list it, in arch based distros it is pacman -Ql $packagename.


In the EU, cars have to be equipped with automatic emergency call systems since 2018. So probably since then most brands will have had it, as they are required to have cell connection hardware anyway.
Well, having a domain is basically documenting your IP publicly. It’s not that risky.
I was in the same camp when I had to use Python on the job, but when Scala introduced (optional) significant whitespace, I actually grew to like it a lot. I think the important difference to Python is, that with a good type system and compile time checks a whitespace error is basically always a compile time error in Scala. That’s also for me it’s worse in a configuration language (unless you have a schema file for validation, which is rarely the case sadly)