[Haskell-cafe] Fwd: Cabalized, Self-Demoing, HStringTemplate-using HAppS Tutorial

2008-06-24 Thread tphyahoo
-- Forwarded message -- From: tphyahoo [EMAIL PROTECTED] Date: Jun 24, 7:26 pm Subject: Cabalized, Self-Demoing, HStringTemplate-using HAppS Tutorial To: HAppS Hello HAppSers! I have created a self-demoing, HStringTemplate-using intro to HAppS. There is a live demo at http

[Haskell-cafe] Fwd: Cabalized, Self-Demoing, HStringTemplate-using HAppS Tutorial

2008-06-24 Thread tphyahoo
-- Forwarded message -- From: tphyahoo [EMAIL PROTECTED] Date: Jun 24, 7:46 pm Subject: Cabalized, Self-Demoing, HStringTemplate-using HAppS Tutorial To: HAppS There are some issues with the cabalized project -- templates are missing. Doh. Use darcs for now. Thomas. On Jun

Re: [Haskell-cafe] HaskellForge?

2007-01-11 Thread tphyahoo
I think people want something like CPAN. This implies a centralized official repository, somewhere that isn't going to go away, ever, because too many people would scream. It should probably be mirrored, too, like with cpan. Maybe darcs.haskell.org is ok for this roll already. Not sure. (Still a

[Haskell-cafe] why can't you surround (+) in backticks and have it be infix?

2007-01-08 Thread tphyahoo
Issues: In Haskell, any function or constructor can be enclosed in backticks and then used as an infix operator. from http://www-users.cs.york.ac.uk/~mfn/hacle/issues/node2.html But this seems to be contradicted by... from #haskell -- 09:19 tphyahoo let func = (+) in 1 `func` 2 -- 09:19

Re: [Haskell-cafe] trouble installing ghc 6.6: xargs: /usr/bin/ar: terminated by signal 11

2007-01-07 Thread tphyahoo
Yes, it's repeatable. As I mentioned, this is an ubuntu, virtual server (user mode linux). I'm thinking this may have to do with the exoticness of my system. So, I will repeat this question at the linode forum (linode is my virtual hoster, and the forum there has a lot of knowledgable users),

[Haskell-cafe] trouble installing greencard -- -fno-prune-tydecls flag ( was Re: trivial function application question )

2007-01-06 Thread tphyahoo
Very, very helpful Chris; thanks; and thanks also to the many other helpful haskellers. They have (hopefully working) cabal files to make compiling and installing ea\ sy. Unfortunately, not so easy, for PCRE.regex. But hopefully this is just due to my ignorance and there's a simple

[Haskell-cafe] trouble installing ghc 6.6: xargs: /usr/bin/ar: terminated by signal 11

2007-01-06 Thread tphyahoo
I'm having trouble installing ghc 6.6. On ubuntu, virtual server (user mode linux). Something seems to be killing the process, no idea why. Anyone seen this? I looked around with ps to see if anything looked suspicious. I do have a lot of screens open, but I don't see why that should matter.

Re: [Haskell-cafe] trivial function application question

2007-01-04 Thread tphyahoo
So the core question (speaking as a perler) is how do you write my $s= 'abcdefg'; $s =~ s/a/z/g; $s =~ s/b/y/g; print $s\n; in haskell? There are various haskell regex libraries out there, including ones that advertise they are PCRE (Perl Compatible Reg Ex). But which one to use?

[Haskell-cafe] some way to reverse engineer lambda expressions out of the debugger?

2006-12-31 Thread tphyahoo
I am a newbie learning haskell. (First forum post.) I am wondering if there is a trick to get debugging information about functions out of the environment (which for me, for now, is ghci). In this example, *UnixTools :t map (*) [1,2] map (*) [1,2] :: (Num a) = [a - a] This is very nice,