<?xml version="1.0" encoding="UTF-8" ?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>bangalore-lisp at Yahoo! Groups</title>
    <link>http://tech.groups.yahoo.com/group/bangalore-lisp/</link>
    <description>The Bangalore Common Lisp Study Group</description>

    <item>
      <title>Lisp Developers for Analytics, Teleonto Technologies, Hyderabad, Ind</title>
      <pubDate>Thu, 26 Jun 2008 11:43:38 GMT</pubDate>
      <dc:creator>Chakravarthy P</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/474</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/474</guid>
      <description>Teleonto Technologies Private Ltd., located in Hyderabad, India, builds and delivers an exciting and growing range of analytics for the telecommunications</description>
    </item>
    <item>
      <title>Join my personal knowledge network on TooStep</title>
      <pubDate>Tue, 10 Jun 2008 10:14:10 GMT</pubDate>
      <dc:creator>Rajaram Gaunker</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/473</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/473</guid>
      <description>You are invited to join personal knowledge network of Rajaram Gaunker on TooStep ... Join my network on TooStep so that we can share knowledge with each other</description>
    </item>
    <item>
      <title>Lisp Developers for Analytics, Teleonto Technologies, Hyderabad, Ind</title>
      <pubDate>Thu, 28 Feb 2008 12:14:09 GMT</pubDate>
      <dc:creator>c4chakri</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/471</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/471</guid>
      <description>Teleonto Technologies Private Ltd., located in Hyderabad, India, builds and delivers an exciting and growing range of analytics for the telecommunications</description>
    </item>
    <item>
      <title>Re: A place where Lisp should have an easy opening</title>
      <pubDate>Fri, 21 Sep 2007 10:15:10 GMT</pubDate>
      <dc:creator>Thomas Elam</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/470</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/470</guid>
      <description>... Alok, Thanks for the reference.  I&#39;ll definitely have a look at it.  Did you read `The Emacs Problem&#39;?  I wouldn&#39;t say it&#39;s really just about Emacs, but</description>
    </item>
    <item>
      <title>Re: A place where Lisp should have an easy opening</title>
      <pubDate>Wed, 19 Sep 2007 20:50:31 GMT</pubDate>
      <dc:creator>alephnull@...</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/469</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/469</guid>
      <description>... Keeping in mind that elisp is more procedural than functional, Finseth&#39;s seminal work [1] on text editing is quite enlightening. Footnotes: [1]</description>
    </item>
    <item>
      <title>A place where Lisp should have an easy opening</title>
      <pubDate>Wed, 19 Sep 2007 07:33:19 GMT</pubDate>
      <dc:creator>Thomas Elam</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/468</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/468</guid>
      <description>Steve Yegge gives a simple explanation about string &amp; structured-data processing with Lisp: http://steve.yegge.googlepages.com/the-emacs-problem Is anyone here</description>
    </item>
    <item>
      <title>Good help starting to get up to speed with Common Lisp</title>
      <pubDate>Tue, 18 Sep 2007 12:13:13 GMT</pubDate>
      <dc:creator>Thomas Elam</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/467</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/467</guid>
      <description>http://play.org/lisp [you can probably read this last unless you are still not sure you are ready to start learning Lisp] http://play.org/links/lisp-intro </description>
    </item>
    <item>
      <title>Re: About reverse function</title>
      <pubDate>Tue, 18 Sep 2007 06:58:12 GMT</pubDate>
      <dc:creator>samik chakraborty</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/466</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/466</guid>
      <description>Thanks a lot to all, This mail-chain has produced at least three ways of doing the same thing and all of them are different and elegant. Great going guys...</description>
    </item>
    <item>
      <title>Re: About reverse function</title>
      <pubDate>Tue, 18 Sep 2007 05:18:29 GMT</pubDate>
      <dc:creator>Chaitanya Gupta</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/465</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/465</guid>
      <description>... See what happens when I try to compile your MY-REVERSE - ; While compiling MY-REVERSE: Warning: Free reference to undeclared variable TEMP-RET assumed</description>
    </item>
    <item>
      <title>Re: About reverse function</title>
      <pubDate>Tue, 18 Sep 2007 03:53:00 GMT</pubDate>
      <dc:creator>pramod shinde</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/464</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/464</guid>
      <description>Thanks samik, i m able to do the reverse function: (defun rev (x) (if (endp x) nil (append (rev (cdr x)) (list (car x))))) ... (d a c b a) Pramod K.Shinde ... </description>
    </item>
    <item>
      <title>Re: About reverse function</title>
      <pubDate>Mon, 17 Sep 2007 21:33:30 GMT</pubDate>
      <dc:creator>pramod shinde</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/463</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/463</guid>
      <description>Thanks it works..., Is it the same way by which i can find mirror image of the list. ... Expected result is : (((e d)c)(b a)) Pramod K.Shinde ... From: samik</description>
    </item>
    <item>
      <title>Re: About reverse function</title>
      <pubDate>Mon, 17 Sep 2007 11:51:30 GMT</pubDate>
      <dc:creator>Rajaram Gaunker</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/462</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/462</guid>
      <description>check the following code .. (defun rev(a) (if (or (null a) (equal a &#39;())) &#39;() (append (rev (cdr a)) (list (first a))))) -- ... Sometimes I wish I was a little</description>
    </item>
    <item>
      <title>Re: About reverse function</title>
      <pubDate>Mon, 17 Sep 2007 07:13:07 GMT</pubDate>
      <dc:creator>samik chakraborty</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/461</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/461</guid>
      <description>Hi Promode, This is an easy way of doing a reverse without using car, cdr or ca*d*r family how ever it does not use any recursion. You can think about it. But</description>
    </item>
    <item>
      <title>Re: About reverse function</title>
      <pubDate>Mon, 17 Sep 2007 07:12:51 GMT</pubDate>
      <dc:creator>samik chakraborty</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/460</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/460</guid>
      <description>Hi Pramod, Sorry to spell your name incorrect last time. The following code uses a recursive call to do a reverse of a list only problem is the tr variable it</description>
    </item>
    <item>
      <title>About reverse function</title>
      <pubDate>Sun, 16 Sep 2007 21:22:22 GMT</pubDate>
      <dc:creator>pramod shinde</dc:creator>
      <link>http://tech.groups.yahoo.com/group/bangalore-lisp/message/459</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/bangalore-lisp/message/459</guid>
      <description>Hi all , Can anybody write the recursive function LISP function that will reverse elements of the list(please don&#39;t use built-in reverse function).? I have</description>
    </item>

  </channel>
</rss>
<!-- wr1.grp.scd.yahoo.com uncompressed/chunked Fri Jul 18 22:08:17 PDT 2008 -->
