Much of this will be deprecated (manual init.d installation, compiling from source, etc) but documenting for good measure --jmw
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vbell on | |
defscrollback 4096 | |
escape `` | |
startup_message off | |
## default screens | |
screen -t bash 0 bash | |
screen -t bash 1 bash | |
screen -t bash 2 bash | |
screen -t bash 3 bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Jamie Wilkinson | |
email = [email protected] | |
[github] | |
user = jamiew | |
token = 7fd12d4c49f24df2da597bb9bd5f4bfd | |
[apply] | |
whitespace = nowarn | |
[branch] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# 2008.10.03 | |
# JD Huntington | |
# Darell Fuhriman | |
# shell script to assist in working with lighthouse and git | |
# | |
# requires lighthouse api ruby wrapper and git library | |
# $ gem sources -a http://gems.github.com/ | |
# $ gem install Caged-lighthouse-api |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style type="text/css"></style> | |
<script type="text/javascript" src="jquery-1.3.2.min.js"></script> | |
<script type='text/javascript'> | |
//***************Global Vars******************* | |
//********************************************* | |
var wm_stroke_size = 10; | |
var wm_color = '#FF00FF'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html><head> | |
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> | |
<style type="text/css"></style> | |
<script type="text/javascript"> | |
// Global Vars | |
var last_memory_data = new Date().getTime(); // letzter speicher wert | |
var testx = 0; | |
var testy = 0; | |
var timeSeconds = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## fancy prompt showing git branch | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
} | |
function proml { | |
local BLUE="\[\033[0;34m\]" | |
local BLUE_BOLD="\[\033[1;34m\]" | |
local RED="\[\033[0;31m\]" | |
local LIGHT_RED="\[\033[1;31m\]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://widgets.twimg.com/j/2/widget.js"></script> | |
<script> | |
new TWTR.Widget({ | |
version: 2, | |
type: 'search', | |
search: 'knowyourmeme OR \"know your meme\"', | |
interval: 6000, | |
title: 'Twitter Search Results', | |
subject: '"knowyourmeme"', | |
width: 250, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## jamiew | |
## screen config | |
vbell on | |
defscrollback 1024 | |
escape `` | |
startup_message off | |
## default screens | |
screen -t queries 0 bash | |
screen -t _ 1 bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set expandtab " Use spaces instead of tabs | |
set autoindent " Inherit indent from previous line | |
syntax on | |
set tabstop=2 " Display \t as 2 spaces | |
"set shiftwidth=2 " Number of spaces to use for each indent | |
"set softtabstop=2 " Treat 2 spaces as a tab for editing purposes | |
"set smartindent | |
"set smarttab " Insert blank space at beginning of line with tab | |
" make searches case-insensitive, unless they contain upper-case letters |