Skip to content

Instantly share code, notes, and snippets.

View justingood's full-sized avatar

Justin Good justingood

View GitHub Profile
@dannycroft
dannycroft / utopic-node
Created April 20, 2015 15:55
Dockerfile
FROM ubuntu:utopic
RUN apt-get update \
&& apt-get install -y --force-yes \
apt-transport-https \
build-essential \
curl \
lsb-release \
python-all \
rlwrap \
@hbpasti
hbpasti / README.md
Created November 7, 2014 18:28
fontawesome with i3status

fontawesome with i3status

This is my i3 config, using FontAwesome icons for i3status.

Save files to ~/.i3.

@buth
buth / chef-server-reindex.sh
Created February 11, 2014 16:32
Rebuild the Chef-SOLR index from the database without dropping existing data.
sudo PATH=/opt/chef-server/embedded/bin:$PATH /opt/chef-server/embedded/service/erchef/bin/reindex-chef-server reindex
@bradmontgomery
bradmontgomery / geo.py
Created April 16, 2013 16:42
Example of Reverse Geocoding in python with Google Maps api
import requests
def example():
# grab some lat/long coords from wherever. For this example,
# I just opened a javascript console in the browser and ran:
#
# navigator.geolocation.getCurrentPosition(function(p) {
# console.log(p);
# })