Re: [Haskell-cafe] Maintaining the community

2007-07-13 Thread Anthony Chaumas-Pellet
provider for their Usenet service. For a regular user, it actually costs more to subscribe to that NTTP server alone than to my ISP. Unsurprisingly, my ISP only authorizes its own users to access that particular service.) Anthony Chaumas-Pellet ___ Haskell

Re: [Haskell-cafe] New book: Real-World Haskell!

2007-05-25 Thread Anthony Chaumas-Pellet
3) I can browse a Subversion repository with a web browser instead of having to download code from the repository from the command line (of course command line is still available). Sometimes viewing a version of a code sample online is all that is needed to answer a question, and in that case

Re: [Haskell-cafe] Profiling, GUIs and libraries

2007-05-21 Thread Anthony Chaumas-Pellet
You are not missing anything obvious. The process is in fact somewhat tricky. What you have to do is the following snip Thanks! I've followed your instructions and got a profiler-enabled binary up and running. I'd figured out how to modify the Makefile (silly me searching for *G*HC), but I had

[Haskell-cafe] Profiling, GUIs and libraries

2007-05-20 Thread Anthony Chaumas-Pellet
Hello, I'm currently hacking away a wxhaskell program that uses up 100% CPU even when it should be idle. So, rather than doing blind guesswork, I've thought about using profiling to spot the zealous function. I do not need a very accurate result, though. ghc with -prof -auto(-all) produces the

Re: [Haskell-cafe] Josephus problem and style

2007-04-03 Thread Anthony Chaumas-Pellet
to see? Anthony Chaumas-Pellet ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Josephus problem and style

2007-04-01 Thread Anthony Chaumas-Pellet
multiplication, along the lines of: matProd a b = [[sum (zipWith (*) x y) | y - transpose b]| x - a] Thanks! Anthony Chaumas-Pellet ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe