(Thomas Levesque) Over the last few years, OpenID Connect has become one of the most common ways to authenticate users in a web application.
Tag: Development
Make your C# applications faster with LINQ joins
(Tim Deschryver) I’ve experienced a handful of times that an application has slowed down sufficiently without a code change.
Exploring The Power Of Multiple Cursors And Selections In Sublime Text 3
(Ben Nadel) For the past few years, I’ve been using – and loving – the Sublime Text (ST3) editor. In fact, I find it so enjoyable, that I’ve never even looked at any of the new editors that seem to be gaining popularity.
JavaScript, CSS, HTML & Other Static Files in ASP .NET Core 3.1
(Shahed C) This is the tenth of a new series of posts on ASP .NET Core 3.1 for 2020. In this series, we’ll cover 26 topics over a span of 26 weeks from January through June 2020, titled ASP .NET Core A-Z!
Simulating Return Type Inference in C#
(Alexey Golub) Above everything else in software development, I really enjoy building frameworks that enable other developers to create something cool.
How to Invert a Machine Learning Matrix Using C#
(James McCaffrey) Inverting a matrix is one of the most common tasks in data science and machine learning. In this article I explain why inverting a matrix is very difficult and present code that you can use as-is, or as a starting point for custom matrix inversion scenarios.
Putting DEBUG Comments In Your SQL Statements Makes FusionReactor Query Tracing More Effective
(Ben Nadel) For years, I’ve been advocating that people put DEBUG comments in their SQL statements to help identify performance bottlenecks in their applications.
C#: The Order of Interfaces Is Important for Casting Performance
(Thomas Claudius Huber) Recently there was a discussion in a Pull Request for the .NET runtime on GitHub. In the discussion it was mentioned by Jan Kotas from Microsoft that the order of interfaces is important for the casting performance.
Prepare ASP.NET Core Projects To Use TypeScript
(Bipin Joshi) Now a days many ASP.NET developers use TypeScript for their client side code. So, it’s worth to add TypeScript in your web development skill-set.
Array.Sort() Operator Must Return INT-Sized Result In Lucee CFML 5.3.4.80
(Ben Nadel) A few weeks ago, I wrote about using Subtraction to power the Array Sort operator in Lucee CFML. This has become my go-to approach for sorting arrays.