Skip to content

Instantly share code, notes, and snippets.

View Maddosaurus's full-sized avatar

Matthias Maddosaurus

View GitHub Profile
@Maddosaurus
Maddosaurus / pytwit.py
Created June 6, 2016 21:08
Snakes on a Twitter
# easy_install twitter
from twitter import *
token = ACCESS_TOKEN
token_key = ACCESS_TOKEN_SECRET
con_secret_key = CONSUMER_SECRET
con_secret = CONSUMER_KEY
t = Twitter(auth=OAuth(token, token_key, con_secret, con_secret_key))
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.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="pygmalion" #war schon echt gut
@Maddosaurus
Maddosaurus / .vimrc
Last active August 29, 2015 14:18
vimrc
" Based on Doug Black's blogpost: http://dougblack.io/words/a-good-vimrc.html
" Mentioned color scheme: https://github.com/sjl/badwolf/
colorscheme badwolf " awesome colorscheme
syntax enable " enable syntax processing
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab when editing
set expandtab " tabs are spaces
set number " show line numbers
set showcmd " show command in bottom bar