Go

Test Driven Development With Golang on OSX

How to do Test Driven Development with Go on OSX You are looking to start using TDD, but you want a simple tool setup to automate running your tests and giving you the red green display. I have been trying out different setups for programming Go with TDD on OSX, and I am going to show you one that is easy to setup. This post will cover the setup you need to code in one screen and have your tests automatically run and output in another screen.

Go projects

Go Projects Here is a very useful tip for finding go projects based on a keyword search. I recently had to parse a large number of Excel xlsx and xls files for a regulatory compliance request. I would have traditionally used a Perl module for this, but the version of the module for xlsx that I had was prone to some memory issues. Go does not really have a CPANfor those just learning golang.