Skip to content

Instantly share code, notes, and snippets.

View VGonPa's full-sized avatar

Victor González-Pacheco VGonPa

View GitHub Profile
@VGonPa
VGonPa / lasr-uc3m_snippet
Created January 11, 2015 14:31
LASR-UC3M license Sublime 3 Snippet
<snippet>
<content><![CDATA[
# :version: ${1:0}.${2:0}.${3:0}
# :copyright: Copyright (C) 2014 Universidad Carlos III de Madrid.
# Todos los derechos reservados.
# :license LASR_UC3M v1.0, ver LICENCIA.txt
# Este programa es software libre: puede redistribuirlo y/o modificarlo
# bajo los términos de la Licencia Académica Social Robotics Lab - UC3M
@VGonPa
VGonPa / Default (Linux).sublime-keymap
Last active August 29, 2015 14:07
My Sublime Text 3 Config (User settings)
[
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } }
]
@kislayabhi
kislayabhi / SCENE.ipynb
Last active August 29, 2015 14:04
Scene Classification
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@senko
senko / maybe.py
Last active May 2, 2024 18:35
A Pythonic implementation of the Maybe monad
# maybe.py - a Pythonic implementation of the Maybe monad
# Copyright (C) 2014. Senko Rasic <senko.rasic@goodcode.io>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
@astrojuanlu
astrojuanlu / pep8magic.py
Last active April 27, 2017 11:00
IPython cell magic to check for PEP8 using https://pypi.python.org/pypi/pep8
# 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
@jonbinney
jonbinney / Dockerfile
Last active December 13, 2017 14:37
Dockerfile for ROS hydro on ubuntu precise
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 -