F#
-
F#: Playing around with asynchronous workflows at Mark NeedhamF#: Playing around with asynchronous workflows I spent a bit of time over the weekend playing around with F# asynchronous workflows and seeing how they could be used to launch Firefox windows asynchronously for my FeedBurner graph creator . Initially I decided to try out the ...
-
Polyphonic : A walk with a newbieA walk with a newbie When I was at Santa Clara University there was this class on formal systems that all students were required to take. It covered predicate calculus, lambda calculus, and computational theory. For most of us, this class was hell. American students are notorious for scoring ...
-
Actors in F# – The Bounded Buffer Problem [feedly]Actors in F# – The Bounded Buffer Problem In the previous post, I covered an example of an auction simulation using asynchronous message passing and a shared nothing approach using the MailboxProcessor class in F#. The auction example was a great piece to demonstrate scalability by ...
-
F#: Continuation Passing Style at Mark NeedhamF#: Continuation Passing Style As I understand it we can achieve a continuation passing style of programming by passing in the bit of code that we went executed next (i.e. the continuation) as an argument to a function. Wes has a series of examples in C# so I thought I'd see what they look ...
-
Revisiting Memoization [feedly]Revisiting Memoization After revisiting the Haskell Wiki recently, I wanted to look at memoization again for a brief second after talking about it a while ago. In particular, there were two competing ideas, one around using a generic dictionary/map for storing the memoized values, the ...
-
F# – Async Running with Continuation Scissors [feedly]F# – Async Running with Continuation Scissors As you may have noticed, I’ve been covering a bit about concurrency on this blog lately, and for good reason. Between Axum, Erlang, Scala and F#, there is a lot to explore with actor model concurrency, task based concurrency, data parallel ...
-
F# Webcast (IV.) - Developing standard .NET libraries | Blog | TomasP.NetF# Webcast (IV.) - Developing standard .NET libraries In the previous parts of this webcast series we've developed an F# script that downloads RSS feeds asynchronously and in parallel and searches them for the specified keywords. We followed the usual F# development style, so after introducing ...
-
F# – Duck Typing and Structural Typing - Matthew Podwysocki - CodeBetter.Com - Stuff you need to Code Better!Do you twitter? Follow us @CodeBetter F# – Duck Typing and Structural Typing As you may have noticed on this blog lately that I’ve been focusing on Asynchronous Workflows. In those adventures, I’ve been taking well known APIs such as Twitter, Bing, among others and seeing what I can do ...
-
LukeH's WebLog : F# on Windows AzureF# on Windows Azure Windows Azure was announced yesterday, and along with it, the first CTP of the SDK and Visual Studio tools . If you haven’t yet tried it, go take a look . On top of serving as a hosting service for web applications, Azure also provides a really simple way to do ...
-
F# Webcast: Using Asynchronous Workflows | Blog | TomasP.NetF# Webcast: Using Asynchronous Workflows In this webcast, we'll look at improving the code for downloading and processing RSS feeds that I presented in the second part (if you didn't see earlier parts, the first one was an introduction to basic functional ideas). The previous part ...
