Articles
The coding articles collection contains curated stories, tips, questions and answers on a wide variety of topics. The main focus of these articles revolves around the languages and technologies presented in snippets, as well as career advice and lessons.
7 essential Chrome extensions for web developers
Devtools, Article
Google Chrome's developer tools are nothing short of amazing. Here are 7 must-have extensions you can add to increase your productivity even further.
How can I deep freeze an object in JavaScript?
JavaScript, Article
Learn how mutability works in JavaScript, its applications to objects and how you can properly freeze them to make them constant.
Code Anatomy - Writing high performance Python code
Python, Article
Writing short, efficient Python code is not always straightforward. Read how we optimize our list snippets to increase performance using a couple of simple tricks.
What are CSS variables and where can I use them?
CSS, Article
Learn how CSS custom properties (CSS variables) work and what you can use them for in your code and designs.
Where and how can I use memoization in JavaScript?
JavaScript, Article
Learn different ways to memoize function calls in JavaScript as well as when to use memoization to get the best performance results.
How can I implement a singleton in JavaScript?
JavaScript, Article
Learn how to implement a singleton, a commonly used software design pattern, in JavaScript using the Proxy object.
What are JavaScript Iterators and where can I use them?
JavaScript, Article
Learn how the new JavaScript ES6 Iterators work and how you can use them to level up your programming projects by understanding these short code examples.
Breaking React - a common pattern to avoid
React, Article
As powerful as React is, it is also quite fragile at places. Did you know that just a few lines are more than enough to break your entire React application?
How can I copy text to clipboard with JavaScript?
JavaScript, Article
Learn how to programmatically copy text to clipboard with a few lines of JavaScript and level up your web development skills.
What is the difference between JavaScript's for...in, for...of and forEach?
JavaScript, Article
Learn the differences between the three most commonly used iteration methods offered by JavaScript, which often confuse beginners and veterans alike.
4 SEO tips for developers
SEO, Article
As time goes by, SEO is becoming increasingly relevant, but most web developers seem to have little experience with it. Here are 4 actionable SEO tips you can implement today.
An approach to testing stateful React components
React, Article
Testing stateful React components is by no means a difficult task, but did you know there is an elegant solution that doesn't involve testing state directly?
10 must-have VS Code extensions for JavaScript developers
Devtools, Article
VS Code is steadily gaining popularity among developers. Here are 10 essential extensions for JavaScript developers that aim to increase your productivity.