https://bizmonger.wordpress.com/2018/12/23/feature-toggles-client/ Blog Post https://www.slideshare.net/ScottNimrod/trunkbased-development-with-feature-toggles Slide Deck
Xamarin: Building a Real-time Listener for an Azure Topic
Recently, I had to implement an Azure Topic subscription within my Xamarin app. AzureTopicListener The code below is what I built to get my Xamarin app to subscribe to Azure topic that relies on a filter rule: Test Here's a test that I wrote:
Feature Toggles: Client
Intro I'm totally in love with the concept of feature toggles. To make a long story short, a Feature Toggle is a strategy used for managing continuous delivery. Thus, it's an alternative to branching features which can also be slow and error prone. Domain Model I declared the interface for requesting a feature. Declaring these …
Talking to Bryan about Staying Current
Xamarin.Forms: Validation using Behaviors
xmlns:converters="clr-namespace:Account.UI.Converters"
What are the Responsibilities of a Software Engineer?
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"
Learning to Program with F# (Vol.2)
Here's the main driver of the program: Here's the implementation details:
Learning to Program with F# (Vol.1)
Specification as a Library (Vol.5)
Intro In the last blog post, I discussed domain event handlers whose sole purpose is to execute side effects for application usefulness. In this blog post, I’ll be discussing file structure and how it relates to specification. File Structure An application can be organized into the following file folders: Domains Integration Specifications Tests Here’s an …