Skip to content

Instantly share code, notes, and snippets.

@internoma
internoma / 0_reuse_code.js
Created April 25, 2016 10:46
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
package main
import (
"fmt"
"io"
"os"
)
var path = "/Users/novalagung/Documents/temp/test.txt"
@internoma
internoma / script.js
Created March 6, 2016 01:17
jQuery plugin template ("boilerplate")
/* ====================================================
*
* 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";
@internoma
internoma / .htaccess
Created February 29, 2016 19:25
Minimal micro REST API PHP
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
@internoma
internoma / index.php
Created February 12, 2016 16:45
PHPMailer template implementation
$tmpl_var = [
'%nombre%',
'%apellidos%'
];
$values = [
'nombre' => 'Alfredo',
'apellidos' => 'González Portero'
];
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*/
@internoma
internoma / minireset.css
Last active January 27, 2016 12:22
CSS Mini Reset
/* 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; }
@internoma
internoma / data.xml
Last active January 27, 2016 00:40
XML2ARRAY jQuery
<?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>
@internoma
internoma / script.js
Created January 26, 2016 10:40
callback de cualquier método jQuery
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');
});
@internoma
internoma / store.js
Created January 26, 2016 09:45
Polyfill localStore - Object support
/**
* 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