-
copy where you want eg. ~/bin/colorize.sh
(cd ~/bin/ && wget https://gist.githubusercontent.com/esion/1c68692d4a03f9effd64/raw/dba30293223144e386cc3cf7ccbebac3aa7d8c32/colorize.sh)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
sfContext::getInstance()->getConfiguration()->loadHelpers(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = angular.module("app", []); | |
app.directive("a", function() { | |
return { | |
restrict: "A", | |
controller: function() { | |
this.Foo = function(msg) { | |
console.log("foo" + msg); | |
}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
netstat -pln |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
du -h --max-depth=1 / |
Ce script reprend les différentes commandes présentés dans la vidéo suivante :
https://www.youtube.com/watch?v=srGrhjOEx7M
Le plugin Tagbar dépend de ctags :
I hereby claim:
- I am iamdey on github.
- I am iamdey (https://keybase.io/iamdey) on keybase.
- I have a public key ASDMCuwK1nvbO0iGMKmar5HiAgqZPBtmMykYylRaPEOJ0Qo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#from pmartin | |
# tmux > 2.0 | |
# Bindings de keys | |
set -g prefix C-a | |
set-window-option -g mode-keys vi | |
bind-key C-a last-window | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const SignListByIdReducer = (state = { }, action) => { | |
switch (action.type) { | |
case actions.SUBMIT_EMAIL: | |
return Object.assign({}, state, { | |
[action.id]: { | |
id: action.id, | |
email: action.email, | |
list: action.list, | |
loading: true, | |
errors: [], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias docker-clean='docker rm `docker ps -aq`; docker rmi `docker images -q -f "dangling=true"`' |