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
| *nat | |
| :PREROUTING ACCEPT [46:2702] | |
| :INPUT ACCEPT [34:2031] | |
| :OUTPUT ACCEPT [300:22940] | |
| :POSTROUTING ACCEPT [300:22940] | |
| -A POSTROUTING -s 192.168.18.0/24 -j SNAT --to-source 172.31.9.219 | |
| COMMIT | |
| *filter | |
| :INPUT ACCEPT [0:0] |
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 blocks = []; | |
| for(var i=0; i<n; i++) { | |
| blocks.push(i % 2 == 0 ? ladrillo.b : ladrillo.a); | |
| } | |
| var piramid = [blocks.join('')]; | |
| for(var i=n-1; i>0; i--) { | |
| piramid.unshift(blocks.slice(- 1 * i).join('')); | |
| } | |
| contenedor.innerHTML = piramid.join('<br/>'); |
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
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " GENERAL | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| syntax on | |
| colorscheme molokai | |
| set nocompatible | |
| set number | |
| set nowrap | |
| set cursorline |
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 for git | |
| alias gis='git status' | |
| alias ga='git add' | |
| alias gcm='git commit -m' | |
| alias gpo='git push -u origin' | |
| alias gfu='git fetch upstream' | |
| alias gpu='git pull upstream' | |
| alias gch='git checkout' | |
| alias glg='git log' | |
| alias gmg='git merge' |
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
| !!! | |
| html | |
| head | |
| title | |
| block title | |
| | Mi Sitio | |
| link(rel='stylesheet', href='style.css') | |
| body | |
| header | |
| h1 Título |