Following the link for the video of my talk over “Does remote work really work?” in #thedevconf in Sao Paulo at this…
[OpenShift] – How to setup insecure-registry on Minishift?
Following the command to setup insecure-registry on Minishift and allow pull public docker or quay.io images. $ minishift config set…
[Operator-Framework] – How to debug a Golang operator project?
IntelliJ IDEA/Golang Following the steps that should be executed from the root dir of your operator project. # Export the…
[Golang] – Consuming REST API
Following examples to consuming a REST API by using the lib net/http. NOTE: You will find how to convert the…
[Algorithms] – Calc of factorial as a good example of recursion in go
Following the code implementation. func Factorial(n int) int { if n == 0 || n == 1 { return 1…
[Algorithms] – Problem “Jumping on the Clouds” solved with go
Problem: Solution: Following the code implemented to solve it. package algoTest func JumpingOnClouds(c []int32) int { jumps :=0 i :=…
[Algorithms] – Problem regards repeated strings solved with go
Problem: Solution: Following the code to solve the problem. package algoTest import “strings” func RepeatedString(s string, n int64) int64 {…
[Algorithms] – The classic Fibonacci with and without recursion in golang
What is Fibonacci? See more here What is Fibonacci formula? Fibonacci sequence, such that each number is the sum of…
[Algorithms] – Creating an LRUCache in golang
What is an LRUCache? The LRU means discards the least recently used items first. It means that a cache implementation…
[Kubernates/Openshift] – How to install/deploy/use OLM (Operator Lifecycle Manager) in Minishift?
Following the steps to install. 1. Install Minishift See here how to install Minishift with your SO and with the virtualization…