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; …
Implementing Azure SignalR
Client - Configuring Connection Data Here's the URL and target id that the client uses for messaging using SignalR: Client - Establishing Connection Here's the client's SignalR service implementation: The ConnectAsync method above registers the identifier that the SignalR Hub (on the server) will route messages to. In this case, the identifier is the courier …
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:
Azure Topic Listener on Mobile
Here's my brain dump before for a mobile app running an Azure Topic Listener: SubscriptionInfo Listener
Xamarin.Forms: Validation using Behaviors
xmlns:converters="clr-namespace:Account.UI.Converters"
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 …
Continue reading "The Nineteen Habits of a Rock Star Developer"