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
| /** | |
| * Poblado de datos | |
| */ | |
| SET FOREIGN_KEY_CHECKS = 0; | |
| SET AUTOCOMMIT = 0; | |
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | |
| SET time_zone = "+00:00"; | |
| START TRANSACTION; | |
| INSERT INTO geo_departamentos VALUES (null, 'Alta Verapaz'); |
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
| .md-whiteframe-1dp { | |
| box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), | |
| 0px 1px 1px 0px rgba(0, 0, 0, 0.14), | |
| 0px 2px 1px -1px rgba(0, 0, 0, 0.12); } | |
| .md-whiteframe-2dp { | |
| box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), | |
| 0px 2px 2px 0px rgba(0, 0, 0, 0.14), | |
| 0px 3px 1px -2px rgba(0, 0, 0, 0.12); } | |
| .md-whiteframe-3dp { | |
| box-shadow:0px 1px 8px 0px rgba(0, 0, 0, 0.2), |
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
| Array.prototype.bsearch = function (x) { | |
| var min = 0, max = this.length; | |
| while (min <= max) { | |
| var mid = Math.floor((min + max) / 2), | |
| val = this[mid]; | |
| if (val === x) { | |
| return mid; | |
| } |
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
| function encode() { | |
| var obj = document.getElementById('dencoder'); | |
| var unencoded = obj.value; | |
| obj.value = encodeURIComponent(unencoded).replace(/'/g,"%27").replace(/"/g,"%22"); | |
| } | |
| function decode() { | |
| var obj = document.getElementById('dencoder'); | |
| var encoded = obj.value; | |
| obj.value = decodeURIComponent(encoded.replace(/\+/g, " ")); | |
| } |
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
| @charset "UTF-8"; | |
| @import "variables.less"; | |
| @import "mixins.less"; | |
| @import "reset.less"; | |
| @import "utility.less"; |
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
| // -------------------------------------------------- | |
| // Flexbox LESS mixins | |
| // The spec: http://www.w3.org/TR/css3-flexbox | |
| // -------------------------------------------------- | |
| // Flexbox display | |
| // flex or inline-flex | |
| .flex-display(@display: flex) { | |
| display: ~"-webkit-@{display}"; | |
| display: ~"-moz-@{display}"; |
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
| javascript:void((function(d){if(self!=top||d.getElementById('toolbar')&&d.getElementById('toolbar').getAttribute('data-resizer'))return false;d.write('<!DOCTYPE HTML><html style="opacity:0;"><head><meta charset="utf-8"></head><body><a data-viewport="320x480" data-icon="mobile" title="Mobile (e.g. Apple iPhone)">Mobile (e.g. Apple iPhone)</a><a data-viewport="320x568" data-icon="mobile" data-version="5" title="Apple iPhone 5">Apple iPhone 5</a><a data-viewport="375x667" data-icon="mobile" data-version="6" title="Apple iPhone 6">Apple iPhone 6</a><a data-viewport="414x736" data-icon="mobile" data-version="6+" title="Apple iPhone 6 Plus">Apple iPhone 6 Plus</a><a data-viewport="768x1024" data-icon="tablet" title="Tablet (iPad 2-3rd, mini)">Tablet (iPad 2-3rd, mini)</a><a data-viewport="1366x583" data-icon="notebook" data-version="11" title="Macbook Air 11-inch (Viewable Area)">Macbook Air 11-inch (Viewable Area)</a><a data-viewport="1440x715" data-icon="notebook" data-version="13" title="Macbook Air 13-inch (Vie |
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
| ############################################# | |
| # Set upstream branch | |
| git branch --set-upstream-to=origin/$rama $rama | |
| ############################################# | |
| # Push de la rama actual | |
| git push origin $rama_actual | |
| ############################################# | |
| # Agregar un commit a una rama |
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
| <div class="flip-container" ontouchstart="this.classList.toggle('hover');"> | |
| <div class="flipper"> | |
| <div class="front"> | |
| <!-- front content --> | |
| </div> | |
| <div class="back"> | |
| <!-- back content --> | |
| </div> | |
| </div> | |
| </div> |