Skip to content

Instantly share code, notes, and snippets.

View kschaper's full-sized avatar

Kai Schaper kschaper

  • Hamburg, Germany
View GitHub Profile
@kschaper
kschaper / main.go
Last active October 30, 2017 19:15
package main
import (
"fmt"
"html/template"
"log"
"net/http"
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
@kschaper
kschaper / infinite_loop.go
Last active March 21, 2024 14:02
CPU friendly infinite loop in Go
// CPU friendly
for {
select {
case <-time.After(time.Second):
// do something
}
}
// instead of busy loop
for {