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
wget http://www.cs.unc.edu/Research/vrpn/downloads/vrpn_07_31.zip | |
unzip vrpn_07_31.zip | |
rm vrpn_07_31.zip | |
# compile quat | |
cd vrpn/quat | |
sed -i 's@#HW_OS := pc_linux64@HW_OS := pc_linux64@g' Makefile | |
make | |
# compile vrpn |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/bin/bash | |
# Invoke on zotero-*.xpi Firefox extension file. | |
# Changes zoteroPane.xul to make right pane collapsable. | |
TARGET=chrome/content/zotero/zoteroPane.xul | |
TMP_DIR=/tmp/$(basename "$0") | |
SCRIPT='/<splitter id="zotero-items-splitter"/ { | |
N | |
N |
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
#!/bin/sh -e | |
# Copyright (c) 2014 The crouton Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
. "`dirname "$0"`/../installer/functions" | |
# Default button numbers | |
u=4 | |
d=5 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
"""Usage: | |
gradeEmailer.py [--name=NAME] [--password=PASSWORD] [--dry-run] <sender-email> <grades-path> | |
Options: | |
--name=NAME The name of the grader. | |
Used in the signature and From field of the email. | |
If not given, <sender-email> will be used. | |
--password=PASSWORD The password to the sender's email account. | |
If not given, it will be prompted for. | |
--dry-run To test, send emails to yourself instead of to the students. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.