.NET Web API - API Key AuthorizationSimple API Lockdown Introduction The previous article reviewed how to set and read environment variables. We'll use that knowledge and set up an API Key as an environment variable for authorization in a .NET Web API Project. Keys are a variable you w...Mar 25, 2023·8 min read
Run SQL Server on macOS + DockerIntro If you haven't seen Microsoft's latest Docs site update, you really should check them out. There is a getting started article regarding SQL Server (2017) Containers on Linux and other OSs including Azure. The SQL Server 2019 version article is ...Apr 5, 2022·5 min read
4 Options to Create Environment Variables on *nix MachinesSetting ENVs on macOS and other *nix SystemsMar 31, 2022·2 min read
FAST API - Getting StartedThe new platform on the block that is reigning supreme over others.Mar 25, 2022·3 min read
Python Lists, Part 2For Loops As discussed in Part 1, a simple for loop will iterate through a sequential type value. # Iterate through a list or string name = "josh" for n in name: i # OUTPUT: # 'j' # 'o' # 's' # 'h' map() The map() feature offers an altern...Mar 14, 2022·3 min read