Skip to content

Instantly share code, notes, and snippets.

View thewarpaint's full-sized avatar
馃巹
https://dosmilveinte.mx

Eduardo Garcia thewarpaint

馃巹
https://dosmilveinte.mx
View GitHub Profile
@thewarpaint
thewarpaint / test.js
Created May 29, 2013 17:14
Prueba de API
// Este c贸digo:
var cur = new Currency({ 'code': 'XXX', 'name': 'XXX Currency', 'exchangeRate': 12.3456 });
cur.$save();
// Devuelve:
// 200 OK
{"id":33,"name":"XXX Currency","code":"XXX","isBase":false,"prefix":null,"suffix":null,"exchangeRate":"12.3456"}
@thewarpaint
thewarpaint / git.md
Last active December 20, 2015 23:59 — forked from j-lagunas/new_gist_file

1. Agregar los archivos en el stash.

Antes de cualquier actualizaci贸n es necesario guardar temporalmente los archivos que tiene en el WIP.

$ git add [file]
$ git stash

2. Actualizar cambios con branch remoto.

@thewarpaint
thewarpaint / directive.js
Last active December 22, 2015 09:49
Angular directive to generate a normal link and another one to be opened in a new window/tab from a URL.
angular.module('LinkWidget')
.directive('linkWidget', function() {
var directive = {
template: '<span><a ng-href="{{ url }}" target="_blank" class="external-link add-tooltip" title="{{ blankTitle }}"><i class="icon-external-link"></i></a> ' +
'<a ng-href="{{ url }}">{{ text }}</a></span>',
replace: true,
restrict: 'EA',
scope: {
url: '@url',
text: '@text',
@thewarpaint
thewarpaint / bancomer-distrito-federal.geojson
Last active December 25, 2015 06:09
Ubicaci贸n geogr谩fica y datos generales de cajeros autom谩ticos Bancomer del Distrito Federal.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@thewarpaint
thewarpaint / select.js
Last active December 25, 2015 17:49
select.js
// A
var selectors = ['select.entityFilter', 'select.dateFilterFrom', 'select.dateFilterTo'];
$(selectors.join(',')).on('change', function() { oTable.fnDraw() } );
// B
$('select.entityFilter, select.dateFilterFrom, select.dateFilterTo').on('change', function() { oTable.fnDraw() } );
@thewarpaint
thewarpaint / banamex-distrito-federal.geojson
Last active December 26, 2015 09:39
Ubicaci贸n geogr谩fica y datos generales de cajeros autom谩ticos Banamex del Distrito Federal.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@thewarpaint
thewarpaint / 0-temas.md
Last active January 2, 2016 01:59
Algoritmia y programaci贸n I

Temas

  1. Programa b谩sico
  2. Tokens, identificadores y palabras clave
  3. Variables y constantes
  4. Tipos de datos
    1. Primitivos
      1. int
      2. char
  5. float
@thewarpaint
thewarpaint / facturacion.md
Last active January 2, 2016 12:18
Enlaces a facturaci贸n electr贸nica

Facturaci贸n electr贸nica

Datos comunes

  • RFC
  • Raz贸n social
  • Direcci贸n
    • Calle
    • N煤mero exterior
  • N煤mero interior
@thewarpaint
thewarpaint / startup.md
Last active January 2, 2016 15:19
Startup

Startup

驴Qu茅 es?

Es una iniciativa de generaci贸n de proyectos autosustentables con tres objetivos primordiales:

  • Generar recursos que nos permitan elegir los proyectos que desarrollamos.
  • Atraer a clientes potenciales poniendo nuestro nombre y talento en el mapa.
  • Contribuir al bienestar de la sociedad y de la comunidad de TI.
<div class="row-fluid">
<div class="row-fluid">
...
</div>
</div>