Skip to content

Instantly share code, notes, and snippets.

@scheibinger
scheibinger / proxy_nginx.sh
Created April 13, 2016 04:43 — forked from rdegges/proxy_nginx.sh
Create a HTTP proxy for jenkins using NGINX.
sudo aptitude -y install nginx
cd /etc/nginx/sites-available
sudo rm default
sudo cat > jenkins
upstream app_server {
server 127.0.0.1:8080 fail_timeout=0;
}
server {
listen 80;
@scheibinger
scheibinger / tmux-cheatsheet.markdown
Created December 31, 2015 19:41 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@scheibinger
scheibinger / .vimrc
Created February 3, 2014 20:55 — forked from napcs/.vimrc
" this is the configuration file for linux and mac systems
" symlink this to your home folder as .vimrc
" It loads ~/.vim/vundle and loads all modules from ~/.vim/bundle.
" It then loads ~/.vim/vimrc_main which has the main
" configuration that works across all systems.
source ~/.vim/vundle
source ~/.vim/vimrc_main
" Put platform specific stuff here.
# !/bin/bash
# Copyright (c) 2011 Float Mobile Learning
# http://www.floatlearning.com/
# Extension Copyright (c) 2013 Weptun Gmbh
# http://www.weptun.de
#
# Extended by Ronan O Ciosoig January 2012
#
# Extended by Patrick Blitz, April 2013
[10:12:54] Francisco Ferreira: http://robots.thoughtbot.com/post/2641409235/a-tmux-crash-course
[10:15:53] Andrzej Grzesik: set -g utf8 on
set -g status-utf8 on
set -g default-terminal "screen-256color"
setw -g automatic-rename
setw -g mode-mouse on
set -g mouse-select-pane on
set -g history-limit 30000