[Haskell-cafe] New Functional Programming Job Opportunities

2013-09-09 Thread Functional Jobs
Here are some functional programming job opportunities that were posted recently: Haskell Programmer at Zalora Southeast Asia http://functionaljobs.com/jobs/8645-haskell-programmer-at-zalora-southeast-asia Cheers, Sean Murphy FunctionalJobs.com ___

Re: [Haskell-cafe] a little parsec enhancement

2013-09-09 Thread Petr Pudlák
I'd appreciate exporting adding such aliases for creating and running ParsecT the 3.1.x way. Thanks, Petr Dne 09/06/2013 10:56 PM, Antoine Latter napsal(a): The exported `mkPT` is equivalent to the old 'ParsecT' data constructor from parsec 3.0.x. I wouldn't mind exporting a similar

[Haskell-cafe] Looking for GUI examples

2013-09-09 Thread Sergey Mironov
Hi, Cafe. I'd like to write simple GUI utility containing tray icon and the menu. Could you please suggest Haskell example to make my start easier? Regards, Sergey ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org

Re: [Haskell-cafe] FLTK GUI Binding in progress. Call for participation.

2013-09-09 Thread aditya siram
Thanks for your input. However from an API coverage standpoint I think I further along than that project. Also it hasn't been updated since 2008. That said it seems to have a nice interface. Should I emulate that? One of my main goals for starting this thread (besides getting help) was to start

Re: [Haskell-cafe] Looking for GUI examples

2013-09-09 Thread Henk-Jan van Tuyl
On Mon, 09 Sep 2013 11:48:42 +0200, Sergey Mironov grr...@gmail.com wrote: Hi, Cafe. I'd like to write simple GUI utility containing tray icon and the menu. Could you please suggest Haskell example to make my start easier? There is a simple wxHaskell program for this:

Re: [Haskell-cafe] FLTK GUI Binding in progress. Call for participation.

2013-09-09 Thread Heinrich Apfelmus
aditya siram wrote: Thanks for your input. However from an API coverage standpoint I think I further along than that project. Also it hasn't been updated since 2008. That said it seems to have a nice interface. Should I emulate that? One of my main goals for starting this thread (besides

[Haskell-cafe] Hackage 2 now available for beta testing

2013-09-09 Thread Duncan Coutts
Well-Typed and the Industrial Haskell Group (IHG) are very pleased to announce that Hackage 2 is now available for public beta testing. The plan is to do the final switchover in late September, to coincide with ICFP. http://beta.hackage.haskell.org/ Read on for details of how to help with the

[Haskell-cafe] Cabal --enable-tests

2013-09-09 Thread satvik chauhan
Hi cafe, I wanted to ask this as I couldn't find this in cabal documentation. Is there any CCP macro set when a package is configured with --enable-testing? If not is there a way to do that? -Satvik ___ Haskell-Cafe mailing list

[Haskell-cafe] An Extra Empty Line

2013-09-09 Thread Hong Yang
Hi Dear Haskellers, I have this small program to grep recursively in parallel. It works fine, but generates the last line empty. Is this empty line coming from mapConcurrently()? Thanks, Hong -- mygrepr.hs -- lrf.pl is an old Perl script to get all non-duplicate files recursively under the

Re: [Haskell-cafe] Cabal --enable-tests

2013-09-09 Thread Johan Tibell
I don't think so. Perhaps we should set one. What's your use case? Perhaps you could describe it in a new bug report at https://github.com/haskell/cabal/issues On Mon, Sep 9, 2013 at 7:29 PM, satvik chauhan mystic.sat...@gmail.comwrote: Hi cafe, I wanted to ask this as I couldn't find this

[Haskell-cafe] Lenses: Should I declare Getters?

2013-09-09 Thread Charlie Paul
I've been looking through Edward Kmett's lens library, and I'm a bit befuddled about Getters. In my own code, why would I want to have something be a Getter instead of a plain function? As far as I can see, a plain function is simpler to use, and can be converted to a Getter with to if we want to