Review: Pro Auto Sound of Miami

Introduction I paid the owner, Luis, of “Pro Auto Sound of Miami”, nearly $2,728.34 (including tax) to enhance the sound quality of my vehicle’s existing 16 speaker, 1050 watts sound system. Prior to trusting the business, Pro Auto Sound of Miami, with my new vehicle, I spent several days researching custom car audio businesses and …

Storing Azure Function API Keys

I have recently been deploying Azure Functions and have required API keys for invoking other Azure Functions with in the service. I first created a registry for storing API keys: module KeyRegistry let mutable keyFor : Map<string,string> = Map.ofSeq <| seq [] I then created the following class to register the API keys: using System; …

Azure Monitor – Query Logs

Logs Navigation 1. Select the Azure Functions app 2. Under Configured Features, select Application Insights 3. Select "Logs" from the Navigation bar Logs Query The following query attempts to pull 10 'Trace' records that contain the word "location" with a severity-level of "1", and sorts them in descending order:

The Nineteen Habits of a Rock Star Developer

Lifestyle 1. Routinely reviews the latest StackOverflow content 2. Listens to software development podcasts 3. Maintains a technical journal 4. Recognizes the value of Job hopping 5. Presents at user groups 6. Maintains a library of software development books 7. Makes an annual pilgrimage to a conference 8. Works on an open-source project 9. Seeks …