#F3E3CD,#F3E3CD,#F3951D,#DA3D61,#F26328,#183E1C,#DA3D61,#F26328
#222222,#2F2F2F,#F92772,#FFFFFF,#A6E22D,#FFFFFF,#66D9EF,#BE84F2
#86A34E,#94AF63,#FFFFFF,#6D8B42,#94AF63,#FFFFFF,#FFB10A,#DFA044
| # Usage: nvmi v6.0.1 (will install specified version) | |
| # Usage: nvmi_latest (will install latest node version) | |
| # these functions will replace the current 'default' version known in the shell. | |
| # to install a node version next to your current 'default' just use nvm install vX.X.X | |
| function nvmi() { | |
| CURRENT=$(node -v) | |
| nvm install $1 --reinstall-packages-from=$CURRENT |
| function _audio() { | |
| case $1 in | |
| --mp3|*) local CODEC=libmp3lame;local FILENAME=mp3;; | |
| --aac) local CODEC=libvo_aacenc;local FILENAME=aac;; | |
| esac | |
| case $2 in | |
| 256|*) local BITRATE=256k;; | |
| 320) local BITRATE=320k;; | |
| esac | |
| javascript:void((function(){var%20e=document.querySelectorAll(".image__full");p=e[1].style.backgroundImage;f=p.substr(4,63);window.location=f;})()) |
| ### Thibault Maekelbergh ### | |
| ### http://blog.thibmaekelbergh.be/2014/12/18/http-python-server.html ### | |
| cd "$(dirname "$0")" #Get current directory | |
| ENTRY=index.html #Set the entry point for the server | |
| if [ -f "$ENTRY" ]; then #Check if the entry exists then go on | |
| sleep 1 && open "http://localhost:8000/"; #Delay a second then open localhost | |
| python -m SimpleHTTPServer; #Start the HTTP Server |