Using GO to render HTML for WordPress or PHP

Some people maybe already be aware, others may not, we’re using WordPress. Which, of course, is written in PHP.

It’s time we added some Go Power to WordPress! Continue reading

Posted in golang | 1 Comment

Append / Add to a Go lang Collection Part 2

In the previous couple of Article’s we added some methods to a struct that contained a []*T a few people have pointed out that you can do that same with type foo []*T.

This article looks at how to achieve the same sort & Add functionality to such a type.

Continue reading

Posted in golang | 4 Comments

Append / Add to a Go lang Collection

Go lang’s composite literal notation is really nice, but more often than not we find ourselves needing to dynamically append to slices & arrays.

This article looks at how implement a .Add feature into a struct that contains a []*T, as well as another method .Get to return the first match for a given value. Continue reading

Posted in golang | 4 Comments

Implementing sort.Sort on a struct in Golang – Part 2

We’re about to release an implementation of an OAuth Consumer written in Go lang that required some additional Sorting logic.

In this article we’ll look at this sorting logic. Continue reading

Posted in golang | 2 Comments

Will Go, go like wave

After the news earlier this week about Google abandoning Wave what that the chances of the same thing happening to Golang?

The more time & effort developers and companies put into using, learning & implementing Go the more they have to loose, what’s Google commitment?

Continue reading

Posted in golang | 2 Comments