Rodrigo AncavilPython and OpenCV, how to play with ImagesNowadays, everything can be represented as Data, and photographs and images are no exception. So, we can use images like regular data and…Mar 28Mar 28
Rodrigo AncavilgRPC Go MicroserviceThe main idea behind RPC (Remote Procedure Call) is to allow that clients can directly call methods on a server application on a different…Nov 5, 2023Nov 5, 2023
Rodrigo AncavilHow to implement a stack in GoWe are going to implement a generic stack in Go, which means that the stack could store any type of item. To do that we’ll use the Go empty…Sep 25, 2023Sep 25, 2023
Rodrigo AncavilJupyter, Pandas and GeoJSONThis is guide to creating a Jupyter environment with Pandas and GeoJSON. We are going to create an docker image, so you go to the following…Sep 3, 2023Sep 3, 2023
Rodrigo AncavilGo example: how to cache the content of a file.This is a simple example of how to implement a basic content caching system using the Decorator design pattern in Go, where we will develop…Aug 27, 2023Aug 27, 2023
Rodrigo AncavilGo packages and modules.A package is a directory of .go files, and it is considered the basic block of a Go program. A module is a collection of packages.Aug 16, 2023Aug 16, 2023
Rodrigo AncavilGo for loopsGo uses the keyword for to execute loops. In Go doesn’t exist while loops (the keyword while doesn’t exist), we have to use a for to create…Aug 13, 2023Aug 13, 2023
Rodrigo AncavilGo variables and constantsGo is a statically typed programming language, so we must declare variable type every time we use it.Aug 13, 2023Aug 13, 2023