Re: [Haskell-cafe] Haskell Logo Macbook Decal

2013-10-01 Thread Kyle Hanson
I ordered mine! Does anyone know if there is any place where I could order pre-made Haskell t-shirt that benefits haskell.org too? -- Kyle On Tue, Oct 1, 2013 at 10:23 AM, Ryan Trinkle wrote: > Hi everyone, > > I put together a Haskell logo decal designed to fit over the Apple logo on > a MacB

[Haskell-cafe] Minh Thu, please add me to your LinkedIn network

2013-09-22 Thread Kyle Hanson via LinkedIn
LinkedIn Kyle Hanson requested to add you as a connection on LinkedIn: -- Minh Thu, I'd like to add you to my professional network on LinkedIn. - Kyle Accept invitation from Kyle Hanson http://www.linkedin.com/e/uc6lxc-hlw

Re: [Haskell-cafe] Debugging ByteString and Data.Binary.Get memory usage

2013-08-29 Thread Kyle Hanson
Thanks Bob, I made it foldr because it was meant to simulate the sequential IO action that my server uses to populate the Map. I found the problem to be that I need to force the map to evaluate so adding a little $! fixed the problem -- Kyle Hanson On Thu, Aug 29, 2013 at 9:09 PM, Bob

[Haskell-cafe] Debugging ByteString and Data.Binary.Get memory usage

2013-08-29 Thread Kyle Hanson
e (90mb). I am hoping someone can help me understand this. I have read some posts about Temporary ByteStrings causing memory issues but I don't know how to get started debugging. -- Kyle Hanson ___ Haskell-Cafe mailing list Haskell-Cafe@haskell

[Haskell-cafe] A question about laziness and performance in document serialization.

2013-08-20 Thread Kyle Hanson
he of bytestings so I have another Map object that has the serialized bytestrings that I populate it with every time the original BSON Map changes. Should the map be strict or lazy? Should the bytestrings it stores be strict or lazy? Any help in understanding laziness would be appreciated. -- Kyle H

[Haskell-cafe] MongoDB single insertions super slow

2013-08-18 Thread Kyle Hanson
appreciated. -- Kyle Hanson ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Default query for AcidState?

2013-08-12 Thread Kyle Hanson
I am looking for something with a type signature like this: grabAcidState :: AcidState as -> IO as basically I just want to return my data from database abstractly or based on a class. The reason for this is because I want to have a class instance of state and then I can implement my library lik

[Haskell-cafe] Virthualenv/HsEnv in Windows

2012-12-24 Thread Kyle Hanson
Has anyone gotten this to work on Windows either native or on cygwin? Is there an alternative? Happy Holidays, Kyle Hanson ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] A new FFMPEG library?

2012-12-15 Thread Kyle Hanson
The current hs-ffmpeg library is labeled as "old" on github: https://github.com/anders-/hs-ffmpeg is there a newer one or perhaps an alternative to play media files in haskell? -- Kyle Hanson ___ Haskell-Cafe mailing list Haskell-Cafe@haskel

[Haskell-cafe] Polymorphic Type Safe URL building -- I need advice on my project

2012-11-16 Thread Kyle Hanson
Hello, So I started working on a project involving polymorphic type safe urls. I know there are other type-safe url's out there, but I want some advice before I start reorganizing it. It is located here: https://github.com/dracule/web-scatter One might ask why you would want polymorphic types in