Skip to content

Instantly share code, notes, and snippets.

@devinshields
devinshields / jenkins_nosetests_build_script.sh
Created January 18, 2016 20:13
jenkins_nosetests_build_script.sh
#
# 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
@devinshields
devinshields / README.md
Last active December 20, 2015 09:02
gistup utility works!

gistup utility works!

  • pretty sweet utility
  • I feel like make 800 blocks right now
@devinshields
devinshields / README.md
Last active August 3, 2016 19:58
bl.ocks.org tutorial

bl.ocks.org tutorial

  • 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

  • because the block demo-ed in the first tutorial isn't very fancy looking

@devinshields
devinshields / will_it_embed.md
Last active December 20, 2015 04:32
let's try storing markdown in a gist and embedding it in a webpage

will it embed?

  • I'm not sure
  • but we're about to find out!
  • let's include an image as well

devin avatar pic

This file has been truncated, but you can view the full file.
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.
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/
@devinshields
devinshields / scikit-learn EC2 spinup script
Created May 6, 2013 04:14
an environment setup script for my scikit-learn development
#!/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 \