- 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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"os" | |
) | |
func main() { |
NewerOlder