<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for jon.com.org.net</title>
	<atom:link href="http://jondotcomdotorg.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jondotcomdotorg.net</link>
	<description>Badass, like REO Speedwagon or somethin&#039;.</description>
	<lastBuildDate>Sun, 01 Aug 2010 00:15:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on 99 Clojure Problems (7-10) by Pomyk</title>
		<link>http://jondotcomdotorg.net/2010/06/24/99-clojure-problems-7-10/comment-page-1/#comment-100</link>
		<dc:creator>Pomyk</dc:creator>
		<pubDate>Sun, 01 Aug 2010 00:15:14 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=45#comment-100</guid>
		<description>My versions of compress:

(defn compress [l]
  (let [paired (partition  2 1 (conj (seq l) nil))]
    (map #(fnext %) (filter (fn [[v1 v2]] (not= v1 v2)) paired))))

Same but threaded:

(defn compress [l]
  (-&gt;&gt;
    (conj (seq l) nil)
    (partition  2 1)
    (filter (fn [[v1 v2]] (not= v1 v2)))
    (map #(fnext %))))</description>
		<content:encoded><![CDATA[<p>My versions of compress:</p>
<p>(defn compress [l]<br />
  (let [paired (partition  2 1 (conj (seq l) nil))]<br />
    (map #(fnext %) (filter (fn [[v1 v2]] (not= v1 v2)) paired))))</p>
<p>Same but threaded:</p>
<p>(defn compress [l]<br />
  (-&gt;&gt;<br />
    (conj (seq l) nil)<br />
    (partition  2 1)<br />
    (filter (fn [[v1 v2]] (not= v1 v2)))<br />
    (map #(fnext %))))</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 99 Clojure Problems (48) by David Holbrook</title>
		<link>http://jondotcomdotorg.net/2010/07/30/99-clojure-problems-48/comment-page-1/#comment-95</link>
		<dc:creator>David Holbrook</dc:creator>
		<pubDate>Fri, 30 Jul 2010 21:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=130#comment-95</guid>
		<description>Keep at it Jon, I like reading your solutions.</description>
		<content:encoded><![CDATA[<p>Keep at it Jon, I like reading your solutions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 99 Clojure Problems (46, 49) by 99 Clojure Problems (48) &#171; jon.com.org.net</title>
		<link>http://jondotcomdotorg.net/2010/07/29/99-clojure-problems-46-49/comment-page-1/#comment-93</link>
		<dc:creator>99 Clojure Problems (48) &#171; jon.com.org.net</dc:creator>
		<pubDate>Fri, 30 Jul 2010 21:28:01 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=123#comment-93</guid>
		<description>[...] I was moping that I wasn&#039;t able to do problem 48. Luckily for me, commenter Mark was able to show me that apply can be used to take each item of a list as separate parameters to [...]</description>
		<content:encoded><![CDATA[<p>[...] I was moping that I wasn&#039;t able to do problem 48. Luckily for me, commenter Mark was able to show me that apply can be used to take each item of a list as separate parameters to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 99 Clojure Problems (46, 49) by Jon Bristow</title>
		<link>http://jondotcomdotorg.net/2010/07/29/99-clojure-problems-46-49/comment-page-1/#comment-92</link>
		<dc:creator>Jon Bristow</dc:creator>
		<pubDate>Fri, 30 Jul 2010 04:15:15 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=123#comment-92</guid>
		<description>Holy crap, it DOES work that way.</description>
		<content:encoded><![CDATA[<p>Holy crap, it DOES work that way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 99 Clojure Problems (46, 49) by Mark</title>
		<link>http://jondotcomdotorg.net/2010/07/29/99-clojure-problems-46-49/comment-page-1/#comment-91</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 30 Jul 2010 03:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=123#comment-91</guid>
		<description>What about (apply func &#039;(1 2 3))?

It doesn&#039;t quite get you the arity, but it will &quot;spread&quot; the arguments for you.

Mark</description>
		<content:encoded><![CDATA[<p>What about (apply func &#8216;(1 2 3))?</p>
<p>It doesn&#8217;t quite get you the arity, but it will &#8220;spread&#8221; the arguments for you.</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 99 Clojure Problems (46, 49) by bhenry</title>
		<link>http://jondotcomdotorg.net/2010/07/29/99-clojure-problems-46-49/comment-page-1/#comment-90</link>
		<dc:creator>bhenry</dc:creator>
		<pubDate>Fri, 30 Jul 2010 00:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=123#comment-90</guid>
		<description>oh i think i misunderstood your troubles with 48. and after playing a little, i guess i don&#039;t either.</description>
		<content:encoded><![CDATA[<p>oh i think i misunderstood your troubles with 48. and after playing a little, i guess i don&#8217;t either.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 99 Clojure Problems (46, 49) by bhenry</title>
		<link>http://jondotcomdotorg.net/2010/07/29/99-clojure-problems-46-49/comment-page-1/#comment-89</link>
		<dc:creator>bhenry</dc:creator>
		<pubDate>Fri, 30 Jul 2010 00:28:11 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=123#comment-89</guid>
		<description>
user=&gt; (defn func-with-args [&amp; more]
  more)
#&#039;user/func-with-args
user=&gt; (func-with-args &quot;this &quot; &quot;takes &quot; &quot; a &quot; &quot;variable number&quot; &quot; of &quot; &quot;args&quot;)
(&quot;this &quot; &quot;takes &quot; &quot; a &quot; &quot;variable number&quot; &quot; of &quot; &quot;args&quot;)
</description>
		<content:encoded><![CDATA[<p>user=&gt; (defn func-with-args [&amp; more]<br />
  more)<br />
#&#8217;user/func-with-args<br />
user=&gt; (func-with-args &#8220;this &#8221; &#8220;takes &#8221; &#8221; a &#8221; &#8220;variable number&#8221; &#8221; of &#8221; &#8220;args&#8221;)<br />
(&#8220;this &#8221; &#8220;takes &#8221; &#8221; a &#8221; &#8220;variable number&#8221; &#8221; of &#8221; &#8220;args&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Follow These Instructions Exactly as they Are Written by WEDNESDAY</title>
		<link>http://jondotcomdotorg.net/2010/07/28/follow-these-instructions-exactly-as-they-are-written/comment-page-1/#comment-87</link>
		<dc:creator>WEDNESDAY</dc:creator>
		<pubDate>Thu, 29 Jul 2010 04:17:13 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=118#comment-87</guid>
		<description>does it work for girls?
i want to be a PRINCESS of bel aire... not the prince!</description>
		<content:encoded><![CDATA[<p>does it work for girls?<br />
i want to be a PRINCESS of bel aire&#8230; not the prince!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 99 Clojure Problems (35-38) by Ben Griswold</title>
		<link>http://jondotcomdotorg.net/2010/07/15/99-clojure-problems-35-38/comment-page-1/#comment-71</link>
		<dc:creator>Ben Griswold</dc:creator>
		<pubDate>Fri, 16 Jul 2010 16:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=108#comment-71</guid>
		<description>At this point, Jon, you&#039;re way ahead of me on the Euler Problems. I really want to have a look at your Clojure solutions but I can&#039;t bare to have the solutions uncovered before I take a crack at the problems myself.  Slow down, Dude! :)</description>
		<content:encoded><![CDATA[<p>At this point, Jon, you&#8217;re way ahead of me on the Euler Problems. I really want to have a look at your Clojure solutions but I can&#8217;t bare to have the solutions uncovered before I take a crack at the problems myself.  Slow down, Dude! <img src='http://jondotcomdotorg.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 99 Clojure Problems (7-10) by dulanov</title>
		<link>http://jondotcomdotorg.net/2010/06/24/99-clojure-problems-7-10/comment-page-1/#comment-70</link>
		<dc:creator>dulanov</dc:creator>
		<pubDate>Fri, 16 Jul 2010 15:32:44 +0000</pubDate>
		<guid isPermaLink="false">http://jondotcomdotorg.net/?p=45#comment-70</guid>
		<description>Alternative version for the pack function:

[clj light=&quot;true&quot;](defn p08 [coll] (reverse (reduce #(if (= (first %1) %2) %1 (cons %2 %1)) &#039;() coll)))[/clj]</description>
		<content:encoded><![CDATA[<p>Alternative version for the pack function:</p>
<pre class="brush: clojure; light: true; title: ; notranslate">(defn p08 [coll] (reverse (reduce #(if (= (first %1) %2) %1 (cons %2 %1)) '() coll)))</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

