├── bitmap ├── bitmap.go └── bitmap_test.go ├── cache ├── .gitignore ├── Makefile ├── README.md ├── benchmark │ ├── main.go │ ├── mcache.go │ └── vcache.go ├── cache.go ├── lrucache │ ├── list.go │ ├── list_extension.go │ ├── lrucache.go │ ├── lrucache_test.go │ └── priorityqueue.go └── multilru │ ├── multilru.go │ └── multilru_test.go ├── euler ├── euler1.go ├── euler2.go ├── euler3.go └── euler4.go ├── grepnet └── grepnet.go ├── ip2as └── ip2as.go ├── orderby └── orderby.go ├── resolve ├── dnsclient.go ├── dnsmsg.go ├── dnsparse.go └── resolve.go └── websocket ├── client └── main.go └── server └── main.go /bitmap/bitmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/bitmap/bitmap.go -------------------------------------------------------------------------------- /bitmap/bitmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/bitmap/bitmap_test.go -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/.gitignore -------------------------------------------------------------------------------- /cache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/Makefile -------------------------------------------------------------------------------- /cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/README.md -------------------------------------------------------------------------------- /cache/benchmark/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/benchmark/main.go -------------------------------------------------------------------------------- /cache/benchmark/mcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/benchmark/mcache.go -------------------------------------------------------------------------------- /cache/benchmark/vcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/benchmark/vcache.go -------------------------------------------------------------------------------- /cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/cache.go -------------------------------------------------------------------------------- /cache/lrucache/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/lrucache/list.go -------------------------------------------------------------------------------- /cache/lrucache/list_extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/lrucache/list_extension.go -------------------------------------------------------------------------------- /cache/lrucache/lrucache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/lrucache/lrucache.go -------------------------------------------------------------------------------- /cache/lrucache/lrucache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/lrucache/lrucache_test.go -------------------------------------------------------------------------------- /cache/lrucache/priorityqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/lrucache/priorityqueue.go -------------------------------------------------------------------------------- /cache/multilru/multilru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/multilru/multilru.go -------------------------------------------------------------------------------- /cache/multilru/multilru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/cache/multilru/multilru_test.go -------------------------------------------------------------------------------- /euler/euler1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/euler/euler1.go -------------------------------------------------------------------------------- /euler/euler2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/euler/euler2.go -------------------------------------------------------------------------------- /euler/euler3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/euler/euler3.go -------------------------------------------------------------------------------- /euler/euler4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/euler/euler4.go -------------------------------------------------------------------------------- /grepnet/grepnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/grepnet/grepnet.go -------------------------------------------------------------------------------- /ip2as/ip2as.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/ip2as/ip2as.go -------------------------------------------------------------------------------- /orderby/orderby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/orderby/orderby.go -------------------------------------------------------------------------------- /resolve/dnsclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/resolve/dnsclient.go -------------------------------------------------------------------------------- /resolve/dnsmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/resolve/dnsmsg.go -------------------------------------------------------------------------------- /resolve/dnsparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/resolve/dnsparse.go -------------------------------------------------------------------------------- /resolve/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/resolve/resolve.go -------------------------------------------------------------------------------- /websocket/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/websocket/client/main.go -------------------------------------------------------------------------------- /websocket/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majek/goplayground/HEAD/websocket/server/main.go --------------------------------------------------------------------------------