<?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"
	>
<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>
	<pubDate>Fri, 21 Nov 2008 20:21:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Deploying GWT applications by Jeremy</title>
		<link>http://www.emgarten.com/deploying-gwt-applications.htm#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'll some a meta tags with "content" 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 Using JSNI in GWT by Ashish</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm#comment-264</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Fri, 23 May 2008 06:53:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-264</guid>
		<description>Thanks a lot! 
Really it is very short and to the point I am working on this one more level down and soon update this with my studies.</description>
		<content:encoded><![CDATA[<p>Thanks a lot!<br />
Really it is very short and to the point I am working on this one more level down and soon update this with my studies.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python Quicksort by Bob Farrell</title>
		<link>http://www.emgarten.com/python-quicksort.htm#comment-262</link>
		<dc:creator>Bob Farrell</dc:creator>
		<pubDate>Wed, 14 May 2008 14:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/python-quicksort.htm#comment-262</guid>
		<description>I think it's a good idea to note that the Python list sort can take a "key" argument, so you would do, e.g.:
yourlist.sort( key=operator.itemgetter(x) )
Where yourlist is a list of tuples and x is the index you wish to sort by.

Usually a good idea to read the docs before publishing. :-)</description>
		<content:encoded><![CDATA[<p>I think it&#8217;s a good idea to note that the Python list sort can take a &#8220;key&#8221; argument, so you would do, e.g.:<br />
yourlist.sort( key=operator.itemgetter(x) )<br />
Where yourlist is a list of tuples and x is the index you wish to sort by.</p>
<p>Usually a good idea to read the docs before publishing. <img src='http://www.emgarten.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></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-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-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'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-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 = '05:26:40 Jun 19, 2007 PST'
newdate = strptime(" ".join(olddate.split()[:-1]), "%H:%M:%S %b %d, %Y")
print newdate
mysqldate = strftime("%Y-%m-%d %H:%M:%S", 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>
	<item>
		<title>Comment on Using JSNI in GWT by John</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm#comment-257</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 05 Mar 2008 20:24:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-257</guid>
		<description>Great article!

A couple of points:
1.  You must pass a reference to the current class you can NOT do the following:
this.@com.company.client.BlueApp::runApp()();

2.  If you want parameters in your function, add them in the "function()" declaration:

$wnd.showBlueApp = function (someInt) {
   x.@com.company.client.BlueApp::runApp(I)(someInt);
};</description>
		<content:encoded><![CDATA[<p>Great article!</p>
<p>A couple of points:<br />
1.  You must pass a reference to the current class you can NOT do the following:<br />
<a href="mailto:this.@com.company.client.BlueApp">this.@com.company.client.BlueApp</a>::runApp()();</p>
<p>2.  If you want parameters in your function, add them in the &#8220;function()&#8221; declaration:</p>
<p>$wnd.showBlueApp = function (someInt) {<br />
   <a href="mailto:x.@com.company.client.BlueApp">x.@com.company.client.BlueApp</a>::runApp(I)(someInt);<br />
};</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using JSNI in GWT by Hassan</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm#comment-256</link>
		<dc:creator>Hassan</dc:creator>
		<pubDate>Wed, 06 Feb 2008 10:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-256</guid>
		<description>Thanks for your post , 
it helped me very much</description>
		<content:encoded><![CDATA[<p>Thanks for your post ,<br />
it helped me very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a Web FLV Player by kupruk</title>
		<link>http://www.emgarten.com/creating-a-web-flv-player.htm#comment-255</link>
		<dc:creator>kupruk</dc:creator>
		<pubDate>Tue, 05 Feb 2008 18:16:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/creating-a-web-flv-player.htm#comment-255</guid>
		<description>can anyone put the source file for download?</description>
		<content:encoded><![CDATA[<p>can anyone put the source file for download?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using JSNI in GWT by Pedz</title>
		<link>http://www.emgarten.com/using-jsni-in-gwt.htm#comment-253</link>
		<dc:creator>Pedz</dc:creator>
		<pubDate>Tue, 11 Dec 2007 14:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.emgarten.com/using-jsni-in-gwt.htm#comment-253</guid>
		<description>Great article, very clear. It will help a lot of people like me, thank you.</description>
		<content:encoded><![CDATA[<p>Great article, very clear. It will help a lot of people like me, thank you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
