Starting today, we will have another Category: Tech. In this category, we will amuse ourselves with the Tech Tips&Tricks for everyone, not just IT professionals. It is our hope to make the technology a little more accessible and just a little less scary. In the end, technology should improve our lives and make it easier for us to collaborate and cooperate with each other. In the first post...
How to install SQL Server on an Apple Silicon Mac (aRM64)
You might think that this will be another post about virtualisation using Parallels Desktop or a similar software. Well, it will not. However, unfortunately it will also not completely deliver what it promises. Unfortunately, there is no version of SQL Server available to install directly on the macOS. However, we will be installing and using an alternative to SQL Server – the Azure SQL...
Visual Studio 2022: Where is my .NET Framework Stuff?
IIS: Resolve HTTP Error 404.3 – Not Found when accessing an SVC file

You tested the Service by running it from Visual Studio with IIS Express and it worked. However, now when it is deployed to the server and you wish to use it with IIS. You think you have done everything correctly – installed IIS, installed WCF Services, so you confidently try to enter the service address, and … 404.3. This is one of those errors that make you scratch your head. Sure...
Use Virtualization to Develop legacy .NET Apps on a Mac

So, we all know that. the new .NET is not your father’s .NET, it’s cool, it’s Cross-platform, and it’s Open-Source. It’s simply modern. It’s Avocados and Soy lattes. Yet, it is not easy to simply stop developing Apps based on .NET Framework or to migrate everything to the newest, container-based architecture using the newest .NET Version. More or less, .NET...
How to always start Microsoft Edge in “InPrivate” Mode

Do you Like just a little bit more privacy than browser incognito modes offer, as opposed to “normal” mode? Or do you simply watch a lot of “Documentaries” and simply want to save a precious few seconds to switch to InPrivate mode? But seriously, there are many other benefits of InPrivate browsing, other than the obvious ones – hiding/not remembering your browsing...
MS Dynamics 365: Some useful JavaScript Functions
We'll start with some useful JavaScript functions that you'll need in your adventures with MS Dynamics 365 Development. A quick cheat-sheet, if you will. It is for CRM v9.
Three Web.config tricks – force HTTPS, force yes/no www subdomain
No worries series is designed to do just that – enable you to say “no worries”, just copy the code and fire it up. For the first post in the series, we’ll do two simple, but very common requirements using some web.config tricks. So, let’s get into it. Force HTTPS <system.webServer> <rewrite> <rules> <clear /> <rule name="Redirect to https"...
Handler PHP_via_FastCGI has a bad module FastCgiModule in its module list

There are many challenges when attempting to establish cooperation between systems and technologies that were not originally meant to work together. Unfortunately, this is still true to this day, even if we have come a long way. Trying to make PHP run smoothly on Microsoft IIS might be one of the examples where things are not always running smoothly, case in point is this error: HTTP Error 500.21...
Return HTTP status code 404 and error content in ASP.NET MVC
The key thing is to returnĀ the Real 404 HTTP status codeĀ and avoid any solution that replaces 404 with 301. This is completely wrong and has the potential to do damage to your site.