Skip to content

Instantly share code, notes, and snippets.

@avnibu
avnibu / index.html
Last active March 20, 2016 09:43
Dropbox saver
<!DOCTYPE html>
<html lang="en">
<head>
<title>yt 2 dp</title>
<link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="http://getbootstrap.com/examples/jumbotron-narrow/jumbotron-narrow.css" rel="stylesheet">
<!-- ABR: Just to override the narrow jumbotron centering -->
@avnibu
avnibu / install_matplotlib_in_venv.sh
Last active March 7, 2016 10:49
Installation of matplotlib on ubuntu with virtualenv
sudo apt-get install virtualenv
sudo apt-get build-dep python-matplotlib
virtualenv venv
. venv/bin/activate
pip install matplotlib