Skip to content

Instantly share code, notes, and snippets.

View paulmach's full-sized avatar

Paul Mach paulmach

  • Cisco Inc.
  • Oakland, CA
View GitHub Profile
@JalfResi
JalfResi / revprox.go
Last active April 16, 2024 17:31
Simple reverse proxy in Go
package main
import(
"log"
"net/url"
"net/http"
"net/http/httputil"
)
func main() {
@abackstrom
abackstrom / Makefile
Created November 2, 2010 09:45
CSS and JavaScript Minification/Compression Makefile
#
# css/js minification/compression makefile
#
#
# JS_TARGETS -- js files to minify/gzip
# CSS_TARGETS -- css files to minify/gzip
# CLEANUP -- additional files to delete during "make clean"
#