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] ANNOUNCE: Haskell Communities and Activities
      Report (27th ed., November 2014) (Mihai Maruseac)
   2. Re:  Bind parser returning wrong return type (Rohit Sharma)
   3. Re:  [Haskell-cafe] [Haskell] ANNOUNCE: Haskell Communities
      and Activities Report (27th ed., November 2014) (Simon Peyton Jones)
   4. Re:  [Haskell] ANNOUNCE: Haskell Communities and Activities
      Report (27th ed., November 2014) (emacstheviking)


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

Message: 1
Date: Sun, 16 Nov 2014 21:02:38 -0500
From: Mihai Maruseac <[email protected]>
To: Haskell <[email protected]>, haskell <[email protected]>,
        Haskell Beginners <[email protected]>, Lista principala
        <[email protected]>
Subject: [Haskell-beginners] [Haskell] ANNOUNCE: Haskell Communities
        and Activities Report (27th ed., November 2014)
Message-ID:
        <CAOMsUML6rhhHuD33AOarNf-J=w03shr5zwsatyzvtqyphie...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

On behalf of all the contributors, we are pleased to announce that the

           Haskell Communities and Activities Report
                (27th edition, November 2014)

is now available, in PDF and HTML formats:

  http://haskell.org/communities/11-2014/report.pdf
  http://haskell.org/communities/11-2014/html/report.html

Many thanks go to all the people that contributed to this report,
both directly, by sending in descriptions, and indirectly, by doing
all the interesting things that are reported. We hope you will find
it as interesting a read as we did.

If you have not encountered the Haskell Communities and Activities
Reports before, you may like to know that the first of these reports
was published in November 2001. Their goal is to improve the
communication between the increasingly diverse groups, projects, and
individuals working on, with, or inspired by Haskell. The idea behind
these reports is simple:

  Every six months, a call goes out to all of you enjoying Haskell to
  contribute brief summaries of your own area of work. Many of you
  respond (eagerly, unprompted, and sometimes in time for the actual
  deadline) to the call. The editors collect all the contributions
  into a single report and feed that back to the community.

When we try for the next update, six months from now, you might want
to report on your own work, project, research area or group as well.
So, please put the following into your diaries now:

========================================
                     End of April 2015:
           target deadline for contributions to the
             May 2015 edition of the HC&A Report
========================================

Unfortunately, many Haskellers working on interesting projects are so
busy with their work that they seem to have lost the time to follow
the Haskell related mailing lists and newsgroups, and have trouble even
finding time to report on their work. If you are a member, user or
friend of a project so burdened, please find someone willing to make
time to report and ask them to "register" with the editors for a simple
e-mail reminder in October (you could point us to them as well, and we
can then politely ask if they want to contribute, but it might work
better if you do the initial asking). Of course, they will still have to
find the ten to fifteen minutes to draw up their report, but maybe we
can increase our coverage of all that is going on in the community.

Feel free to circulate this announcement further in order to
reach people who might otherwise not see it. Enjoy!

Mihai Maruseac and Alejandro Serrano Mena
<hcar at haskell.org>

-- 
Mihai Maruseac (MM)
"If you don't know, the thing to do is not to get scared, but to
learn." -- Atlas Shrugged.


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

Message: 2
Date: Mon, 17 Nov 2014 05:27:11 +0000
From: Rohit Sharma <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] Bind parser returning wrong return
        type
Message-ID:
        <cabghn3dubccyz+j3_ki0vu24ujzrw97hwf1bddctycgy9kf...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Thanks much Kim, that was very helpful.

On Sat, 15 Nov, 2014 11:09 pm Kim-Ee Yeoh <[email protected]> wrote:

> Your questions aren't lame. They are common confusions from those who come
> from a not-so-mathy background.
>
> Your first question:
>
>     Shouldn't the return type be of (Char, [Char])?
>
> suggests that you're confusing the type synonym of (Parser a), which is
> String -> (a, String), with just the right-hand-side, (a, String).
>
> Your "z" expression has type Parser ([Char], Char), which means the same
> thing as String -> ((String, Char), String).
>
> How did that happen?
>
> Because
>
>
>     item `bind` (\x -> (\y -> result (x,y))) "Rohit"
>
> is equivalent to
>
>     item `bind` ( (\x -> (\y -> result (x,y))) "Rohit" )
>
> as those last two expressions go together by the parsing rules.
>
> So what you actually have is
>
>     item `bind` (\y -> result ("Rohit",y))
>
> The first argument to bind has type Parser Char, the second argument (a ->
> Parser (String,a)).
>
> The result is exactly what's expected: Parser (String, Char), i.e. String
> -> ((String, Char), String).
>
> p.s. This might be what you're looking for: Try evaluating
>
>    item "Rohit"
>
> in the repl.
>
>
> -- Kim-Ee
>  _______________________________________________
> 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/20141117/17391f8c/attachment-0001.html>

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

Message: 3
Date: Mon, 17 Nov 2014 09:17:27 +0000
From: Simon Peyton Jones <[email protected]>
To: Mihai Maruseac <[email protected]>, Haskell
        <[email protected]>,  haskell <[email protected]>, Haskell
        Beginners <[email protected]>, Lista principala
        <[email protected]>
Subject: Re: [Haskell-beginners] [Haskell-cafe] [Haskell] ANNOUNCE:
        Haskell Communities and Activities Report (27th ed., November 2014)
Message-ID:
        
<618be556aadd624c9c918aa5d5911bef3f3c3...@db3prd3001mb020.064d.mgd.msft.net>
        
Content-Type: text/plain; charset="us-ascii"

Friends

With each issue of the Haskell Communities and Activities Report I am freshly 
awed by the range and creativity of the things you are all doing with Haskell. 
From web frameworks to bioinformatics, from automatic differentiation to GUIs 
and games.  Amazing stuff.

I think we owe the editors, Mihai Maruseac and Alejandro Serrano Mena, a huge 
debt for putting it together.  Thank you!

Simon

|  -----Original Message-----
|  From: Haskell-Cafe [mailto:[email protected]] On Behalf
|  Of Mihai Maruseac
|  Sent: 17 November 2014 02:03
|  To: Haskell; haskell; Haskell Beginners; Lista principala
|  Subject: [Haskell-cafe] [Haskell] ANNOUNCE: Haskell Communities and
|  Activities Report (27th ed., November 2014)
|  
|  On behalf of all the contributors, we are pleased to announce that the
|  
|             Haskell Communities and Activities Report
|                  (27th edition, November 2014)
|  
|  is now available, in PDF and HTML formats:
|  
|    http://haskell.org/communities/11-2014/report.pdf
|    http://haskell.org/communities/11-2014/html/report.html


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

Message: 4
Date: Mon, 17 Nov 2014 10:49:53 +0000
From: emacstheviking <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] [Haskell] ANNOUNCE: Haskell
        Communities and Activities Report (27th ed., November 2014)
Message-ID:
        <caeieuujvdv1s0arfvfb-_t_wfurpcwq3yvumn0gw0dinqry...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Amazing work well done everybody on that one!

On 17 November 2014 02:02, Mihai Maruseac <[email protected]> wrote:

> On behalf of all the contributors, we are pleased to announce that the
>
>            Haskell Communities and Activities Report
>                 (27th edition, November 2014)
>
> is now available, in PDF and HTML formats:
>
>   http://haskell.org/communities/11-2014/report.pdf
>   http://haskell.org/communities/11-2014/html/report.html
>
> Many thanks go to all the people that contributed to this report,
> both directly, by sending in descriptions, and indirectly, by doing
> all the interesting things that are reported. We hope you will find
> it as interesting a read as we did.
>
> If you have not encountered the Haskell Communities and Activities
> Reports before, you may like to know that the first of these reports
> was published in November 2001. Their goal is to improve the
> communication between the increasingly diverse groups, projects, and
> individuals working on, with, or inspired by Haskell. The idea behind
> these reports is simple:
>
>   Every six months, a call goes out to all of you enjoying Haskell to
>   contribute brief summaries of your own area of work. Many of you
>   respond (eagerly, unprompted, and sometimes in time for the actual
>   deadline) to the call. The editors collect all the contributions
>   into a single report and feed that back to the community.
>
> When we try for the next update, six months from now, you might want
> to report on your own work, project, research area or group as well.
> So, please put the following into your diaries now:
>
> ========================================
>                      End of April 2015:
>            target deadline for contributions to the
>              May 2015 edition of the HC&A Report
> ========================================
>
> Unfortunately, many Haskellers working on interesting projects are so
> busy with their work that they seem to have lost the time to follow
> the Haskell related mailing lists and newsgroups, and have trouble even
> finding time to report on their work. If you are a member, user or
> friend of a project so burdened, please find someone willing to make
> time to report and ask them to "register" with the editors for a simple
> e-mail reminder in October (you could point us to them as well, and we
> can then politely ask if they want to contribute, but it might work
> better if you do the initial asking). Of course, they will still have to
> find the ten to fifteen minutes to draw up their report, but maybe we
> can increase our coverage of all that is going on in the community.
>
> Feel free to circulate this announcement further in order to
> reach people who might otherwise not see it. Enjoy!
>
> Mihai Maruseac and Alejandro Serrano Mena
> <hcar at haskell.org>
>
> --
> Mihai Maruseac (MM)
> "If you don't know, the thing to do is not to get scared, but to
> learn." -- Atlas Shrugged.
> _______________________________________________
> 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/20141117/e9672860/attachment-0001.html>

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

Subject: Digest Footer

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


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

End of Beginners Digest, Vol 77, Issue 16
*****************************************

Reply via email to