[Haskell-cafe] MonadBaseControl IO instance for conduits ?

2013-10-11 Thread Aleksey Uymanov
for ConduitM) with MonadBaseControl IO. -- Aleksey Uymanov s9gf4...@gmail.com ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Announce: HDBI-1.2 and friends

2013-10-05 Thread Aleksey Uymanov
-sqlite http://hackage.haskell.org/package/hdbi-conduit And you are welcome on GitHub: https://github.com/s9gf4ult/hdbi https://github.com/s9gf4ult/hdbi-postgresql https://github.com/s9gf4ult/hdbi-sqlite https://github.com/s9gf4ult/hdbi-conduit -- Aleksey Uymanov s9gf4...@gmail.com

[Haskell-cafe] Value-weak hash tables in Haskell ?

2013-08-10 Thread Aleksey Uymanov
Hello, haskellers. Is there any package implementing magic hash tables weak in value? I mean when the value is garbage collected, then this key+value authomatically removes from the hash table. -- Aleksey Uymanov s9gf4...@gmail.com ___ Haskell-Cafe

Re: [Haskell-cafe] Quick-check: how to generate arbitrary complex data?

2013-07-13 Thread Aleksey Uymanov
OtherListA checkListA :: ListA - Property checkOtherListA :: OtherListA - Property prop1 = forAll genListA checkListA prop2 = forAll genOtherListA checkOtherListA -- Aleksey Uymanov s9gf4...@gmail.com ___ Haskell-Cafe mailing list Haskell-Cafe

Re: [Haskell-cafe] how to debug stack overflow?

2013-06-22 Thread Aleksey Uymanov
On Sat, 22 Jun 2013 11:04:21 + (UTC) Johannes Waldmann waldm...@imn.htwk-leipzig.de wrote: What is the recommended method Try to use heap profiling. There is very high probability that the problem is because of space leak. -- Aleksey Uymanov s9gf4...@gmail.com