(David Ramel) Is Visual Basic primed for a resurgence?
Tag: Development
Anonymous Aware Middleware with Endpoint Routing and Healthchecks
(Steve Gordon) In this post, I want to describe an approach to allow anonymous access to a health check endpoint, added using the MapHealthChecks extension on EndpointRouting.
Effortless Custom Form Input Styling With Webkit Appearance None
(Ben Nadel) So last night, I was listening to the latest episode of JS Party, when Divya Sasidharan said something that rocked my world.
Working with IWebHostEnvironment and IHostingEnvironment in dual targeted ASP.NET Core Projects
(Rick Strahl) With .NET Core 3.1 Microsoft broke a fairly low level abstraction by effectively renaming IHostingEnvironment and replacing it with IWebHostEnvironment. IHostingEnvironment still exists in .NET Core 3.x and can still be used and it still works, but it’s been marked as deprecated and wi
Understanding the Utility of Iostreams in C++
(Manoj Debnath) The iostream classes are the first library classes we encounter when we begin with C++. The primary services that we deal with these classes is solving general I/O problems.
ML.NET Model Builder for Machine Learning Adds Recommendations
(David Ramel) Microsoft’s latest update of ML.NET Model Builder adds a recommendation scenario to the machine learning (ML) framework, along with image classification model training functionality.
The Secret Code: ASP.NET MVC Conventions
(Jeremy) ASP.NET MVC is filled with hidden conventions: put a controller or view in a certain place and give it a special name, and it magically works.
Azure DevOps Search – Deep Dive
(Imran Siddique) Azure DevOps Search (Search) service is one of the microservices of Azure DevOps that powers its search functionality and makes it easy to locate information across all your projects using just a web browser. This article discusses the inner workings of DevOps Search.
Exploring The Triple Equals (===) Operator In Lucee CFML 5.3.4.77
(Ben Nadel) A few weeks ago, I created a function that proxies the dump() function, making it safe for complex objects that may include circular-references.
ASP.NET Core 3.1 Web.config Transform for Production
(Eric L. Anderson) I recently upgraded an application from ASP.NET Core 2.2 to 3.1 around the same time the application got moved to a new server. Side note, don’t make two large changes like that at the same time if you can help it as it always makes tracking down the cause of the issue much harder