(Peter Vogel) If you’re creating business services that send dates and decimal data then you may be concerned that gRPC services don’t support the relevant data types. Don’t Panic! There are solutions. Here’s how to use them.
Tag: Development
Implementing HATEOAS in ASP.NET Core Web API
(Vladimir Pecanac) In this article, we are going to talk about one of the most important concepts in building RESTful APIs – HATEOAS and learn how to implement HATEOAS in ASP.NET Core Web API.
Streamlining Your Visual Studio Project Setup
(Dobromir Nikolov) Creating and distributing Visual Studio templates is hard. You need to get familiar with custom XML formats, the VSIX project type, and Visual Studio’s occasionally eccentric behavior. Now you don’t waste time with that. Learn how you can instantly extract a ready-to-go template o
MessageQueue in .NET, Part 1: The Background Work on Windows
(Hannes DuPreez) Hello and welcome to my article. Today, I’d like to speak about MessageQueue in .NET. But, to do that, I need to explain how MSMQ works in the background. So, this will be Part 1, and in Part 2 we will do it practically in .NET
Getting Started with the AWS SDK in .NET Core
(Steve Gordon) In this post, we’ll learn about the AWS SDK for .NET and how to get started, using it to building .NET Core applications. There are many topics introduced in this post which lay some foundational knowledge that you will find useful as you get started developing .NET applications for A
Depth-First vs Breadth-First Tree Traversal Using A While-Loop In Lucee CFML 5.3.3.62
(Ben Nadel) As part of my post yesterday on how I sometimes replace recursive algorithms with loop-based algorithms in Lucee CFML, I mentioned that the algorithm incidentally shifted from a depth-first strategy to a breadth-first strategy.
What’s New for Java Developers in Visual Studio Code
(David Ramel) Microsoft touted the introduction of long-awaited “Call Hierarchy” support and some UI updates in the year’s first update to Java functionality in the cross-platform, open-source Visual Studio Code editor.
A HighlightJs Copy Code Badge Component
(Rick Strahl) A while back I created a small addon component for use with HighlightJs that provides the ability to copy a code snippet and display the active language in a little badge above the code snippet.
Replacing Depth-First Recursion With A Breadth-First While-Loop In Lucee CFML 5.3.3.62
(Ben Nadel) Recursion is a very powerful programming construct. And, I absolutely love recursion just as much as the next person (whether I’m dealing with recursive Promises in JavaScript, recursive templates in Angular, recursive components in Angular, or recursive algorithms in ColdFusion).
Requiring MFA for Admin Pages in an ASP.NET Core Identity application
(damienbod) This article shows how MFA could be forced on users to access sensitive pages within an ASP.NET Core Identity application. This could be useful for applications where different levels of access exist for the different identities.