<?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: Tim Bray and Erlang</title>
	<atom:link href="http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/feed/" rel="self" type="application/rss+xml" />
	<link>http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/</link>
	<description>Ask forgiveness, not permission.</description>
	<lastBuildDate>Sun, 06 Nov 2011 14:09:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: JavaSPEKTRUM Blogosphäre &#187; Blog Archiv &#187; Blogosphäre (aus JavaSPEKTRUM 06/07)</title>
		<link>http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/comment-page-1/#comment-134</link>
		<dc:creator>JavaSPEKTRUM Blogosphäre &#187; Blog Archiv &#187; Blogosphäre (aus JavaSPEKTRUM 06/07)</dc:creator>
		<pubDate>Tue, 16 Oct 2007 12:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/#comment-134</guid>
		<description>[...] liefert eine Implementierung in C++, Microsoft-Guru und SOAP-Vater Don Box kontert mit C#. Die erste Erlang-Lösung von CORBA-Guru Steve Vinoski funktioniert am besten mit 2400 (!) Erlang-Prozessen, liest allerdings [...]</description>
		<content:encoded><![CDATA[<p>[...] liefert eine Implementierung in C++, Microsoft-Guru und SOAP-Vater Don Box kontert mit C#. Die erste Erlang-Lösung von CORBA-Guru Steve Vinoski funktioniert am besten mit 2400 (!) Erlang-Prozessen, liest allerdings [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Burke</title>
		<link>http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/comment-page-1/#comment-17</link>
		<dc:creator>Bill Burke</dc:creator>
		<pubDate>Wed, 26 Sep 2007 21:40:47 +0000</pubDate>
		<guid isPermaLink="false">http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/#comment-17</guid>
		<description>Thank you Doug Lea for keeping Java &lt;a href=&quot;http://gee.cs.oswego.edu/dl/jsr166/dist/jsr166ydocs/jsr166y/forkjoin/package-summary.html#package_description&quot; rel=&quot;nofollow&quot;&gt;relevant&lt;/a&gt;, but still boring ;-)</description>
		<content:encoded><![CDATA[<p>Thank you Doug Lea for keeping Java <a href="http://gee.cs.oswego.edu/dl/jsr166/dist/jsr166ydocs/jsr166y/forkjoin/package-summary.html#package_description" rel="nofollow">relevant</a>, but still boring ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete Kirkham</title>
		<link>http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/comment-page-1/#comment-15</link>
		<dc:creator>Pete Kirkham</dc:creator>
		<pubDate>Wed, 26 Sep 2007 15:54:59 +0000</pubDate>
		<guid isPermaLink="false">http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/#comment-15</guid>
		<description>Ahh, worked that&#039;s the [^ .] at the end of the regex. Sorry for being a bit dense - first time trying to read erlang, and assumed from perl it $. was a variable not a character.</description>
		<content:encoded><![CDATA[<p>Ahh, worked that&#8217;s the [^ .] at the end of the regex. Sorry for being a bit dense &#8211; first time trying to read erlang, and assumed from perl it $. was a variable not a character.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steve</title>
		<link>http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/comment-page-1/#comment-14</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Wed, 26 Sep 2007 15:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/#comment-14</guid>
		<description>Hi Pete, that find_match code came directly from Tim&#039;s original code at &lt;http://www.tbray.org/ongoing/When/200x/2007/09/22/Erlang&gt;. See his process_match function.</description>
		<content:encoded><![CDATA[<p>Hi Pete, that find_match code came directly from Tim&#8217;s original code at <http: //www.tbray.org/ongoing/When/200x/2007/09/22/Erlang>. See his process_match function.</http:></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete Kirkham</title>
		<link>http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/comment-page-1/#comment-13</link>
		<dc:creator>Pete Kirkham</dc:creator>
		<pubDate>Wed, 26 Sep 2007 15:36:20 +0000</pubDate>
		<guid isPermaLink="false">http://steve.vinoski.net/blog/2007/09/23/tim-bray-and-erlang/#comment-13</guid>
		<description>Sorry, I thought it was performing a similar function to the other code people had posted - either just counting matches, or counting occurances of each URL request as per the original code. 

    case lists:member($., Last) of
        false -&gt; 1;
        true -&gt; 0
    end;

so you&#039;re only counting unique URLs, and not reporting on the number of  requests to the most popular URLs?</description>
		<content:encoded><![CDATA[<p>Sorry, I thought it was performing a similar function to the other code people had posted &#8211; either just counting matches, or counting occurances of each URL request as per the original code. </p>
<p>    case lists:member($., Last) of<br />
        false -&gt; 1;<br />
        true -&gt; 0<br />
    end;</p>
<p>so you&#8217;re only counting unique URLs, and not reporting on the number of  requests to the most popular URLs?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

