What cooking taught me about software engineering

In this article, I’ll list everything that my hobby has taught me about software engineering. Because that’s how hobbies work right?

July 1, 2020

Accessible hiding and hidden-aria

As developers, accessibility should not be an after thought. We should write our code with accessibility in mind from the start. In this article, we’ll talk about accessible hiding and the hidden-aria attribute.

June 18, 2020

Replacing the master branch from git

Words have power. Words have meaning. We must keep in mind the history, the experiences of the most vulnerable people when we choose name for concepts in order to do no harm. The term master must disappear from tech.

June 13, 2020

How to protect a Netlify branch behind a password

A common workflow is to have a branch production and a development or test branch. You might not want to let anyone check out the development branch to see all the cool stuff you’re cooking. Netlify lets you do that.

June 12, 2020

How to create custom Hooks in React

React gave us a lot of freedom with Hooks. In this article, we will see how we can write our custom Hooks to abstract logic and reduce duplicate code.

June 7, 2020

Object.seal vs Object.freeze in Javascript

Ever wondered what were the differences between Object.seal() and Object.freeze() in Javascript? This article is for you!

June 2, 2020

All guilty, all responsible

What can you do, as a white person, to fight the systems of oppressions design to support white supremacy? Get to work…

May 30, 2020

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

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

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