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
/** | |
* Sort array of objects based on another array | |
*/ | |
function mapOrder (array, order, key) { | |
array.sort( function (a, b) { | |
var A = a[key], B = b[key]; | |
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
Ariel Aizemberg | |
@aaizemberg ( https://twitter.com/aaizemberg ) | |
http://www.linkedin.com/in/arielaizemberg | |
Introducción | |
Que es D3 | |
Quién creó esta librería | |
Mirar algunos ejemplos de la galería | |
https://github.com/mbostock/d3/wiki/Gallery |
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
FROM pritunl/archlinux | |
MAINTAINER Celia Cintas <[email protected]> Pablo Navarro <[email protected]> | |
COPY packages/ /packages | |
RUN pacman -S --noconfirm git make | |
RUN pacman -S --noconfirm python2 python2-pip | |
RUN pacman -S --noconfirm cmake boost | |
RUN cd packages && pacman -U --noconfirm vtk6-6.3.0-2-x86_64.pkg.tar.xz opencv-3.1.0-3-x86_64.pkg.tar.xz | |
RUN pacman -S --noconfirm gcc gcc-libs |