<?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 (blog :sykosomatic)</title>
	<atom:link href="http://sykosomatic.org/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://sykosomatic.org/blog</link>
	<description></description>
	<lastBuildDate>Sun, 27 Dec 2009 03:59:57 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on CouchDB: Making databases fun by sykopomp</title>
		<link>http://sykosomatic.org/blog/?p=89&#038;cpage=1#comment-65</link>
		<dc:creator>sykopomp</dc:creator>
		<pubDate>Sun, 27 Dec 2009 03:59:57 +0000</pubDate>
		<guid isPermaLink="false">http://sykosomatic.org/blog/?p=89#comment-65</guid>
		<description>The biggest reason for not bothering with MongoDB is because the barrier of entry is much higher than Couch: it looks more complicated, and there&#039;s not even a driver for Common Lisp already available. I don&#039;t know much about Mongo, though, I sort of stopped bothering to research it when I got the impression that it would be a royal pain to use.</description>
		<content:encoded><![CDATA[<p>The biggest reason for not bothering with MongoDB is because the barrier of entry is much higher than Couch: it looks more complicated, and there&#8217;s not even a driver for Common Lisp already available. I don&#8217;t know much about Mongo, though, I sort of stopped bothering to research it when I got the impression that it would be a royal pain to use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CouchDB: Making databases fun by sykopomp</title>
		<link>http://sykosomatic.org/blog/?p=89&#038;cpage=1#comment-64</link>
		<dc:creator>sykopomp</dc:creator>
		<pubDate>Sun, 27 Dec 2009 03:58:19 +0000</pubDate>
		<guid isPermaLink="false">http://sykosomatic.org/blog/?p=89#comment-64</guid>
		<description>you can quote all you want. My twitter account uses this same handle.</description>
		<content:encoded><![CDATA[<p>you can quote all you want. My twitter account uses this same handle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CouchDB: Making databases fun by sir_Gollum</title>
		<link>http://sykosomatic.org/blog/?p=89&#038;cpage=1#comment-63</link>
		<dc:creator>sir_Gollum</dc:creator>
		<pubDate>Sun, 27 Dec 2009 00:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://sykosomatic.org/blog/?p=89#comment-63</guid>
		<description>I want to quote your post in my blog. It can?
And you et an account on Twitter?</description>
		<content:encoded><![CDATA[<p>I want to quote your post in my blog. It can?<br />
And you et an account on Twitter?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CouchDB: Making databases fun by Alex Popescu</title>
		<link>http://sykosomatic.org/blog/?p=89&#038;cpage=1#comment-62</link>
		<dc:creator>Alex Popescu</dc:creator>
		<pubDate>Sat, 26 Dec 2009 13:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://sykosomatic.org/blog/?p=89#comment-62</guid>
		<description>This sounds like a very warm testimonial for CouchDB. I&#039;d be very interested to hear more about your scenario and how CouchDB was such a perfect fit (or why MongoDB would not be as perfect).

I am tracking quite a few use cases for NoSQL based solutions on MyNoSQL: http://nosql.mypopescu.com and I hope to add your story there soon.

:- alex</description>
		<content:encoded><![CDATA[<p>This sounds like a very warm testimonial for CouchDB. I&#8217;d be very interested to hear more about your scenario and how CouchDB was such a perfect fit (or why MongoDB would not be as perfect).</p>
<p>I am tracking quite a few use cases for NoSQL based solutions on MyNoSQL: <a href="http://nosql.mypopescu.com" rel="nofollow">http://nosql.mypopescu.com</a> and I hope to add your story there soon.</p>
<p>:- alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sheeple by sykopomp</title>
		<link>http://sykosomatic.org/blog/?p=7&#038;cpage=1#comment-5</link>
		<dc:creator>sykopomp</dc:creator>
		<pubDate>Sat, 25 Jul 2009 20:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://sykosomatic.org/wordpress/?p=7#comment-5</guid>
		<description>http://www.mactech.com/articles/mactech/Vol.06/06.08/PearlLisp/index.html Is an interesting overview of Object Lisp.

From what I can tell, Object Lisp also does differential inheritance. The two biggest differences I&#039;ve noticed so far, though, are:

1. Object Lisp is singly-dispatched -- you declare methods (objfuns) on single existing objects. Sheeple does multiple dispatch with semantics like CLOS.

2. OL keeps &#039;class&#039; objects in the same namespace, apparently in dynamic variables? Sheeple has a separate namespace for all &#039;class&#039; objects (which are called protos). Sheeple itself doesn&#039;t make a distinction between the objects themselves, and the defproto form is there mostly for how convenient it is for lisp-style interactive development (you can re-evaluate the form, and the object is mutated while retaining identity). I&#039;m not sure exactly how defobject works.

Those seem to be the two most obvious differences. I&#039;m sure digging in would oust more stuff.</description>
		<content:encoded><![CDATA[<p><a href="http://www.mactech.com/articles/mactech/Vol.06/06.08/PearlLisp/index.html" rel="nofollow">http://www.mactech.com/articles/mactech/Vol.06/06.08/PearlLisp/index.html</a> Is an interesting overview of Object Lisp.</p>
<p>From what I can tell, Object Lisp also does differential inheritance. The two biggest differences I&#8217;ve noticed so far, though, are:</p>
<p>1. Object Lisp is singly-dispatched &#8212; you declare methods (objfuns) on single existing objects. Sheeple does multiple dispatch with semantics like CLOS.</p>
<p>2. OL keeps &#8216;class&#8217; objects in the same namespace, apparently in dynamic variables? Sheeple has a separate namespace for all &#8216;class&#8217; objects (which are called protos). Sheeple itself doesn&#8217;t make a distinction between the objects themselves, and the defproto form is there mostly for how convenient it is for lisp-style interactive development (you can re-evaluate the form, and the object is mutated while retaining identity). I&#8217;m not sure exactly how defobject works.</p>
<p>Those seem to be the two most obvious differences. I&#8217;m sure digging in would oust more stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sheeple by foo</title>
		<link>http://sykosomatic.org/blog/?p=7&#038;cpage=1#comment-4</link>
		<dc:creator>foo</dc:creator>
		<pubDate>Sat, 25 Jul 2009 11:25:11 +0000</pubDate>
		<guid isPermaLink="false">http://sykosomatic.org/wordpress/?p=7#comment-4</guid>
		<description>How is it different from Object Lisp?</description>
		<content:encoded><![CDATA[<p>How is it different from Object Lisp?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sheeple by Adlai</title>
		<link>http://sykosomatic.org/blog/?p=7&#038;cpage=1#comment-3</link>
		<dc:creator>Adlai</dc:creator>
		<pubDate>Mon, 20 Jul 2009 06:31:12 +0000</pubDate>
		<guid isPermaLink="false">http://sykosomatic.org/wordpress/?p=7#comment-3</guid>
		<description>Weird, the links didn&#039;t come through.

http://www.github.com/sykopomp/sykosomatic
http://www.github.com/sykopomp/sykobot</description>
		<content:encoded><![CDATA[<p>Weird, the links didn&#8217;t come through.</p>
<p><a href="http://www.github.com/sykopomp/sykosomatic" rel="nofollow">http://www.github.com/sykopomp/sykosomatic</a><br />
<a href="http://www.github.com/sykopomp/sykobot" rel="nofollow">http://www.github.com/sykopomp/sykobot</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sheeple by Adlai</title>
		<link>http://sykosomatic.org/blog/?p=7&#038;cpage=1#comment-2</link>
		<dc:creator>Adlai</dc:creator>
		<pubDate>Mon, 20 Jul 2009 04:52:07 +0000</pubDate>
		<guid isPermaLink="false">http://sykosomatic.org/wordpress/?p=7#comment-2</guid>
		<description>This is all very interesting... I just thought there should also be mention of applications using Sheeple:

Sykosomatic -- 
Sykobot -- 

See for yourself: Sheeple works!

Sykoedit: This doesn&#039;t sound astroturfy at -all-, amirite?</description>
		<content:encoded><![CDATA[<p>This is all very interesting&#8230; I just thought there should also be mention of applications using Sheeple:</p>
<p>Sykosomatic &#8212;<br />
Sykobot &#8212; </p>
<p>See for yourself: Sheeple works!</p>
<p>Sykoedit: This doesn&#8217;t sound astroturfy at -all-, amirite?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
