GGo Parsing Ransack strings to SQL queries in GolangbyCarlos GutierrezMarch 10, 2015 Reading Time: 6 minutesRecently we were working on migrating a Rails app to Go but, just before we started working, we…
GGo Reducing the number of error handling “if” statements (if != nil)byCarlos GutierrezFebruary 26, 2015 Reading Time: 4 minutesWhen I started learning Go, my code usually ended up looking like this: func GetDataFromFile(fileUri string) (*Data, error)…
GGo Golang TagsbyIsay SosaFebruary 17, 2015 Reading Time: 4 minutesHey guys! If you are a Go developer, you probably have used tags inside your structs. A tag…
GGo Sending SMS messages using Twilio and GolangbyIsay SosaJanuary 6, 2015 Reading Time: 3 minutesRecently, I had the opportunity to work on a Golang project which needed to send SMS messages. For…
GGo Sharing data globally within application with Gorilla Web Toolkit (golang)byCarlos GutierrezDecember 16, 2014 Reading Time: 2 minutesIf you have been a developer for several years, maybe you have been in a situation where you…
CCraftsmanship GoConvey and Deaf GrandmabyIsay SosaDecember 12, 2014 Reading Time: 5 minutesIf you have used Ruby on Rails, you may be familiar with Rspec, a gem that allows us…
GGo Understanding Google Cloud Datastore Keys (using Go)byCarlos GutierrezNovember 21, 2014 Reading Time: 3 minutesIf you are new to datastore, you will find that, unlike a relational database, Google Cloud Engine's datastore…
CCraftsmanship Custom Error Marshaling to JSON in GobyMagmaLabs TeamNovember 13, 2014 Reading Time: 2 minutesIn this post I want to go through an example of data marshaling in the Go language. The…