As part of the recent redesign of Facebook.com, there were a number of interesting improvements to make the website more accessible. This official article from Facebook Engineering, details all the optimizations introduced and show why they are important.
The CSS content-visibility property enables web content rendering performance benefits by skipping rendering of off-screen content. This article shows you how to leverage this new CSS property for faster initial load times, using the auto keyword.
Promises rule JavaScript. Even nowadays, with the introduction of async/await, they are still an obligatory piece of knowledge for any JS developer. Promises are one of those things that look simple on the surface but there are many details that you need to appreciate otherwise things will go wrong! This article tries to demystify 3 common mistakes.
Did you know how the favicon came to be? It is actually a quite interesting story and, if you are passionate about the web as we do, we are sure you are going to enjoy it! ☺️
Book of the week
JavaScript: The Good Parts
by Douglas Crockford
Most programming languages contain good and bad parts, but JavaScript has more than its share of the bad, having been developed and released in a hurry before it could be refined. This authoritative book scrapes away these bad features to reveal a subset of JavaScript that's more reliable, readable, and maintainable than the language as a whole—a subset you can use to create truly extensible and efficient code. Considered the JavaScript expert by many people in the development community, author Douglas Crockford identifies the abundance of good ideas that make JavaScript an outstanding object-oriented programming language-ideas such as functions, loose typing, dynamic objects, and an expressive object literal notation.