Skip to content

Instantly share code, notes, and snippets.

View jschpp's full-sized avatar

Johannes Schöpp jschpp

View GitHub Profile
@jschpp
jschpp / .mailcap
Last active April 26, 2016 10:10 — forked from pcon/.mailcap
Configurations for mutt and lynx
text/html; links -dump -width 78 %s | sed "s/^ //"; copiousoutput; needsterminal; nametemplate=%s.html
@jschpp
jschpp / revprox.go
Last active December 10, 2015 17:13 — forked from JalfResi/revprox.go
Simple reverse proxy in Go - Prints forwarded addresses
package main
import (
"bytes"
"log"
"net/http"
"net/http/httputil"
"net/url"
"time"
)