Understanding Prototypes and Inheritance in Javascript

In this article, we will explain a concept that got me confused for a long time: Prototypes and Inheritance in Javascript. What are prototypes? How do they work?

May 27, 2020 · 6 min

Should remote workers be paid differently based on location?

The COVID-19 crisis has brought remote working to an all-time high in the world. But with this new world order comes a new question: should workers be paid differently if they don’t live in the same area?

May 22, 2020 · 3 min

Implement Code Splitting in React

In this article, we will get started with code splitting in React. By using dynamic imports, React.lazy and Suspense, you can dramatically improve the performance of your application.

May 21, 2020 · 5 min

Higher-Order Functions in Javascript

In this article, we will explain what the Higher-Order Functions in Javascript are all about. We will also start to explore composition.

May 20, 2020 · 4 min

What are Javascript's IIFE?

In this article, we will understand what is an IIFE in Javascript and why you would want to use them.

May 17, 2020 · 4 min

Create a calendar plugin with vanilla Javascript

In this article, we will build a very simple plugin with vanilla Javascript. This plugin will render a Calendar.

May 14, 2020 · 11 min

An introduction to Stoicism: Part One

Let’s talk about a philosophy that changed a lot of things in my life: Stoicism.

May 12, 2020 · 6 min

The Dreyfus model of skill acquisition

The Dreyfus model of skill acquisition is used to access the level of development of competencies and skills of people who are learning something new.

May 8, 2020 · 5 min

Iframes and communicating between two applications

Introduction Iframes are awesome! They allow you to embed another HTML page inside the current one. The embedded page carries its own browsing context with it. So, if a HTML page creates an iframe with a remote application as its source, you’ll have the first application hosting that remote application with all its functionalities. It’s a technique that’s used by a lot of companies to allow developers to use their service easily ( Stripe and Yousign come to mind)...

April 26, 2020 · 6 min

Using foreign keys with Loopback 4 and PostgresQL

Configuring properly a Loopback 4 project that uses PostgresQL and setting up correctly the foreign keys appeared to be quite difficult for me. In this article, let’s explore how you could do it!

April 19, 2020 · 8 min