New Year Sale: 30% off all Training Bundles! Shop Bundles →
Ardan Labs

In a recent livestream with JetBrains, Vitaly Bragilevsky sat down with Herbert Wolverson, our Lead Rust Consultant and Instructor here at Ardan Labs, to talk about everything Rust developers – …

Subscribe to our Newsletter

By signing up you get access to our FREE Training Bundle, Technical Tuesday releases, Special Offers, & Notifications on our latest content.

All Blog Posts

Nov 5, 2013

-

5 min read

Using The Log Package In Go

go Training golang

Linux is unique to Windows in many ways, and writing programs in Linux is no exception. The use of standard out, standard err and null devices is not only a good idea but …

Nov 3, 2013

-

8 min read

Using XSLT With Go

go Training golang

I am working on a project that requires pulling and processing different XML feeds from the web and storing the data into MongoDB as JSON. Since new feeds come up …

Oct 26, 2013

-

6 min read

Manage Dependencies With GODEP

go Training golang

Introduction If you are using 3rd party packages, (packages that you don't own or control), you will want a way to create a reproducible build every time you build your …

Oct 17, 2013

-

7 min read

My Channel Select Bug

go Training golang

I was testing new functionality on a program that is already running in production when suddenly the code behaved very badly. What I saw shocked me and then it became …

Oct 10, 2013

-

5 min read

Functions and Naked Returns In Go

go Training golang

In Go values that are returned from functions are passed by value. Go gives you some nice flexibility when it comes to returning values from a function. Here is a simple …

Oct 2, 2013

-

7 min read

Cross Compile Your Go Programs

go Training golang

Introduction In my post about building and running programs in Iron.Io, I needed to switched over to my Ubuntu VM to build linux versions of my test programs locally. I …

go Training golang

Nathan Youngman, with the help of others, has produced this document outlining months of research and discovery. I would appreciate everyone to honestly read it before …

Sep 26, 2013

-

10 min read

Detecting Race Conditions With Go

go Training golang

I always find it interesting when I realize that something I have been practicing or dealing with for a long time has a name. This time it happens to be race conditions. …

Sep 26, 2013

-

11 min read

Recursion And Tail Calls In Go

go Training golang

This article was written for and published by Gopher Academy I was looking at a code sample that showed a recursive function in Go and the writer was very quick to state …