March, 2011 Archives

23
Mar

56 useless buttons in your IDE

by Mikael Lundin in Programming

When did you last click a button in those toolbars in Visual Studio? Been a while, huh? Isn’t it time to give that space over to more code screen space?

You simply remove the toolbars by right click and deselect all checked. Don’t worry, you’re already using keyboard shortcuts for those things that you have up there. And if not .. here’s a short reminder.

Standard toolbar

# Name Keyboard shortcut
1 New Project Ctrl + Shift + N
2 Add New Item Ctrl + Shift + A
3 Open File Ctrl + O
4 Save File Ctrl + S
5 Save All Ctrl + Shift + S
6 Cut Ctrl + X
7 Copy Ctrl + C
8 Paste Ctrl + V
9 Undo Ctrl + Z
10 Redo Ctrl + Y
11 Navigate Backward Ctrl + -
12 Navigate Forward Ctrl + Shift + -
13 Start Debugging F5
14 Solution Configurations
15 Find in Files Ctrl + Shift + F
16 Find Ctrl + “
17 Solution Explorer Ctrl + W, S
18 Properties Window Ctrl + W, P
19 Team Explorer Ctrl + W, M
20 Object Browser Ctrl + W, J
21 Toolbox Ctrl + W, X
22 Start Page
23 Extension Manager
24 Command Window (other windows) Ctrl + W, A

Build toolbar

# Name Keyboard shortcut
25 Build Project Shift + F6
26 Build Solution F6
27 Cancel Ctrl + Break

Debug toolbar

# Name Keyboard shortcut
28 Start Debugging F5
29 Break All Ctrl + Alt + Break
30 Stop Debugging Shift + F5
31 Restart Ctrl + Shift + F5
32 Show Next Statement Alt + Num *
33 Step Into F11
34 Step Over F10
35 Step Out Shift + F11
36 Search for this line in IntelliTrace
37 Hexadecimal Display
38 Show Threads in Source
39 Breakpoints Ctrl + D, B

Text toolbar

# Name Keyboard shortcut
40 Display Object Member List Ctrl + K, L
41 Display Parameter Info Ctrl + K, P
42 Display Quick Info Ctrl + K, I
43 Display Word Completion Ctrl + K, W
44 Toggle Suggestion And Standard Completion Mode
45 Decrease Indent Shift + Tab
46 Increase Indent Tab
47 Comment Out Selection Ctrl + K, Ctrl + C
48 Uncomment Selection Ctrl + K, Ctrl + U
49 Display Quick Info Ctrl + K, I
50 Toggle Bookmark Ctrl + B, T
51 Goto Previous Bookmark Ctrl + B, P
52 Goto Next Bookmark Ctrl + B, N
53 Goto Previous Bookmark in Folder
54 Goto Next Bookmark in Folder
55 Goto Previous Bookmark in document
56 Goto Next Bookmark in document
57 Clear All Bookmarks Ctrl + B, C

And remember, you can change any keyboard shortcut that you’re not comfortable with.

22
Mar

F-sharpen your saw

by Mikael Lundin in F#, Programming

This is the content of a presentation of F# that I will have at the office in a couple of weeks. I wrote this presentation in HTML using the S5 framework by Eric Meyer. That is what makes it so simple for me to just post the content now on my blog. It’s all HTML. :)

F# is a programming language that allows you to write simple code to solve complex problems.

The quote comes from Don Syme.

With programming language, Don means that F# is not a new platform, but just another language on the CLR. This means that the libraries that already works for C# and VB.NET are likely to also work well with F#.

One strength with F# is to express as much intent as possible with little code. The theory is that quantity of code cause bugs and if we could limit the amount code we would also limit the amount of bugs. Reports from users has also told stories about exceptionally small amount of bugs in code produced in F#. This might be a hard statement to prove since F# draws the attention of developers of a different kind.

Don Syme says that F# is not a language meant to solve all problems, but specific problems of a complex nature. F# has never meant to replace C# or VB and is not suitable for tasks that depends on changing a mutable state. The first thing that comes to mind is Workflows and state machines.

Functional .NET

Two paradigms that rule the F# language

  1. Everything is a function
  2. Everything is immutable

Since every good thing comes in trees we should specify the big threes for functional
programming.

We will look at what a function is in F# and how treating everything as a function changes the way you code.

If you define a variable in F# it is immutable by default which means that its value will never change. This changes the way you loop and aggregate things in F# compared to an imperative language like C#.

Getting Started

F# Interactive is found in View/Other Windows/F# Interactive

F# interactive window within Visual Studio

You will find the F# interactive window in the View/Other Window menu option. This is where you can evaluate your expressions as you code. Simply copy the code to the interactive and add double semicolon ‘;;’ to evaluate, or use one of the shortcut commands in Visual Studio. Mine is, mark the code to evaluate and press Alt + ‘

Everything is a function

  • let area w h = w * h

    Result: val area : int -> int -> int

  • let half x = x / 2

    Result: val half : int -> int

  • let triangleArea w h = half (area w h)

    Result: val triangleArea : int -> int -> int

  • let myTriangle = triangleArea 2 4

    Result: val myTriangle : int = 4

A function is defined with the keyword let. First argument is the name of the function and the rest are arguments to that function. After the “=” (equals sign) comes the function body. In F# we don’t make a distinction between variables and functions with no arguments. These are the same. If the expression can be evaluated it will.

Argument types are inferred at compile time. Sometimes the compiler can’t inferr the types and we’ll have to specify them explicity.

Mutability

This imperative language uses the side effect of the for loop to change the mutable
state of the result variable

		namespace LiteMedia.CSharpLecture
		{
			public class Example1
			{
				const int Max = 100000;

				public void Aggregate()
				{
					var result = 0;
					for (int i = 1; i < Max; i++)
						result += i;

					System.Console.WriteLine(result);
				}
			}
		}

If the world can’t change it won’t have side effects. Since the world can’t change we continue to create new and better versions of the world.

Imperative programming languages depends on changing states of the program. This is why you aggregate by adding numbers to a result variable.

Immutability → Purity

In a functional programming language where variables are immutable, state won’t change.

		let sum max =
			let result = 0
			for i = 0 to max do
				result <- result + i
			result

		sum 100000

Result: error FS0027: This value is not mutable

Clearly, this program does not work as intended.

You can’t change the state of an immutable variable. This means that

  • Traditional looping makes little sense in F# – recursion
  • Output of a function depends only on the input arguments – purity
  • Side effects are eliminated
  • Calling function f(x) twice will yield the same result both times

Immutability → recursion

		let rec sum max =
			if max = 0 then
				0
			else
				max + sum (max - 1)

Function calls


sum 3 = 3 + (sum 2)
sum 2 = 2 + (sum 1)
sum 1 = 1 + (sum 0)

sum 0 = 0
3 + 2 + 1 + 0 = 6

Since we can’t change the value we will have to create a new value, and easiest way of doing that is calling the method again with different arguments. This is called recursion.

Recursion in F#

Doing it for real does not involve if statements

	let rec sum max =
		match max with
		| 0 -> 0
		| _ -> max + sum (max - 1)
match..with is such common operation it has an alias: function

		let rec sum = function
			| 0 -> 0
			| n -> n + sum (n - 1)

Recursion is not done in F# with if statements, but with matching patterns. This works pretty much like a switch statement on steroids.

Aggregation

let sum max = [1..max] |> List.fold (+) 0
could be written in C#

var result = Enumerable.Range(1, Max).Aggregate((acc, x) => acc + x);
yielding numbers in F#

let sum max = seq { for i in 1..max do yield i } |> Seq.fold (+) 0

Recursing to sum up all the digits from 1-100000 is quite unnessesary. This is how you would do it by using a list, and F# built in Fold.

You can accomplish the same thing with Linq.Aggregate.

Since Linq.Aggregate yields numbers as we request them, this is a more effective solution. The F# code has to first create the list and then sum it up. We can mend this by also yielding numbers.

Even though, the F# solution is 66 characters and the C# solution is 72.

Operators are functions

  • (+)

    Result: val it : (int -> int -> int)

  • (*) 6 7

    Result: val it : int = 42

  • 			let (++) a b = (a + b) * 2
    			5 ++ 7

    Result:

    val ( ++ ) : int -> int -> int
    val it : int = 24

Operators are functions too. Just evaluating the + operator will tell us
that it is a function that takes two integers and returns an integer. We
can use it as a function with prefix notation as well as the more ordinary
infix notation.

Creating our own custom operators is trivial, just like defining any function and can be used with both prefix and infix notation.

Partial function calls

let addFive = (+) 5

Result: val addFive : (int -> int)

[1; 2; 4] |> List.map addFive

Result: val it : int list = [6; 7; 9]

When we call a function with less arguments we create a new function with the missing parameters as arguments.

Once we have the correct function definition we can use it anywhere. For example mapping the function onto values in a list.

Anonymous functions

Just like lambdas in C# we have anonymous functions in F#.

(fun x -> x * x) 7

Result: val it : int = 49

Functions as arguments

[1..10] |> List.filter (fun x -> x % 2 = 0)

Result: val it : int list = [2; 4; 6; 8; 10]

Just like in C# we have anonymous functions in F#. We use these as arguments to other functions.

For every number from 1 to 10, filter out those that are x % 2 = 0, even.

Composite functions

When one function is not enough..

	type Color = | Red | Green | Blue
	let colors = [Red; Red; Red]

Is there any color that is not red?

colors |> List.exists (fun c -> c <> Red)

Without lambda expressions

colors |> List.exists (not << (=) Red)

Same thing as

(fun c -> not ((=) Red c))

We can add functions together in F#, very much like calling a function with the result from another function. We do this with the operator << or >>. That means, take the result of this function and feed it to the next function. This can be very useful for simplify things.

NULL does not exist

Have you ever seen this before?

Website that throws NullReferenceException

Have you ever seen the null reference exception YSOD? Then you will be glad to know that no function in F# may return null.

Option<’a>

		let rec findPrime l =
			let isPrime n = [2..(n/2)]
				|> List.exists (fun x -> n % x = 0) |> not

			match l with
			| [] -> None
			| head :: tail when head |> isPrime -> Some(head)
			| head :: tail -> findPrime tail

We can match on the option<int>

			let hasPrime l =
				match findPrime l with
				| None -> false
				| Some(x) -> true

			[4; 6; 8; 9; 11] |> hasPrime

Result: val it : bool = true

Instead of returning null we use the new Some(x)/None functionality. This lets us match on the return value. In this example we have a function that will return first prime number in the list, or None.

We can create a hasPrime function that will check if we get Some(x) that is prime or if we get None.

Why is Option<’a> better than NULL?

  • The Option exists in the function definition.
    val findPrime : int list -> int option
  • The NULL value is an indirect side effect of references. The Option is explicit. When you call the findPrime function, you have to handle the Option result.
  • The match..with pattern matching is designed to handle Some/None values.
    				match findPrime l with
    				| None -> false
    				| Some(x) -> true

Records for data structures

You can define complex data structures as records

	type Book = { Title : string; Author : string }
	let book = { Title = "The Treasure Island";
				 Author = "Robert Lewis Stevenson" }
but remember that everything is immutable

book.Title <- "Treasure Island"

Result: error FS0005: This field is not mutable

If you need to define more complex data structures you can define a record type. But you’ll have to remember that this type is immutable as everything else. You can’t change its values once it has been set.

Records as values

You use records in functions as any other value

		type Point = { x : int; y : int }

		let graph fn width height =
			// Is point y between y1 and y2
			// int -> int -> Point -> bool
			let yBetween y1 y2 point = point.y > y1 && point.y < y2

			// For all x, -100 to 100
			[-(width / 2)..(width / 2)]
				|> List.map (fun x -> { x = x; y = fn x})
				|> List.filter (yBetween -(height / 2) (height / 2))

In this example we would like to spot a graph on a panel.

It’s nice to notice that the compiler will asume that we create a Point type at line 10, and we use the partial method yBetween to filter out points at line 11.

When I see such code, I find it amusing to think that F# is a statically typed language and yet, we don’t specify types anywhere but in the type definition. The compiler will try to find out the types as we go and will tell us where it fails.

graph (fun x -> 2 * x + pown x 3) 200 200

Result: val it : Point list = [{x = -4; y = -72;}; {x = -3; y = -33;}; {x = -2; y = -12;}; {x = -1; y = -3;}; {x = 0; y = 0;}; {x = 1; y = 3;}; {x = 2; y = 12;}; {x = 3; y = 33;}; {x = 4; y = 72;}]

graph for y = 2x + x^3

The panel is 200×200 and the graph we would like to draw is y = 2x + x^3. For this purpose we use create a series of point types from x = -100 to x = 100 with the distinction that y also has to be within -100 < y < 100.

Object orientation

A new class called Queue

		type Queue() =
			let mutable queue = []

			member this.Empty = queue = []

			member this.Push x = queue <- queue @ [x]

			member this.Pop =
				match queue with
				| [] -> None
				| head :: tail ->
					queue <- tail
					Some(head)

You create a class very much like a record. When you want to specify member methods you use the keyword member instead of let. I use this to identify the current instance of the class.

Since object oriented programming is very much about changing states of objects, you can create mutable fields within the class. You specify the mutable keyword after let to tell F# that the field is mutable.


type Queue =
class
new : unit -> Queue
member Push : x:obj -> unit
member Empty : bool
member Pop : obj option
end

Using our queue object

let queue = new Queue()

Result: val queue : Queue

[1; 2; 3] |> List.iter queue.Push

Result: val it : unit = ()

			let rec dequeue (q : Queue) =
				match q.Empty with
				| true -> []
				| false -> q.Pop.Value :: dequeue q
			dequeue queue

Result: val dequeue : Queue -> obj list
val it : obj list = [1; 2; 3]

You create a new instance the same way you do in C# with the new keyword.

We can write a function that will dequeue the whole queue into a list.

Unit of measure

An int is not just an int

		[<Measure>] type m
		[<Measure>] type s

		let distance = 100.0<m>
		let worldRecord = 9.58<s>
		let speed = distance / worldRecord

Result: val speed : float<m/s> = 10.43841336

			let km = 1000.0<m>
			let h = 3600.0<s>

			let speedInKmPerHour = speed / (km/h)

Result: val it : float = 37.5782881

What is an int? When I went to school we were forced to answer every math question with the unit of the answer.
- If you take two apples and add three apples, how many apples have you got?
- Five!
- Five, what?
- Five apples.

With this in mind, an int is not just an int. We usually try to tell in the variable name, what the int symbolizes but that is not very type safe. Welcome to a world of units of measure.

Monads Gonads

	// Identity monad
	type Identity<'a> =
		| Identity of 'a

	type IdentityBuilder<'a>(v : 'a) =
		let value = v
		member self.Bind ((Identity v), f) = f(v)
		member self.Return v = Identity v

	let identity = new IdentityBuilder<int>(0)

	let answerToEverything =
		identity { return System.Int32.Parse("42")  }

This is an Identity Monad defined in F#. If you don’t know what a monad is, you don’t have to, because in F# this is abstracted into computational expressions. When a monad is defined it can be used as a computational expression as you see on line 13.

This leads us on to…

Asyncronous F#

		open System.Net
		open Microsoft.FSharp.Control.WebExtensions

		let webGet (name, url) =
			async {
				let uri = new System.Uri(url)
				let webClient = new WebClient()
				let! html = webClient.AsyncDownloadString(uri)
				return name, html.Length
			}

		let addresses = [ "Valtech", "http://www.valtech.se";
						  "LiteMedia", "http://litemedia.se" ]

		let contentLengths =
			addresses
			|> Seq.map webGet
			|> Async.Parallel
			|> Async.RunSynchronously

Async in F# is a monad. That means that you write asynchronous tasks within a computational expression
and bind the async monad to a async task.

webGet is a function with the signature 'a * string -> Async<'a * int> and this enable us to run several instances of this function in parallel. There are several helper functions in F# like AsyncDownloadString that will make it easier for us to write these async tasks.

The example will get content lengths of addresses of a list, in parallel.

Unit Testing F#

No ceremony unit testing

	open Xunit

	// SUT
	let add a1 a2 = a1 + a2

	[<Fact>]
	let ShouldAddTwoNumbersTogether() =
		let result = add 8 4
		Assert.Equal(12, result)

Most exciting part of unit testing with F# is the complete lack of ceremony. All you need is an open Xunit and you’re all set writing tests.

Notice the end parathesis of the let function. This is needed because without it F# will give a function with the definition unit where as Xunit will look for tests with the definition unit -> unit. The paranthesis forces this function signature.

Test doubles

Imagine the following LoginController using a repository

		public class LoginController
		{
			private readonly IRepository<User> userRepository;
			public LoginController(IRepository<User> userRepository)
			{
				this.userRepository = userRepository;
			}

			public bool Login(string username, string password)
			{
				var users = userRepository.GetAll();
				return users.Any( user =>
						user.UserName.Equals(username, StringComparison.InvariantCultureIgnoreCase) &&
						user.Password.Equals(password));
			}
		}

Following is the system we would like to test. The problem is that we have to stub the userRepository to be able to create an instance of LoginController and test the login method. In C# I would use a framework like Rhino Mocks or Moq, but how do we tackle this problem in F#?

Please to meet object expressions

		[<Fact>]
		let ShouldSuccessfullyLoginToController() =
			// Setup
			let user = new User("Mikael", "Hello")

			let repository = {
				new IRepository<User> with
					member this.GetAll() = [|user|] :> seq<User> }

			let controller = new LoginController(repository)

			// Test
			let result = controller.Login(user.UserName, user.Password)

			// Assert
			Assert.True(result)

In F# we can generate concerete instances of any abstract class or interface with object expressions. This is very useful when creating test doubles in testdriven development, since we no longer have any use for stubbing frameworks – only mocking.

Web development

Download Daniel Mohl’s MVC templates

Extension manager - F# and C# ASP.NET MVC3

Daniel Mohl has written a couple of extensions that will help you getting started with F# web development. You’ll find them in the Tools/Extension Manager within Visual Studio. Select the Online tab and search for Daniel Mohl to find all of his extensions available.

Create a new project

Add New Project - F# ASPMVC

With Daniel Mohl’s extension installed you should be able to create a new F# ASPNET project from the Add New Project menu.

The project stub

The project stub

The project created is the same project that you would create for a C# MVC site, but with F# libraries instead. The route setup is translated into F# as with the model binders.

Writing our first home controller

		namespace LiteMedia.Web

		open System.Web
		open System.Web.Mvc

		[<HandleError>]
		type HomeController() =
			inherit Controller()

			member x.Index () : ActionResult =
				x.ViewData.["Message"] <- "Welcome to ASP.NET MVC!"
				x.View() :> ActionResult

			member x.About () =
				x.View() :> ActionResult

Our HomeController is very simple and it displays how to write the index and about methods. Nothing here that is suprising. Very simplistic code and yet everything that comes with the original C# version of this example site.

WCF in F#

It’s easy to define a web service in F#

		[<ServiceContract(ConfigurationName = "IsItFriday",
			Namespace = "http://litemedia.se/IsItFriday")>]
		[<ServiceBehavior(InstanceContextMode=InstanceContextMode.PerCall)>]
		type public IsItFriday() =
			class
				[<OperationContract>]
				member public x.Query() =
					DateTime.Today.DayOfWeek = DayOfWeek.Friday
			end

Kickstart the service

		let host = new ServiceHost(	typeof<IsItFriday>,
			[|new Uri("http://localhost:18889/")|]);

		host.Open();

Writing a WCF web service in F# is pretty straight forward since web services is all about functions and not preserving state.

The web service up an running

A wcf webservice written in F#

Fibonacci

	let fibonacci = Seq.initInfinite (fun i ->
		let rec fibonacci_inner = function
			| 0 -> 0
			| 1 -> 1
			| n -> fibonacci_inner (n - 1) + fibonacci_inner (n - 2)
		fibonacci_inner i)

Result


val fibonacci : seq<int>
val it : seq<int> = seq [0; 1; 1; 2; ...]

Sieve of Eratosthenes

	let primes n =
		let rec sieve = function
		| [] -> []
		| head :: tail -> head ::
			sieve (tail |> List.filter (fun x -> x % head <> 0))
		sieve [2..n]

Result


primes 100

val it : int list = [2; 3; 5; 7; 11; 13; 17; 19; 23; 29; 31; 37; 41; 43; 47; 53; 59; 61; 67; 71; 73; 79; 83; 89; 97]

9
Mar

Book review: Being Geek by Michael Lopp

by Mikael Lundin in Other

Michael Lopp, famous for the blog Rands in Repose has written a book with the title Being Geek – The Software Developer Career Handbook. I’ve read it through and found it easy to read, humorous and full of first hand knowledge about the software industry.

Being Geek

Michael Lopp has written two excellent blog posts the nerd handbook and managing nerds that made me buy this book. Sadly, these two contributions to the book are the only one that is strictly about being a geek. The rest of the book is mostly about managing people, which is not very surprising as it seems Michael Lopp spent most of his career as a manager.

It’s ok. It’s just not what I expected from this book.

The Software Developer Career Handbook

I will give it to the author, that he fulfills the subtitle of this book. First hand experience of how to become a great asset in a software company. How you should read other people around you, and how you should handle management. Yes, I knew all of this before I read the book, because I’ve read similar books in the same subject but it was great to get a more personal twitch on it, than most other books will give you.

The good, the bad and the ugly

This is a fun and easy to read book. It is something for the hammock a warm summer day. It is not a book that you should base your daily decisions on, but some stories that you could bring along with you.

The ugly part of this book, is that you feel deceived by the title. I where expecting more anecdotes about geeks and being geek.

2
Mar

Custom ConfigurationSection from System.Configuration

by Mikael Lundin in Programming

Sometimes we forget about System.Configuration. This is plain when you find a project with its custom configuration xml parsing techniques. Maybe we all need to be reminded about System.Configuration.

Say you want configuration that looks like this.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="fileCopy" type="LiteMedia.ExampleConfiguration.Configuration.SectionHandler, LiteMedia.ExampleConfiguration"/>
  </configSections>
  <fileCopy>
    <source>
      <directory path="C:\Temp1" />
      <directory path="C:\Temp2" />
    </source>
    <destination>
      <directory path="D:\Temp1" />
      <directory path="D:\Temp2" />
    </destination>
  </fileCopy>
</configuration>

Let’s start by the inner most element, directory. This is a class that inherits from System.Configuration.ConfigurationElement. Each property decorated with the ConfigurationPropertyAttribute is an attribute on the configuration element.

public class Directory : ConfigurationElement
{
	private const string PathIdentifier = "path";

	[ConfigurationProperty(PathIdentifier)]
	public string Path
	{
		get { return (string)this[PathIdentifier]; }
		set { this[PathIdentifier] = value; }
	}
}

We need a configuration element that can hold a list of other configuration elements. This needs to inherit from System.Configuration.ConfigurationElementCollection. There are some more work involved telling the collection what inner element to expect.

[ConfigurationCollection(typeof(Directory),
	CollectionType = ConfigurationElementCollectionType.BasicMap,
	AddItemName = AddItemNameIdentifier)]
public class Directories : ConfigurationElementCollection
{
	public const string AddItemNameIdentifier = "directory";

	public override ConfigurationElementCollectionType CollectionType
	{
		get { return ConfigurationElementCollectionType.BasicMap; }
	}

	protected override string ElementName
	{
		get { return AddItemNameIdentifier; }
	}

	public void Add(Directory directory)
	{
		BaseAdd(directory);
	}

	protected override ConfigurationElement CreateNewElement()
	{
		return new Directory();
	}

	protected override object GetElementKey(ConfigurationElement element)
	{
		var instance = (Directory)element;
		return instance.Path;
	}
}

Finally we can create the holder element, the ConfigurationSection. We reference the section from the <configSection> in the App.config file and from here we reach the rest of the configuration. Our configuration section is very simple.

public class SectionHandler : ConfigurationSection
{
	private const string SourceIdentifier = "source";
	private const string DestinationIdentifier = "destination";

	[ConfigurationProperty(SourceIdentifier)]
	public Directories Source
	{
		get { return (Directories)this[SourceIdentifier]; }
		set { this[SourceIdentifier] = value; }
	}

	[ConfigurationProperty(DestinationIdentifier)]
	public Directories Destination
	{
		get { return (Directories)this[DestinationIdentifier]; }
		set { this[SourceIdentifier] = value; }
	}
}

Some test program to make sure that it works.

public static void Main(string[] args)
{
	var configuration = (SectionHandler)ConfigurationManager.GetSection("fileCopy");

	Console.WriteLine("SOURCE DIRECTORIES");
	foreach (Directory directory in configuration.Source)
	{
		Console.WriteLine(directory.Path);
	}

	Console.WriteLine("DESTINATION DIRECTORIES");
	foreach (Directory directory in configuration.Destination)
	{
		Console.WriteLine(directory.Path);
	}

	Console.ReadLine();
}

You can download the code sample as a zip archive from here.