See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| #!/bin/bash | |
| # Set your target branch | |
| BRANCH="1.14.2" | |
| exec > >(tee build-gstreamer.log) | |
| exec 2>&1 | |
| [ ! -d orc ] && git clone git://anongit.freedesktop.org/git/gstreamer/orc | |
| [ ! -d gstreamer ] && git clone git://anongit.freedesktop.org/git/gstreamer/gstreamer | 
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
| ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/id_rsa | |
| ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/github_rsa | |
| ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/mozilla_rsa | 
| #!/usr/bin/env bash | |
| # Things to do after install ArchLinux (2012.12.01) | |
| pacman --noconfirm -S sudo | |
| # Enabled archlinuxfr repo | |
| arch=$(uname -m) | |
| sudo cp /etc/pacman.conf /etc/pacman.conf.bak | |
| echo "" >> /etc/pacman.conf | |
| echo "[archlinuxfr]" >> /etc/pacman.conf |