How to upgrade from ASP.NET MVC Version 4 to 5?
Recently, I had a requirement to upgrade one of my client’s ASP.NET MVC web application from version 4 to 5. So, I thought to write the steps to how to...
...on a journey to become an outlier software engineer!
Recently, I had a requirement to upgrade one of my client’s ASP.NET MVC web application from version 4 to 5. So, I thought to write the steps to how to...
What is Dependency Injection? In simple words, Dependency Injection (DI), is a type of IoC where the creation and binding of a dependency is moved outside of the class that...
What is Inversion of Control (IoC)? IoC is basically a pattern that we use to apply Dependency Inversion Principle. Most people mix DIP, IoC and DI together! It’s good to have...
Vocabulary required for this article: Dependency Inversion Principle (DIP): This is a principle used in architecting software. Inversion of Control (IoC): This is a pattern used to invert interfaces, flow...
Ever wondered what does it take to step outside of your comfort zone and starting a business. Or do you have that great working plan in your mind saved as...
Below are the links to download cheat sheets for umbraco which I have found really useful: Razor DynamicNode Cheat Sheet Umbraco v6 MVC Razor Cheat Sheet
Below is a link to a resource that provides very good information on razor syntax. Reference: http://haacked.com/archive/2011/01/06/razor-syntax-quick-reference.aspx
No matter where you are in your software development career or what technologies you work with, there are couple to things we all have in common: Education (Everyone needs to...
I spend most of my programming time within Visual Studio and I never liked the white theme that came out of the box. Same is with the Chrome Developer Tools....
I often find myself installing a software or package for my projects while working on mac where I need to add a specific path to my $PATH variable. So, I...