<?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 web(cslai)</title>
	<atom:link href="http://cslai.coolsilon.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://cslai.coolsilon.com</link>
	<description>Findings and Notes in Web Development</description>
	<lastBuildDate>Tue, 23 Aug 2011 13:52:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on Recommender System Classification by Jeffrey04</title>
		<link>http://cslai.coolsilon.com/2011/03/30/recommender-system-classification/#comment-7639</link>
		<dc:creator>Jeffrey04</dc:creator>
		<pubDate>Tue, 23 Aug 2011 13:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=215#comment-7639</guid>
		<description>@Mojihelen hey, nice to meet you :)</description>
		<content:encoded><![CDATA[<p>@Mojihelen hey, nice to meet you <img src='http://cslai.coolsilon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recommender System Classification by Mojihelen</title>
		<link>http://cslai.coolsilon.com/2011/03/30/recommender-system-classification/#comment-7638</link>
		<dc:creator>Mojihelen</dc:creator>
		<pubDate>Tue, 23 Aug 2011 13:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=215#comment-7638</guid>
		<description>Hi,
I am working on a similar field here in Germany :-) Nice to have found your blog.M</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am working on a similar field here in Germany <img src='http://cslai.coolsilon.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Nice to have found your blog.M</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to solve all puzzles at 4clojure in a week by Jeffrey04</title>
		<link>http://cslai.coolsilon.com/2011/06/02/how-to-solve-all-puzzles-at-4clojure-in-a-week/#comment-7483</link>
		<dc:creator>Jeffrey04</dc:creator>
		<pubDate>Sun, 17 Jul 2011 18:04:50 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=230#comment-7483</guid>
		<description>@bob good one :)</description>
		<content:encoded><![CDATA[<p>@bob good one <img src='http://cslai.coolsilon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to solve all puzzles at 4clojure in a week by Bob</title>
		<link>http://cslai.coolsilon.com/2011/06/02/how-to-solve-all-puzzles-at-4clojure-in-a-week/#comment-7478</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Sat, 16 Jul 2011 04:25:42 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=230#comment-7478</guid>
		<description>My favorite solution is for the roman numeral conversion:
(fn [a] 
  (last (reduce (fn [[max sum] num]
      (if (&lt;  num max)
          [max (- sum num)]
          [num (+ sum num)])) [0 0] 
     (map {\X 10 \I 1 \V 5 \C 100 \L 50 \D 500 \M 1000} (reverse a))
    )))</description>
		<content:encoded><![CDATA[<p>My favorite solution is for the roman numeral conversion:<br />
(fn [a]<br />
  (last (reduce (fn [[max sum] num]<br />
      (if (&lt;  num max)<br />
          [max (- sum num)]<br />
          [num (+ sum num)])) [0 0]<br />
     (map {\X 10 \I 1 \V 5 \C 100 \L 50 \D 500 \M 1000} (reverse a))<br />
    )))</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing Fuzzy c-means in Clojure by web(cslai) &#124; Fuzzy C-Means and Content Recommendation</title>
		<link>http://cslai.coolsilon.com/2011/06/23/implementing-fuzzy-c-means-in-clojure/#comment-7445</link>
		<dc:creator>web(cslai) &#124; Fuzzy C-Means and Content Recommendation</dc:creator>
		<pubDate>Tue, 12 Jul 2011 08:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=236#comment-7445</guid>
		<description>[...] meanings (polysemy) depending on the context (user interest).    While the diagram in my previous post (my attempt to implement FCM clustering algorithm using clojure, not of production quality though) [...]</description>
		<content:encoded><![CDATA[<p>[...] meanings (polysemy) depending on the context (user interest).    While the diagram in my previous post (my attempt to implement FCM clustering algorithm using clojure, not of production quality though) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to solve all puzzles at 4clojure in a week by Jeffrey04</title>
		<link>http://cslai.coolsilon.com/2011/06/02/how-to-solve-all-puzzles-at-4clojure-in-a-week/#comment-6926</link>
		<dc:creator>Jeffrey04</dc:creator>
		<pubDate>Fri, 03 Jun 2011 03:12:14 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=230#comment-6926</guid>
		<description>@dbryne yeah, really like 4clojure (and clojure), but unfortunately probably not going to use it for my postgrad project :/</description>
		<content:encoded><![CDATA[<p>@dbryne yeah, really like 4clojure (and clojure), but unfortunately probably not going to use it for my postgrad project :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to solve all puzzles at 4clojure in a week by dbyrne</title>
		<link>http://cslai.coolsilon.com/2011/06/02/how-to-solve-all-puzzles-at-4clojure-in-a-week/#comment-6914</link>
		<dc:creator>dbyrne</dc:creator>
		<pubDate>Thu, 02 Jun 2011 22:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=230#comment-6914</guid>
		<description>Glad you are enjoying 4clojure!  Didn&#039;t realize &quot;word ladders&quot; existed.  Thanks for the info.  I&#039;ll change the title of the problem and link to that Wikipedia page.</description>
		<content:encoded><![CDATA[<p>Glad you are enjoying 4clojure!  Didn&#8217;t realize &#8220;word ladders&#8221; existed.  Thanks for the info.  I&#8217;ll change the title of the problem and link to that Wikipedia page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Drafting my first progress report by Jeffrey04</title>
		<link>http://cslai.coolsilon.com/2011/01/09/drafting-my-first-progress-report/#comment-3525</link>
		<dc:creator>Jeffrey04</dc:creator>
		<pubDate>Mon, 10 Jan 2011 04:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=199#comment-3525</guid>
		<description>@nathan thanks for the comment :D</description>
		<content:encoded><![CDATA[<p>@nathan thanks for the comment <img src='http://cslai.coolsilon.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Drafting my first progress report by Nathan</title>
		<link>http://cslai.coolsilon.com/2011/01/09/drafting-my-first-progress-report/#comment-3521</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Sun, 09 Jan 2011 16:38:36 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=199#comment-3521</guid>
		<description>Sounds very familiar, from experience though, the good news is that if you make it past the frustrations, it gets even more exciting :)

And if there&#039;s anything I can do, or help with, to get you there, just let me know.

Best,

Nathan</description>
		<content:encoded><![CDATA[<p>Sounds very familiar, from experience though, the good news is that if you make it past the frustrations, it gets even more exciting <img src='http://cslai.coolsilon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>And if there&#8217;s anything I can do, or help with, to get you there, just let me know.</p>
<p>Best,</p>
<p>Nathan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resource Definition Framework by web(cslai) &#124; Drafting my first progress report</title>
		<link>http://cslai.coolsilon.com/2010/06/04/resource-definition-framework/#comment-3513</link>
		<dc:creator>web(cslai) &#124; Drafting my first progress report</dc:creator>
		<pubDate>Sun, 09 Jan 2011 06:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://cslai.coolsilon.com/?p=168#comment-3513</guid>
		<description>[...] first started with revisiting RDF by putting more emphasis on how it is usually implemented. Yea, I know I did some when I was [...]</description>
		<content:encoded><![CDATA[<p>[...] first started with revisiting RDF by putting more emphasis on how it is usually implemented. Yea, I know I did some when I was [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

