- pretty sweet utility
- I feel like make 800 blocks right now
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
# | |
# source: http://www.alexconrad.org/2011/10/jenkins-and-python.html?m=1 | |
# | |
PYENV_HOME=$WORKSPACE/.pyenv/ | |
# Delete previously built virtualenv | |
if [ -d $PYENV_HOME ]; then | |
rm -rf $PYENV_HOME | |
fi |
-
teaching myself about how awesome people inscribe and disseminate their researches
- particularly data research where the intermingling of code & visualization
- makes users much happier than looking at just code or just graphs one at a time
-
I'm following this tutorial
- and simultaneously borrowing content from here
-
because the block demo-ed in the first tutorial isn't very fancy looking
This file has been truncated, but you can view the full file.
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
The programs included with the Ubuntu system are free software; | |
the exact distribution terms for each program are described in the | |
individual files in /usr/share/doc/*/copyright. | |
Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by | |
applicable law. | |
Welcome to Ubuntu 12.10 (GNU/Linux 3.5.0-21-generic i686) | |
* Documentation: https://help.ubuntu.com/ |
This file has been truncated, but you can view the full file.
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
The programs included with the Ubuntu system are free software; | |
the exact distribution terms for each program are described in the | |
individual files in /usr/share/doc/*/copyright. | |
Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by | |
applicable law. | |
Welcome to Ubuntu 12.10 (GNU/Linux 3.5.0-21-generic x86_64) | |
* Documentation: https://help.ubuntu.com/ |
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 | |
# update the local repo listing | |
sudo apt-get update -y | |
sudo apt-get upgrade -y | |
# install gcc, python tools, pip, atlas, and an | |
sudo apt-get -y install build-essential \ | |
g++ \ | |
gcc \ |