How to use Angular Guards

Recently I ran into a situation where a user would fill out a complex form and then accidentally click on another menu item within the web app. Doing so caused them to lose all the form data and was such a pain. I mean we could cache the form data but that adds another level […]

Reusable Collapsible Widget in Angular

In this blog post I am going to share a collapsible widget created in Angular. This can be very helpful when you have a long form. You can break the form down into sections and then apply the collapsible component. The main idea is to create a separate component that can then be added in […]

Learn how to Publish and Host .Net Web Api

In this blog post I am going to walk you through the steps involved in hosting an asp.net web api on IIS. We will be doing this on localhost. I am assuming you already have developed your api in either visual studio or visual studio code and have published it to some folder on your […]

Show/Hide Table columns dynamically

In this blog post we are going to create an HTML table with configurable columns. And by that I mean the ability to show and hide columns through some sort of a drop down or checkbox as in our case. The code doesn’t do error checks since it is only supposed to demo the concept. […]

Get rid of the CORS issue

Don’t pull your hair yet. Watch this video to see how to fix CORS or Cross Origin Resource Sharing issue. This issue can be a bit annoying but the fix is not really that hard. Learn more about CORS here: CORS

Learn how to Install WordPress on Localhost

Are you looking into installing WordPress on your local machine or localhost? Maybe you just want to experiment with WordPress or maybe you would like start developing plugin for WordPress? Learn how to install WordPress on localhost. It can be good for plugin development or playing around with themes.