This file contains 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
# Path to your oh-my-zsh installation. | |
export ZSH=/home/monarch/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
# ZSH_THEME="robbyrussell" | |
# ZSH_THEME="alanpeabody" | |
ZSH_THEME="clean" |
This file contains 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
# IPython magic to check for PEP8 compliance. | |
# Author: Juan Luis Cano <[email protected]> | |
"""IPython magic to check for PEP8 compliance. | |
To use it, type | |
```%load_ext pep8magic``` | |
and then |
This file contains 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
#!/bin/sh | |
sudo add-apt-repository ppa:webupd8team/sublime-text-3 | |
sudo add-apt-repository ppa:unit193/sourcecodepro | |
sudo add-apt-repository ppa:alexey-ivanov/qtcreator | |
sudo aptitude update | |
sudo aptitude install fonts-source-code-pro-ttf sublime-text qtcreator vim htop |
This file contains 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 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 - |
This file contains 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
<snippet> | |
<content><![CDATA[ | |
PKG = '${1:package_name}' | |
${2:import unittest} | |
class Test${3:ClassName}(unittest.TestCase): | |
def __init__(self, *args): | |
super(Test${3:ClassName}, self).__init__(*args) |
This file contains 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
<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 |
This file contains 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
[Desktop Entry] | |
Exec=bash -i -c qtcreator %F | |
Icon=QtProject-qtcreator | |
Type=Application | |
Terminal=false | |
Name=Qt Creator ROS | |
GenericName=Integrated Development Environment | |
MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource; | |
Categories=Qt;Development;IDE; | |
InitialPreference=9 |
This file contains 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
# Prompt Colors | |
BGREEN='\[\033[1;32m\]' | |
GREEN='\[\033[0;32m\]' | |
BRED='\[\033[1;31m\]' | |
RED='\[\033[0;31m\]' | |
BYELLOW='\[\033[1;33m\]' | |
YELLOW='\[\033[0;33m\]' | |
BBLUE='\[\033[1;34m\]' | |
BLUE='\[\033[0;34m\]' | |
BBLACK='\[\033[1;30m\]' |
This file contains 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
[General] | |
IniMode=true | |
[formats] | |
data\align-ampersand\bold=true | |
data\align-ampersand\fontFamily=<default> | |
data\align-ampersand\foreground=#dc322f | |
data\align-ampersand\italic=false | |
data\align-ampersand\overline=false | |
data\align-ampersand\pointSize=0 |
This file contains 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
# Downloaded From: https://github.com/ipython/ipython/blob/master/examples/IPython%20Kernel/ipython-qtconsole.desktop | |
# With modifications to use dark background theme | |
# If you want ipython to appear in a linux app launcher ("start menu"), install this by doing: | |
# sudo desktop-file-install ipython-qtconsole.desktop | |
[Desktop Entry] | |
Comment=Enhanced interactive Python qtconsole | |
Exec=ipython qtconsole --ConsoleWidget.font_family="Source Code Pro" | |
GenericName[en_US]=Python shell |
NewerOlder