Skip to content

Instantly share code, notes, and snippets.

View rusnyder's full-sized avatar

Russell Snyder rusnyder

View GitHub Profile

Keybase proof

I hereby claim:

  • I am rusnyder on github.
  • I am rusnyder (https://keybase.io/rusnyder) on keybase.
  • I have a public key whose fingerprint is D61C 9270 9120 6501 8651 7FBC CF42 34AB B72A 7E78

To claim this, I am signing this object:

@rusnyder
rusnyder / stitch-siva-arg-images.py
Created September 28, 2016 05:04
Detects edges in the Destiny Siva ARG image set and stitches them together
#!/usr/bin/env python
import click
import cv2
import imutils
import json
import numpy as np
import os
import pprint
import sys
@rusnyder
rusnyder / python-comment-sample.py
Created April 17, 2014 15:18
Python Comment sample
#!/usr/bin/env python
"""
Python Commenting Example
-------------------------
This is a quick sample about best practices for commenting.
Then end-all/be-all guide for python is the PEP Style Guide
(http://legacy.python.org/dev/peps/pep-0008/), and this file
@rusnyder
rusnyder / load-dataset-to-postgres.coffee
Created January 21, 2014 16:11
CoffeeScript CLI Example - This scrapes an elasticsearch cluster using the provided query and loads event metadata into a postgres database.
#! /usr/bin/env coffee
# Imports
http = require 'http'
es = require 'elasticsearch'
util = require 'util'
moment = require 'moment'
_ = require 'underscore'
dbconfig = require("#{__dirname}/../server/config/devel_db_config.coffee")
cli = require 'cli'