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
Homework NUM Tests and Quizzes Submission | |
Prof. NAME NAME NAME | |
SUBJ XXXX/YYYY – SEMESTER 20XX | |
Converted from Tests & Quizzes spreadsheet by [email protected]'s Sakai scripts | |
Your name (as in Sakai): $$$#First Name#$$$ $$$#Last Name#$$$ | |
Your Sakai User ID Number: $$$#User Name#$$$ |
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
#!/usr/bin/env python | |
# Copyright (c) 2009 Thomas Shanks and the Georgia Institute of Technology | |
# Licensed under an MIT-Style (like BSD-style) free-software license; see complete notice at end. | |
# | |
# This script emulates the process described in Savage (et al.)'s IEEE Micro article | |
# "Detour: Informed Internet Routing and Transport" at http://doi.ieeecomputersociety.org/10.1109/40.748796 . | |
import os | |
from urlparse import urlparse | |
import re |
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
# Only for Mac OS X, where .bashrc is otherwise ignored | |
if [ -f ~/.bashrc ]; then | |
source ~/.bashrc | |
fi | |
# MacPorts | |
export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
export MANPATH=/opt/local/share/man:$MANPATH |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Default Window Settings</key> | |
<string>Pro</string> | |
<key>HasMigratedDefaults</key> | |
<true/> | |
<key>NSColorPanelMode</key> | |
<string>1</string> |
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
" tshanks minimal vimrc | |
set backup | |
"set backupdir=~/vimbackups | |
set visualbell | |
set secure " disable trojan modelines (hopefully) | |
" Switch syntax highlighting on, when the terminal has colors | |
" Also switch on highlighting the last used search pattern. |
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
# XDarwin only shares the CLIPBOARD properly with the rest of Mac OS X | |
# (the PRIMARY options don't work) and doesn't properly handle copying | |
# to multiple buffers (it manages to lose one of them). We only have | |
# one mouse button. For now, let's just use the good old menu option | |
# selectToClipboard, even though it breaks extending with the third | |
# mouse button we don't have. | |
xterm*selectToClipboard: true | |
# The OS X xterm doesn't set t_vb in vim, so we need to make the bells |
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
# source me | |
export COPYFILE_DISABLE=true | |
export COPY_EXTENDED_ATTRIBUTES_DISABLE=true |