<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for ThingsILearned</title>
	<atom:link href="http://thingsilearned.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://thingsilearned.com</link>
	<description>something new every day ... or so  By Dave Fowler</description>
	<lastBuildDate>Sun, 05 Feb 2012 13:43:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Django-admin.py startproject &gt; Unknown Command by Andrei-Adnan Ismail</title>
		<link>http://thingsilearned.com/2008/12/28/django-adminpy-startproject-unknown-command/#comment-1014</link>
		<dc:creator><![CDATA[Andrei-Adnan Ismail]]></dc:creator>
		<pubDate>Sun, 05 Feb 2012 13:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.wordpress.com/?p=145#comment-1014</guid>
		<description><![CDATA[Thanks a lot :) Saved my day.]]></description>
		<content:encoded><![CDATA[<p>Thanks a lot <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Saved my day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting Out With Comet (Orbited) Part 3 – The Client by godavemon</title>
		<link>http://thingsilearned.com/2009/08/03/starting-out-with-comet-orbited-part-3-%e2%80%93-the-client/#comment-1011</link>
		<dc:creator><![CDATA[godavemon]]></dc:creator>
		<pubDate>Thu, 26 Jan 2012 17:16:58 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.com/?p=567#comment-1011</guid>
		<description><![CDATA[Hi Felix,

It&#039;s been so long since I used orbited that I can&#039;t recall.]]></description>
		<content:encoded><![CDATA[<p>Hi Felix,</p>
<p>It&#8217;s been so long since I used orbited that I can&#8217;t recall.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting Out With Comet (Orbited) Part 3 – The Client by Felix</title>
		<link>http://thingsilearned.com/2009/08/03/starting-out-with-comet-orbited-part-3-%e2%80%93-the-client/#comment-1010</link>
		<dc:creator><![CDATA[Felix]]></dc:creator>
		<pubDate>Thu, 26 Jan 2012 08:20:03 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.com/?p=567#comment-1010</guid>
		<description><![CDATA[I just tried moving the html file generated by django to orbited&#039;s static folder, every thing works just fine. So I guess my problem is similar to Phuongnt&#039;s posted on 11/26/11.]]></description>
		<content:encoded><![CDATA[<p>I just tried moving the html file generated by django to orbited&#8217;s static folder, every thing works just fine. So I guess my problem is similar to Phuongnt&#8217;s posted on 11/26/11.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting Out With Comet (Orbited) Part 3 – The Client by Felix</title>
		<link>http://thingsilearned.com/2009/08/03/starting-out-with-comet-orbited-part-3-%e2%80%93-the-client/#comment-1009</link>
		<dc:creator><![CDATA[Felix]]></dc:creator>
		<pubDate>Thu, 26 Jan 2012 04:45:07 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.com/?p=567#comment-1009</guid>
		<description><![CDATA[Hi Dave,

Thanks for your tutorial! This helped me learn about how to use Orbited. However, when I tried to use this along with my site built with django, it doesn&#039;t work. The problem is that &quot;stomp.connect(document.domain, 61613); &quot; doesn&#039;t seem to connect to the stomp server at all (when running the stomp demo, when connect a webpage to the orbited server, there will be a line &quot;ACCESS connection closed from 127.0.0.1:59311 to localhost:61613&quot; printed in the terminal, but for my site nothing outputed). I have used firebug to dig into the code and find out the code stops running after line 866 of Orbited.js which is &quot;session.open(sessionUrl.render());&quot;. I digged further into .open method for both running stomp demo and my site and didn&#039;t really see differences on the stack. 

My guess of the reason is that the stomp demo has the static pages hosted on localhost:9000 which is the same server as the stomp service while my django site is hosted on localhost:8000 and on a different server. But the part confuses me is that when I follow the js code running, I didn&#039;t see any part that can tell whether the page is hosted on orbited server or django server. Have you ever met this situation before?]]></description>
		<content:encoded><![CDATA[<p>Hi Dave,</p>
<p>Thanks for your tutorial! This helped me learn about how to use Orbited. However, when I tried to use this along with my site built with django, it doesn&#8217;t work. The problem is that &#8220;stomp.connect(document.domain, 61613); &#8221; doesn&#8217;t seem to connect to the stomp server at all (when running the stomp demo, when connect a webpage to the orbited server, there will be a line &#8220;ACCESS connection closed from 127.0.0.1:59311 to localhost:61613&#8243; printed in the terminal, but for my site nothing outputed). I have used firebug to dig into the code and find out the code stops running after line 866 of Orbited.js which is &#8220;session.open(sessionUrl.render());&#8221;. I digged further into .open method for both running stomp demo and my site and didn&#8217;t really see differences on the stack. </p>
<p>My guess of the reason is that the stomp demo has the static pages hosted on localhost:9000 which is the same server as the stomp service while my django site is hosted on localhost:8000 and on a different server. But the part confuses me is that when I follow the js code running, I didn&#8217;t see any part that can tell whether the page is hosted on orbited server or django server. Have you ever met this situation before?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting Out With Comet (Orbited) Part 3 – The Client by Felix</title>
		<link>http://thingsilearned.com/2009/08/03/starting-out-with-comet-orbited-part-3-%e2%80%93-the-client/#comment-1008</link>
		<dc:creator><![CDATA[Felix]]></dc:creator>
		<pubDate>Thu, 26 Jan 2012 04:27:28 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.com/?p=567#comment-1008</guid>
		<description><![CDATA[Hi Dave,

My understanding of Tornado is that it is a totally different python frame work just like django. I have looked around for about one week but still didn&#039;t figure out how to make Django work with Tornado. Is it something like making django hosted on Tornado or it&#039;s more like the relation between django and orbited - running these two on two servers, let django take care of the logic and let both the webpage and the server send messages to orbited for message passing? Why tornado+django is much easier than orbited+django? Thank you!

Felix]]></description>
		<content:encoded><![CDATA[<p>Hi Dave,</p>
<p>My understanding of Tornado is that it is a totally different python frame work just like django. I have looked around for about one week but still didn&#8217;t figure out how to make Django work with Tornado. Is it something like making django hosted on Tornado or it&#8217;s more like the relation between django and orbited &#8211; running these two on two servers, let django take care of the logic and let both the webpage and the server send messages to orbited for message passing? Why tornado+django is much easier than orbited+django? Thank you!</p>
<p>Felix</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deploying MoinMoin on Ubuntu using Apache mod_wsgi by Carl Helmertz</title>
		<link>http://thingsilearned.com/2009/05/21/deploying-moinmoin-on-ubuntu-using-apache-mod_wsgi/#comment-1007</link>
		<dc:creator><![CDATA[Carl Helmertz]]></dc:creator>
		<pubDate>Wed, 25 Jan 2012 23:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.com/?p=405#comment-1007</guid>
		<description><![CDATA[Thanks for this guide, about the only one considering a subdomain for moinmoin.

Anyways, two things: the code is cut off in awkward positions, and; process= should be processes=.

Cheers!]]></description>
		<content:encoded><![CDATA[<p>Thanks for this guide, about the only one considering a subdomain for moinmoin.</p>
<p>Anyways, two things: the code is cut off in awkward positions, and; process= should be processes=.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django-admin.py startproject &gt; Unknown Command by prathika</title>
		<link>http://thingsilearned.com/2008/12/28/django-adminpy-startproject-unknown-command/#comment-1006</link>
		<dc:creator><![CDATA[prathika]]></dc:creator>
		<pubDate>Tue, 24 Jan 2012 09:02:53 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.wordpress.com/?p=145#comment-1006</guid>
		<description><![CDATA[Thanks a lot!!! Guys one more thing you have to be careful with is the command for making the environmental variable varies from shell to shell. 
Eg: for tcsh we have to use setenv envvariable value]]></description>
		<content:encoded><![CDATA[<p>Thanks a lot!!! Guys one more thing you have to be careful with is the command for making the environmental variable varies from shell to shell.<br />
Eg: for tcsh we have to use setenv envvariable value</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting Out With Comet (Orbited) Part 3 – The Client by godavemon</title>
		<link>http://thingsilearned.com/2009/08/03/starting-out-with-comet-orbited-part-3-%e2%80%93-the-client/#comment-1005</link>
		<dc:creator><![CDATA[godavemon]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 18:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.com/?p=567#comment-1005</guid>
		<description><![CDATA[I&#039;m not sure about the online status.  It&#039;s certainly not as popular these days.  Much of the focus in the python community has gone toward the excellent Tornado framework/server.  I highly recommend checking that out.  It&#039;s much easier to get working with Django than Orbited.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure about the online status.  It&#8217;s certainly not as popular these days.  Much of the focus in the python community has gone toward the excellent Tornado framework/server.  I highly recommend checking that out.  It&#8217;s much easier to get working with Django than Orbited.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting Out With Comet (Orbited) Part 3 – The Client by czytelnik</title>
		<link>http://thingsilearned.com/2009/08/03/starting-out-with-comet-orbited-part-3-%e2%80%93-the-client/#comment-1004</link>
		<dc:creator><![CDATA[czytelnik]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 12:51:04 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.com/?p=567#comment-1004</guid>
		<description><![CDATA[Hi, is orbited dead or still developed? Site is down, only Orbited2 is online, but has no documentation :/
Is there any replacement for it?
I need it with Python/Django]]></description>
		<content:encoded><![CDATA[<p>Hi, is orbited dead or still developed? Site is down, only Orbited2 is online, but has no documentation :/<br />
Is there any replacement for it?<br />
I need it with Python/Django</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MailGun as an SMTP Server for Django Apps by wrichert</title>
		<link>http://thingsilearned.com/2011/06/07/mailgun-as-an-smtp-server-for-django-apps/#comment-1003</link>
		<dc:creator><![CDATA[wrichert]]></dc:creator>
		<pubDate>Wed, 21 Dec 2011 12:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://thingsilearned.com/?p=758#comment-1003</guid>
		<description><![CDATA[What I especially like about MailGun is that their API allows to send individual mails. E.g. MailChimp would not allow a Django use case that you outlined above really nicely.]]></description>
		<content:encoded><![CDATA[<p>What I especially like about MailGun is that their API allows to send individual mails. E.g. MailChimp would not allow a Django use case that you outlined above really nicely.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

