Skip to content

Instantly share code, notes, and snippets.

View 3rn3st0's full-sized avatar
😎
Actualizanding ebrising

Ernesto L. Chapon 3rn3st0

😎
Actualizanding ebrising
View GitHub Profile
@3rn3st0
3rn3st0 / mkalias.sh
Last active August 29, 2015 14:04 — forked from xr09/gist:912044868b954685de2b
Una manera sencilla para crear alias de comandos en Linux
# mkalias name "command param1 param2 etc.."
# Example: mkalias srvfolder "python -m SimpleHTTPServer"
mkalias () {
echo "alias $1=\"$2\"" >> ~/.bashrc
}
@3rn3st0
3rn3st0 / sublime_shortcuts
Last active August 29, 2015 14:01
Sublime Text 2 - Useful Shorcuts (PC)
h1. Sublime Text 2 - Useful Shortcuts (PC)
Loosely ordered with the commands I use most towards the top. Sublime also offer "full documentation":http://www.sublimetext.com/docs/2/.
h2. Editing
| *Ctrl+C* | copy current line (if no selection) |
| *Ctrl+X* | cut current line (if no selection) |
| *Ctrl+⇧+K*| delete line |
| *Ctrl+↩* | insert line after |