(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| package main | |
| import ( | |
| "crypto/cipher" | |
| ) | |
| type ecb struct { | |
| b cipher.Block | |
| blockSize int | |
| } |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| ## Please set the ROOT to the folder your nxlog was installed into, | |
| ## otherwise it will not start. | |
| #define ROOT C:\Program Files\nxlog | |
| define ROOT C:\Program Files (x86)\nxlog | |
| define ROOT_STRING C:\Program Files (x86)\\nxlog | |
| Moduledir %ROOT%\modules | |
| CacheDir %ROOT%\data | |
| Pidfile %ROOT%\data\nxlog.pid |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "net/http" | |
| "github.com/codegangsta/martini" | |
| "github.com/garyburd/redigo/redis" | |
| "github.com/martini-contrib/render" |
Graphite does two things:
What Graphite does not do is collect data for you, however there are some tools out there that know
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "runtime" | |
| "strconv" | |
| "sync" | |
| "time" | |
| ) |