101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

505
active users

#cli

3 posts3 participants0 posts today

With so many SSH keys it can be hard to know which pubkey (as in the file, not contents) belongs to which SSH agent, especially if not created with a trailing comment (which has opsec value btw).

Drop this oneliner into your ~/.bashrc (have not tested other $SHELL):

```
whichkey() { c="cut -d ' ' -f 2"; k=$(ssh-add -L | eval $c); for i in $(ls ~/.ssh/*.pub); do j=$(cat $i | eval $c); if [[ $k == $j ]]; then echo $i; fi; done; }
```

`source ~/.bashrc` then:

```
whichkey
```
#linux #unix #cli

Replied in thread

@wolf480pl OFC limiting the scope of a project is important.

  • I.e. "I don't want to do a #GUI with like a modern desktop for @OS1337 because that'll exceed the desired complexity and sticking to #TUI / #CLI is the best I want to do." is such a scope.

OFC there are reasons why #bash is bash and why i.e. #toybox will most likely only implement a tiny subset of bash in toysh and why @landley hasn't implemented support for .bash_aliases yet [if he'd ever do that considering there are more pressing TODOs than "some hobbyist doodler's wish"...

  • Either way I don't fault either #developers for that: I don't pay them for their work so I don't get to tell them what they should do! In fact I'm grateful for their work and that they decided to release it and license it as #FLOSS and not #CCSS...
landley.netToybox 0.8.12 command help

I occasionally test my home page in a text browser. Lynx was my first web browsing experience, way back in 1995 (through the local library). I started prepending "IMAGE" to the alt text so it was clear what was being described.

Not ideal: the light/dark mode switch renders as a nonsense string with a checkbox toggle (not pictured). Otherwise, it's very straightforward and loads quickly and happily.

venya.soundslike.pro