C#: Make base class containing common tests abstract
I was testing various sorting algorithms, so I had a base class that SortTestBase that contained actual tests and accepted the algorithm in the constructor, and derived classes that supplied […]
I was testing various sorting algorithms, so I had a base class that SortTestBase that contained actual tests and accepted the algorithm in the constructor, and derived classes that supplied […]
I heard all the buzz about 3D Earth view in Google Maps, but it did not work in my Chrome browser at home. I initially thought Google is doing some […]
A few days ago I ran into a situation when I forgot to add –no-ff when merging a feature branch into master. The result was a mess. State before the […]
I needed to move my virtual machine from one MSDN subscription to another. There is a “Move” option in Azure portal, but it works only if you can access both […]
Hurrah, our project actually has a class named (Something)TemplateFactoryBuilder! What does it do? Well, it’s very easy. It takes a serialized string and creates a factory, which will produce a […]
DotNetCore provides two types of installs: framework-dependent install and self-contained install. I tried to compile a hello-world app on Windows and run it on Ubuntu that has neither dotnetcore SDK […]
Technical decisions in software engineering are often driven by politics. The architecture committee decides that “all new code should use threading library X” or “we should be moving to using […]
StartCom certificate authority that hands out free SSL certificates, is no longer recognized by major browsers. I’ve got their certificate back in May 2016, and it worked fine, but in […]
Nuget Package Manager 3.4.4 for Visual Studio 2015 does not work with our local NuGet server. Apparently, they broke something compared to version 3.3.0, some redirect or whatever. New client […]
Resharper almost keeps class methods in order, but it puts everything with a [DispId] attribute in front. Teleric JustDecompile seems to sort things in alphabetical order. Neither seems to have […]