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 python | |
# Script to dump as much information as possible about the current platform, | |
# Python, PySide, and Qt. | |
# | |
# On platforms with wget, you may run with: | |
# | |
# wget -q -O - https://gist.githubusercontent.com/seanfisk/9194547/raw/pyside_version.py | python - | |
# |
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 -O - http://prdownloads.sourceforge.net/scons/scons-2.3.0.tar.gz | tar -xzf | |
pushd scons-2.3.0 | |
# python setup.py install appears to work, but doesn't. | |
python setup.py install --user | |
popd # scons-2.3.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
cd your_projects_dir | |
git clone --no-hardlinks http://cis.gvsu.edu/~fiskse/classes/cs380/labs/11.git your_project_name | |
mkdir your_project_name.git | |
cd your_project_name.git | |
git init --bare # a repo exclusively for sharing | |
cp ~fiskse/global/git-hooks/post-update hooks # updates perms correctly | |
pwd -P # this is your sharing path | |
cd ../your_project_name | |
touch a_change | |
git add a_change |