Re: [Haskell-cafe] Preview the new haddock look and take a short survey

2010-08-06 Thread Dino Morelli
On Fri, 6 Aug 2010, Ben Millwood wrote: On Thu, Aug 5, 2010 at 2:35 PM, Dino Morelli d...@ui3.info wrote: One thing I haven't seen anyone else comment on is the width of the new docs. I have a large (26) monitor and use the browser full-screen (with xmonad, so even more screen space). When I

Re: [Haskell-cafe] Preview the new haddock look and take a short survey

2010-08-05 Thread Dino Morelli
using that space like the current Haddock does. Is the plan to use a fixed width like this? Please say no, it's a disappointing trend that you see everywhere. Like Twitter's web interface, for instance, very narrow. -- Dino Morelli email: d...@ui3.info web: http://ui3.info/d/ irc: dino- pubkey

Re: [Haskell-cafe] Preview the new haddock look and take a short survey

2010-08-05 Thread Dino Morelli
On Thu, 5 Aug 2010, Johan Tibell wrote: On Thu, Aug 5, 2010 at 3:35 PM, Dino Morelli d...@ui3.info wrote: One thing I haven't seen anyone else comment on is the width of the new docs. I have a large (26) monitor and use the browser full-screen (with xmonad, so even more screen space). When I

Re: [Haskell-cafe] Still stacking monad transformers

2008-10-13 Thread Dino Morelli
= x foo `mplus'` bar == foo `mplus'` bar == bar -- Dino Morelli email: [EMAIL PROTECTED] web: http://ui3.info/d/ irc: dino- pubkey: http://ui3.info/d/dino-4AA4F02D-pub.gpg ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http

Re: [Haskell-cafe] [ANN] Haskell Cheatsheet v1.0

2008-10-11 Thread Dino Morelli
to a | such that - drawn from = bind Part of class Monad then Part of class Monad - -- Dino Morelli email: [EMAIL PROTECTED] web: http://ui3.info/d/ irc: dino- pubkey: http://ui3.info/d/dino-4AA4F02D-pub.gpg ___ Haskell-Cafe

Re: [Haskell-cafe] k-minima in Haskell

2007-04-12 Thread Dino Morelli
-- Preserve indices in tuples Prelude :l kminima.hs [1 of 1] Compiling Main ( kminima.lhs, interpreted ) Ok, modules loaded: Main. *Main kminima 3 [71,71,17,14,16,91,18,71,58,75,65,79,76,18,4,45,87,51,93,36] [14,3,4] *Main kminima 4 [10,9,8,7,6,5,4,3,2,1] [9,8,7,6] -- .~.Dino

[Haskell-cafe] Data.ByteStream.Char8.words performance

2007-03-30 Thread Dino Morelli
on? The actual implementation is using isSpaceWord8 which is a case statement looking for a pile of different whitespace characters. -- .~.Dino Morelli /V\email: [EMAIL PROTECTED] /( )\ irc: dino- ^^-^^ preferred distro: Debian GNU/Linux http://www.debian.org

Re: [Haskell-cafe] Data.ByteStream.Char8.words performance

2007-03-30 Thread Dino Morelli
On Fri, 30 Mar 2007, Jeremy Shaw wrote: Hello, Did you compile with -O2 ? That makes a huge difference when using ByteString. j. Ah, that was exactly it. I feel silly. module Main where import qualified Data.ByteString.Char8 as B main = do content - B.readFile test-text-file let