This file contains 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
\documentclass[letterpaper]{article} | |
% Geometry | |
\usepackage[letterpaper, top=2.54cm, bottom=2.54cm, left=2.54cm, right=2.54cm]{geometry} | |
% Fancy Header | |
\usepackage{fancyhdr} | |
% Change header bottom bar thickness | |
\renewcommand{\headrulewidth}{0pt} |
This file contains 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
var flatUIColors = [ '#1abc9c', '#16a085', '#2ecc71', '#27ae60', '#3498db', '#2980b9', '#9b59b6', '#8e44ad', '#34495e', '#2c3e50', '#f1c40f', '#f39c12', '#e67e22', '#d35400', '#e74c3c', '#c0392b', '#ecf0f1', '#bdc3c7', '#95a5a6', '#7f8c8d']; | |
var flatUIHexColors = [ 0x1abc9c, 0x16a085, 0x2ecc71, 0x27ae60, 0x3498db, 0x2980b9, 0x9b59b6, 0x8e44ad, 0x34495e, 0x2c3e50, 0xf1c40f, 0xf39c12, 0xe67e22, 0xd35400, 0xe74c3c, 0xc0392b, 0xecf0f1, 0xbdc3c7, 0x95a5a6, 0x7f8c8d]; |
This file contains 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
# Small python script to replace full path in prompt with symlinks where | |
# appropiate. Set your shell prompt to this script's output with | |
###################################################################### | |
# export PROMPT_COMMAND='PS1="$(python /path-to/symlinkifypath.py)"' # | |
###################################################################### | |
# in your .bashrc. | |
# Set 'symLinksDir' and 'tilde' as per your needs below. | |
# Please make sure all your symlinks are the complete path - no symlinks | |
# inside another.. This script works for symlinks that start from the root |
This file contains 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
Section "Monitor" | |
Identifier "DVI-1" | |
Modeline "1280x960_60.00" 101.25 1280 1360 1488 1696 960 963 967 996 -hsync +vsync | |
Modeline "1152x900_60.00" 85.00 1152 1216 1336 1520 900 903 913 934 -hsync +vsync | |
Modeline "1600x1200_60.00" 161.00 1600 1712 1880 2160 1200 1203 1207 1245 -hsync +vsync | |
Option "PreferredMode" "1280x960_60.00" | |
EndSection |
This file contains 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 nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" Vundle, the plug-in manager for Vim | |
Plugin 'gmarik/Vundle.vim' | |
" addon-mw-utils: interpret a file by function and cache file automatically | |
Plugin 'marcweber/vim-addon-mw-utils' |
This file contains 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
" File: hybrid.vim | |
" Maintainer: Andrew Wong (w0ng) | |
" URL: https://github.com/w0ng/vim-hybrid | |
" Modified: 27 Jan 2013 07:33 AM AEST | |
" License: MIT | |
" Description:"{{{ | |
" ---------------------------------------------------------------------------- | |
" The RGB colour palette is taken from Tomorrow-Night.vim: | |
" https://github.com/chriskempson/vim-tomorrow-theme |
This file contains 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
#!/bin/bash | |
# Install Vim and git | |
sudo apt-get update | |
sudo apt-get install vim | |
sudo apt-get install git | |
# Make directories | |
mkdir $HOME/.vim | |
mkdir $HOME/.vim/bundle | |
mkdir $HOME/.vim/colors |
This file contains 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
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get upgrade | |
programs="gcc curl git xclip" | |
for prog in $programs; do | |
sudo apt-get install $prog | |
done |
This file contains 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
# Dependencies for installing Python | |
sudo apt-get install build-essential | |
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev | |
# Download Python 2.7.9 and extract | |
mkdir $HOME/Downloads | |
cd $HOME/Downloads | |
wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz | |
tar -xvf Python-2.7.9.tgz |
This file contains 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
#!/bin/bash | |
sshdir="$HOME/.ssh" | |
# All keys should end in _rsa with their respective lock ending in _rsa.pub | |
keys=`ls $sshdir | grep _rsa$` | |
# Clean old config | |
rm $sshdir/config | |
# Build new config |
OlderNewer