I hereby claim:
- I am draptik on github.
- I am draptik (https://keybase.io/draptik) on keybase.
- I have a public key whose fingerprint is 10A4 B0E4 277F CD15 9F08 845D B063 1437 5124 4030
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # pacman -S python-virtualenvwrapper | |
| $ echo 'WORKON_HOME=$HOME/.virtualenvs' >> ~/.bashrc | |
| $ . ~/.bashrc | |
| $ mkdir -p $WORKON_HOME | |
| $ echo 'source /usr/bin/virtualenvwrapper.sh' > ~/.bashrc | |
| $ . ~/.bashrc | |
| $ mkvirtualenv -p python2.7 --distribute blog_env |
| #!/bin/bash | |
| # | |
| # Setup: | |
| # | |
| # +--------+ +-----+ | |
| # | MyData | | HDD | | |
| # | | (1) rdiff-backup | | | |
| # | | ------------------> | | | |
| # | | | | +-----+ | |
| # | | (2) duplicity | | (3) rsync | USB | |
| # Idea from: | |
| # | |
| # https://bbs.archlinux.org/viewtopic.php?pid=1068202 | |
| # Colors https://wiki.archlinux.org/index.php/Color_Bash_Prompt | |
| # Note: We require escape '\[' and '\]' around the ansi escapes | |
| # (i.e. '\e[0m')! Otherwise the shell does not know that the ansi | |
| # escapes should be excluded from the line wrapping calculation. | |
| # | |
| # See |