avatar

Andres Jaimes

Migrating from WordPress to Hugo

The idea behind migrating to hugo is to avoid having to deal with server and certificate updates, backups and so on. Plus moving a site to a global network, like Netlify’s, comes with the added benefits of quick download speeds and an easy to …

Who pays wages?

It is not the employer who pays the wages. Employers only handle the money. It is the customer who pays the wages. - Henry Ford

A purely functional example using Scala

On this tutorial we’re going to explore the basics of purely functional programming using Scala. One of the principles with purely functional style, is that we have to define concepts in terms of functions.

The basics: Comparing a number

We’re going …

Examples of ‘for’ queries with Scala

On this page you are going to find some examples of ‘for’ queries.
Let’s start by defining the following database:

 1case class Book(title: String, authors: List[String])
 2
 3val books: List[Book] = List(
 4  Book("structure and interpretation …

PlayFramework – Java

So far I have really liked this concept. The only con is that some times is difficult to find full examples that use the latest version.

Installing sbt

We need sbt for compiling and running Play applications.

brew install sbt@1

Executing a first …