Re: [Haskell-cafe] Is there still at list of active Haskell projects

2011-09-24 Thread David Peixotto
The Haskell Communities and Activities Report it another good source to check for active Haskell projects. http://www.haskell.org/haskellwiki/Haskell_Communities_and_Activities_Report On Sep 24, 2011, at 4:42 PM, Vasili I. Galchin wrote: > Hello, > > On http://www.haskell.org I didn't see

Re: [Haskell-cafe] Is there still at list of active Haskell projects

2011-09-24 Thread Marc Weber
Excerpts from Vasili I. Galchin's message of Sat Sep 24 23:42:06 +0200 2011: > On http://www.haskell.org I didn't see a list of active Haskell > projects. ?? What do you mean by "active" ? Some packages such as hasktags - are they dead? I still use it. However there have not been much updates r

[Haskell-cafe] Is there still at list of active Haskell projects

2011-09-24 Thread Vasili I. Galchin
Hello, On http://www.haskell.org I didn't see a list of active Haskell projects. ?? Thanks, Bill ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] A Missing Issue on Second Generation Strategies

2011-09-24 Thread Daniel Fischer
On Saturday 24 September 2011, 18:01:10, Burak Ekici wrote: > Dear List, > > I am trying to parallelize RSA encryption and decryption by using below > manner, but when I run executable output file with "+RTS -s -N2" > command on Windows 7, output stats say 4 sparks are being created > however none

Re: [Haskell-cafe] A Missing Issue on Second Generation Strategies

2011-09-24 Thread Burak Ekici
Thanks a lot for the quick answer. Accordingly, I have just changed the code into below one, however sparks are still being pruned. Do you have any other ideas? Bests, Burak. -- split4ToEnc :: RSAPublicKey -> [Integer] -> [Integer] split4ToEnc (PUB n e) [] = [] split4ToEnc (PUB n e) (

Re: [Haskell-cafe] A Missing Issue on Second Generation Strategies

2011-09-24 Thread Antoine Latter
On Sat, Sep 24, 2011 at 11:14 AM, Antoine Latter wrote: > 2011/9/24 Burak Ekici : >> Dear List, >> >> I am trying to parallelize RSA encryption and decryption by using below >> manner, >> but when I run executable output file with "+RTS -s -N2" command on Windows >> 7, >> output stats say 4 sparks

Re: [Haskell-cafe] A Missing Issue on Second Generation Strategies

2011-09-24 Thread Antoine Latter
2011/9/24 Burak Ekici : > Dear List, > > I am trying to parallelize RSA encryption and decryption by using below > manner, > but when I run executable output file with "+RTS -s -N2" command on Windows > 7, > output stats say 4 sparks are being created however none of them converted > into > real OS

[Haskell-cafe] A Missing Issue on Second Generation Strategies

2011-09-24 Thread Burak Ekici
Dear List, I am trying to parallelize RSA encryption and decryption by using below manner, but when I run executable output file with "+RTS -s -N2" command on Windows 7, output stats say 4 sparks are being created however none of them converted into real OS threads. -- SPARKS :4 (0 converted, 4

Re: [Haskell-cafe] Fwd: problem with cabal install MissingH-1.1.1.0

2011-09-24 Thread Brandon Allbery
On Thu, Sep 22, 2011 at 23:10, Mariano Cortesi wrote: > When i start EclipseFP, it tries to build the scion-browser, but it fails > inmediately with a message from cabal: > > cabal: The program ghc version >=6.4 is required but it could not be found. > > Google wasn't much help. Is anybody using

Re: [Haskell-cafe] Where is SNMap for stable names?

2011-09-24 Thread Sean Leather
On Sat, Sep 24, 2011 at 01:41, Edward Kmett wrote: > You still need IO to get the stable name out to use. :) > I don't understand this statement. Consider the lookup operation in the paper and in your System.Mem.StableName.Map: > lookupSNMap :: SNMap k v -> StableName k -> IO (Maybe v) > lookup