vote up 13 vote down star
11

I'm looking for some open source F# projects to learn from. Something like this question but for F#, i.e. not snippets but full projects that are good representatives of F# features (i.e. pattern matching, discriminated unions, etc).

My objective are mainly to see how all the features fit together, how the project is organized and how the problems are tackled from a functional perspective.

flag
Or any successful commercial application? Anyone? – Ali A Dec 21 '08 at 1:42

8 Answers

vote up 3 vote down

FsCheck, a specification-based testing framework.

VCC, static analysis of C programs (by MS research)

VSLab, a mathematica/matlab like environment in visual studio

link|flag
vote up 1 vote down

Robert Pickering has put an F# project focused on Collective Intelligence similar to Toby Segaran's book "Collective Intelligence" ( demonstrated therein via python ) on github:

fscollintelli

link|flag
vote up 3 vote down

DownloadStockPrices:

Downloads stock prices, dividends and splits from Yahoo historical quotes. It also modify them to make them as happened and adjust them to calculate adjusted prices. There is also a .NET component that can be reused from C#/VB.NET. It is written in F# but it can be used from whatever .NET language.

Link to blog posts is here:

It has been written with the F# September 2008 CTP.

The solution is composed by:

  • a library to perform the dowload
  • a test project using xUnit (but you have to download xUnit and reference it in the Tests project to run it)
  • a simple Console based driver
  • a start of a graphical UI app using the library (called Bob)
link|flag
"a start of a graphical UI app using the library (called Bob)" <-- Is this for real? Another Microsoft Bob? I love it. – GvS Jan 6 '09 at 9:31
vote up 1 vote down

Though I'm not sure about the licensing... Microsoft's TrueSkill system (which rates players in XBox360 live gaming) has published some source code.

http://blogs.technet.com/apg/archive/2008/04/05/trueskill-through-time.aspx

link|flag
cool! it contains a DAL in F# :) – Mauricio Scheffer Dec 31 '08 at 18:11
vote up 2 vote down

FParsec - A Parser Combinator Library for F#

link|flag
vote up 2 vote down

Found another one:

Storm: a tool for testing web services

link|flag
vote up 2 vote down

Searching on google code I found:

link|flag
You should have compiled all your answers into one answer. – George Stocker Apr 14 at 16:36
No. Different projects generate different levels of interest so the most interesting or representative project should be the most voted. – Mauricio Scheffer Apr 14 at 16:48
@Mausch : Stack Overflow is not meant to be used as a polling mechanism. Voters often downvote authors that post multiple answers, simply because they appear to be vote-whoring. – George Stocker Apr 14 at 20:14
Especially since your question is 1) not a wiki, and 2) doesn't ask that question. – George Stocker Apr 14 at 20:14
I don't agree with your POV and I don't care too much about rep, if you look at my profile you'll see that I've been answering lots of obscure questions that don't get much votes. And I did ask for representative projects. And see the dates, nobody answered and it took me 6 days to find something. – Mauricio Scheffer Apr 14 at 21:33
show 1 more comment
vote up 8 vote down

List of Open Source F# Projects (Compiled):

link|flag
I can't correct your entry but the DownloadStockPrices link is broken. – Brett Bim Jul 14 at 18:00
1  
not voting up a compilation – zvolkov Jul 14 at 18:12
1  
@zvolkov No worries. However, it is in line with the founders' vision for Stack Overflow (See Joel's many comments on the subject). – George Stocker Jul 14 at 18:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.