Re: [Haskell-cafe] indentation blues

2011-12-15 Thread Ivan S. Freitas
For vim, there is a indent script, I don't remember exactly where I found it but it's on my github repo: https://github.com/ISF/dotfiles/blob/master/.vim/indent/haskell.vim (And don't forget the haskellmode for vim) Also, I've used the haskell mode of emacs with vimpulse to emulate vim motions. I

Re: [Haskell-cafe] Hackage on Linux

2010-08-22 Thread Ivan S. Freitas
> It looks as if it's automated for Arch, however. Either that or somebody is > spending an absurd amount of time keeping it manually up to date. Yeah, it's automated, Don Stewart made a script to do that. http://archhaskell.wordpress.com/ -- == Ivan S

[Haskell-cafe] Paralelism and Distribution in Haskell

2010-09-06 Thread Ivan S. Freitas
Hi fellow haskellers, I'm interested in the performance of parallel and/or distributed implementations in haskell language. For example, supose I want to develop an application that distributes a computation between many multicore computers, what are the advantages I can take from haskell in that?