Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
The Go Programming Language
A typical build pipeline will see Developers check code into a repository, and then this will trigger an automated build in a system such as Jenkins, which will then check out the code, build it and run the unit tests.…
Java, Python and many other languages have many standard collections available, 3 of the most basic and common would be Lists, Maps and Sets. Go provides lists (slices), and maps (dictionaries), but not set. This might seem a deficiency in…
Many programming languages such as Java and Python come with a very large set of features and standard library. While Go does come with an excellent standard library, it is deliberately smaller. On of the primary purposes of Go is…
This post is the 2nd and final post in this series, and follows on from A Go Microservice, first look – part 1 Adding a datastore – MongoDB integration To interact with MongoDB, we need to add the ‘Go MongoDB…
Following on from a recent post – Introduction to Go I want to look in more detail at using Go to build microservices. Go seems to be a popular language choice for this, so in this post (part 1 of…
I blogged previously about the merits of learning a new programming language every year, so taking my own suggestion, I’ve had a first look at Go. You might hear it called Golang, but that’s just the url for the website,…