Skip to content

Instantly share code, notes, and snippets.

@stereosteve
stereosteve / StevePerkinsResume.md
Last active January 2, 2016 10:39
Steve Perkins' Resume

Steve Perkins

  • Full stack developer working in JavaScript, Go, Ruby, lua and more.
  • Front End: angular.js, vue.js, d3, paper.js, less / stylus, bower, grunt / gulp
  • Back End: Node.js, Go, SQL, Mongo, Redis, websockets, etc.
  • Comfortable with linux, basic ops and AWS services.

Education

@stereosteve
stereosteve / backgroundVideo.js
Created December 12, 2013 12:55
Shows a video fullscreen in the background of a page. Scales and centers video when you resize the window. Similar to bigvideo.js but much simpler.
$.fn.backgroundVideo = function() {
var win = $(window)
var wrap = this
var vid = wrap.find('video')
if (vid.length == 0) {
throw new Error("You must call backgroundVideo on a wrapper div that contains a video element. No video element found.")
}
wrap.css({
@stereosteve
stereosteve / http_get.go
Last active December 14, 2015 09:29 — forked from ijt/http_get.go
package main
import (
"fmt"
"io/ioutil"
"net/http"
"os"
)
func main() {