<?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 Rock, Paper, Software</title>
	<atom:link href="http://software.tulentsev.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://software.tulentsev.com</link>
	<description>Random thoughts about programming</description>
	<lastBuildDate>Fri, 03 Feb 2012 15:48:00 +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 Ruby: how to override class method with a module by Anonymous</title>
		<link>http://software.tulentsev.com/2012/02/ruby-how-to-override-class-method-with-a-module/comment-page-1/#comment-506</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 03 Feb 2012 15:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=298#comment-506</guid>
		<description>Thank you! Now everything has become clear.</description>
		<content:encoded><![CDATA[<p>Thank you! Now everything has become clear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SugarCRM: really shared calendar by Mark</title>
		<link>http://software.tulentsev.com/2009/02/sugarcrm-really-shared-calendar/comment-page-1/#comment-320</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 25 Nov 2011 11:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=108#comment-320</guid>
		<description>Super handy thanks.</description>
		<content:encoded><![CDATA[<p>Super handy thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SugarCRM: really shared calendar by Anonymous</title>
		<link>http://software.tulentsev.com/2009/02/sugarcrm-really-shared-calendar/comment-page-1/#comment-213</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 11 Aug 2011 10:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=108#comment-213</guid>
		<description>No doubt on that</description>
		<content:encoded><![CDATA[<p>No doubt on that</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SugarCRM: really shared calendar by Nephoxroot</title>
		<link>http://software.tulentsev.com/2009/02/sugarcrm-really-shared-calendar/comment-page-1/#comment-212</link>
		<dc:creator>Nephoxroot</dc:creator>
		<pubDate>Thu, 11 Aug 2011 10:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=108#comment-212</guid>
		<description>With this, the workaround, or solution is not upgrade safe.</description>
		<content:encoded><![CDATA[<p>With this, the workaround, or solution is not upgrade safe.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SugarCRM: really shared calendar by Saurabh Sharma</title>
		<link>http://software.tulentsev.com/2009/02/sugarcrm-really-shared-calendar/comment-page-1/#comment-202</link>
		<dc:creator>Saurabh Sharma</dc:creator>
		<pubDate>Tue, 01 Mar 2011 09:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=108#comment-202</guid>
		<description>$select = &#039;&#039;;
$auto_where = &#039; WHERE &#039;;
if(!empty($where)) {
    $auto_where .= $where. &#039; AND &#039;;
}
 
// Use a simpler query in case of meetings.
if($bean-&gt;table_name == &quot;meetings&quot;) {
    $select = &quot;SELECT {$bean-&gt;table_name}.* from {$bean-&gt;rel_users_table},{$bean-&gt;table_name} &quot;;
    $auto_where .= &quot; {$bean-&gt;table_name}.deleted=0 &quot;;
}
else {
    $select = &quot;SELECT {$bean-&gt;table_name}.* from {$bean-&gt;rel_users_table},{$bean-&gt;table_name} &quot;;
    $auto_where .= &quot; {$bean-&gt;rel_users_table}.{$bean_id_name}={$bean-&gt;table_name}.id AND {$bean-&gt;rel_users_table}.user_id=&#039;{$user_id}&#039; AND {$bean-&gt;table_name}.deleted=0 AND {$bean-&gt;rel_users_table}.deleted=0&quot;;
}


that is a exact way to call all meetings in calender,

Thanks,
Sourabh Sharma
</description>
		<content:encoded><![CDATA[<p>$select = &#8221;;<br />
$auto_where = &#8216; WHERE &#8216;;<br />
if(!empty($where)) {<br />
    $auto_where .= $where. &#8216; AND &#8216;;<br />
}</p>
<p>// Use a simpler query in case of meetings.<br />
if($bean-&gt;table_name == &#8220;meetings&#8221;) {<br />
    $select = &#8220;SELECT {$bean-&gt;table_name}.* from {$bean-&gt;rel_users_table},{$bean-&gt;table_name} &#8220;;<br />
    $auto_where .= &#8221; {$bean-&gt;table_name}.deleted=0 &#8220;;<br />
}<br />
else {<br />
    $select = &#8220;SELECT {$bean-&gt;table_name}.* from {$bean-&gt;rel_users_table},{$bean-&gt;table_name} &#8220;;<br />
    $auto_where .= &#8221; {$bean-&gt;rel_users_table}.{$bean_id_name}={$bean-&gt;table_name}.id AND {$bean-&gt;rel_users_table}.user_id=&#8217;{$user_id}&#8217; AND {$bean-&gt;table_name}.deleted=0 AND {$bean-&gt;rel_users_table}.deleted=0&#8243;;<br />
}</p>
<p>that is a exact way to call all meetings in calender,</p>
<p>Thanks,<br />
Sourabh Sharma</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MongoId and atomic increment by Max Rizhkov</title>
		<link>http://software.tulentsev.com/2010/06/mongoid-and-atomic-increment/comment-page-1/#comment-198</link>
		<dc:creator>Max Rizhkov</dc:creator>
		<pubDate>Fri, 10 Dec 2010 08:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=179#comment-198</guid>
		<description>Here is an atomic increment using Java driver. Hope would be useful for you, guys:

http://sysgears.blog.com/2010/12/09/atomic-value-increment-in-mongodb-using-java-driver/</description>
		<content:encoded><![CDATA[<p>Here is an atomic increment using Java driver. Hope would be useful for you, guys:</p>
<p><a href="http://sysgears.blog.com/2010/12/09/atomic-value-increment-in-mongodb-using-java-driver/" rel="nofollow">http://sysgears.blog.com/2010/12/09/atomic-value-increment-in-mongodb-using-java-driver/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MongoId and atomic increment by Anonymous</title>
		<link>http://software.tulentsev.com/2010/06/mongoid-and-atomic-increment/comment-page-1/#comment-195</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 29 Sep 2010 15:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=179#comment-195</guid>
		<description>Good news! :-)</description>
		<content:encoded><![CDATA[<p>Good news! :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MongoId and atomic increment by Ariejan de Vroom</title>
		<link>http://software.tulentsev.com/2010/06/mongoid-and-atomic-increment/comment-page-1/#comment-196</link>
		<dc:creator>Ariejan de Vroom</dc:creator>
		<pubDate>Wed, 29 Sep 2010 12:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=179#comment-196</guid>
		<description>This has changed recently. You can no do:

&lt;pre&gt;&lt;code&gt;@user.inc(:spam_count, 1)&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>This has changed recently. You can no do:</p>
<pre><code>@user.inc(:spam_count, 1)</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery chaining by Alexander Lipatov</title>
		<link>http://software.tulentsev.com/2010/08/jquery-chaining/comment-page-1/#comment-192</link>
		<dc:creator>Alexander Lipatov</dc:creator>
		<pubDate>Wed, 25 Aug 2010 15:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=189#comment-192</guid>
		<description>Флюент интерфейс - все только о нем и говорят сейчас.</description>
		<content:encoded><![CDATA[<p>Флюент интерфейс &#8211; все только о нем и говорят сейчас.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SugarCRM: really shared calendar by Sergei Tulentsev</title>
		<link>http://software.tulentsev.com/2009/02/sugarcrm-really-shared-calendar/comment-page-1/#comment-187</link>
		<dc:creator>Sergei Tulentsev</dc:creator>
		<pubDate>Thu, 19 Aug 2010 20:52:54 +0000</pubDate>
		<guid isPermaLink="false">http://software.tulentsev.com/?p=108#comment-187</guid>
		<description>We host our own version and have full control over the sources.</description>
		<content:encoded><![CDATA[<p>We host our own version and have full control over the sources.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

