Skip to content

Instantly share code, notes, and snippets.

View binarypie's full-sized avatar

Charles Christolini binarypie

View GitHub Profile
@jtyr
jtyr / corporate-linux-desktop-howto.md
Created November 3, 2015 17:09 — forked from anonymous/corporate-linux-desktop-howto.md
How to run Linux desktop in a corporate environment

How to run Linux desktop in a corporate environment

DISCLAIMER

Some of the practices described in this HOWTO are considered to be illegal as they often break internal corporate policies. Anything you do, you do at your own risk.

@binarypie
binarypie / .tmux.conf
Created February 15, 2012 07:41 — forked from paulrouget/.tmux.conf
Paul's configurations files
set -g default-terminal "screen-256color"
set -g status-utf8 on
bind M source-file ~/.tmux/mac.session
bind L source-file ~/.tmux/linux.session
# set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# THEME
set -g status-bg black
@acoffman
acoffman / bespin.vim
Created February 9, 2011 04:48
vim colorscheme based on mozilla bespin
" Vim color file
" Converted from Textmate theme Bespin using Coloration v0.2.5 (http://github.com/sickill/coloration)
set background=dark
highlight clear
if exists("syntax_on")
syntax reset
endif
@binarypie
binarypie / styleguide.php
Created September 2, 2009 16:45
PHP Code Style Guideline
<?php
/**
* Please use doxygen notatin when creating documentation for classes and functions
* Code indentation is 4 spaces DO NOT USE TABS!!
*
* @param object $object This object does something
* @param int $options This integer can count by one
* @return echos json This function returns something
*/