Reinforcement Learning: Q-learning

Reinforcement Learning: Q-learning

Although there is no consensus on the definition of artificial intelligence, we can say that it is the set of techniques whereby a computer system can exhibit intelligent behavior.  There are many approaches, such as expert systems, where rules are…

Option Pattern in Golang

Option Pattern in Golang

It has been about a year since I started developing some things in Go. At first, it was an unknown language to me. I only knew that it was a “typed” language, compiled and memory safe through a GC (Garbage…

Data Driven: Make decisions based on data

Data Driven: Make decisions based on data

Thanks to advances in digitization and new technologies, more and more organizations are collecting data on a massive scale in order to better understand their customers and the market.  This data is processed and transformed into useful information so that…

Basics on Apache Airflow

Basics on Apache Airflow

Apache Airflow is a free workflow orchestration software, which are created through Python scripts, and can be monitored using its user interface. Some examples of workflows in which this tool could be used are the scheduling of ETL (Extract, Transform,…

Concurrency through Futures in Scala

Concurrency through Futures in Scala

When we imagine a simple programming algorithm, it is logical to think about a succession of instructions that are executed sequentially, where the next instruction will not be executed until the one immediately preceding it has been completed. However, depending…