Tag: golang

  • Autocomplete engine in Go: let’s build it

    Autocomplete engine in Go: let’s build it

    Reading Time: 4 minutes Some time ago I worked on a small autocomplete web service for fun and curiosity. Part of it consists pretty much of what I’m going to talk about in this post. We’re gonna build a small completion suggester in Go. A couple of assumptions I’ll have for this experiment are: we…

  • Gogoa – Cocoa bindings for Go

    Reading Time: 2 minutes I don’t actually know why but I was wondering how easy it is to integrate Cocoa with Go. Well [SPOILER] looks like it’s super easy! The first comfortable piece I encountered, actually, was Go 1.3 changelog where it states: Finally, the go command now supports packages that import Objective-C files (suffixed .m) through cgo.…