Skip to content

Instantly share code, notes, and snippets.

@alexedwards
alexedwards / app.rb
Created January 24, 2013 09:42
Ajax content loading with Sinatra, jQuery and HTML5 Pushstate.
require 'sinatra'
before do
response['Cache-Control'] = 'no-cache, no-store' if request.xhr?
end
get '/' do
erb :home, layout: ! request.xhr?
end
@alexedwards
alexedwards / gist:827bae50710c32ab7997
Last active August 29, 2015 14:04
Examples of passing information to a handler via closures in Go
package main
import (
"log"
"net/http"
"time"
)
func main() {
mux := http.NewServeMux()
@alexedwards
alexedwards / main.go
Last active November 6, 2024 17:56
Example of chaining middlware in Go
package main
import (
"io"
"log"
"mime"
"net/http"
"os"
"github.com/goji/httpauth"
@alexedwards
alexedwards / gist:dc3145c8e2e6d2fd6cd9
Last active March 3, 2025 15:05
Example of working with Go's database/sql and NULL fields
CREATE TABLE books (
isbn char(14) NOT NULL,
title varchar(255),
author varchar(255),
price decimal(5,2)
);
INSERT INTO books (isbn, title, author, price) VALUES
('978-1503261969', 'Emma', 'Jayne Austen', 9.44),
('978-1514274873', 'Journal of a Soldier', NULL, 5.49),
@alexedwards
alexedwards / gist:4d20c505f389597c3360
Last active January 25, 2016 02:07
Illustration of using httprouter and stack
package main
import (
"fmt"
"github.com/alexedwards/stack"
"github.com/julienschmidt/httprouter"
"net/http"
)
func main() {
.
├── books
│   ├── handlers.go
│   └── models.go
├── config
│   └── db.go
└── main.go
.
├── books
│   ├── handlers.go
│   └── models.go
├── config
│   └── db.go
└── main.go
@alexedwards
alexedwards / _results
Last active September 30, 2018 13:51
SCS and Gorilla Sessions benchmarks
# SCS
BenchmarkSCSMemstore-8 200000 9573 ns/op 3643 B/op 49 allocs/op
BenchmarkSCSCookies-8 100000 23220 ns/op 7516 B/op 83 allocs/op
BenchmarkSCSRedis-8 30000 45783 ns/op 4459 B/op 76 allocs/op
BenchmarkSCSMySQL-8 300 5782698 ns/op 4382 B/op 73 allocs/op
BenchmarkSCSPostgres-8 500 3715685 ns/op 5585 B/op 96 allocs/op
# Gorilla
@alexedwards
alexedwards / main.go
Created May 5, 2017 08:38
02.02-01.gist
package main
import (
"flag"
"log"
"net/http"
"os"
"snippetbox.org/pkg/handlers/web"
)
@alexedwards
alexedwards / main.go
Created June 26, 2017 17:01
Usage of Flusher
package main
import (
"log"
"net/http"
"time"
)
func main() {
log.Fatal(http.ListenAndServe(":4000", http.HandlerFunc(multiWriteResponse)))