This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains 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
package main | |
import ( | |
"fmt" | |
"io" | |
"os" | |
) | |
var path = "/Users/novalagung/Documents/temp/test.txt" |
This file contains 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
/* ==================================================== | |
* | |
* jQuery plugin template ("boilerplate") | |
* | |
* ==================================================== */ | |
!function ($) { | |
// Indicamos que se estricto en los errores. | |
// @see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Functions_and_function_scope/Strict_mode | |
"use strict"; |
This file contains 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
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^(.*)$ index.php [QSA,L] |
This file contains 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
$tmpl_var = [ | |
'%nombre%', | |
'%apellidos%' | |
]; | |
$values = [ | |
'nombre' => 'Alfredo', | |
'apellidos' => 'González Portero' | |
]; |
This file contains 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
Model:: | |
/*Select*/ | |
select('col1','col2') | |
->select(array('col1','col2')) | |
->select(DB::raw('businesses.*, COUNT(reviews.id) as no_of_ratings, IFNULL(sum(reviews.score),0) as rating')) | |
->addSelect('col3','col4') | |
->distinct() // distinct select | |
/*From*/ |
This file contains 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
/* CSS Mini Reset */ | |
html, body, div, form, fieldset, legend, label { margin: 0; padding: 0; } | |
table { border-collapse: collapse; border-spacing: 0; } | |
th, td { text-align: left; vertical-align: top; } | |
h1, h2, h3, h4, h5, h6, th, td, caption { font-weight:normal; } | |
img { border: 0; } | |
html, * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } |
This file contains 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
<?xml version="1.0" encoding="UTF-8" ?> | |
<banners> | |
<entry> | |
<name>EEUU: PIB 1T15 adelantado +0,2% vs. +1,0% esperado y +2,2% anterior</name> | |
<idp>153</idp> | |
<url>javascript:;</url> | |
</entry> | |
<entry> | |
<name>Red Eléctrica: Beneficio neto 1T +4,7% apoyado por aumento de la cifra de negocio, especialmente en telecomunicaciones</name> | |
<idp>200</idp> |
This file contains 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
Con el método .promise().done(function(){ // your code here }); se consigue un callback de cualquier método jQuery | |
jQuery('#prueba').html( | |
"<h1>Esta es una prueba</h1>" | |
).promise().done(function(){ | |
//your callback logic / code here | |
console.info('soy un callback de cualquier función jquery'); | |
}); | |
This file contains 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
/** | |
* Polyfill localStore | |
* @type {Object} | |
* @var days es opcional y solo para el modo cookies | |
* @attributes store.set(key,value[,days]) // Setea un valor | |
* @attributes store.setObj(key,obj[,days]) // Setea un valor con un objeto | |
* @attributes store.get(key) // Obtiene un valor | |
* @attributes store.getObj(key) // Obtine un objeto | |
* @attributes store.del(key) // Elimina un valor | |
* @attributes store.localStoreSupport() // Soporte localStorage |