-
Creating a Content Recommendation Plugin in 11ty
In this tutorial we will create a plugin in 11ty that intelligently analyses the tags of your blog posts to suggest related articles to your readers.
-
Binary Choices: Exploring Decision-Making
This article offers insights into the relationship between binary and complex decisions, drawing on cognitive science, history, and religious perspectives to improve decision-making capabilities.
-
Software Engineering and Coffee: Far away from craftsmanship but close
The art of coffee brewing and software engineering, at first glance, appear to be worlds apart, each weaving its own intricate patterns. Yet, when the essence is distilled, they converge in a dance of creativity, precision, and profound impact.
-
Optional Chaining in JavaScript
Optional chaining in JavaScript enables you to read property values from within a chain of connected objects without checking if each reference in it is valid. The optional chaining operator `?.` stops evaluation if any value before `?.` is null or undefined.