Talking to Ody about F#, Akka, and Irrelevant Architects

I'm chopping it up with Ody about F#, Property-based Testing, Akka, etc. Reactive Programming - 2:52 Akka dot Net - 23:26 Immutable Databases - 37:00 Architects + F# - 47:00 Multi-Threading Discussion - 52:22 Testing Discussion - 58:45 Codebases and Architecture - 1:17:23 Property based Testing - 1:32:33 F# vs C# for User Interfaces - …

Evolving as a Developer

I was recently featured on My Life for the Code podcast. In the podcast, I discuss how I learned to program, my hatred for the web stack, how I got into WPF and F#, and my disappointment in the media on how they portray success based on demographics.

F# and WPF: The DelegateCommand

Intro This post will provide insight on how to implement the DelegateCommand in F#. The Delegate Command The DelegateCommand implements the ICommand interface. This command implementation provides two delegates, Execute and CanExecute. The following is an implementation of the DelegateCommand: The following code is an example implementation of how the DelegateCommand is used: If you've …