(Michael) In the First Part of the series, we talked about the Pipeline Pattern in programming. Also known as the Pipes and Filters design pattern.
Tag: Development
22 Python Tricks
(Brian Overland and John Bennett) Master crafters need many things, but, above all, they need to master the tools of the profession. This chapter introduces tools that, even if you’re a fairly experienced Python programmer, you may not have yet learned.
Deploying ASP.NET Core From A Zip File on Azure
(Phil Haack) Azure has a neat feature that runs Azure Functions from a package file (aka a zip file). This same feature also applies to Azure Web Apps, though you wouldn’t know it from the documentation.
Making it easier to bring your Linux based web apps to Azure App Service
(Oded Dvoskin) Application development has radically changed over the years. From having to host all the physical hardware hosting the app and its dependences on-premises, to moving to a model where the hardware is hosted by external companies yet still managed by the users on to hosting your apps o
CFThread Attributes Are Passed By Reference – Not By Deep Copy – In Lucee 5.3.2.77
(Ben Nadel) When Adobe ColdFusion first introduced the cfthread tag, a lot of us stumbled over the fact that attributes are passed by deep-copy into the cfthread body.
System.Text.Json and new built-in JSON support in .NET Core
(Scott Hanselman) In a world where JSON (JavaScript Object Notation) is everywhere it’s long been somewhat frustrating that .NET didn’t have built-in JSON support.
Deeply Nested CFThread Tags Are Permitted In Lucee 5.3.2.77
(Ben Nadel) When Adobe ColdFusion introduced the CFThread tag for asynchronous processing, they decided to prevent developers from nested it. That is, they explicitly prevent one CFThread tag from spawning a child CFThread tag.
Xamarin macOS Binding Libraries
(Peter Foot) In creating an IOBluetooth binding for Xamarin Mac I learned about Objective Sharpie and binding libraries.
Installing PowerShell with one line as a .NET Core global tool
(Scott Hanselman) I’PowerShell Mascotm a huge fan of .NET Core global tools. I’ve done a podcast on Global Tools.
Authenticate Users With Azure Active Directory In ASP.NET Core
(Bipin Joshi) ASP.NET Core web applications often need to authenticate users accessing the application. There are many authentication schemes you can use to accomplish this task.