Skip to content

Instantly share code, notes, and snippets.

View gabemeola's full-sized avatar
🐛

Gabe gabemeola

🐛
View GitHub Profile
@gabemeola
gabemeola / main.go
Created May 31, 2018 01:09 — forked from filewalkwithme/main.go
Listening multiple ports on golang http servers (using http.Handler)
package main
import (
"net/http"
)
func main() {
go func() {
http.ListenAndServe(":8001", &fooHandler{})
}()
@gabemeola
gabemeola / introrx.md
Created December 4, 2017 22:06 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@gabemeola
gabemeola / states_hash.json
Created February 27, 2017 21:26 — forked from mshafrir/states_hash.json
US states in JSON form
{
"AL": "Alabama",
"AK": "Alaska",
"AS": "American Samoa",
"AZ": "Arizona",
"AR": "Arkansas",
"CA": "California",
"CO": "Colorado",
"CT": "Connecticut",
"DE": "Delaware",