(Yacoub Massad) In this tutorial, I will talk about the Maybe Monad; a container that represents a value that might or might not exist.
Tag: Development
Environment Variables and .NET
(Hannes DuPreez) A lot of things happen in the background of your computer, and a lot of things make it possible to remember settings and simple strings.
The Blazor Bet
(K. Scott Allen) Today’s release of .NET Core 3 is significant. By supporting Windows desktop development and dropping support for the full .NET framework, v3 makes a statement – not only is .NET Core here to stay, but .NET Core is the future of .NET.
Anchor Tags Can Contain Block-Level Elements As Of HTML5
(Ben Nadel) The world of web development moves quickly; and, it is often be hard for me to keep my mental model in alignment with the current trends and standards.
Decrypting (But Not Really Encrypting) Configuration Settings in ASP.NET Core
(Peter Vogel) You can store encrypted values in your ASP.NET Core configuration file and seamlessly decrypt the values as you retrieve them. But there are, at least, two issues that you’ll need to address.
Check Whether an Input Argument Is Null in C#
(Srinath M S) Use this extension method in C# to check whether or not an input argument is null, and throw an error if necessary.
Trying To Find My Preferred Format For Method Annotations In Lucee 5.3.2.77
(Ben Nadel) One of the many differences between Adobe ColdFusion (ACF) and Lucee CFML is that Lucee won’t alter the runtime behavior of the ColdFusion code based on JavaDoc-style annotations.
.NET Debugging: 6 techniques you need in your arsenal
(Daniel Hilgarth) Debugging. It’s one of the most time-consuming ways of finding a bug.
How Reverse a String in C#
(Srinath M S) See how to reverse a string.
How to Efficiently Validate Against Cross-Site Request Forgery Attacks in ASP.NET Core
(Peter Vogel) If you’re worried about CSRF (Cross-Site Request Forgery) attacks (and you probably should be), then you’ve already added the code to your Views that adds an anti-forgery token to the data that the browser sends back to the server.