Nah. Potatoes, even apples, or bust
- 0 Posts
- 13 Comments
canaryWart@programming.devto
Linux@lemmy.ml•Whats the deal with Omarchy linux? Hype or it is actually that good?
6·2 days agoAs with all things arch based: void better
Hormonal Replacement Therapy
I use an fzf based script that queries for updates and lets me choose what to install.
If you use xbps, or are just curious:
::: xu #!/bin/env sh
self=“$(basename “$0”)”
error() { printf ‘%s:’ “$self” >&2 # shellcheck disable=SC2068 printf ’ %s’ $@ >&2 printf ‘\n’ >&2 }
fatal() { error “$@” exit 1 }
if [ -x “$(command -v sk)” ]; then finder=sk elif [ -x “$(command -v fzf)” ]; then finder=fzf else echo “neither fzf or sk are installed” >&2 exit 1 fi
tmp=“$(mktemp)” || fatal “couldn’t source bindings” grep ‘^export’ “$DOTFILES/.zshenv” | grep -E ‘FZF|SKIM’ >“$tmp” . “$tmp” rm “$tmp”
shellcheck disable=SC2046
choices=“$(xbps-install -nSu | cut -f1 -d’ ’ | sed ‘s/-[^-]*$//g’ | $finder | tr ‘\n’ ’ ')”
[ -n “$choices” ] || exit
guard=pkexec command -v “$guard” >/dev/null 2>/dev/null || guard=sudo
shellcheck disable=SC2086
while ! $guard xbps-install -Syu $choices; do :; done
:::
canaryWart@programming.devto
Technology@lemmy.world•Apple One and Apple TV subscription prices increase by up to 20 percentEnglish
2·2 days agoThe concern isn’t that corporations deserve protection. It’s that as thesr platforms gain notoriety, those corporations lash out and force them to cease operation, which is fundamentally inconvenient to pirates.
canaryWart@programming.devto
Programmer Humor@programming.dev•Me when I enter any website in 2026
5·2 days agoCan anybody break this one down for an idiot like me?
canaryWart@programming.devto
Privacy@programming.dev•You should stop using Meta (Facebook) products at all costs.
1·3 days agoI totally agree, but I din’t think this article is going to help much. Fingers crossed though.
canaryWart@programming.devto
Git@programming.dev•Why I still hand write my commit messages
1·3 days agoRemoved by mod
canaryWart@programming.devto
Golang@programming.dev•Go has the highest salary premium of any programming language in the US job postings I analyzed
1·3 days agoWhat’s a salary’s premium?
canaryWart@programming.devto
Golang@programming.dev•Quiz: can you spot an error in Go code?
1·3 days agoFine, but I’m getting them all wrong on purpose.
canaryWart@programming.devto
Privacy@programming.dev•US Politician on privacy rights: “You can’t have your privacy violated if you don’t know your privacy was violated”
3·3 days agoI wonder how much they pay him to spew this nonsense?
canaryWart@programming.devto
linux4noobs@programming.dev•[Nixos, Nvidia card, Gnome] After waking from sleep, some of my windows are often glitchy
3·3 days agoSorry, can’t help, but it’d be so cool to do this on purpose and unscramble on hover



Neither