Columnize is a little Go package that formats strings with separators into columns.
Continue reading “columnize — format text into columns in Go”
Columnize is a little Go package that formats strings with separators into columns.
Continue reading “columnize — format text into columns in Go”
Writing HTML document handling code with parsers is pretty hard. Even plain DOM tree walking can make your code look like spaghetti. That is why libraries like jQuery are popular: they make it easy to do queries and all sorts of other manipulations with HTML documents.
goquery is like jQuery, but in Go.
Continue reading “goquery: jQuery-style HTML manipulation in Go”
log15 is a powerful structured logging package for Go with a simple, easy-to-use API. It supports output with color when logging to terminal, and also can write to files, streams, syslog and network.