Golang in London

I’ve been awfully quiet this week here, for a good reason. To cut straight to the chase - join me on the next Golang in London meetup where we’ll create a small application for playing your favourite songs through terminal - entirely from scratch!
Read more →

Plain Go CRUD API Part I

First of all - thanks to all who has attended the playground! We’re trying to find a format that will benefit us all in these new times, and it makes the work 100x better knowing, that what we’ve prepared works for you!
Read more →

Why DevOps Engineers Should Know Go

Go came onto the tech scene by the end of 2009 and slowly established it’s position as one of the major players in the DevOps world.
Read more →

Baby Steps Part II

Previous parts: Part I Last time we’ve talked about how to start contributing to Open Source - and to reinforce my statement, I’ve started contributing to a relatively new library for supporting Chrome headless browser called Rod and came back to my contributions to Go-Audio.
Read more →

How To Exit Vim

How to exit Vim in three simple steps. Using Go, of course. Make sure you have Go installed. Write a whole application to find and kill vim: package main import ( "bytes" "io/ioutil" "log" "os" "path/filepath" "strconv" "strings" ) func TerminateVim(path string, info os.
Read more →