blog.scriptonist.devSomething about Go strings that you should knowWhat will be the output of the following code snippet? package main import ( "fmt" ) func main() { var s = "abcdè" fmt.Println(len(s)) } The string s has 5 characters and therefore the output should be 5 right? or Is it 🤔 If we try ru...Jun 10, 2019
blog.scriptonist.devGetting started with KubernetesIntroduction I found this hashnode article to be a great introduction to docker. It shows us how we can dockerize our app and run it as a container. I thought I'll put up a follow-up blog post which will explain how to deploy and manage these contain...Apr 3, 2019