F# "real world" apps? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T07:15:18Zhttp://stackoverflow.com/feeds/question/47315http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/47315/f-real-world-apps6F# "real world" apps?ila2008-09-06T07:54:18Z2009-11-13T10:00:06Z
<p>I'm <a href="http://beta.stackoverflow.com/questions/36294/f-language-hints-for-newbie" rel="nofollow">starting to learn f#</a>, and I really like it: now I wonder if "out there" someone has written any "real world" app in this wonderful language. </p>
<p>Do you know of, or have developed anything of this kind in F#? And in which fields? Thanks!</p>
http://stackoverflow.com/questions/47315/f-real-world-apps/47357#473579Answer by Erik Öjebo for F# "real world" apps?Erik Öjebo2008-09-06T09:35:18Z2008-09-06T09:35:18Z<p>In <a href="http://www.dotnetrocks.com/default.aspx?showNum=293" rel="nofollow">episode 293</a> of <a href="http://www.dotnetrocks.com" rel="nofollow">Dot Net Rocks</a> one of the guests is Ralf Herbrich from Microsoft Research. Among other things, he talks about his work on the TrueSkill ranking system in Halo 3, where they used F#.</p>
<p>So check out the podcast episode above to listen to a discussion about the use of F#.</p>
http://stackoverflow.com/questions/47315/f-real-world-apps/47951#479510Answer by ila for F# "real world" apps?ila2008-09-06T23:31:41Z2008-09-06T23:31:41Z<p>Thanks Erik, I'll hear the podcast. Anyway it looks like there aren't a lot of uses for F# still... maybe we have to wait for MS to ship it in VStudio10?</p>
http://stackoverflow.com/questions/47315/f-real-world-apps/48272#482721Answer by Leon Bambrick for F# "real world" apps?Leon Bambrick2008-09-07T09:36:11Z2008-09-07T09:54:43Z<p>When you install F# there's a bunch of samples that come with it. For Windows forms examples look in the subfolder "SimpleForm" or the subfolder "WinForms".</p>
<p>I think Tomas Petricek's "<a href="http://tomasp.net/articles/aspnet-in-fsharp.aspx" rel="nofollow">F# web tool kit</a>" is an interesting example of using F# for asp.net development.</p>
<p>(Tomas was responsible for the Phalanger compiler, which compiled php into .net msil) </p>
http://stackoverflow.com/questions/47315/f-real-world-apps/60543#605430Answer by Michiel Borkent for F# "real world" apps?Michiel Borkent2008-09-13T13:38:59Z2008-09-13T13:38:59Z<p>I've written some screenscraping utility module in F# which I use in an ASP.NET WebHandler. What it does is transform a basic html website into a podcast feed, so I don't have to download audio files manually when the guy who runs the site adds new items to it.</p>
http://stackoverflow.com/questions/47315/f-real-world-apps/215977#2159771Answer by Jon Harrop for F# "real world" apps?Jon Harrop2008-10-19T03:53:49Z2008-10-19T03:53:49Z<p>We have developed <a href="http://www.ffconsultancy.com/products/fsharp_for_numerics/?so" rel="nofollow">F# for Numerics</a> and <a href="http://www.ffconsultancy.com/products/fsharp_for_visualization/?so" rel="nofollow">F# for Visualization</a> in F# (of course!). Both are aimed at scientists and engineers. The former is a suite of easy-to-use numerical methods. The latter is a library for graphing, charting and arbitrary 2D and 3D visualization that supports F#'s interactive sessions as well as embedding in your own applications as ordinary WPF controls.</p>
<p>We intend to write end user applications in F# in the future, which may well include a standalone environment for interactive technical computing based upon our current libraries.</p>
<p>Cheers,
Jon Harrop.</p>
http://stackoverflow.com/questions/47315/f-real-world-apps/271271#2712713Answer by unknown (yahoo) for F# "real world" apps?unknown (yahoo)2008-11-07T04:54:30Z2008-11-07T04:54:30Z<p>For a real world working F# app, check out the open source project <a href="http://codeplex.com/storm" rel="nofollow">http://codeplex.com/storm</a></p>
<p><img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=storm&DownloadId=44833" alt="alt text" /></p>
http://stackoverflow.com/questions/47315/f-real-world-apps/277430#2774301Answer by namin for F# "real world" apps?namin2008-11-10T09:38:04Z2008-11-10T09:38:04Z<p>I've been using F# to develop a plug-in to AutoCAD for designing programmable microfluidic chips (<a href="http://cag.csail.mit.edu/micado/" rel="nofollow">user site</a>, <a href="http://micado.googlecode.com" rel="nofollow">developer site</a>).</p>
http://stackoverflow.com/questions/47315/f-real-world-apps/1728280#17282800Answer by iestyn for F# "real world" apps?iestyn2009-11-13T10:00:06Z2009-11-13T10:00:06Z<p>I have developed an RSS filter program that can filter all RSS feeds to what I need to analyze. Loving the async stuff in f#. Example key word searches are a breeze using match options. You just plug them in and it all works using secret worker threading stuff that I don't care about (from a c# background).</p>
<p>Working in data as opposed to objects feels more natural when dealing with streams of data. Lately been looking at DB input output and realised that MS have tried to make something Object which is clearly not. </p>
<p>I love working in objects, it makes analysis of the world around me a lot easier. But damn the impediment of streams and objects.</p>
<p>A stream as implied by the title is a stream of data analogous to water, flow, start, stop. It does not fit in the nice encapsulated world of objects where everything has boundaries.</p>
<p>So real work apps. Yes F# is going to fit into the real world nicely, especially for web programming where everything is an asynchronous stream of data, with start and stop boundaries.</p>
<p>Attach those streams to events, and suddenly its all gone a bit unix and the pipe metaphor. Maybe I should look at other languages. Is F# a language that is going to kill MS from the inside out. It might do. It does give nice little tastes of what can be done when you go pre 1980's programming.</p>
<p>The term throwing the baby out with the bath water is the best way to describe the 1980's attitude to objects, so many vendors sold the idea of objects that they dumbed it down and passed it as law. It gave us java and c# and everything is a noun with descriptions attitude. It made a lot of things easier, but a few things a pain in the a!"£$.</p>
<p>F# is the law giver, the law breaker. The language of real men who drink heavily, smoke woodbines and wear "grrrrrr" cologne. I want my car to break down once in a while, I want to wake up in jail and thing, boy shouldn't have done that with the mash potato.</p>
<p>Make a choice, be a man. F# is the way my son. </p>
<p>Say good bye to the quiche generation! </p>