Jon Harrop

1,765
Reputation
1590 views

Registered User

Name Jon Harrop
Member for 1 year
Seen Nov 23 at 19:39
Website
Location Cambridge, UK
Age
Cofounder of Flying Frog Consultancy Ltd.
Nov
11
awarded  Good Answer
Oct
22
answered F# books question
Oct
19
comment Erlang vs OCaml (best niche to fit)
OCaml does still have a global lock and that does mean that you cannot make efficient use of a multicore by using a shared mutable heap. However, the consequence is that you resort to using message passing between processes which is exactly what Erlang uses anyway. So OCaml is not at a disadvantage compared to Erlang in this respect (although it is nowhere near as fast on a multicore as something like F#). Message passing is easy in OCaml and there are lots of libraries and tools to help. There are a couple of major distributed concurrent software developments using OCaml today, e.g. Wink.
Oct
18
comment Does OCaml have general map()/reduce() functions?
If you want brevity then use objects: xs#map f. Either way you can easily express this in OCaml's type system.
Oct
18
comment What to learn? Lisp or OCaml or…?
Scala is the "truest form" of functional programming? It doesn't even have tail calls...
Oct
18
comment What to learn? Lisp or OCaml or…?
F# does not run on Mono.
Oct
18
answered What’s the difference between functors and “generics”
Oct
18
answered Erlang vs OCaml (best niche to fit)
Oct
18
answered How to use multicores in Ocaml to do Monte Carlo simulations?
Oct
15
answered How is the current performance of the Mono virtual machine?
Oct
15
comment How is the current performance of the Mono virtual machine?
Mono's performance is awful and has improved only marginally and once in its entire life (with Mono 2.2).
Oct
15
revised Mono performance
added 174 characters in body
Oct
15
answered Mono performance
Oct
5
comment How do you design a functional program?
Objects do not necessarily contain state. Look at functional object update in OCaml, for example.
Oct
2
answered F#: is there no UI (like WPF) for it?
Sep
26
answered Obsolete or Changed functionality from f# 1.9.6.3 to 1.9.6.16 (the 2010 beta and 2008 compatible release)
Sep
22
answered Concurrent data structure design
Sep
17
awarded  Yearling
Sep
10
comment Why isn’t OCaml more popular?
"Let me know when I can "cabal install" an OCaml library" - jrockway Cabal is a proprietary package manager for Haskell and has nothing whatsoever to do with OCaml. Most OCaml programmers "apt-get install" their libraries thanks to hundreds of OCaml libraries with excellent support for the much more mature and robust apt package manager (compared to Cabal). These libraries have been heavily used in industry for years so your claim about OCaml's libraries is just uninformed bullshit.
Sep
7
comment A good ocaml parser?
I'm referring to camlp4, ocamllex, ulex, ocamlyacc, dpygen, menhir, ocfgc, aurochs and others. I found that ocamllex and ocamlyacc were generally several times faster at parsing than anything available for F# such as fslex, fsyacc and FParsec.
Sep
7
comment What is the best functional language for scientific programming
@jextee: F# is already widely used for scientitic computing.
Sep
7
comment What is the best functional language for scientific programming
Erlang's parallel performance is awful.
Sep
7
comment What is the best functional language for scientific programming
Hardly "one up" given the absence of a decent garbage collector in all existing Common Lisp implementations, both free and commercial.
Sep
7
comment What is the best functional language for scientific programming
As Pavel explained, this post is pure fanboi fantasy and you can easily find overwhelming evidence to the contrary. In reality, Haskell is nowhere near as fast as JVM- or CLR-based languages let alone C. If you're interested in learning the truth, check out the Burrows Wheeler Transform benchmark which is still orders of magnitude slower in Haskell than other languages including OCaml, F# and C. Even generic parallel quicksort is an unsolved problem in Haskell but trivial to implement in other languages.
Aug
17
comment If you already know LISP, why would you also want to learn F#?
Quotations and metaprogramming in F# provide exactly the same functionality as QUOTE and EVAL in Lisp. Your statement that "F# has nothing like this" was incorrect. The Lisp code '(+ 1 2) that you wrote is an example of a quotation. Hence you used the quotation mark when you wrote it. That may be written equivalently in F# as <@ 1+2 @>.
Aug
10
comment Which companies are using F# internally and what are they using it for?
Very interesting to see it used for in web development and in a healthcare company!
Aug
10
comment Which companies are using F# internally and what are they using it for?
How many F# developers are there at Credit Suisse in London?
Aug
10
comment How difficult is it to learn F# for experienced C# 3.0 developers?
Using the ">" operator without implementing IComparable will not produce a runtime error for F# types because they provide their own structural comparison. Indeed, that is an important part of what makes F# so powerful.
Aug
10
comment When does it make sense to use F# over C# or VB.NET?
Depends what kind of GUI.
Aug
10
answered What features would you add, remove or change in F#?
Aug
10
answered What features would you add, remove or change in F#?
Aug
10
comment What features would you add, remove or change in F#?
F# already has eval.
Aug
10
comment What features would you add, remove or change in F#?
Why not just typeset "fun x" as "lambda x" as OCaml does?
Aug
10
comment What features would you add, remove or change in F#?
I'd rather they used the Greek symbols alpha, beta and did proper type setting.
Aug
10
comment What features would you add, remove or change in F#?
Would that be equivalent to fun or function in general terms?
Aug
10
comment What features would you add, remove or change in F#?
I think that raises other ambiguities. I'd rather have "let .. and .." allowed on one line as OCaml does because it can be clearer than using a tuple.
Aug
10
comment What features would you add, remove or change in F#?
Only "open Seq" is deprecated in favor of "open Microsoft.FSharp.Seq". Everything else will continue to work just as you described.
Aug
10
comment Does anyone have any recommendations for starting out in functional programming?
IIRC, Standard ML has a formally-specified standard whereas Common Lisp and Scheme do not (they are only informally specified).
Aug
10
comment Why do people think functional programming will catch on?
C# is now a functional programming language (as much as Lisp) because it has first-class lexical closures. Indeed, they are already used in WPF and the TPL. So functional programming is obviously already here.
Aug
10
comment Why do people think functional programming will catch on?
Regarding libraries, it really depends what you're doing. F# is targeted at the finance sector and is also applicable to scientific computing but OCaml actually has far better libraries for such applications than .NET. For example, when I came to F# from OCaml I failed to find a decent FFT and ended up writing (and selling) my own in C# and then F#.
Aug
10
comment Is F# better than C# in scenarios where you need complete parallelism in parts of an application?
Actually I find F# really useful for GUI code because functional programming makes it easy to run a (lamba) function on the UI thread.
Aug
10
answered Where can F# actually save time and money?
Aug
10
comment Where can F# actually save time and money?
Your response has nothing to do with F#, which does not require you to control side-effects and does not suffer from the horrific problems introduced by adding that requirement.
Aug
9
comment Functional languages with concurrent garbage collectors?
Note that the blog post you cite is from 2004 and the .NET GC was replaced with a new "Background GC" in .NET 3.5 SP1.
Aug
9
comment Functional languages with concurrent garbage collectors?
@Curt: Scaling and throughput are not the same thing. The non-concurrent parallel "server" GC option for .NET sacrifices latency to improve throughput. If you run a program with a thread for each core where only one thread allocates heavily then you will see that the server GC scales far worse than the default concurrent GC because that one thread degrades the performance of all other threads with non-concurrent GC. Haskell and the default JVM GC exhibit the same problem. Hence I said that Haskell's GC does not scale.
Aug
3
awarded  Enlightened
Jul
31
answered Plotting with C#
Jul
31
answered Managed language for scientific computing software
Jul
31
answered Scientific math with functional languages?
Jul
20
revised Is a program F# any more efficient (execution-wise) than C#?
Update for F# May 2009 CTP; deleted 10 characters in body; added 137 characters in body