https://blogs.msdn.microsoft.com/dotnet/2017/02/01/the-net-language-strategy/ …this year’s Stack Overflow developer survey shows C# as one of the most popular programming languages, surpassed only by Java and of course JavaScript… C# is also one of the few big mainstream languages to figure on the most loved top 10 in the StackOverflow survey, joining Python as the only two programming languages… Continue reading The .NET Language Strategy
Performance Decrease When Using Interfaces in .NET
From github on the performance difference of using interfaces vs concrete classes. https://github.com/dotnet/coreclr/issues/9105 Because virtual calls are used when using interfaces, making it so the JIT doesn’t inline them, indexer access time is greatly increased. I was curious just how big the performance decrease was, so I put together a little demo program to try… Continue reading Performance Decrease When Using Interfaces in .NET
A Framework for Responsive Emails
https://mjml.io/ Has an online editor that with preview that outputs responsive HTML emails. Built on React.
HTML5
HTML5 is largely mature enough to start using now with ASP.NET websites. To start with, get the Web Standards update for Visual Studio 2010 SP1: http://visualstudiogallery.msdn.microsoft.com/a15c3ce9-f58f-42b7-8668-53f6cdc2cd83 The following are a list of things that I do to be compatible with HTML5. Use the html5 doctype at the top of every page: Set the lang in… Continue reading HTML5