<?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 on: Twisted Introduction</title>
	<atom:link href="http://krondo.com/blog/?feed=rss2&#038;page_id=1327" rel="self" type="application/rss+xml" />
	<link>http://krondo.com</link>
	<description>The website of Dave Peticolas</description>
	<lastBuildDate>Fri, 03 Sep 2010 01:53:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: dave</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-2940</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Fri, 03 Sep 2010 01:39:57 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-2940</guid>
		<description>Thank you, I appreciate the kind words! I am specifically aiming this tutorial for people who are new to Twisted and, more importantly, new to asynchronous programming. So your description is apt.</description>
		<content:encoded><![CDATA[<p>Thank you, I appreciate the kind words! I am specifically aiming this tutorial for people who are new to Twisted and, more importantly, new to asynchronous programming. So your description is apt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurens Van Houtven</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-2937</link>
		<dc:creator>Laurens Van Houtven</dc:creator>
		<pubDate>Thu, 02 Sep 2010 22:45:59 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-2937</guid>
		<description>I think your tutorials are really awesome, and I love how you&#039;re consistently putting so much work into this while remaining responsive and approachable.

This was *long* overdue, but the official documentation page now links back to you:

http://twistedmatrix.com/trac/wiki/Documentation

I couldn&#039;t figure out if marketing your tutorials as good-for-newbies or not was doing you a disservice or not; I&#039;m just mainly using them as a pointer for newbies who are willing to learn. If you disagree with the wording, please feel free to e-mail me about it.</description>
		<content:encoded><![CDATA[<p>I think your tutorials are really awesome, and I love how you&#8217;re consistently putting so much work into this while remaining responsive and approachable.</p>
<p>This was *long* overdue, but the official documentation page now links back to you:</p>
<p><a href="http://twistedmatrix.com/trac/wiki/Documentation" rel="nofollow">http://twistedmatrix.com/trac/wiki/Documentation</a></p>
<p>I couldn&#8217;t figure out if marketing your tutorials as good-for-newbies or not was doing you a disservice or not; I&#8217;m just mainly using them as a pointer for newbies who are willing to learn. If you disagree with the wording, please feel free to e-mail me about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dave</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-2905</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Wed, 01 Sep 2010 02:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-2905</guid>
		<description>Hey bino, I might not have time to look into your example to closely. But the traceback just looks like you are using an undefined name.
I&#039;m not too familiar with wokkel, but perhaps you mean self.send()?</description>
		<content:encoded><![CDATA[<p>Hey bino, I might not have time to look into your example to closely. But the traceback just looks like you are using an undefined name.<br />
I&#8217;m not too familiar with wokkel, but perhaps you mean self.send()?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bino</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-2901</link>
		<dc:creator>bino</dc:creator>
		<pubDate>Tue, 31 Aug 2010 15:20:30 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-2901</guid>
		<description>Dear Dave
I&#039;m sure your writeup is a great source of knowledge.

But caused by the lame of my brain, I fail to understand how to adopt it to my problem.

I need to write application that :
1. Have to services in it:
1.a. a TCP server (just like a basic echo server)
1.b. an XMPP-Client/bot
2. Every msg come from XMPP-server, will wrote to StdOut (it&#039;ll be extended inthe future)
3. Every msg received by TCP-server part, will be forwarded by the xmpp-client to XMPP-server.

I post my code at pastebin:
1. echobot.py : http://pastebin.com/Mn4bRvCb
2. echobot.tac : http://pastebin.com/BgjMKiMC
3. the occured error : http://pastebin.com/6Rdge4L5

Kindly please give me any enlightment.

Sincerely
-bino-</description>
		<content:encoded><![CDATA[<p>Dear Dave<br />
I&#8217;m sure your writeup is a great source of knowledge.</p>
<p>But caused by the lame of my brain, I fail to understand how to adopt it to my problem.</p>
<p>I need to write application that :<br />
1. Have to services in it:<br />
1.a. a TCP server (just like a basic echo server)<br />
1.b. an XMPP-Client/bot<br />
2. Every msg come from XMPP-server, will wrote to StdOut (it&#8217;ll be extended inthe future)<br />
3. Every msg received by TCP-server part, will be forwarded by the xmpp-client to XMPP-server.</p>
<p>I post my code at pastebin:<br />
1. echobot.py : <a href="http://pastebin.com/Mn4bRvCb" rel="nofollow">http://pastebin.com/Mn4bRvCb</a><br />
2. echobot.tac : <a href="http://pastebin.com/BgjMKiMC" rel="nofollow">http://pastebin.com/BgjMKiMC</a><br />
3. the occured error : <a href="http://pastebin.com/6Rdge4L5" rel="nofollow">http://pastebin.com/6Rdge4L5</a></p>
<p>Kindly please give me any enlightment.</p>
<p>Sincerely<br />
-bino-</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jitendra</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-1960</link>
		<dc:creator>jitendra</dc:creator>
		<pubDate>Wed, 14 Jul 2010 09:39:54 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-1960</guid>
		<description>Hi timgluz,
can you tell how to download your pdf...it is asking for username/passwd when I click on the above link.

thanx</description>
		<content:encoded><![CDATA[<p>Hi timgluz,<br />
can you tell how to download your pdf&#8230;it is asking for username/passwd when I click on the above link.</p>
<p>thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [Py] Asünkroonne arvutus Twisted näitel &#171; Timgluz&#039;i küberruumi projektsioon</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-1890</link>
		<dc:creator>[Py] Asünkroonne arvutus Twisted näitel &#171; Timgluz&#039;i küberruumi projektsioon</dc:creator>
		<pubDate>Sat, 10 Jul 2010 17:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-1890</guid>
		<description>[...] kommenteeri &#187;  Originaalversioon leidub aadressil: http://krondo.com/blog/?page_id=1327 [...]</description>
		<content:encoded><![CDATA[<p>[...] kommenteeri &raquo;  Originaalversioon leidub aadressil: http://krondo.com/blog/?page_id=1327 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [Py] Tasuta lõunad on otsas, konkurentsust helpimas &#171; Timgluz&#039;i küberruumi projektsioon</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-1889</link>
		<dc:creator>[Py] Tasuta lõunad on otsas, konkurentsust helpimas &#171; Timgluz&#039;i küberruumi projektsioon</dc:creator>
		<pubDate>Sat, 10 Jul 2010 17:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-1889</guid>
		<description>[...] kogudes sattusin  suurepärase asünkroonse arenduse  sissejuhatava materjali juurde, mille Dave Krondo( pikaajaline Twisted kasutaja) oma blogisse[3] on kirjutanud, ausalt väga super materjal. Tema [...]</description>
		<content:encoded><![CDATA[<p>[...] kogudes sattusin  suurepärase asünkroonse arenduse  sissejuhatava materjali juurde, mille Dave Krondo( pikaajaline Twisted kasutaja) oma blogisse[3] on kirjutanud, ausalt väga super materjal. Tema [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dave</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-1876</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Sat, 10 Jul 2010 01:36:13 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-1876</guid>
		<description>Glad it was helpful for you! And thanks for the pdf, can you tell me how to go about doing that?
Send me the link to your translation and I&#039;ll put it on the main index page.</description>
		<content:encoded><![CDATA[<p>Glad it was helpful for you! And thanks for the pdf, can you tell me how to go about doing that?<br />
Send me the link to your translation and I&#8217;ll put it on the main index page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: timgluz</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-1867</link>
		<dc:creator>timgluz</dc:creator>
		<pubDate>Fri, 09 Jul 2010 13:40:25 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-1867</guid>
		<description>Hi!

Thanks for hard work, i read all articles and my head-ache is gone :D 
Even twisted book,that i lent from library of uni, was too hard to understand at the beginning, but no more...

Btw, if anyone want pdf format - you can download it from my google docs: https://docs.google.com/fileview?id=1kKQM0G6CvqU3BZKG9pyc2h37oZpdUjC7vG9JWA0Bk9ba42e5ZpKyZpp8T2dc&amp;hl=en&amp;authkey=CJThyr8L

And at the moment i&#039;m working on estonian translation.</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>Thanks for hard work, i read all articles and my head-ache is gone <img src='http://krondo.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
Even twisted book,that i lent from library of uni, was too hard to understand at the beginning, but no more&#8230;</p>
<p>Btw, if anyone want pdf format &#8211; you can download it from my google docs: <a href="https://docs.google.com/fileview?id=1kKQM0G6CvqU3BZKG9pyc2h37oZpdUjC7vG9JWA0Bk9ba42e5ZpKyZpp8T2dc&amp;hl=en&amp;authkey=CJThyr8L" rel="nofollow">https://docs.google.com/fileview?id=1kKQM0G6CvqU3BZKG9pyc2h37oZpdUjC7vG9JWA0Bk9ba42e5ZpKyZpp8T2dc&amp;hl=en&amp;authkey=CJThyr8L</a></p>
<p>And at the moment i&#8217;m working on estonian translation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dave</title>
		<link>http://krondo.com/?page_id=1327&#038;cpage=1#comment-1132</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Fri, 04 Jun 2010 03:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://dpeticol.webfactional.com/blog/?page_id=1327#comment-1132</guid>
		<description>Nice to meet you, Shigeru :)</description>
		<content:encoded><![CDATA[<p>Nice to meet you, Shigeru <img src='http://krondo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
