Remember when blockchain was going to change everything? Now AI is the trend dominating every conversationโbut some of the most effective programming ideas have been around for decades. This post examines one of COBOLโs lesser-known yet highly practical features: the 88-level field. Far more than a simple boolean, 88-level fields provide a clear, maintainable way to describe data conditions, enforce business rules, and streamline initialization. Through real-world examples, youโll see how this feature can reduce complexity, eliminate hard-coded values, and make logic more expressiveโdemonstrating that sometimes proven tools from โoldโ languages still have lessons worth applying today.
Long-Running Workflows Made Simple with C# + Azure Durable Functions
Itโs common to face challenges around long-running workflows, state management, and resiliency when youโre building cloud-native applications. Traditional approaches like background services or message queues might work sometimes, but they often require a lot of โglue codeโ and custom retry logic. This entails not only more work up-front for the developer, but also more maintenance in the long run.
Thatโs where Azure Durable Functions come in.
Why Mobile App Deployment Stops So Many Developers (And How To Beat It)
Deploying a mobile app is often more difficult than building it. In this guide, we simplify the confusing, often poorly documented process of deploying a Flutter app for internal testing. Learn step-by-step how to distribute your app through Google Play Internal Release and Apple TestFlight, so real-world testers can start using your app sooner.
HTMX in Action: How to Build a Lightweight Signup Form
Creating dynamic, responsive web forms doesn’t have to be complicated. With HTMX, you can build a seamless signup form using just a few HTML enhancements. In this blog, I’m going to show how to make a basic signup form with HTMX.
We’ll cover how a few minor improvements to HTML allow us to make a simple form quickly while keeping state consistent. There will be only three sections to the form, but it’s easily extendable with changes in only one or two routes per change.
Using .NET MAUI to Create a Google Maps App
In this blog, Iโll demonstrate how to harness .NET MAUIโs capabilities by building a Google Maps app. Iโll walk you through how to set up your environment and how to integrate native services like the Google Maps Android SDKโall within the modern, unified framework that .NET MAUI provides.