Skip to content

Instantly share code, notes, and snippets.

View VGonPa's full-sized avatar

Victor González-Pacheco VGonPa

View GitHub Profile
# IPython magic to check for PEP8 compliance.
# Author: Juan Luis Cano <juanlu001@gmail.com>
"""IPython magic to check for PEP8 compliance.
To use it, type
```%load_ext pep8magic```
and then
@VGonPa
VGonPa / Dockerfile
Last active August 29, 2015 14:14 — forked from jonbinney/Dockerfile
Dockerfile for ROS Hydro
FROM ubuntu:precise
# ubuntu precise image doesn't have universe repo
run echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
run apt-get update
RUN apt-get install -y wget
# install ROS
RUN sh -c 'echo "deb http://packages.ros.org/ros/ubuntu precise main" > /etc/apt/sources.list.d/ros-latest.list'
RUN wget http://packages.ros.org/ros.key -O - | apt-key add -