pjuhasz
pjuhasz
Hello, I've been using your git-prompt for a while, adding new modules and features from time to time. A few days ago I found your github, so I decided to...
Consider the following program: ```package main import ( "fmt" "github.com/kelindar/binary" ) type Thing struct { N int P *Thing } func main() { x := Thing{N: 1} bin, _ :=...
This commit fixes issue #22. To recap: it is not valid to assume that the entire packet is going to be available with a single Read() call. Interestingly, a similar...