Posts
The Collection Comparer, Finding the Differences Between Two Collections
Have you had to compare two collections and execute some logic based on whether the item is in the source collection, in the comparing collection or in both? Yeah, me too, I needed to merge data from the UI and the database. I couldn’t find a good solution, so, I wrote a collection comparer.
Implementing Request Caching in ASP.Net Core
At some point in an application’s development, usually, fairly early on, you realize the application is slow. After some research, the culprit is, unnecessarily retrieving the same data, and a light goes off, and you think: “I need some caching.”
Running Await in a Constructor
If you must run code in a constructor. I’d look for a different way, but if you must, here’s one way.
Stop and Remove ALL Docker Containers and Images
This is shamelessly stolen from The Humble Developer.
Workaround for 'Template parse errors;' in Angular
This was one of the more frustrating issues with Angular 2/4/+. It’s not an issue with Angular 2/4/+ per se, but with how webpack bundles the supporting HTML files.
In a Single Page Application, Should I process on the Client or the Server?
One of the selling points of the Single Page Application (SPA) was offloading work traditionally performed on the server onto the client. I feel the SPA has delivered on this promise.