How To: Delete or Clean npm-cache on Windows
After installing the latest version of Node.js (the current LTM version as of this writing is 12.18.4), I wanted to install some missing npm packages using Visual Studio Professional. However, I received the following error: Looking at this error, I thought that something was wrong. I had just uninstalled an older version and reinstalled the […]
UPDATE: How to Add Google Search Engine to the new Microsoft Edge
Microsoft has released its final version of Microsoft Edge based on Chromium. The following instructions will allow you to add the Google Search Engine as an option in your new Microsoft Edge browser. Open Settings in Microsoft Edge Click on Privacy and Services In the Services section, click on Address Bar Click on Manage Search […]
Akka.Net Actor Life Cycle and Hook Methods
Actor Life Cycle The following is the life cycle of an actor, including any hook methods. Starting Actor initializes. PreStart() hook method is called. Receiving Messages Actor is up and now able to process messages. Stopping Actor cleans up. PostStop() hook method is called, if actor is terminating. PreRestart() hook method is called, if actor […]
nopCommerce: Setting up Multi-Store on Your Local IIS
nopCommerce provides you with the ability to create multiple storefronts to sell products online. Being able to experience this on your localhost is simple to do and requires only a few steps. I will show you how to create 2 stores (store1.com and store2.com) in the following steps: Edit your hosts file Using your favorite […]
How To: Show System Information Just Like phpinfo()
PHP has functionality to show you the current running configuration of your application and the system it is running on by just calling phpinfo(). It is simple to do this. Just create a file in your site with the following code: <?php phpinfo(); ?> Unfortunately, ASP.NET MVC does not provide this functionality. So what I […]