Skip to content

Instantly share code, notes, and snippets.

View DaveAppleton's full-sized avatar

Dave Appleton DaveAppleton

View GitHub Profile
@DaveAppleton
DaveAppleton / Verifying my Peepeth
Created August 30, 2018 05:40
Verifying my Peepeth
Verifying my identity on Peepeth.com 0x31efd75bc0b5fbafc6015bd50590f4fdab6a3f22
@DaveAppleton
DaveAppleton / server1.go
Created April 1, 2020 23:46
Simple server used to demonstrate CADDY
package main
import (
"fmt"
"net/http"
"time"
)
func main() {
http.HandleFunc("/api/test",func(w http.ResponseWriter, r * http.Request){ fmt.Fprintf(w,"test")})
@DaveAppleton
DaveAppleton / server1.go
Created April 1, 2020 23:46
Simple server used to demonstrate CADDY
package main
import (
"fmt"
"net/http"
"time"
)
func main() {
http.HandleFunc("/api/test",func(w http.ResponseWriter, r * http.Request){ fmt.Fprintf(w,"test")})