Skip to content

Instantly share code, notes, and snippets.

View mettledrum's full-sized avatar

Andrew Hoyle mettledrum

View GitHub Profile
@mettledrum
mettledrum / main.go
Last active December 15, 2017 16:42
go aws sdk -> s3rver docker; just morphed the README.md example a lil' bit
package main
import (
"context"
"encoding/json"
"flag"
"fmt"
"log"
"os"
"time"
@mettledrum
mettledrum / gist:a6107e0de98140b42222
Last active April 24, 2018 06:25
example of using pprof
package main
import (
"runtime/pprof"
"fmt"
"net/http"
"os"
"time"
)