By tag: DustinCampbell
0
kicks
Modifying VB XML Literals at Debug-Time
Article showing how to change XML literals in the debugger without using Edit and Continue.
0
kicks
Yet Another Project Euler Series (YAPES)
For the past several months, I've been using F# to solve at least two Project Euler problems each week. I find this is a great way to sharpen my math skills and my F# skills simultaneously. If you're looking for a way to flex your programming muscles, you really should check out Project Euler.
0
kicks
Apples And Oranges
"[A] recent blog post caused quite a stir on the F# mailing list. The post presents two solutions for Project Euler Problem 14: one in C# and the other in F#. The C# version clearly is hand-optimized for speed (and is indeed very fast), but the F# solution isn't. Instead, the F# code appears to...
0
kicks
Why I Love F#: A Refactoring Tale
An amazing journey! The author takes fairly naive F# code and transforms it into elegant, beautiful code, introducing language features and concepts along the way.
0
kicks
Why I Love F#: Lists - The Basics
A wonderful explanation of lists in F#, how they operate, and how to use them.
0
kicks
Why I love F#: Option Types
Dustin Campbell goes over F# option types. Option types are a simple example of a discriminated (or tagged) union, although understanding that isn't necessary in order to use them. Simply put, an option type wraps a value with information indicating whether or not the value exists. For C# or VB prog...
0
kicks
Building Data Out Of Thin Air
A wild ride through theoretical implementations of Cons, Car and Cdr in Scheme, followed by implementations in C# 3.0 and VB 9. Guaranteed to stretch your mind.