(damienbod) This article shows how Fido2 WebAuthn could be used as 2FA and integrated into an ASP.NET Core Identity application.
Tag: Development
Using Function LocalMode To Render Templates During Static Site Generation In Lucee 5.3.2.77
(Ben Nadel) The other day, I took a look at using the Function localmode to more-safely render templates in Lucee. The reason that localmode makes rendering templates more safe is that any unscoped variable assignment, performed during the CFML template evaluation, is applied to the local scope, not
Optional Parameters in Razor Pages Routing
(Mike Brind) Razor Pages routing is based on attribute routing and is very powerful. Parameters provide a way of passing arbitrary data to a page via the URL.
Format the Currency for a Culture in C#
(Srinath M S) Use the CultureInfo class to format values based on a culture.
Programmatically Opening Windows Terminal in a Specific Folder
(Rick Strahl) I’ve been using Windows Terminal for a while now since it was announced and made available in the Windows Store a few months back.
How to Do Neural Network Glorot Initialization Using Python
(James McCaffrey) In this article I explain what neural network Glorot initialization is and why it’s the default technique for weight initialization.
Using Function LocalMode Modern To More-Safely Render ColdFusion Templates In Lucee 5.3.2.77
(Ben Nadel) Historically, when you set an unscoped, non-var’ed variable inside a ColdFusion Function, the variable is applied to the variables scope (except for when that assignment is inside a CFThread tag).
SharpScript from ServiceStack lets you run .NET apps directly from a GitHub Gist!
(Scott Hanselman) I’ve blogged about ServiceStack before. It’s an extraordinary open source project – an ecosystem of its own even – that is designed to be an alternative to the WCF, ASP.NET MVC, and ASP.NET Web API frameworks.
16 Ways to Speed Test Automation Using a CI/CD Pipeline
(Stella Murugesan) Test automation plays a significant role in software development. It improves speed, better detects errors and bugs, is repeatable, scalable, has broader coverage, and more. Let’s take a look at test automation using a CI/CD pipeline.
An Introduction to System.Threading.Channels
(Steve Gordon) I’ve recently begun making use of a relatively new (well, it’s a little over a year old at the time of writing) feature called “Channels”.