How to Sort Array of Objects by Date in JavaScript

I recently had to figure out how to use JavaScript sort to order objects by date property. JavaScript sort method is available on array objects in JavaScript. It mutates the array, which means it modifies the elements of the array while sorting. The sort method has excellent support across all…

  • Post category:JavaScript
  • Post comments:2 Comments
  • Reading time:5 mins read
Continue ReadingHow to Sort Array of Objects by Date in JavaScript

Best Visual Studio Code Extensions for Angular Developers

Without a doubt, Visual Studio Code is one of the most popular front-end IDEs. It's popularity is due to its speed and customisability with extensions from the marketplace. Even though Microsoft has been improving VS Code to include new features, there are still missing features! I will share the best…

  • Post category:Angular
  • Post comments:2 Comments
  • Reading time:6 mins read
Continue ReadingBest Visual Studio Code Extensions for Angular Developers

Monitoring Live .NET Core APIs with Application Insights

Azure Application Insights is a cloud based application monitoring service from Microsoft. You can monitor your applications in all of your environments with Application Insights, including development and production. Microsoft has been shipping Visual Studio with built-in support for Application Insights in Windows. However, Visual Studio for Mac does not…

Continue ReadingMonitoring Live .NET Core APIs with Application Insights

How to Fix VS Code Rename Symbols Feature for TypeScript

Visual Studio Code is an open-source, lightweight IDE from Microsoft. I enjoy using it on a day-to-day basis, generally for front-end projects like Angular web applications. VS Code has many handy features, one of my favourite is the rename symbols feature. The rename feature allows you to easily change the…

  • Post category:TypeScript
  • Post comments:2 Comments
  • Reading time:3 mins read
Continue ReadingHow to Fix VS Code Rename Symbols Feature for TypeScript

Execute Angular E2E Tests in Different Environments

The default Angular project template executes end-to-end tests using the development environment. If you're like me and switch to a Mac from Windows quite frequently, you may want to have the ability to execute your e2e tests in a different configuration. We will enable executing Angular e2e tests in different…

  • Post category:Angular
  • Post comments:0 Comments
  • Reading time:3 mins read
Continue ReadingExecute Angular E2E Tests in Different Environments

Writing an Angular Pipe to Display TimeSpan Values

I recently had an interesting problem to solve around displaying TimeSpan values in Angular. Introduction My API happens to be written in .NET Core using C#, which returns a timespan representing a duration value. Our aim is to convert TimeSpan values to the display format 1d 1h 10m. As an…

  • Post category:Angular
  • Post comments:0 Comments
  • Reading time:4 mins read
Continue ReadingWriting an Angular Pipe to Display TimeSpan Values