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>