Uncategorized

Creating an Angular app in minutes with Cypress, StoryBook, Tailwind CSS and Nx

Have you been asked to develop a coding exercise application for an interview? Or have you wanted to try new libraries or features in an application that you can control? Or do you want to have an application that you can showcase on GitHub? Well, fear not; in this article, I will show you how to …

Creating an Angular app in minutes with Cypress, StoryBook, Tailwind CSS and Nx Read More »

Math Types in TypeScript

Image from brgfx on Freepik Introduction The words ‘math type’ in a programming language such as Javascript or Typescript seem strange, perhaps even a bit insane. Javascript has a Number type that allows for arithmetic operations such as addition, subtraction, multiplication, and division. There is a robust coercion facility in the language that stems from the …

Math Types in TypeScript Read More »

Angular Dynamic Component in Material Dialog with Dependencies

In my previous article I discussed how to dynamically lazy-load a standalone component at runtime into an Angular Material dialog. But, what if that standalone component has service dependencies, needs external configuration, or needs to communicate with the host dialog in some way? Let’s see several ways of solving those challenges. Here is the starting …

Angular Dynamic Component in Material Dialog with Dependencies Read More »