- https://github.com/segmentio/consul-go
- A recently released Golang Consul API client that focuses on providing a modern API. Eager to give it a try.
- https://github.com/tidwall/evio
- Interesting code, a very fast event-loop that makes direct syscalls rather than going through Golang’s net package. Think nginx or redis like event loops.
- https://github.com/go-commons/commons
- @bketelsen announced at DotGo 2017 a joined effort to create a common library for Go. Join the cause to make Go better 💪 !
- https://github.com/src-d/enry
- Think Linguist (detects language by looking at the code) but twice as fast
- https://github.com/fgeller/kt
- Built-in Kafka scripts are hard to use, KT provides a much simpler command line tool to easily create topics and partitions, consume and produce stuff.
- https://github.com/k88hudson/git-flight-rules
- What to do when a human uses git wrongly. Everyone should keep this around, because we all know that at some point, it will happen.
- https://github.com/jacobdufault/cquery/
- A Language Server for C++ that can deal with large codebases.
- https://github.com/lucacorti/lapin
- Lapin is a new Elixir project from @lucacorti which aims to fill in the gap between using directly the rabbitmq client without any consumer abstraction and a background processing solution. If you’re like us, in the process of rewriting this part of your code, this is definitively worth a git pull!
- https://blog.doist.com/the-age-of-remote-first-workplaces-d676ae892a78
- Gives a great perspective on remote-working and how it’s changing how we work.
- https://news.ycombinator.com/item?id=15601222
- Kafka reached an important milestone, it’s version 1.0 which marks its definitive transformation from a messaging system to a streaming platform.
- https://outcrawl.com/realtime-collaborative-drawing-go/
- @tinrab showcases Go’s simplicity by gently walking us through the code of a collaborative drawing web app in a very straightforward way.