<?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 Code For Days</title>
	<atom:link href="http://www.emgarten.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.emgarten.com</link>
	<description>Exploring the realms of code..</description>
	<lastBuildDate>Thu, 03 Dec 2009 02:03:16 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Using JSNI in GWT by MiST</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-284</link>
		<dc:creator>MiST</dc:creator>
		<pubDate>Thu, 03 Dec 2009 02:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-284</guid>
		<description>Great, now I can finally make GWT handle the post-auth methods. Sweet. I love it!</description>
		<content:encoded><![CDATA[<p>Great, now I can finally make GWT handle the post-auth methods. Sweet. I love it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using JSNI in GWT by m2je</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-279</link>
		<dc:creator>m2je</dc:creator>
		<pubDate>Sat, 24 Jan 2009 13:49:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-279</guid>
		<description>very nice!!!!</description>
		<content:encoded><![CDATA[<p>very nice!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using JSNI in GWT by mac</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-277</link>
		<dc:creator>mac</dc:creator>
		<pubDate>Fri, 26 Dec 2008 12:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-277</guid>
		<description>Can I retrive variable like this:

var arr = [{&quot;id&quot;:1,&quot;name&quot;:&quot;mac&quot;},{&quot;id&quot;:2,&quot;name&quot;:&quot;mac2&quot;}];

into GWT? What type must be retrieved by function?</description>
		<content:encoded><![CDATA[<p>Can I retrive variable like this:</p>
<p>var arr = [{"id":1,"name":"mac"},{"id":2,"name":"mac2"}];</p>
<p>into GWT? What type must be retrieved by function?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python Quicksort by Steve (Frostbyte)</title>
		<link>http://www.emgarten.com/python-quicksort.htm/comment-page-1#comment-274</link>
		<dc:creator>Steve (Frostbyte)</dc:creator>
		<pubDate>Thu, 23 Oct 2008 15:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/python-quicksort.htm#comment-274</guid>
		<description>def qsort(items):
    count = len(items)
    if count &lt;= 1:
        return items
    pivot = items[0]
    return qsort(filter(lambda x: x &lt; pivot, items)) + [pivot] + sort(filter(lambda x: x &gt; pivot, items))</description>
		<content:encoded><![CDATA[<p>def qsort(items):<br />
    count = len(items)<br />
    if count &lt;= 1:<br />
        return items<br />
    pivot = items[0]<br />
    return qsort(filter(lambda x: x &lt; pivot, items)) + [pivot] + sort(filter(lambda x: x &gt; pivot, items))</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python Quicksort by Steve (Frostbyte)</title>
		<link>http://www.emgarten.com/python-quicksort.htm/comment-page-1#comment-273</link>
		<dc:creator>Steve (Frostbyte)</dc:creator>
		<pubDate>Thu, 23 Oct 2008 15:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/python-quicksort.htm#comment-273</guid>
		<description>def qsort(items):
    count = len(items)
    if count &lt;= 1:
        return items
    pivot = items[0]
    return qsort(filter(lambda x: x  pivot, items))</description>
		<content:encoded><![CDATA[<p>def qsort(items):<br />
    count = len(items)<br />
    if count &lt;= 1:<br />
        return items<br />
    pivot = items[0]<br />
    return qsort(filter(lambda x: x  pivot, items))</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using JSNI in GWT by Paul</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-268</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 08 Aug 2008 14:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-268</guid>
		<description>A good article but it should be stressed using jsni is supposed to only be used VERY sparingly. Use RPC calls whereever possible.

Also try not to use static class/method modifiers - use the lazy form.

Reason being:

The GWT compiler optimises best when left alone to prune and work out where static (i.e non polymorphic/reflection using code) so it can optimise fully - JSNI routines are static and outside the scope of the compiler aswell...</description>
		<content:encoded><![CDATA[<p>A good article but it should be stressed using jsni is supposed to only be used VERY sparingly. Use RPC calls whereever possible.</p>
<p>Also try not to use static class/method modifiers &#8211; use the lazy form.</p>
<p>Reason being:</p>
<p>The GWT compiler optimises best when left alone to prune and work out where static (i.e non polymorphic/reflection using code) so it can optimise fully &#8211; JSNI routines are static and outside the scope of the compiler aswell&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deploying GWT applications by Jeremy</title>
		<link>http://www.emgarten.com/deploying-gwt-applications.htm/comment-page-1#comment-266</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Mon, 30 Jun 2008 14:11:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/deploying-gwt-applications.htm#comment-266</guid>
		<description>View the source and you&#039;ll some a meta tags with &quot;content&quot; attributes. Those would be the code snippets.</description>
		<content:encoded><![CDATA[<p>View the source and you&#8217;ll some a meta tags with &#8220;content&#8221; attributes. Those would be the code snippets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Datetime string to a Timestamp by axdkcd</title>
		<link>http://www.emgarten.com/mysql-datetime-to-python-timestamp.htm/comment-page-1#comment-260</link>
		<dc:creator>axdkcd</dc:creator>
		<pubDate>Tue, 22 Apr 2008 14:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/15.htm#comment-260</guid>
		<description>thanks a ton. these gems save us so much time!</description>
		<content:encoded><![CDATA[<p>thanks a ton. these gems save us so much time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using JSNI in GWT by Guy</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm/comment-page-1#comment-259</link>
		<dc:creator>Guy</dc:creator>
		<pubDate>Sun, 13 Apr 2008 20:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-259</guid>
		<description>Simple and clear article that solved a problem that I was having for days now.

I was trying to get the event from the YouTube player into GWT to discover when the video had ended, and couldn&#039;t find such a simple solution.

 Thanks.</description>
		<content:encoded><![CDATA[<p>Simple and clear article that solved a problem that I was having for days now.</p>
<p>I was trying to get the event from the YouTube player into GWT to discover when the video had ended, and couldn&#8217;t find such a simple solution.</p>
<p> Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Datetime string to a Timestamp by Olivio Moura</title>
		<link>http://www.emgarten.com/mysql-datetime-to-python-timestamp.htm/comment-page-1#comment-258</link>
		<dc:creator>Olivio Moura</dc:creator>
		<pubDate>Fri, 21 Mar 2008 22:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/15.htm#comment-258</guid>
		<description>from time import strptime, strftime

olddate = &#039;05:26:40 Jun 19, 2007 PST&#039;
newdate = strptime(&quot; &quot;.join(olddate.split()[:-1]), &quot;%H:%M:%S %b %d, %Y&quot;)
print newdate
mysqldate = strftime(&quot;%Y-%m-%d %H:%M:%S&quot;, newdate)
print mysqldate</description>
		<content:encoded><![CDATA[<p>from time import strptime, strftime</p>
<p>olddate = &#8216;05:26:40 Jun 19, 2007 PST&#8217;<br />
newdate = strptime(&#8221; &#8220;.join(olddate.split()[:-1]), &#8220;%H:%M:%S %b %d, %Y&#8221;)<br />
print newdate<br />
mysqldate = strftime(&#8221;%Y-%m-%d %H:%M:%S&#8221;, newdate)<br />
print mysqldate</p>
]]></content:encoded>
	</item>
</channel>
</rss>
