Skip to content

Instantly share code, notes, and snippets.

View iros's full-sized avatar

Irene Ros iros

View GitHub Profile
@iros
iros / .pylintrc
Created June 29, 2016 19:12
.pylintrc for mlab
[MASTER]
# Specify a configuration file.
#rcfile=
# Python code to execute, usually for sys.path manipulation such as
# pygtk.require().
#init-hook=
# Profiled execution.
@iros
iros / .block
Last active August 17, 2017 18:52
D3 v3 - circle re-packing stability
license: mit
@iros
iros / .block
Last active August 17, 2017 18:52
D3 v4 - circle re-packing stability
license: mit
license: mit
@iros
iros / Dockerfile
Created October 5, 2017 15:41
Travis dockerfile
FROM openjdk:8
RUN wget http://apache.claz.org/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz
RUN tar zxvf apache-maven-3.3.9-bin.tar.gz
RUN chmod +x apache-maven-3.3.9/bin/mvn
RUN export M2_HOME=$PWD/apache-maven-3.3.9
RUN export PATH=$PWD/apache-maven-3.3.9/bin:${PATH}
RUN apt-get update
RUN apt-get install -y software-properties-common