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 / Preferences.sublime-settings
Last active March 29, 2018 05:36
Configuraciones de ST3
{
"added_words":
[
"Tabulaciones",
"tabulación",
"Inicializa",
"Apache",
"3rn3st0"
],
"caret_extra_bottom": 3,
EL BUENO
{
"lista": [],
"mapa": {}
}
EL MALO
{
"lista": null,
"mapa": null
@3rn3st0
3rn3st0 / basic_web_structure.html
Last active September 21, 2017 15:23
HTML5: Estructura básica de una página web / Basic structure of a web page
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="ruta_hoja_de_estilos.css">
<title>Título del Website / Website's Title</title>
</head>
<body>
@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 / .zshrc
Last active April 26, 2025 03:54
Mi archivo de configuración para ZSH Shell
# Historial de la cónsola
HISTFILE=~/.zsh_history
HISTSIZE=100000
SAVEHIST=100000
# Opciones de Zsh
unsetopt MENU_COMPLETE # NO autoseleccionar la primera autocompletación
unsetopt FLOW_CONTROL # Desactivar inicio/parada de caracteres en el editor del shell
unsetopt NO_BEEP # Se escuchan los beeps de error
@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 |