Skip to content

Instantly share code, notes, and snippets.

View Redoblue's full-sized avatar

merlinbao Redoblue

View GitHub Profile
@frank9615
frank9615 / install_ros_kinetic_raspian_buster.sh
Last active March 15, 2022 15:40
Install ros kinetic on raspbian buster
#!/bin/bash
# Install ros kinetic on raspian buster
cd ~
wget http://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.tar.gz
tar xvzf boost_1_58_0.tar.gz
mkdir ~/build
cd boost_1_58_0/
sudo ./bootstrap.sh
sudo ./b2 install —prefix="../build"
@SavinaRoja
SavinaRoja / .vimrc
Created September 8, 2015 18:10
.vimrc for python
" A good writeup of the .vimrc is here:
" http://dougblack.io/words/a-good-vimrc.html
syntax on
colorscheme badwolf
" Tab Handling
set tabstop=4
set softtabstop=4