Re: [Haskell-cafe] XCode Dependency for HP on Mac

2013-01-21 Thread Andrew H Bridge
Mark Lentczner gmail.com> writes: > > As the README at that repository states, For 10.7 and later Apple now > distributes a "Command Line Tools" package on the developer site. > When I build and release the Haskell Platform, I confirm that works > when just this package is installed (rather tha

Re: [Haskell-cafe] XCode Dependency for HP on Mac

2013-01-21 Thread Andrew H Bridge
Tom Murphy gmail.com> writes: > > Is there a way to install HP without XCode? Could there be in the > future? I'm tired of dealing with Apple's constant upgrade > requirements, registration requirements, etc., and it seems like a > small function that XCode actually performs in the Haskell devel

Re: [Haskell-cafe] Online haskell course

2012-10-25 Thread Joao H A Franco
nces, etc.) can be found at http://www.inf.ed.ac.uk/teaching/courses/inf1/fp/ . Joao H de A Franco 2012/10/24 Richard Wallace > In case you haven't seen it, there is an intro to Haskell video series > by Erik Meijer on Channel9. There aren't any graded assignments or > anything

[Haskell-cafe] Threads and hGetLine

2012-04-28 Thread H. M.
iable. Hopefully you have some solution how to kill the thread and/or close the handle and/or have some other idea to get the lined input in the other thread. -- Thanks in advance H. ___ Haskell-Cafe mailing list Ha

[Haskell-cafe] Re: Data.Number.BigFloat/Fixed

2010-03-21 Thread H .
Antoine Latter gmail.com> writes: > On Sun, Mar 21, 2010 at 4:49 PM, H. hotmail.com> wrote: > > > > > > 7e-3 < 8e-4 > > The result should be False, but it's True. > > > > Basically I don't know where to report this bug. > > >

[Haskell-cafe] Re: Data.Number.BigFloat/Fixed

2010-03-21 Thread H .
Ivan Lazar Miljenovic gmail.com> writes: > > I'm sorry, but is there a question in there? > > H. hotmail.com> writes: > > (7e-3 :: BigFloat Prec50) < (6e-4 :: BigFloat Prec50) > > False > > > > (7e-3 :: BigFloat Prec50) < (8e-4 :: BigFloa

[Haskell-cafe] Data.Number.BigFloat/Fixed

2010-03-21 Thread H .
q, Ord) and import Data.Ratio newtype Fixed e = F Rational deriving (Eq, Ord, Enum, Real, RealFrac) H. ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Re: Howto start a bigger project

2009-11-16 Thread Stian H. Johannesen
Why not just create a wiki? - S On 17.11.2009 01:54, Günther Schmidt wrote: Hi James, it's still very very far away from even a single line of code. I'd need a medium to lay this out first and discuss the idea. I'd normaly use this list, but I think it's a bit too volatile a medium for that.

Re: [Haskell-cafe] rotate image

2009-08-28 Thread h.
the surface has it's alpha values where it should, but a drawingArea created with drawingAreaNew has a rectangular shape and a color. This is the problem. -- best regards h. -- View this message in context: http://www.nabble.com/rotate-image-tp25122912p25199462.html Sent from the Haskell -

Re: [Haskell-cafe] rotate image

2009-08-28 Thread h.
Hello, Nobody any idea? > I want to paint in some widget, but this will be in front of some > background, so the bg should be transparent. -- best regards h. -- View this message in context: http://www.nabble.com/rotate-image-tp25122912p25198054.html Sent from the Haskell - Haskel

[Haskell-cafe] Re: rotate image

2009-08-24 Thread H. M.
;> return True) -- -- best regards H. > From: jefferson.r.he...@gmail.com > Date: Mon, 24 Aug 2009 19:40:46 -0400 > Subject: Re: [Haskell-cafe] Re: rotate image > To: h._h._...@hotmail.com > CC: haskell-cafe@haskell.org > > ahh, you want to paint against the desktop,

[Haskell-cafe] Re: rotate image

2009-08-24 Thread h
Hello, > You could use Cairo. Load the image to a surface, then rotate the surface 10 degrees and paint it. The first steps aren’t problematic, but how can I paint it - in which widget - so that the background is transparent, with drawingArea it doesn't seem to work. -- best re

Re: [Haskell-cafe] rotate image

2009-08-24 Thread h.
Hello, > You could use Cairo. Load the image to a surface, then rotate the surface > 10 degrees and paint it. The first steps aren’t problematic, but how can I paint it - in which widget - so that the background is transparent, with drawingArea it doesn’t seem to work. -- best reg

[Haskell-cafe] rotate image

2009-08-24 Thread h
with imageNewFromFile with transparency. Thanks in advance for your help. -- Best regards H. ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] How to check object's identity?

2009-01-04 Thread jan . h . xie
does have something like mutable pointers > via IORef, and sure enough, you can do pointer comparisons with them: > > h <- newIORef 12 > h' <- newIORef 12 > print $ h == h --> True > print $ h == h' --> False > > Since they're pointers, to

[Haskell-cafe] Re: Escape Codes

2008-01-03 Thread H .
Hi, > It would be nice if you could package this and release it on hackage. > http://hackage.haskell.org/packages/hackage.html I packaged it, perhaps you can have a look at it, if it is, what you thought... When I get a username, I'll put it on hacka

[Haskell-cafe] Escape Codes

2008-01-02 Thread H. Mayer
6.6.1, and everything works as I expected it. I would be happy if someone else could test it and/or report if some important escape codes are missing. --Sincerely H. _ Erweitere dein digitales Leben. Hol dir jetzt gratis das neue Windows

[Haskell-cafe] Licenses and Libraries

2007-09-11 Thread H .
be any special flags set to do so - does there have to be included further notes about the libraries and/or there license -- Thanks in advance, H. ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Re: tail recursion ?

2007-06-12 Thread H .
ed) MUT time0.21s ( 0.28s elapsed) GCtime0.21s ( 0.21s elapsed) EXIT time0.00s ( 0.01s elapsed) Total time0.43s ( 0.49s elapsed) But 8MB seems still too much, how can it be further optimised? -- Best Regards and thanks for you answers in advance H. __

[Haskell-cafe] Re: tail recursion ?

2007-06-11 Thread H .
an write it as an example? -- Regards, H. ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] tail recursion ?

2007-06-11 Thread H .
= x//[(j,not (x!j))|j<-[a,a*2..k]] -- -- Thanks for you answers in advance H. ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Re: splitting strings

2007-03-02 Thread h .
Thanks a lot. I hope I can learn from your lines and ideas used here to improve future code in quality. -- Best regards h. ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] splitting strings

2007-03-01 Thread h .
xist already an optimized split for the conventional String type? -- Thanks in advance for your answer. h. ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Re: process

2007-02-23 Thread h .
Albert Y. C. Lai vex.net> writes: > > h. wrote: > > module Main where > > main :: IO () > > main = f > > where > > f = do > > a <- getLine > > if a == "quit" then return () else putStrLn a >> f > > This o

[Haskell-cafe] Re: process

2007-02-23 Thread h .
Jules Bean jellybean.co.uk> writes: > Well that depends entirely what your program is supposed to do. > > Your email doesn't tell us (a) what your program was supposed to do or > (b) what goes wrong. Therefore we are forced to guess! > > The following slight variation of your program works fine

[Haskell-cafe] Re: process

2007-02-23 Thread h .
Donald Bruce Stewart cse.unsw.edu.au> writes: > I usually use System.Process for this kind of thing. > > http://haskell.org/ghc/docs/latest/html/libraries/base/System-Process.html > As I wrote in "process": [...] As long as there is no need to put some input after having received some outpu

[Haskell-cafe] Re: process

2007-02-23 Thread h .
I have in mind something as connections via pipes to the chils's stdin, stdout and stderr, but the stream library just supports internal pipes, and posix require Unix. By this means it's not possible to request, receive and than respond,... with the process. Does there exist an alternative way?

[Haskell-cafe] process

2007-02-22 Thread h .
Hello, I need to interact with some other program, and wrote the following code: module Main where import System.Process import System.IO main :: IO () main = do putStrLn "Running proc9..." (inp,out,err,pid) <- runInteractiveProcess "prog1" [] Nothing Nothing hSetBufferin

Re: [Haskell-cafe] Why is $ right associative instead of leftassociative?

2006-02-04 Thread Joseph H. Fasel III
like an older cousin than an ancestor. > > This point is important because Turner languages already had a list > syntax at the time that they adopted an ML-like type system. > > Cheers, > Andrew Bromage > ___ > Haskell-Cafe maili

Re: Combining distinct-thread state monads?

2004-01-08 Thread Dr Mark H Phillips
On Tue, 2004-01-06 at 22:58, Graham Klyne wrote: > I'm not an expert in this, but I think what you are proposing is possible, > to a point, possibly assuming that your monads have associated functions to > combine and separate the monadic parts. Thanks for the below illustration of how this prob

Newbie question, installing hugs on redhat 7.2

2002-08-18 Thread S H
I'm trying to install the current version of hugs on a red hat 7.1 system (running on VMWare 2.0.1 on top of Win 2K). I downloaded the file hugs98-Dec2001-1.i386.rpm onto the freshly-installed red hat 7.1 (no other software has been installed). It complains that libreadline.so.4 is needed. The