Skip to content

Instantly share code, notes, and snippets.

@portalsoup
portalsoup / hello.go
Created December 15, 2015 21:14
Basic hello world golang web server
package main
import (
"net/http"
"io"
)
func helloHandler(w http.ResponseWriter, r *http.Request) {
io.WriteString(w, "Hello world!")
}
@portalsoup
portalsoup / gist:7418783
Last active September 28, 2017 18:54
Osx "hacks"
#Makes Finder show full posix path in header of current folder.
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true; killall Finder