Fwd: [Haskell-cafe] Market Place for Haskell development teams?

Curt,
2009/9/29 Curt Sampson
On 2009-09-29 13:18 +0200 (Tue), Alberto G. Corona wrote:
Java is part of the Java platform, that brought OS independence and interoperability at the right time. .Download-execution on the client was also a reason for the initial success of Java in the Internet era.
I was a die-hard Java hacker from 1999 until some undetermined time in the early-to-mid-2000s. (I abandoned it more or less completely sometime around late 2005, if I recall correctly.)
This may be somewhat anecdotal evidence, but I disagree with both of your statements here.
Of course, I´m not talking about real advantages of Java or any PL. I told about the reasons that people used at the time to introduce the language in the mainstream, either is desirable this for haskell or not. I think it is. Nobody consider the runtime download of Java code important nowadays. Not even the cross-platform features. but it was marketeed at his time as such.
Rubi and Python came with libraries targeted to Rapid development of Internet applications.
No, neither originally "came" with that.
Rubi and Pyton came into existencie without their internet libraries, but they would´nt be popular without them. Although I conffess I don´t know the history in detail.
What is the vehicle that haskell can use to enter the mainstream?.
That may be the wrong question. "Avoid success at all costs" still rings true to me. A year or so ago I seemed like one of the few on the haskell-libraries list voting in favour of fixing API problems in libraries, rather than etching in stone those problems in the name of backwards compatibility so that we could "become more popular."
Said above. We have different goals.
Do you really want, in 2020, to look back at the 2010 revision of the Haskell standard and think, "we entrenched things that for a decade everybody agreed was dumb"?
I see no problem in haskell having both. experimental and fixed versions. Haskell 2020 for you and me and haskell 2010 for my commercial code. Both woukd ve maintained and enriched by far more people.
I can tell you, even when you're a Java enthusiast, there's nothing more depressing than looking at java.util.Date and thinking, "That should have been immutable, but it's going to be mutable for the rest of eternity. We will never fix that."
But let's try this again:
What is the vehicle that haskell can use to enter the mainstream?.
Become more stupid.
Is that a better answer? I'm not just a geek; I do marketing too (this is what happens when you start your own company), and if you asked me, using the utmost of my technical knowledge and marketing skills, to make Haskell popular, this is what I'd recommend.
Become more stupid may mean "give exactly what the people want" that
transaltes to be more stable, give libraries, platforms etc. That is not a extra effor. that will come naturally as more people use the language. some people is naturally more abstract. some are more practical.
(I suppose it's a sign of my professionalism that to do this would nearly break my heart, but if you wanted me to tell you the best way to do this, and I couldn't tell you to get lost, that's what I'd say.)
Many people will play with Haskell in the spare time, and many of them will be permitted to develop some non critical applications at work. But that is all.
Hm. So I suppose that this options trading system I'm working on, which is the sole way our business makes money and is entirely written in Haskell, doesn't actually exist.
Congratulations.!!
I think that all the current niches are filled, but new niches are coming.
Haskell already has a good niche. In fact, a brilliant one. We have a whole bunch of academics doing truly wonderful stuff (imagine the world without monads!--thank you Philip Wadler (and Eugenio Moggi)) that the rest of us (relatively) dumb idiots can use to make our lives better. We've got several very good implementations of the language, one of which is a truly shit-hot compiler[1]. And we can use that to do commercial applications quite comfortably[2].
Right. ;)
My personal opinion is, yes, let's let Haskell stick to the niche where it's great, but it changes so fast that it's scary to everybody else. To echo Paul Graham, I'm extremely happy to see my competition use Java.
[1] Like that's so important. Ruby's standard implementation to this day is an interpreter that implements all the popular extensions and has a reasonably decent FFI. In Haskell-land, we call that "Hugs." It's only because we have GHC as well that we can look down on Hugs; in the Ruby (and Python, and PHP) worlds, they're saying that interpreters are just fine for all sorts of "enterprise applications."
[2] (Warning: self-promotion): http://www.starling-software.com/misc/icfp-2009-cjs.pdf
Financial applications are an example of higher level programming where tasks usually performed by humans are now automatized and there is no or few traditions about that. The need to think at a higher level without being worried by side effects and other details are specially needed in such kind of areas. That's where haskell could have its own niche.
Actually, I think that Haskell has a niche there not because of that sort of thing, but merely because it's better than Java at doing what Java does well, but scary enough that only small groups of brave people who are comfortable with risk would ever attempt to use it. The financial sector happens to have a lot more of those than many others.
same concept in more plain words. I guess.
cjs -- Curt Sampson
+81 90 7737 2974 Functional programming in all senses of the word: http://www.starling-software.com

The cross-platform features have been extremely important to the success of Java, because they have greatly expanded the number of libraries available to developers. On Haskell Cafe, not a week goes by that Windows (and sometimes Mac) developers don't complain about not being able to use some Hackage library because of cross-platform issues. The actual number of people encountering these issues is orders of magnitude larger than the number of posts you see here. These issues impede the growth of Haskell significantly. Moreover, the importance of cross-platform libraries on the Java platform is evinced by the fact that developers of major native libraries _always_ make their libraries cross-platform (Jogl, jmonkeyengine, swt, etc.). They wouldn't go to this trouble if it weren't something the community was demanding. From a risk management perspective, a manager really likes the ability to seamlessly move across platforms and architectures without recompilation. 32 -> 64? No problem. Linux -> BSD? Sure, why not? Yes, I'm sure even Amazon, Yahoo, and Google make these kinds of considerations. Regards, John A. De Goes N-Brain, Inc. The Evolution of Collaboration http://www.n-brain.net | 877-376-2724 x 101 On Sep 30, 2009, at 5:28 AM, Alberto G. Corona wrote:
Nobody consider the runtime download of Java code important nowadays. Not even the cross-platform features. but it was marketeed at his time as such.

fwiw I found it difficult getting a Haskell installation onto Windows. Packages that would 'cabal install' just fine on Linux were much more of a pain on Windows. Eventually, I actually found it easiest to cross compile to Windows using wine: wine HaskellPlatform-2009.2.0.2-setup.exe wine cabal wine cabal install yst The resulting yst.exe seems to work fine on actual Windows machines. Quite cool I thought as I prefer to stay in Linux, but if you're starting from a Windows based development environment, Haskell does seem problematic. -Rob John A. De Goes wrote:
The cross-platform features have been extremely important to the success of Java, because they have greatly expanded the number of libraries available to developers.
On Haskell Cafe, not a week goes by that Windows (and sometimes Mac) developers don't complain about not being able to use some Hackage library because of cross-platform issues. The actual number of people encountering these issues is orders of magnitude larger than the number of posts you see here. These issues impede the growth of Haskell significantly.
Moreover, the importance of cross-platform libraries on the Java platform is evinced by the fact that developers of major native libraries _always_ make their libraries cross-platform (Jogl, jmonkeyengine, swt, etc.). They wouldn't go to this trouble if it weren't something the community was demanding.
From a risk management perspective, a manager really likes the ability to seamlessly move across platforms and architectures without recompilation. 32 -> 64? No problem. Linux -> BSD? Sure, why not? Yes, I'm sure even Amazon, Yahoo, and Google make these kinds of considerations.
Regards,
John A. De Goes N-Brain, Inc. The Evolution of Collaboration
http://www.n-brain.net | 877-376-2724 x 101
On Sep 30, 2009, at 5:28 AM, Alberto G. Corona wrote:
Nobody consider the runtime download of Java code important nowadays. Not even the cross-platform features. but it was marketeed at his time as such.
_______________________________________________ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

On Wed, Sep 30, 2009 at 7:54 AM, Robert Wills
fwiw I found it difficult getting a Haskell installation onto Windows. Packages that would 'cabal install' just fine on Linux were much more of a pain on Windows. Eventually, I actually found it easiest to cross compile to Windows using wine:
The only time I have trouble with a Haskell library is when it requires some foreign library that isn't Windows friendly. HSQL and yi are two examples I remember from some time ago. However, many libraries are just fine: HDBC, lhs2tex, hlint, for example. The Haskell Platform has made this even simpler because I have a compatible base that I know will work. Justin

On 2009-09-30 07:16 -0600 (Wed), John A. De Goes wrote:
The cross-platform features have been extremely important to the success of Java....
Moreover, the importance of cross-platform libraries on the Java platform is evinced by the fact that developers of major native libraries _always_ make their libraries cross-platform....
Hm. It is interesting to note, then, that Ruby, which has worse
cross-platform support than Haskell[1], is yet still quite popular,
orders of magnitude more so than Haskell.
So while that portability may have helped Java, it doesn't seem required
to become popular.
[1] I've ported a fair amount of both Ruby and Haskell code from Unix
to Windows, so I think I have a pretty good handle on the the relative
portability of both.
cjs
--
Curt Sampson
participants (5)
-
Alberto G. Corona
-
Curt Sampson
-
John A. De Goes
-
Justin Bailey
-
Robert Wills