#itnuts
If you thought you were invincible, behold, git reset --hard
in automation scripts will get you!
(luckily I had a plain text output of the git diff
printed in my terminal)
#itnuts
If you thought you were invincible, behold, git reset --hard
in automation scripts will get you!
(luckily I had a plain text output of the git diff
printed in my terminal)
#itnuts
This is the correct way to nest the double quotes in the subshell
a="$(command "$arg")"
Using
$()
creates a new quoting context. Thus, double quotes inside a command substitution are completely independent of those outside it…
https://stackoverflow.com/questions/42652185/how-to-quote-nested-sub-shell-arguments-correctly
#itnuts
inkscape -o result.eps input.svg
#itnuts
this command cleaned 11gb of space for me
flatpak repair --user
https://www.reddit.com/r/flatpak/comments/u32xkb/flatpak_objects_folder_impossibly_large/
#itnuts
If you spawn ssh-agent from current terminal, other terminals don’t pick up the populated env vars. (read more on SO)
Keychain is to the rescue:
www.funtoo.org/Funtoo:Ke…
it originates from Gentoo, which is one love :)
#itnuts
Use prefix view-source:
before the url. This allows to quickly check the contents of curl-to-bash install scripts like this:
view-source:https://pyenv.run/
#itnuts
if you ever wondered how to connect to Wireguard server via SSH:
mkfifo /tmp/fifo
nc -l -p 5679 < /tmp/fifo | nc -u 127.0.0.1 5678 > /tmp/fifo
https://superuser.com/questions/53103/udp-traffic-through-ssh-tunnel
#itnuts
She is 17 and knows how CPUs work: cpu.land , also how networking works: github.com/kognise/a… , plays cello, composes music and piloting aircrafts, and I guess many more…
im-press-ive
#itnuts
Redesigning a website goes beyond applying a fresh coat of CSS: it can (and maybe should) make your project go through an existential crisis. You need to put words on who you are, what you do, for whom, and who you’re talking to. It requires stepping out of your comfort zone but it rewards you with a better compass for your project.