Armin Zia's Blog

Articles, tutorials, and thoughts on software development

jarallax-cover
integrate-tinymce-with-angular

Integrate TinyMCE with Angular

Apr 13, 2021

Content editors are an essential part of the web. In this post, I'll show you how to integrate TinyMCE into Angular projects. In a future post, I'll show you how to write custom plugins for TinyMCE too.

sort-and-filter-data-tables-in-angular

Sort & Filter Data Tables in Angular

Apr 9, 2021

In this post, I'll show you how to sort and filter data tables in Angular applications. We'll create a pipe for filtering data, and an attribute directive for sorting tables by columns.

angular-router-fade-animation

Angular Router Fade Animation

Apr 1, 2021

Animations can greatly improve the user experience of your applications. In this short tutorial, I'll show you how to use Angular's Animations API to create a simple fade-in/fade-out animation for routing transitions.

angular-gravatar-directive

Angular Gravatar Directive

Mar 30, 2021

In this post I'll show you how to create an Angular directive for displaying Gravatar images.

angular-can-deactivate-guard-tutorial

Angular CanDeactivate Guard Tutorial

Mar 29, 2021

Learn how to implement a CanDeactivate guard in Angular.

file-upload-with-aspnet-core-and-angular

File Upload with ASP.NET Core and Angular

Mar 29, 2021

In this post, we're going to implement file uploads with ASP.NET Core and Angular.

implement-a-password-strength-meter-in-angular

Implement a Password Strength Meter in Angular

Mar 28, 2021

Learn how to build a password strength meter component in Angular.

using-google-geocoding-api-in-angular

Using Google Geocoding API in Angular

Mar 26, 2021

Learn how to use Google's Geocoding API in Angular.

working-with-google-maps-in-angular

Working with Google Maps in Angular

Mar 25, 2021

In this post, I'll show you how to work with Google Maps in Angular projects.

export-data-to-excel-with-aspnet-core

Export data to Excel with ASP.NET Core

Mar 24, 2021

<p>A while ago I had to export some data to Excel from an ASP.NET Core website. I have implemented a lot of exporting in the past with ASP.NET and C# in general, it was fun to explore different options and port them to ASP.NET Core. In this post, I'l