Introduction to Regular Expressions (RegEx) – Your Secret Tool for Text Manipulation | part 3A

Dive into the quirky world of email validation with regex, where ensuring a proper 'hello@world.com' isn't as straightforward as it seems! Our simple regex pattern tries its best, capturing common mishaps like missing '@' signs or playful extra dots, but beware—it's not foolproof. Perfecting this delicate balance of regex magic means some quirky emails might just slip through the cracks!

Introduction to Regular Expressions (RegEx) – Your Secret Tool for Text Manipulation | part 2

The RegExp object in JavaScript and TypeScript is a built-in tool that makes working with strings easier by offering powerful pattern matching and search functionality. With methods like test(), exec(), and replace(), RegExp helps with validating inputs, finding patterns, and efficiently parsing text in any application.

How to create a basic Angular app with Angular 17

I gotta admit: there are quite a few changes in how we build apps these days. I like the direction Angular version-changes are taking but still, it takes some time to get used to doing things the "new" way. So, let's create a basic app with some structure and routing. Once you have it going, … Continue reading How to create a basic Angular app with Angular 17

Angular – getting started

Discover how to set up your Angular development environment with this guide. Install Node.js, npm, and Angular CLI to manage dependencies, automate tasks, and follow best practices. Choose from a variety of IDEs tailored for Angular projects. Unleash your ng-superpowers and dive into the world of Angular with the right tools by your side.