Skip to content

Instantly share code, notes, and snippets.

View Focinfi's full-sized avatar
🎯
Focusing

Frank Wang Focinfi

🎯
Focusing
View GitHub Profile
package main
import (
"fmt"
"log"
zmq "github.com/pebbe/zmq4"
uuid "github.com/satori/go.uuid"
)
@yosisa
yosisa / file0.go
Created March 29, 2014 05:55
groupcache‎ で組み込み型分散キャッシュ ref: http://qiita.com/yosisa/items/4980559f328fb31c3a8d
package main
import (
"encoding/json"
"github.com/codegangsta/martini"
"github.com/golang/groupcache"
"net/http"
"os"
"time"
)
@UniIsland
UniIsland / SimpleHTTPServerWithUpload.py
Created August 14, 2012 04:01
Simple Python Http Server with Upload
#!/usr/bin/env python
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
"""