Skip to content

Instantly share code, notes, and snippets.

View pfitzer's full-sized avatar
💭
No matter what the problem is, it's always a people problem

Michael Pfister pfitzer

💭
No matter what the problem is, it's always a people problem
View GitHub Profile

Keybase proof

I hereby claim:

  • I am pfitzer on github.
  • I am pfitzer (https://keybase.io/pfitzer) on keybase.
  • I have a public key ASBGh0t8AnP7mJyv8QraOtQjlBPKyfkcIG1ZX7tSBN6WTwo

To claim this, I am signing this object:

@pfitzer
pfitzer / .vimrc
Last active July 19, 2018 16:33
vim as python ide
syntax enable
set number
set ts=4
set autoindent
set expandtab
set shiftwidth=4
set cursorline
set showmatch
set encoding=utf-8
let python_highlight_all = 1

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
@pfitzer
pfitzer / teamcity
Created October 22, 2017 10:45
TeamCity init.d script
#!/bin/sh
# /etc/init.d/teamcity - startup script
### BEGIN INIT INFO
# Provides: teamcity
# Required-Start:
# Required-Stop:
# Default-Start:
# Default-Stop:
# Short-Description:
@pfitzer
pfitzer / teamcity
Last active October 22, 2017 08:33
Nginx config to serve TeamCity as proxy. Includes letsencrypt
server {
listen 80;
server_name domain.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name domain.com;
@pfitzer
pfitzer / autoexec.cfg
Created November 17, 2016 07:53
CS:GO user config
unbind "f"
unbind "c"
unbind "v"
unbind "l"
unbind "q"
unbind "MWHEELUP"
unbind "MWHEELDOWN"
bind "mouse3" "use weapon_knife;"
bind "mouse5" "use weapon_c4;"