Skip to content

Instantly share code, notes, and snippets.

View thibmaek's full-sized avatar
🐹
Currently coding a lot in Go

Thibault Maekelbergh thibmaek

🐹
Currently coding a lot in Go
View GitHub Profile
@thibmaek
thibmaek / nvmi.sh
Last active June 22, 2017 22:49
Update node with nvm, migrating global modules
# 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
@thibmaek
thibmaek / _audio.sh
Created August 17, 2015 23:47
Convert FLAC to AAC | MP3
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
@thibmaek
thibmaek / Soundcloud Artwork Grabber.js
Last active August 29, 2015 14:18
Soundcloud Artwork Grabber
javascript:void((function(){var%20e=document.querySelectorAll(".image__full");p=e[1].style.backgroundImage;f=p.substr(4,63);window.location=f;})())
@thibmaek
thibmaek / HTTPServer.command
Last active August 29, 2015 14:11
HTTP Server with error check
### 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
@thibmaek
thibmaek / slacktheme.md
Last active June 18, 2019 19:24
Slack Color Schemes

Kimbie

#F3E3CD,#F3E3CD,#F3951D,#DA3D61,#F26328,#183E1C,#DA3D61,#F26328 screen

Monokai

#222222,#2F2F2F,#F92772,#FFFFFF,#A6E22D,#FFFFFF,#66D9EF,#BE84F2 screen

Juice Bar

#86A34E,#94AF63,#FFFFFF,#6D8B42,#94AF63,#FFFFFF,#FFB10A,#DFA044