#F3E3CD,#F3E3CD,#F3951D,#DA3D61,#F26328,#183E1C,#DA3D61,#F26328
#222222,#2F2F2F,#F92772,#FFFFFF,#A6E22D,#FFFFFF,#66D9EF,#BE84F2
#86A34E,#94AF63,#FFFFFF,#6D8B42,#94AF63,#FFFFFF,#FFB10A,#DFA044
| ### 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 |
| javascript:void((function(){var%20e=document.querySelectorAll(".image__full");p=e[1].style.backgroundImage;f=p.substr(4,63);window.location=f;})()) |
| 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 | |
| # 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 |
| { | |
| "segments": [ | |
| "ssh", | |
| "cwd", | |
| "read_only", | |
| "git", | |
| "jobs", | |
| "exit_code", | |
| "root", | |
| "newline" |
I hereby claim:
To claim this, I am signing this object:
| # Given engine.node = 6.10.1 in package.json | |
| # will output 6.10.1 in the shell | |
| cat package.json | grep \"node\": | grep -E -o '(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)' | |
| # Why? Auto install package.json version to nvm | |
| cat package.json | grep \"node\": | grep -E -o '(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)' | nvm install |
| [ | |
| { | |
| "shortcut_key_binding" : null, | |
| "shortcut_name" : "RedoLastMove" | |
| }, | |
| { | |
| "shortcut_key_binding" : "ctrl+alt+cmd+=", | |
| "shortcut_name" : "MakeSmaller" | |
| }, | |
| { |
| /* | |
| Simple example for receiving | |
| https://github.com/sui77/rc-switch/ | |
| */ | |
| #include <RCSwitch.h> | |
| RCSwitch mySwitch = RCSwitch(); |