start new:
tmux
start new with session name:
tmux new -s myname
| (ns statsd-clj.server | |
| (:use [aleph.udp] | |
| [gloss core io] | |
| [lamina core api]) | |
| (:require [statsd-clj.config :as config] | |
| [statsd-clj.metrics :as metrics] | |
| [clojure.tools.logging :as log])) | |
| (def socket-server (agent nil)) |
A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "time" | |
| ) | |
| // Example SSE server in Golang. |