Send Beginners mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://www.haskell.org/mailman/listinfo/beginners
or, via email, send a message with subject or body 'help' to
        [email protected]

You can reach the person managing the list at
        [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Beginners digest..."


Today's Topics:

   1.  Haskell book (Michael Loegering)
   2. Re:  Haskell book (Ondrej Nekola)
   3. Re:  Haskell book (Bob Ippolito)
   4. Re:  Haskell book (mukesh tiwari)
   5. Re:  Haskell book (Friedrich Wiemer)
   6. Re:  Why html in platform? (Stephen Tetley)
   7. Re:  Haskell book (Stuart Nelson)


----------------------------------------------------------------------

Message: 1
Date: Tue, 1 Oct 2013 11:46:17 -0400
From: Michael Loegering <[email protected]>
To: [email protected]
Subject: [Haskell-beginners] Haskell book
Message-ID:
        <CANmN4b22LBsqQdwV-j1SFNbcVar6tAoTUE=6nykp3xrdenu...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

I am looking for a general Haskell book with syntax reference to
self-teach. I have a computer science background, so technical and
theoretical is fine. Something similar in size and scope as the Camel book
is to perl would be ideal - covering basic language idioms, with a decent
language reference, but by no means exhaustive.

I have looked at Learn You a Haskell and Real World Haskell online, both of
which were accessible but were difficult to follow beyond the basics. I'm
not sure if it's the organization of the material or just the learning
curve, so I'm open to both if these are hands-down the favorites.

Thanks,
-Mike
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131001/d14f2846/attachment-0001.html>

------------------------------

Message: 2
Date: Tue, 1 Oct 2013 18:14:07 +0200
From: Ondrej Nekola <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] Haskell book
Message-ID: <[email protected]>
Content-Type: text/plain; charset=windows-1252

Gentle Introduction to Haskell worked for me: http://www.haskell.org/tutorial/
It?s outdated in theory (covers Haskell 98) but I would not mind.
   Ondra @satai Nekola

> I am looking for a general Haskell book with syntax reference to self-teach. 
> I have a computer science background, so technical and theoretical is fine. 
> Something similar in size and scope as the Camel book is to perl would be 
> ideal - covering basic language idioms, with a decent language reference, but 
> by no means exhaustive.
> 
> I have looked at Learn You a Haskell and Real World Haskell online, both of 
> which were accessible but were difficult to follow beyond the basics. I'm not 
> sure if it's the organization of the material or just the learning curve, so 
> I'm open to both if these are hands-down the favorites.
> 
> Thanks,
> -Mike
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners



------------------------------

Message: 3
Date: Tue, 1 Oct 2013 09:17:41 -0700
From: Bob Ippolito <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] Haskell book
Message-ID:
        <cacwmpm_liqqu494wpdb9w4cwxufmmd4midmyhad_myf4byh...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

I liked those two, and the new Parallel and Concurrent Programming in
Haskell is excellent too. I had a much better understanding of Haskell's
non-strict evaluation after reading it. I'd also recommend checking out
some of the course materials that are available, particularly from
Stanford's CS240h: http://www.scs.stanford.edu/11au-cs240h/

For a more comprehensive list, I collected some of the resources I found
useful when learning Haskell earlier this year:
http://bob.ippoli.to/archives/2013/01/11/getting-started-with-haskell/#recommended-reading


On Tue, Oct 1, 2013 at 8:46 AM, Michael Loegering <[email protected]>wrote:

> I am looking for a general Haskell book with syntax reference to
> self-teach. I have a computer science background, so technical and
> theoretical is fine. Something similar in size and scope as the Camel book
> is to perl would be ideal - covering basic language idioms, with a decent
> language reference, but by no means exhaustive.
>
> I have looked at Learn You a Haskell and Real World Haskell online, both
> of which were accessible but were difficult to follow beyond the basics.
> I'm not sure if it's the organization of the material or just the learning
> curve, so I'm open to both if these are hands-down the favorites.
>
> Thanks,
> -Mike
>
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131001/ebcfec16/attachment-0001.html>

------------------------------

Message: 4
Date: Tue, 1 Oct 2013 21:48:40 +0530
From: mukesh tiwari <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] Haskell book
Message-ID:
        <CAFHZvE8=rpylv4pawwprmeojczn1s-yju1ncnco3rum1fsm...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi Micheal,
Probably it's learning curve. I would suggest go with Learn you Haskell and
Real World Haskell. You can also see HSOM[1] and Natural language
processing[2] if want to learn Haskell using some concepts.


[1] http://www.cs.yale.edu/homes/hudak/Papers/HSoM.pdf
[2] http://nlpwp.org/book/


On Tue, Oct 1, 2013 at 9:16 PM, Michael Loegering <[email protected]>wrote:

> I am looking for a general Haskell book with syntax reference to
> self-teach. I have a computer science background, so technical and
> theoretical is fine. Something similar in size and scope as the Camel book
> is to perl would be ideal - covering basic language idioms, with a decent
> language reference, but by no means exhaustive.
>
> I have looked at Learn You a Haskell and Real World Haskell online, both
> of which were accessible but were difficult to follow beyond the basics.
> I'm not sure if it's the organization of the material or just the learning
> curve, so I'm open to both if these are hands-down the favorites.
>
> Thanks,
> -Mike
>
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131001/2e9d1d40/attachment-0001.html>

------------------------------

Message: 5
Date: Tue, 01 Oct 2013 18:19:12 +0200
From: Friedrich Wiemer <[email protected]>
To: [email protected]
Subject: Re: [Haskell-beginners] Haskell book
Message-ID: <[email protected]>
Content-Type: text/plain; charset="windows-1252"

Learn You a Haskell is actually my favourite book. The more advanced
topics are hard to follow, but you'll find enough materials on the web.
Additionally I really liked the section about types and their kinds.

I think Real World Haskell is better suited, if you already knew some
Haskell and want to get examples for every day use.

On 10/01/2013 06:14 PM, Ondrej Nekola wrote:
> Gentle Introduction to Haskell worked for me:
> http://www.haskell.org/tutorial/ It?s outdated in theory (covers
> Haskell 98) but I would not mind. Ondra @satai Nekola
> 
>> I am looking for a general Haskell book with syntax reference to
>> self-teach. I have a computer science background, so technical and
>> theoretical is fine. Something similar in size and scope as the
>> Camel book is to perl would be ideal - covering basic language
>> idioms, with a decent language reference, but by no means
>> exhaustive.
>> 
>> I have looked at Learn You a Haskell and Real World Haskell online,
>> both of which were accessible but were difficult to follow beyond
>> the basics. I'm not sure if it's the organization of the material
>> or just the learning curve, so I'm open to both if these are
>> hands-down the favorites.
>> 
>> Thanks, -Mike _______________________________________________ 
>> Beginners mailing list [email protected] 
>> http://www.haskell.org/mailman/listinfo/beginners
> 
> _______________________________________________ Beginners mailing
> list [email protected] 
> http://www.haskell.org/mailman/listinfo/beginners
> 

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 555 bytes
Desc: OpenPGP digital signature
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131001/8885ad9b/attachment-0001.sig>

------------------------------

Message: 6
Date: Tue, 1 Oct 2013 17:23:52 +0100
From: Stephen Tetley <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] Why html in platform?
Message-ID:
        <cab2tprayhb64h0qr5kmm5ux5hbexaukviphecnha3hja+bz...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

For the Platform, blaze-html would transistively introduce a couple of
other packages, but they all look like stable ones to me - so if the blaze
maintainers suggested inclusion I guess there would be positive support.

Conceivably the blaze maintainers haven't suggested adding it yet.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131001/8b9cf76a/attachment-0001.html>

------------------------------

Message: 7
Date: Tue, 1 Oct 2013 13:57:00 -0400
From: Stuart Nelson <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] Haskell book
Message-ID:
        <capdv2hdgpttohx-rox0ynrh106h0b-gxfs20pqjh0kg3dde...@mail.gmail.com>
Content-Type: text/plain; charset="windows-1252"

Anyone used 'Haskell School of Music'?


On Tue, Oct 1, 2013 at 12:19 PM, Friedrich Wiemer <[email protected]
> wrote:

> Learn You a Haskell is actually my favourite book. The more advanced
> topics are hard to follow, but you'll find enough materials on the web.
> Additionally I really liked the section about types and their kinds.
>
> I think Real World Haskell is better suited, if you already knew some
> Haskell and want to get examples for every day use.
>
> On 10/01/2013 06:14 PM, Ondrej Nekola wrote:
> > Gentle Introduction to Haskell worked for me:
> > http://www.haskell.org/tutorial/ It?s outdated in theory (covers
> > Haskell 98) but I would not mind. Ondra @satai Nekola
> >
> >> I am looking for a general Haskell book with syntax reference to
> >> self-teach. I have a computer science background, so technical and
> >> theoretical is fine. Something similar in size and scope as the
> >> Camel book is to perl would be ideal - covering basic language
> >> idioms, with a decent language reference, but by no means
> >> exhaustive.
> >>
> >> I have looked at Learn You a Haskell and Real World Haskell online,
> >> both of which were accessible but were difficult to follow beyond
> >> the basics. I'm not sure if it's the organization of the material
> >> or just the learning curve, so I'm open to both if these are
> >> hands-down the favorites.
> >>
> >> Thanks, -Mike _______________________________________________
> >> Beginners mailing list [email protected]
> >> http://www.haskell.org/mailman/listinfo/beginners
> >
> > _______________________________________________ Beginners mailing
> > list [email protected]
> > http://www.haskell.org/mailman/listinfo/beginners
> >
>
>
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20131001/a331fd20/attachment.html>

------------------------------

Subject: Digest Footer

_______________________________________________
Beginners mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/beginners


------------------------------

End of Beginners Digest, Vol 64, Issue 3
****************************************

Reply via email to