Tag
Software Development
9 posts tagged "Software Development".
5 min readThe Desktop is Dead! Long live the Desktop!
So it seems like desktop applications are dead, or the were... I don't know. I'd rather a full native app instead of a web-based app. EVERYWHERE! And that…
4 min readGetting Started with Flutter for Linux
This post will not cover how to install Flutter on Linux, that can be easily done reading the following [official…
3 min readScanning your Java/Kotlin project with SonarQube
In the past year as a Technical Leader at Santander I have seen several a lot of code challenges submitted by applicants. All of them were small apps with…
2 min readHeadless Raspberry Pi configuration
Settings up a Raspberry Pi it's easy when you have an HDMI display, a USB keyboard and mouse in oder to access the terminal or you favourite Desktop, but…
2 min readFibonacci Sequence (or when NOT to use recursion)
For those of us who study computer science and algorithms, the study of [recursion](https://en.wikipedia.org/wiki/Recursion_\(computer_science\)) has an…
2 min readListing all endpoints with Gorilla Mux Router
When adding different handlers to a Router, each one with its own base path (sub routing), it comes handy to list all the endpoints declared, not only as a…
3 min readHow to make a WhatsApp Bot in Go [Part 3 of N]
Processing incoming messages, either text or media, is one of the fundamental features a Bot must implement. In this post we will explore how to do this.
3 min readHow to make a WhatsApp Bot in Go [Part 2 of N]
In this second step, we are going to analyse how to use the API of [go-whatsapp](https://github.com/Rhymen/go-whatsapp) described in the [previous blog…
3 min readHow to make a WhatsApp Bot in Go [Part 1 of N]
Such a long time since I've published my last post, I'm back with a simple and small post: How to make a simple Whatsapp Bot in Go.