Taking Efficiency One Step Further - F#
- Posted: Jun 19, 2009 at 4:23 AM
- 8,123 Views
- 4 Comments
Download
How do I download the videos?
- To download, right click the file type you would like and pick “Save target as…” or “Save link as…”
Why should I download videos from Channel9?
- It's an easy way to save the videos you like locally.
- You can save the videos in order to watch them offline.
- If all you want is to hear the audio, you can download the MP3!
Which version should I choose?
- If you want to view the video on your PC, Xbox or Media Center, download the High Quality WMV file (this is the highest quality version we have available).
- If you'd like a lower bitrate version, to reduce the download time or cost, then choose the Medium Quality WMV file.
- If you have a Zune, WP7, iPhone, iPad, or iPod device, choose the low or medium MP4 file.
- If you just want to hear the audio of the video, choose the MP3 file.
Right click “Save as…”
- High Quality WMV (PC, Xbox, MCE)
- MP3 (Audio only)
- MP4 (iPod, Zune HD)
- Mid Quality WMV (Lo-band, Mobile)
- WMV (WMV Video)
This video is recorded at the Dutch DevDays in Den Haag The Netherlands in June 2009. DevDays is the largest industry event for developers in the Netherlands. Thousands of professional developers visit DevDays yearly to keep in touch with the latest developments in their field.
Comments Closed
Comments have been closed since this content was published more than 30 days ago, but if you'd like to continue the conversation,
please create a new thread in our Forums,
or
Contact Us and let us know.
Follow the Discussion
Thanks for posting this. It is the start of a compelling argument for me to explore this language further. F# information seems very fragmented in blogs, sample chapters of future books, etc For me, F# needs an "Annotated Reference Manual" equivalent.
However we make do, and this was good. Are there videos of the other two talks Oliver Sturm gave?
Thanks.
We're in the process of getting the rest of the devdays videos online. We're still waiting for the videos. We have to process them and upload them to channel9. Lot of work. I would suggest you subscribe to this RSS feed: http://channel9.msdn.com/tags/DevDays+2009+NL/RSS/ you will get notified when we post new videos.
Inmiddels een paar maanden verder. Hoe staat het met de andere filmpjes?
I t was very interesting. I was wondering if anyone knows the reason behind a specifict F# design decision.
About the pipe operator: |>
Why is a |> b c interpreted as a |> (b c) instead of (a |> b) c ? Isn't left to right most logical?
A more specific example:
let multiply a b = a * b;;
let substract a b = a - b;;
multiply 2 3 |> substract 10;;
returns 4
so it is interpreted as:
multiply 2 3 |> (substract 10);;
while it seems logical to interpret this as:
(multiply 2 3 |> substract) 10;;
----
furthermore, in response to the question from your audience, about inserting the middle parameter, you could have answerd:
let answer a b c = a / b - c;;
if you want to insert the middle parameter b,
(multiply 2 3 |> answer 30) 4;;
will yield the desired result...
Remove this comment
Remove this thread
close