furikuri

joined 1 year ago
[–] furikuri@programming.dev 6 points 1 month ago (1 children)

Arch does tend to keep packages as close to upstream as possible, which can be both a good and bad thing. Sway not binding to graphical-session.target by default is a little strange for example. Other distros also save a first-time user a great deal of configuration for things they probably don't care about as well. Going through Fedora's install and finding out that disk encryption and SELinux were configured OOTB was very nice to see personally. On the other hand Arch's installation (w/o archinstall) has you choosing a bootloader, audio server, display manager, etc. Nothing arduous and I like it, but definitely not for everyone

This is all eliminated by spinoffs of course, but even there users have the option to run random scripts/AUR packages without vetting them. Also doesn't help that the most popular Arch-based distro for a while (Manjaro) was pretty flaky and generally incompatible with the AUR (despite saying otherwise), leading to many people saying "that's just Arch" and swearing off the parent project as well

[–] furikuri@programming.dev 3 points 3 months ago* (last edited 3 months ago)

If I had to guess I'd say that their other project, Sponserblock, got a little bit more popular than they were expecting and this is just to help alleviate server costs. Most of the API endpoints don't require any auth at all (the single one that does accepts a random UUID), so any checks must be locally done (maybe system time?). The extension and server back-end are licensed under GPLv3 and AGPL respectively and are also entirely self-hostable, so the code is out there to verify if you wish

[–] furikuri@programming.dev 3 points 3 months ago

Additionally if you're looking for it to start on boot without logging in, you might find the loginctl enable-linger command to be of use. Maybe along with a Restart=on-failure policy in the service file if this is for a headless unit or something

[–] furikuri@programming.dev 2 points 1 year ago

They're talking about the Hogwarts game

[–] furikuri@programming.dev 2 points 1 year ago

An amendment to the popular expression, "All [personal] information should be free", I suppose

[–] furikuri@programming.dev 3 points 1 year ago

https://lemmy.ca/comment/2777069

After finishing her PhD, also in archaeology, she decided to follow her passion for books, and pursue a career in publishing. She worked for over 15 years in scholarly and educational book publishing, commissioning and project-managing a wide range of non-fiction titles, producing ebooks and implementing accessible publishing practices.

[–] furikuri@programming.dev 1 points 1 year ago

Agreed, fzf (and similar fuzzy finders) have been a game-changer with regards to the way in which I navigate the shell. Add in a couple of one-liners and I'm never more than a second away from any nested directory

Here are some of the most used aliases in my configs if anyone would like to try it out

Note that they use fd and exa but they can easily be swapped out for find and ls if those aren't available on your system (which would allow for shorter aliases since they're the fzf defaults IIRC)

alias update-cdd='fd -Ha -td -d1 -E "\.config" -E "\.local" "^\." ~ > ~/.cddignore'

alias cdd='cd "$(fd -H -td --ignore-file ~/.cddignore . ~ | fzf --preview "exa -lF --no-permissions {}" --tiebreak=length,end,begin --preview-window=up,20%)"'

alias cdf='cd "$(fd -H -tf --ignore-file ~/.cddignore . ~ | fzf --preview "bat --style=header-filename,header-filesize -r 40: --color=always {}" --tiebreak=length,end,begin --preview-window=up,20% | xargs dirname)"'