<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>comp.lang.haskell Google Group</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell</link>
  <description></description>
  <language>en</language>
  <item>
  <title>why does this not work??? monoids and stuff...</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/c78a10b869496218/c31fd7c595945b98?show_docid=c31fd7c595945b98</link>
  <description>
  I would like to thank this community for answering my off the wall &lt;br&gt; questions in the past, comp.lang.haskell has been quite helpful to me &lt;br&gt; in learning haskell, but also functional programming. Here comes &lt;br&gt; another. &lt;br&gt; In a paper by Mark Jones &amp;quot;Functional Programming with Overloading and &lt;br&gt; Higher-Order Polymorphism&amp;quot; he (re)defines the monoid class
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/c78a10b869496218</guid>
  <author>
  jon.gallagher...@gmail.com
  (jon.gallagher.04)
  </author>
  <pubDate>Mon, 29 Вер 2008 22:51:12 UT
</pubDate>
  </item>
  <item>
  <title>Why my list function eats memory?</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/64a787000714c664/ec94123531f19191?show_docid=ec94123531f19191</link>
  <description>
  Hello haskellers, &lt;br&gt; I am writing a little program and I need a function that will convert &lt;br&gt; a list of some values into the list of overlapping windows, for &lt;br&gt; example, for window size 4: &lt;br&gt; [1, 2, 3, 4, 5, 6, 7, 8, 9, 10,......] -&amp;gt; [[1, 2, 3, 4], [3, 4, 5, 6], &lt;br&gt; [5, 6, 7, 8], [7, 8, 9, 10],......] &lt;br&gt; Windows must overlap by one half and input list is always infinite.
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/64a787000714c664</guid>
  <author>
  grap...@gmail.com
  (Paul Graphov)
  </author>
  <pubDate>Sun, 28 Вер 2008 12:30:37 UT
</pubDate>
  </item>
  <item>
  <title>[AD] Book: Haskell School of Expression by Paul Hudack</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/929db2795f438b68/0384c8ff563b9e0d?show_docid=0384c8ff563b9e0d</link>
  <description>
  I&#39;ve got a brand new, mint condition, copy of this book that I don&#39;t want. &lt;br&gt; I am asking $20 (this is more than 50% off the Amazon list price) + $4 &lt;br&gt; bookrate shipping to anywhere in the continental U.S. &lt;br&gt; If you are interested then please reply to my gmail address. First come &lt;br&gt; first served. &lt;br&gt; This message will not repeat.
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/929db2795f438b68</guid>
  <author>
  danielklei...@gmail.com
  (Daniel Klein)
  </author>
  <pubDate>Sat, 27 Вер 2008 12:26:54 UT
</pubDate>
  </item>
  <item>
  <title>help with maybe, dropUntil xs pred</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/49e92619e91d9699/9d4fddcc559c279a?show_docid=9d4fddcc559c279a</link>
  <description>
  dropUntil :: [(Maybe a, b)] -&amp;gt; (b -&amp;gt; Bool) -&amp;gt; Maybe a &lt;br&gt; dropUntil [] _ = Nothing &lt;br&gt; --dropUntil [x] _ = fst x &lt;br&gt; dropUntil (x:xs) pred = if pred (snd x) then fst x &lt;br&gt; else dropUntil xs pred &lt;br&gt; i still dont get how to use maybe. &lt;br&gt; how would i call this function? &lt;br&gt; i used it like this first which works for what i want but the function
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/49e92619e91d9699</guid>
  <author>
  circularf...@gmail.com
  (process)
  </author>
  <pubDate>Sun, 21 Вер 2008 01:59:23 UT
</pubDate>
  </item>
  <item>
  <title>How to use Data.Map?</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/9245a71ed90b7125/c5536885b0b95b6b?show_docid=c5536885b0b95b6b</link>
  <description>
  Hello haskellers, &lt;br&gt; I have a question relating to the use of Data.Map. I admit I havn&#39;t &lt;br&gt; fully understood all the concepts of functional programming yet, and &lt;br&gt; thus am having trouble understanding how one might employ the Data.Map type. &lt;br&gt; Consider the following python code: &lt;br&gt; =============== &lt;br&gt; combos = dict()
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/9245a71ed90b7125</guid>
  <author>
  awe...@gmail.com
  (Aidan)
  </author>
  <pubDate>Fri, 19 Вер 2008 02:13:54 UT
</pubDate>
  </item>
  <item>
  <title>An idea about functional colors</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/b57685c2e0dd6cd9/c56a312b4b28b0fa?show_docid=c56a312b4b28b0fa</link>
  <description>
  {- &lt;br&gt; I am (sort of) new to Haskell, as well as programming, but love &lt;br&gt; Haskell. I decided that the best way for me to learn my way around is &lt;br&gt; to just play with the language a bit. I thought of a problem that &lt;br&gt; could potentially bring a lot of the principles of the language out, &lt;br&gt; and would love comments and suggestions on making it better. The
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/b57685c2e0dd6cd9</guid>
  <author>
  jon.gallagher...@gmail.com
  (jon.gallagher.04)
  </author>
  <pubDate>Mon, 15 Вер 2008 19:50:19 UT
</pubDate>
  </item>
  <item>
  <title>&lt;&lt; FREE HELP DESK SOFTWARE &gt;&gt;</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/939908b21aeebb45/3cf42bd1c3084884?show_docid=3cf42bd1c3084884</link>
  <description>
  ============================== ====== &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://helpdesksoftware21.blogspot.com&quot;&gt;[link]&lt;/a&gt;
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/939908b21aeebb45</guid>
  <author>
  rose...@gmail.com
  </author>
  <pubDate>Sun, 14 Вер 2008 09:52:44 UT
</pubDate>
  </item>
  <item>
  <title>Difficulty deriving a general type for combinator</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/5258bc6c1be5a2af/47f9cf70738e6836?show_docid=47f9cf70738e6836</link>
  <description>
  Suppose I have a set of functions like these: &lt;br&gt; 2app_id_maybe :: (forall a. a -&amp;gt; Maybe a) -&amp;gt; (b,c) -&amp;gt; (Maybe b,Maybe c) &lt;br&gt; 2app_id_maybe f (x, y) = (f x, f y) &lt;br&gt; 2app_maybe_id :: (forall a. Maybe a -&amp;gt; a) -&amp;gt; (Maybe b,Maybe c) -&amp;gt; (b,c) &lt;br&gt; 2app_maybe_id f (x, y) = (f x, f y) &lt;br&gt; 2app_id_list :: (forall a. a -&amp;gt; [a]) -&amp;gt; (b, c) -&amp;gt; ([b], [c])
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/5258bc6c1be5a2af</guid>
  <author>
  s.r.clarkst...@dunelm.org.uk
  (Simon Richard Clarkstone)
  </author>
  <pubDate>Sat, 13 Вер 2008 00:22:57 UT
</pubDate>
  </item>
  <item>
  <title>job advert: senior role at Credit Suisse</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/5c05f84f4eb82f89/f91dc85b887ee1a9?show_docid=f91dc85b887ee1a9</link>
  <description>
  [I apologise if this is off-topic for either of comp.lang.functional &lt;br&gt; or comp.lang.haskell - in the former case I was unable to find a &lt;br&gt; charter at all, and in the latter case I could only find a draft &lt;br&gt; charter that didn&#39;t mention job ads either way] &lt;br&gt; Credit Suisse is seeking to recruit an expert in functional
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/5c05f84f4eb82f89</guid>
  <author>
  ganesh.sittampa...@gmail.com
  (Ganesh Sittampalam)
  </author>
  <pubDate>Fri, 12 Вер 2008 22:30:34 UT
</pubDate>
  </item>
  <item>
  <title>Workshop on Generic Programming: Call for Participation (co-located w/ ICFP08)</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/c785333def1d9586/aee8ee91332faf72?show_docid=aee8ee91332faf72</link>
  <description>
  Dear all, &lt;br&gt; the Workshop on Generic Programming is only a few days away: 20th &lt;br&gt; September 2008 (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.regmaster.com/conf/icfp2008.html&quot;&gt;[link]&lt;/a&gt;). &lt;br&gt; ==&amp;gt; Invited talk: The Generic Paradigm &lt;br&gt; ==&amp;gt; Lambert Meertens (Utrecht University) &lt;br&gt; ==&amp;gt; We have reserved 20 minutes for *lightning talks*. If you plan to &lt;br&gt; ==&amp;gt; attend and if you would like to give a short talk (about half-
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/c785333def1d9586</guid>
  <author>
  icfp.public...@googlemail.com
  (Matthew Fluet (ICFP Publicity Chair))
  </author>
  <pubDate>Fri, 12 Вер 2008 14:19:57 UT
</pubDate>
  </item>
  <item>
  <title>haskell and web programming -- beating LAMP</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/e0e1d7f3eea16094/e0a7bf48cb87eda5?show_docid=e0a7bf48cb87eda5</link>
  <description>
  can haskell wash or happs etc outdo lamp?
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/e0e1d7f3eea16094</guid>
  <author>
  gavcom...@gmail.com
  (gavino)
  </author>
  <pubDate>Fri, 12 Вер 2008 02:19:55 UT
</pubDate>
  </item>
  <item>
  <title>Help with constraining with Type Classes?</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/18517e396085c325/b1af7111357e710c?show_docid=b1af7111357e710c</link>
  <description>
  Hello, I&#39;m working on constraining some collection types (particularly &lt;br&gt; types of zippers) with type classes. The type classes assume they are &lt;br&gt; working with containing types, but then, I&#39;m having difficulty &lt;br&gt; describing that for the generic types. &lt;br&gt; To be specific, I have a Zipper: &lt;br&gt; where |dir| is the the &amp;quot;dir&amp;quot;ection (type) by which one can move about
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/18517e396085c325</guid>
  <author>
  daucl...@gmail.com
  </author>
  <pubDate>Thu, 11 Вер 2008 15:46:49 UT
</pubDate>
  </item>
  <item>
  <title>ICFP09 Announcement</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/4760b8a4d7fdad47/69e10ce0b8b6706e?show_docid=69e10ce0b8b6706e</link>
  <description>
  +----------------------------- ------------------------------ ---------+ &lt;br&gt; ANNOUNCEMENT &lt;br&gt; The 14th ACM SIGPLAN International &lt;br&gt; Conference on Functional Programming &lt;br&gt; ICFP 2009 &lt;br&gt; 31st August - 2nd September 2009
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/4760b8a4d7fdad47</guid>
  <author>
  icfp.public...@googlemail.com
  (Matthew Fluet (ICFP Publicity Chair))
  </author>
  <pubDate>Tue, 02 Вер 2008 14:08:21 UT
</pubDate>
  </item>
  <item>
  <title>How to turn list into iterator ?</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/b8f0065fde580412/3644a03f36f6579a?show_docid=3644a03f36f6579a</link>
  <description>
  Sorry for the typo in my previous post. Nothing to deal with Turing, &lt;br&gt; except it &#39;s about computer.
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/b8f0065fde580412</guid>
  <author>
  manu....@gmail.com
  </author>
  <pubDate>Tue, 02 Вер 2008 07:36:03 UT
</pubDate>
  </item>
  <item>
  <title>How to turing list to iterator</title>
  <link>http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/b4b313a5cd9ec7b6/6502c0425a7f7b8e?show_docid=6502c0425a7f7b8e</link>
  <description>
  I am trying test the way control memory allocation in lazy list. &lt;br&gt; Consider the following program: &lt;br&gt; -- start of code &lt;br&gt; module Main where &lt;br&gt; intTo :: (Num a, Num b)=&amp;gt; a-&amp;gt;b -&amp;gt; [a] &lt;br&gt; intTo _ 0 = [] &lt;br&gt; intTo from n = from : (intTo (from+1) (n-1)) &lt;br&gt; test1 :: IO () &lt;br&gt; test1 = do &lt;br&gt; let &lt;br&gt; l1=intTo 0 1000000 &lt;br&gt; l2=intTo 0 1000000
  </description>
  <guid isPermaLink="true">http://groups.google.com.ua/group/comp.lang.haskell/browse_thread/thread/b4b313a5cd9ec7b6</guid>
  <author>
  manu....@gmail.com
  </author>
  <pubDate>Mon, 01 Вер 2008 21:05:17 UT
</pubDate>
  </item>
  </channel>
</rss>
