Monthly Archives: September 2010

Project Euler Problem 11 in F#

Tweet Project Euler Problem 11 is an interesting one; when addressed with a functional approach it lends itself to be solved using function composition. Let's have a look at the question and then a possible solution: In the 20×20 grid … Continue reading

Posted in .NET, F# | Tagged , , | 1 Comment

Project Euler Problem 10 in F#

Tweet Project Euler Problem 10 asks a very simple question, again dealing with prime numbers: Calculate the sum of all the primes below two million. I am giving here two solutions, using two different approaches: #light open System.Collections.Generic // SOLUTION … Continue reading

Posted in .NET, F# | Tagged , , | 2 Comments

File Transfer with WCF: Part III

Tweet This is the third post on a small series about transferring large files with WCF using streaming : File Transfer With WCF File Transfer With WCF: Part II File Transfer With WCF: Part III I am closing this series … Continue reading

Posted in .NET, C#, WCF | Tagged , , | 29 Comments