I’m looking to keep a gnss on me when going on hikes and walks around parks, etc., so that I can upload the traces to OSM. Anyone have any recommendations for a good GNSS for this purpose? I’ve been looking for the most accurate one I can, but is it really worth it to find something as precise as po…
It doesn’t sound like it’s limited to libera.chat.
Thanks to the standard, open protocols that IRC is built on, chat.sr.ht users are able to participate in the established community of IRC networks like Libera Chat.
EDIT: They do, however, appear to recommend it.
The recommended network for SourceHut users is Libera Chat: https://libera.chat
Seeing your up
alias reminded me of a bash function I setup a while ago also called up
. I use it to simulate doing cd ..
n number of times. e.g. up 5
would go up 5 directory levels.
up ()
{
local levels;
local i;
[[ -z "$1" ]] && levels=1 || levels="$1";
for ((i=0; i<levels; i++))
do
cd ../;
done
}
It’s probably the smallest, yet most convenient thing I’ve setup on my machines. Especially so if you work in languages with lots of nested subdirectories (like Java).
Currently, whenever a community is shown (e.g. under a post or on the main page sidebar), it always shows the full title with spaces, etc. Is there a way to toggle a setting somewhere to replace these titles with just the name identifier? I didn’t see anywhere in settings. …
While certainly not recommended, you could always make a cron job that runs pacman --noconfirm -Syu
nightly. Perhaps you could query the Arch news RSS feed to see if something is new, and notify you for a manual upgrade, but still not a recommended pattern.
Thanks for the advice! I’ll try to find something with good battery life.