Posts
All the articles I've posted.
Creating a palindrome checker
Posted on:February 23, 2024 at 06:00 PMCreating a function to check if a sentence is a palindrome
Creating scalable parameterized functions
Posted on:October 26, 2023 at 08:40 PMHow to create scalable function that uses many parameters
How to mock an Angular service with Jest
Posted on:October 15, 2023 at 11:21 AMIt is a simple but still an useful way to mock an Angular service with Jest
Creating Custom RxJS Operators
Posted on:February 26, 2023 at 07:00 PMCreating RxJS custom operators is critical for keeping the code organized and readable, especially when using it with Angular.
Angular Inject Function: A New Way To Work With DI
Posted on:October 10, 2022 at 09:00 PMThe new inject function released in Angular 14 gives us a new way to work with dependency injection. Now, we can inject dependencies inside functions and a lot more!
Angular Standalone Components: Say Goodbye To NgModules
Posted on:September 25, 2022 at 08:00 AMIn this post, we will see how to use the Angular V14 feature called "standalone component"! That feature will make Angular applications easier and simpler to create and understand. Say hello to the future without NgModules!
Creating a Micro Frontend App with Angular Module Federation
Posted on:August 29, 2022 at 03:00 AMLet's create a micro frontend app with Angular Module Federation and Nx! That's an amazing way to make the applications smaller and faster to deploy.
How to work from anywhere
Posted on:December 30, 2021 at 09:29 PMWell, here I am, in a coffee shop, while my apartment is turned inside out by the cleaning lady I occasionally call.
The importance of communication in the home office
Posted on:August 23, 2021 at 03:13 PMA few months ago, I accepted the challenge of being part of the [Lastlink](https://lastlink.com/) development team, and since then, the way I started to approach the remote work journey has improved a lot, especially in relation to the communication.
How to create reusable Angular components using NgTemplate
Posted on:August 16, 2017 at 01:17 AMSince I started producing reusable components with Angular2+, I've always tried to make them as customizable as possible using Inputs and ng-content.