The list of all time zones present on PC (Windows 10 Home). This is what you’ll get with the operation TimeZoneInfo.GetSystemTimeZones() in C#.
Asides
How To: Giving PresentationsHow To: Giving Presentations
Since the first presentation I gave I’ve noticed several points to remember. There are a lot of articles about the subject “How to give good presentations” in the internet and
How To: Refresh POCO entity from DbContextHow To: Refresh POCO entity from DbContext
If you notice that the context returns the same entity even if it is already changed one line before, you probably what the following ObjectContext context = ((IObjectContextAdapter)this.Context).ObjectContext; context.Refresh(RefreshMode.StoreWins, entity); You can use it right after obtaining
Visual Studio must-have extensionsVisual Studio must-have extensions
My list of Visual Studio extensions which make developing easier and more comfortable. Tool Description ILSpy Integrates the ILSpy decompiler into Visual Studio. ILSpy is the open-source .NET assembly browser and
Choosing of the unit testing framework (xUnit, NUnit, MSTest)Choosing of the unit testing framework (xUnit, NUnit, MSTest)
Is xUnit is a modern and future proof solution for unit testing? I’m measuring pros and cons of xUnit and NUnit for the big and old legacy application. At the
The ‘TestWindowPackage’ package did not load correctlyThe ‘TestWindowPackage’ package did not load correctly
This issue is experienced while opening the test explorer or running all tests in VS. To resolve the issue try the following steps: Close all instances of Visual Studio. Delete all
Adding client-side validation to custom Editor Templates in MVCAdding client-side validation to custom Editor Templates in MVC
When an editor template is overridden with custom one you lose automatic scaffolding of client-side validation which uses data annotation rules. In such a case they should be added manually
Goal criteria which help to make it clearGoal criteria which help to make it clear
Several sets of goal criteria which help to make it clear and be achieved. Just a reference to remember. SMART S = Specific (context bound goal within defined scope of work)
How To: Integration of WCF with AutofacHow To: Integration of WCF with Autofac
If you’d like to hide WCF implementation class behind an interface to simplify future changes you should deal with some IoC. I use Autofac and have several times struggled upon

How To: Specify assemblies in TeamCity for MSTest build stepHow To: Specify assemblies in TeamCity for MSTest build step
The approach to specify DLLs in MSTest build step in TeamCity with a string pattern to be easily adopted for specific project.