- Press Ctrl+F12 to show the Structure popup.
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
| # add repo | |
| sudo apt-add-repository ppa:git-core/ppa | |
| sudo add-apt-repository ppa:neovim-ppa/unstable | |
| sudo apt-get update | |
| sudo apt install terminator docker.io golang vim vagrant git python-pip -y | |
| sudo apt install vim-nox tig puppet ctags -y | |
| sudo npm install -g git2consul |
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
| # | |
| # HEROKU | |
| # | |
| # pour se co | |
| #alias herologin='heroku login' | |
| # check cb de temps il reste | |
| #alias herops='heroku ps' |
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
| #!/usr/bin/python | |
| import subprocess | |
| import sys | |
| import os | |
| import yaml | |
| import paramiko | |
| import argparse | |
| from paramiko import SSHClient |
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
| # Customize BASH PS1 prompt to show current GIT repository and branch. | |
| # by Mike Stewart - http://MediaDoneRight.com | |
| # SETUP CONSTANTS | |
| # Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
| # I don't remember where I found this. o_O | |
| # Reset | |
| Color_Off="\[\033[0m\]" # Text Reset |
/opt/logstash/bin/logstash -f *.conf
###Grok constructor http://grokconstructor.appspot.com/do/match#result
###input https://www.elastic.co/guide/en/logstash/current/input-plugins.html
###output
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
| # config | |
| git config --global user.name "rodesousa" && git config --global user.email [email protected] | |
| git config --global core.editor "vim" | |
| # Pour convertir les retours à la ligne Windows -> Linux | |
| git config --global core.autocrlf true | |
| # alias | |
| git config --global alias.cmm "commit -s -m" | |
| git config --global alias.cma "commit --amend" |