Recent Posts

Using the BEM methodology in Angular

Tagged in Angular
Published on
Written by Ritchie Jacobs

In this article we’ll look into a solution to implement the BEM methodology into an Angular application. BEM (Block-Element-Modifier) is a CSS naming methodology that attempts to speed up and simplify web development by dividing the user interface into separate...

Creating a custom form component in Angular

Tagged in Angular
Published on
Written by Ritchie Jacobs

One of the most common elements when building an Angular application are form fields. Your users need to provide his data to use all the functionalities of your app. These fields will be used on multiple pages, modals, footers, …...

Don't forget about currentColor

Tagged in CSS
Published on
Written by Ritchie Jacobs

With CSS preprocessors like SASS or LESS being a must to use in every new project we often forget that CSS already comes with some powerful built-in features nowadays. One such feature is the currentColor keyword. This property allows you...

Implementing Prettier in an Angular CLI app

Tagged in Angular
Published on
Written by Ritchie Jacobs

Keeping a consisent code style is not an easy task when working with a large team. Each developer has his own preferences and styling habits. It often leads to long discussions and a lot of time wasted in code reviews....

Searching within a string

Tagged in JavaScript
Published on
Written by Ritchie Jacobs

When you are just starting out with JavaScript or coming from another language it isn’t always clear how to do seemingly easy tasks, for example finding a certain value in a string. This article covers some built-in JavaScript methods you...