The Haskell platform is the perfect place to start with Haskell--it comes with the compiler, some useful tools (like cabal, Haskell's package manager) and a core set of well-tested and well-supported libraries. If you have been considering Haskell, this is a great time to go for it! I'm particularly excited by the updated OpenGL and GLUT bindings. Graphics is currently not Haskell's strong suit, but I think this migh…
Haskell Platform 2013.2.0.0
21–30 of 58 posts
Re: Haskell Platform 2013.2.0.0
#22Re: Haskell Platform 2013.2.0.0
#23In my opinion, Haskell Platform (HP) gets updates too slowly. I understand that the purpose is to have a coherent set of compatible packages, but in my opinion there should be a minor HP release for every ghc update in between. The fixes and improvements in ghc range from usefull to nessecary. It should be possible to release minor hp updates with the automated test suite. As a HP user, the wait for ghc-7.6 to be inc…
Re: Haskell Platform 2013.2.0.0
#24In my opinion, Haskell Platform (HP) gets updates too slowly. I understand that the purpose is to have a coherent set of compatible packages, but in my opinion there should be a minor HP release for every ghc update in between. The fixes and improvements in ghc range from usefull to nessecary. It should be possible to release minor hp updates with the automated test suite. As a HP user, the wait for ghc-7.6 to be inc…
What stopped you from installing ghc-7.6 yourself? I've been using 7.4 (from Platform) and 7.6 in parallel for over half a year without problem.
Re: Haskell Platform 2013.2.0.0
#25The Haskell guys really, really need a coherent story for database access. Perl has this with DBI/DBD for example, Java with JDBC, .NET has one (or ten, depending how you count it), etc. Adding that to Platform is the single biggest thing they could do to drive adoption.
Re: Haskell Platform 2013.2.0.0
#26Re: Haskell Platform 2013.2.0.0
#27 cabal install pandoc -j5
Will run five parallel cabal processes.Also this release contains attoparsec and unordered-containers as new packages \o/.
[1] Obviously, as permitted by the dependency graph. Source files within packages are not compiled (yet) in parallel.
Re: Haskell Platform 2013.2.0.0
#28Is there something like ipython for Haskell? GHCI is fine but some subtleties are missing. Like typing a prefix and going through a subset of the command history. And also the numpy/scipy/matplotlib toolkit that come with the -pylab option would be great!
Re: Haskell Platform 2013.2.0.0
#29In my opinion, Haskell Platform (HP) gets updates too slowly. I understand that the purpose is to have a coherent set of compatible packages, but in my opinion there should be a minor HP release for every ghc update in between. The fixes and improvements in ghc range from usefull to nessecary. It should be possible to release minor hp updates with the automated test suite. As a HP user, the wait for ghc-7.6 to be inc…
Re: Haskell Platform 2013.2.0.0
#30One nice feature of the newer cabal-installs is that it can compile dependencies in parallel[1], e.g.: cabal install pandoc -j5 Will run five parallel cabal processes. Also this release contains attoparsec and unordered-containers as new packages \o/. [1] Obviously, as permitted by the dependency graph. Source files within packages are not compiled (yet) in parallel.