Skip to content

Instantly share code, notes, and snippets.

View bburky's full-sized avatar

Blake Burkhart bburky

View GitHub Profile
@bburky
bburky / hw2.tex
Created January 30, 2012 03:16
STAT 4813 Homework 2
\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\title{Homework 2}
\author{Blake Burkhart \vspace{\intextsep} \\
Math 4813, Section 1}
\date{January 31, 2012}
\renewcommand{\theenumi}{\alph{enumi}}
@bburky
bburky / fedora17-minimal.ks
Created June 11, 2012 22:49
Minimal Fedora 17 Kickstart
# Install, not upgrade
install
# Install from a friendly mirror and add updates
url --url=http://mirror.itc.virginia.edu/fedora/releases/17/Fedora/x86_64/os/
repo --name=updates
# Language and keyboard setup
lang en_US.UTF-8
keyboard us
@bburky
bburky / twittermap.ipynb
Created December 1, 2013 02:41
Plot tweets from a Twitter geocode search using IPython and follium
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bburky
bburky / instagrammap.ipynb
Created December 1, 2013 08:04
Map Instagram images using IPython and follium
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
[{"0500000US33009": 4.5, "0500000US38041": 3.5, "0500000US38043": 6.4, "0500000US39069": 9.7, "0500000US38045": 3.0, "0500000US38047": 3.0, "0500000US33001": 5.6, "0500000US33000": 5.4, "0500000US33003": 5.4, "0500000US33005": 5.3, "0500000US47159": 9.4, "0500000US33007": 7.6, "0500000US19175": 5.5, "0500000US19177": 7.1, "0500000US46095": 5.8, "0500000US19171": 6.9, "0500000US19173": 4.6, "0500000US24045": 9.0, "0500000US24047": 12.2, "0500000US24510": 10.5, "0500000US19179": 7.6, "0500000US48373": 9.7, "0500000US24043": 9.8, "0500000US46093": 5.0, "0500000US55103": 7.0, "0500000US46091": 6.6, "0500000US26009": 12.3, "0500000US31183": 3.6, "0500000US31181": 4.4, "0500000US31185": 4.5, "0500000US49041": 7.4, "0500000US49043": 6.1, "0500000US39067": 10.3, "0500000US49047": 5.1, "0500000US56000": 6.0, "0500000US18155": 7.0, "0500000US18157": 7.7, "0500000US18151": 10.2, "0500000US18153": 10.1, "0500000US29021": 7.4, "0500000US55029": 10.6, "0500000US29023": 8.2, "0500000US18159": 10.3, "0500000US29027": 7.5, "0
<!doctype html>
<script src="https://mediacru.sh/static/mediacrush.js"></script>
<script>
var hash = document.location.search.substring(1);
MediaCrush.delete(hash)
</script>
@bburky
bburky / instant-wordpress.sh
Created March 3, 2014 03:20
Instantly download and run WordPress using SQLite
#!/bin/sh
# One line:
# curl -L http://git.io/wp.sh | sh
# Optionally specify port number:
# curl -L http://git.io/wp.sh | PORT=8888 sh
# The directory "wordpress" will be created in the current directory.
test -e wordpress && echo "wordpress/ already exists" && exit
We couldn’t find that file to show.
# Only CentOS 6.4 is avialable, not 6.5
#FROM centos:6.4
# Unoffical repository. Has CentOS 6.5
FROM tianon/centos:6.5
# Add zip and sudo. Is sudo usually absent from default installs?
RUN yum install -y sudo zip
# Make a original-docs.zip with some files in it
We couldn’t find that file to show.