[Haskell] Re: Haskell web forum

2006-09-20 Thread Aaron Denney
e time. Yes, that's part of the problem. > It is also easy to create sub-groups/forums for specific projects, This is the one semi-useful thing. Of course, what you end up with is another not-so-useful forum. -- Aaron Denney -><- ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

[Haskell] Re: ANN: HSH (Haskell Shell) 0.1.0

2006-06-09 Thread Aaron Denney
gt;is grep or cat I would say more so, actually. For actual usability as a primary shell, I'd want that reversed -- running commands is what shells do. Adding easy access to haskell functions on top would be great. -- Aaron Denney -><- ___

[Haskell] Re: Streams 0.1e released

2006-06-08 Thread Aaron Denney
n't truncate, but leaving "WriteMode" as truncating? -- Aaron Denney -><- ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

[Haskell] Re: Haskell Weekly News: March 13, 2006

2006-03-16 Thread Aaron Denney
On 2006-03-17, Donald Bruce Stewart <[EMAIL PROTECTED]> wrote: > Well, there is a way -- it's fairly easy with the right regex -- but > is it really ambiguous? Do people find it confusing? What do other sites do? Why not the ISO standard -MM-DD?

[Haskell] Re: Streams: the extensible I/O library

2006-02-06 Thread Aaron Denney
y I/O and > serialization - on top of Streams. now i'm hardly working on > documenting these modules Disclaimer: I haven't looked at the code yet. Having binary I/O on top seems backwards. Clearly text should be implemented in terms of binary, rather than the reverse. -- Aaron D

[Haskell] Re: Everything Your Professor Failed to Tell You About Functional Programming

2006-01-31 Thread Aaron Denney
en, the things > people call design patterns are just ordinary functions or general > interfaces in a more expressive programming language. Right. I'd call haskell's typeclasses excellent language support for formalizing and truly taking advantage of d

[Haskell] Re: Type-Level arithmetic library

2006-01-30 Thread Aaron Denney
emed like such an ugly hack to me. If you use a digital representation, you can throw in at least one negative digit, and things just work. I really should write up and post my example of that using balanced base three on the wiki. -- Aaron Denney -><-

[Haskell] Re: haskell.org Public Domain

2006-01-12 Thread Aaron Denney
On 2006-01-12, Malcolm Wallace <[EMAIL PROTECTED]> wrote: > However, it also needs a disclaimer of warranty, Agreed, agreed, agreed. I'd prefer to find a prewritten license that covers this, of course. -- Aaron Denney -><- ___

[Haskell] Re: Haskell users survey--please respond!

2005-11-09 Thread Aaron Denney
link. The only thing I can think of on my end is that I haven't checked any of the tools or libraries, as I haven't used any of them. (Mozilla 1.7.12, debian package) -- Aaron Denney -><- ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

[Haskell] Re: implicit responses/values

2005-09-16 Thread Aaron Denney
cache header info through functions that are not really about that. > > I am not sure how this would work, but it strikes me as useful. > Anything like that in the offing? Monads. Implicit parameters can be thought of as co-monad. -- Aaron Denney -><- __

[Haskell] Re: Mixing monadic and non-monadic functions

2005-09-09 Thread Aaron Denney
ot; etc. Well, monads are already treated specially -- the whole do syntax. -- Aaron Denney -><- ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

[Haskell] Re: Mixing monadic and non-monadic functions

2005-09-09 Thread Aaron Denney
constructors may not look as neat. I thought the easy answer would be to inject non-monadic values into the monad (assuming one already rejiggered things to do automatic lifting). -- Aaron Denney -><- ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

[Haskell] Re: Mixing monadic and non-monadic functions

2005-09-09 Thread Aaron Denney
;superclasses" proposal? http://repetae.net/john/recent/out/supertyping.html -- Aaron Denney -><- ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

[Haskell] Re: cannot compile ghc on Debian unstable

2005-08-31 Thread Aaron Denney
; The trick to getting this to work is to install the libgmp3 from > stable. > > apt-get install libgmp3/stable #or grab it and install it with dpkg > apt-get install ghc6 > > That might work? It should, but I have other packages that depend on a newer version of libgmp3. Well, I

[Haskell] Re: PHI ¿ Python Haskell Interface

2005-08-21 Thread Aaron Denney
room or shut off his computer for some reason. Possibly for the summer: the Caltech academic year resumes in September. (I don't know why he didn't put it up on of the clusters available there -- ITS probably has enough quota, and I'm sure UGCS would be willing to

[Haskell] Re: Been there, it's great. Let's do it again, Re: HaskellForge

2005-06-01 Thread Aaron Denney
rvices like Hackage) > is a nice way to promote Haskell & build its community. That's a side benefit. When darcs is appropriate for a project, it is so so much nicer than CVS. -- Aaron Denney -><- ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

[Haskell] Re: Darcs and Haskell in practical use

2005-04-11 Thread Aaron Denney
ny insight people have on it. But it's going to require a broader skillset than "haskell performance tweaking". -- Aaron Denney -><- ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

[Haskell] Re: Encode module library

2005-02-27 Thread Aaron Denney
lists of Chars is probably best done as lists of Word8s -- bytes. -- Aaron Denney -><- ___ Haskell mailing list Haskell@haskell.org http://www.haskell.org/mailman/listinfo/haskell

[Haskell] Re: [Newbie] Data structure for Dijkstra's algorithm

2005-02-14 Thread Aaron Denney
ce to get at what you need. > There's a lot of goodies not exported from that module. Reasonable advice. I still think there should be some clever way to do this using lazy evaluation, but it's not at all clear how. -- Aaron Denney -><- __

[Haskell] Re: Top Level TWI's again was Re: Re: Parameterized Show

2004-11-23 Thread Aaron Denney
On 2004-11-23, Benjamin Franksen <[EMAIL PROTECTED]> wrote: > On Tuesday 23 November 2004 00:10, Aaron Denney wrote: >> On 2004-11-22, Benjamin Franksen <[EMAIL PROTECTED]> wrote: >> > On Monday 22 November 2004 09:38, Adrian Hey wrote: >> >> You have ye

[Haskell] Re: Top Level TWI's again was Re: Re: Parameterized Show

2004-11-23 Thread Aaron Denney
ituation -- would be fine. They're not mutable in any sense. -- Aaron Denney -><- ___ Haskell mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/haskell

effect of order of function arguments

2003-02-19 Thread Aaron Denney
no effect like this, would it make any sense to try to get something similar by hand, and can this actually be done?) -- Aaron Denney -><- ___ Haskell mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/haskell