Recent Posts

raspi: change ssh login banner

less than 1 minute read

you need to edit the file: /etc/motd as well as the sshd config: /etc/ssh/sshd_config: Change the setting PrintLastLog to "no", this will disable the "Last l...

raspi: automatically spin external hdd down

1 minute read

the raspberry pi cannot spin external hard drives down. the program hdparm worked perfectly for me. i followed this guide (htpcguides.com). just some slight ...

raspi: install torrent server

less than 1 minute read

the raspberry pi is a perfect device for a 24/7 torrent server. one can install the torrent server: deluge. i followed this guide (howtogeek.com) to install ...

git ignore files (especially global)

less than 1 minute read

one can create gitignore files for specific repos and also globally. github offers gitignore templates for lots of different things: frameworks, languages, e...

git config

less than 1 minute read

edit the file: $HOME/.gitconfig [code language="bash"] [alias] co = checkout ci = commit st = status br = branch hist = log --pretty=format:\"%h %ad | %...