<?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 on: A Simple Perl Server</title>
	<atom:link href="http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/</link>
	<description>Leveraging Perl and Emacs</description>
	<lastBuildDate>Tue, 07 May 2013 11:25:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/#comment-7520</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Thu, 07 May 2009 21:39:04 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/#comment-7520</guid>
		<description><![CDATA[@Gabriel Saldana - thanks for the pointers.  For making &lt;em&gt;(make-network-process)&lt;/em&gt; asynchronous, how far did you get?

@phayes - that is pretty cool, and gives me the idea to make a FastCGI version of emacs.  (just kidding!)

@Saint Aardvark - I didn&#039;t think of &lt;em&gt;netcat&lt;/em&gt; (and by &lt;em&gt;all the work you did&lt;/em&gt; you&#039;re being sarcastic right? :))  But I think that the Perl has the advantage as I&#039;ll be able to emulate a crappy internet connection by adding a sleep line to my server when I&#039;m looking at the asynchronous stuff.]]></description>
		<content:encoded><![CDATA[<p>@Gabriel Saldana &#8211; thanks for the pointers.  For making <em>(make-network-process)</em> asynchronous, how far did you get?</p>
<p>@phayes &#8211; that is pretty cool, and gives me the idea to make a FastCGI version of emacs.  (just kidding!)</p>
<p>@Saint Aardvark &#8211; I didn&#8217;t think of <em>netcat</em> (and by <em>all the work you did</em> you&#8217;re being sarcastic right? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )  But I think that the Perl has the advantage as I&#8217;ll be able to emulate a crappy internet connection by adding a sleep line to my server when I&#8217;m looking at the asynchronous stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saint Aardvark</title>
		<link>http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/#comment-7518</link>
		<dc:creator><![CDATA[Saint Aardvark]]></dc:creator>
		<pubDate>Thu, 07 May 2009 21:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/#comment-7518</guid>
		<description><![CDATA[As for a simple server...hate to say it after all the work you did, but have you tried netcat?  It looks pretty darned close to what you did in Perl.]]></description>
		<content:encoded><![CDATA[<p>As for a simple server&#8230;hate to say it after all the work you did, but have you tried netcat?  It looks pretty darned close to what you did in Perl.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phayes</title>
		<link>http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/#comment-7516</link>
		<dc:creator><![CDATA[phayes]]></dc:creator>
		<pubDate>Thu, 07 May 2009 16:02:49 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/#comment-7516</guid>
		<description><![CDATA[Speaking of which there is (make-network-process :server t ...)  now and at least one “simple server to play with” can be had without leaving emacs:

http://repo.or.cz/w/muse-el.git?a=blob;f=contrib/httpd.el;h=083dcb6575fdddfccc4fb4cb7ea4db6476f4b174;hb=HEAD]]></description>
		<content:encoded><![CDATA[<p>Speaking of which there is (make-network-process :server t &#8230;)  now and at least one “simple server to play with” can be had without leaving emacs:</p>
<p><a href="http://repo.or.cz/w/muse-el.git?a=blob;f=contrib/httpd.el;h=083dcb6575fdddfccc4fb4cb7ea4db6476f4b174;hb=HEAD" rel="nofollow">http://repo.or.cz/w/muse-el.git?a=blob;f=contrib/httpd.el;h=083dcb6575fdddfccc4fb4cb7ea4db6476f4b174;hb=HEAD</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel Saldana</title>
		<link>http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/#comment-7514</link>
		<dc:creator><![CDATA[Gabriel Saldana]]></dc:creator>
		<pubDate>Thu, 07 May 2009 15:39:53 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/2009/05/07/a-simple-perl-server/#comment-7514</guid>
		<description><![CDATA[For networking there&#039;s url.el package or using the functions:

(open-network-stream) which is synchronous and 
(make-network-process) which can be asynchronous if the parameter is set. I haven&#039;t been able to make the last one work, but check it out yourself.

 If you make it work, please let me know the syntax. I&#039;m trying to make emacs identica-mode ( http://blog.nethazard.net/identica-mode-for-emacs/ ) asynchronous, so that it won&#039;t freeze emacs when internet connection is crappy.]]></description>
		<content:encoded><![CDATA[<p>For networking there&#8217;s url.el package or using the functions:</p>
<p>(open-network-stream) which is synchronous and<br />
(make-network-process) which can be asynchronous if the parameter is set. I haven&#8217;t been able to make the last one work, but check it out yourself.</p>
<p> If you make it work, please let me know the syntax. I&#8217;m trying to make emacs identica-mode ( <a href="http://blog.nethazard.net/identica-mode-for-emacs/" rel="nofollow">http://blog.nethazard.net/identica-mode-for-emacs/</a> ) asynchronous, so that it won&#8217;t freeze emacs when internet connection is crappy.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
