<?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 for zerocaffe.in</title>
	<atom:link href="http://zerocaffe.in/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://zerocaffe.in</link>
	<description>Blog of Uncaffeinated Experiences on Entrepreneurship and Everything Else</description>
	<lastBuildDate>Sat, 01 Aug 2009 12:57:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>Comment on Multiuser Chat using Flex and Ruby by shrihari</title>
		<link>http://zerocaffe.in/2008/05/14/multiuser-chat-using-flex-and-ruby/#comment-53600</link>
		<dc:creator>shrihari</dc:creator>
		<pubDate>Sat, 01 Aug 2009 12:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/2008/05/14/multiuser-chat-using-flex-and-ruby/#comment-53600</guid>
		<description>Hello,

    How can i start the ruby server and how can i interact with it through flex</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>    How can i start the ruby server and how can i interact with it through flex</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Erlang Ring Code by Bogdan Puscas</title>
		<link>http://zerocaffe.in/2008/07/10/erlang-ring-code/#comment-51612</link>
		<dc:creator>Bogdan Puscas</dc:creator>
		<pubDate>Wed, 01 Jul 2009 17:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/?p=39#comment-51612</guid>
		<description>Try this...


-module(proces).
-export([do_ring/1, loopx/0, loopm/3, do_test/0]).

do_ring(N) -&gt;     A = spawn(proces,loopx,[]),
                  A ! {create, A, N-1},
                  A.


loopm(Pid0,NextPid, N) -&gt; receive
        0 -&gt;
%%          _ = io:format(&quot;~s ~b~n&quot;,[&quot;0 in node&quot;, N]),
%%          _ = io:format(&quot;~w ~n&quot;, [now()]),
            loopm(Pid0, NextPid, N);
        die -&gt;
%%          _ = io:format(&quot;~s ~b~n&quot;,[&quot;die in node&quot;, N]),
            NextPid ! die;
        M when NextPid == Pid0 -&gt;
%%           _ = io:format(&quot;~b ~s ~b~n&quot;,[M,&quot;in node!&quot;, N]),
            NextPid ! M-1,
            loopm(Pid0, NextPid, N);
        M  -&gt;
%%           _ = io:format(&quot;~b ~s ~b~n&quot;,[M,&quot;in node&quot;, N]),
            NextPid ! M,
            loopm(Pid0, NextPid, N)
       end.

loopx() -&gt; receive
        {create, Pid0, 0} -&gt;
            loopm(Pid0,Pid0, 0);
        {create, Pid0, N} -&gt;
            A = spawn(proces, loopx, []),
            A ! {create, Pid0, N-1},
            loopm(Pid0,A,N)
        end.

do_test() -&gt;
            P = do_ring(5000),
            _ = io:format(&quot;~w ~n&quot;, [now()]),
            P ! 1000,
            _ = io:format(&quot;~w ~n&quot;, [now()]).</description>
		<content:encoded><![CDATA[<p>Try this&#8230;</p>
<p>-module(proces).<br />
-export([do_ring/1, loopx/0, loopm/3, do_test/0]).</p>
<p>do_ring(N) -&gt;     A = spawn(proces,loopx,[]),<br />
                  A ! {create, A, N-1},<br />
                  A.</p>
<p>loopm(Pid0,NextPid, N) -&gt; receive<br />
        0 -&gt;<br />
%%          _ = io:format(&#8220;~s ~b~n&#8221;,["0 in node", N]),<br />
%%          _ = io:format(&#8220;~w ~n&#8221;, [now()]),<br />
            loopm(Pid0, NextPid, N);<br />
        die -&gt;<br />
%%          _ = io:format(&#8220;~s ~b~n&#8221;,["die in node", N]),<br />
            NextPid ! die;<br />
        M when NextPid == Pid0 -&gt;<br />
%%           _ = io:format(&#8220;~b ~s ~b~n&#8221;,[M,"in node!", N]),<br />
            NextPid ! M-1,<br />
            loopm(Pid0, NextPid, N);<br />
        M  -&gt;<br />
%%           _ = io:format(&#8220;~b ~s ~b~n&#8221;,[M,"in node", N]),<br />
            NextPid ! M,<br />
            loopm(Pid0, NextPid, N)<br />
       end.</p>
<p>loopx() -&gt; receive<br />
        {create, Pid0, 0} -&gt;<br />
            loopm(Pid0,Pid0, 0);<br />
        {create, Pid0, N} -&gt;<br />
            A = spawn(proces, loopx, []),<br />
            A ! {create, Pid0, N-1},<br />
            loopm(Pid0,A,N)<br />
        end.</p>
<p>do_test() -&gt;<br />
            P = do_ring(5000),<br />
            _ = io:format(&#8220;~w ~n&#8221;, [now()]),<br />
            P ! 1000,<br />
            _ = io:format(&#8220;~w ~n&#8221;, [now()]).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on the woods are lovely, dark and deep. but &#8230; by poorna shashank</title>
		<link>http://zerocaffe.in/2008/01/19/the-woods-are-lovely-dark-and-deep-but/#comment-46710</link>
		<dc:creator>poorna shashank</dc:creator>
		<pubDate>Sun, 12 Apr 2009 11:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/2008/01/19/the-woods-are-lovely-dark-and-deep-but/#comment-46710</guid>
		<description>@OldHand
Yes, Proto.in is a trailblazer when it was the first forum for startups to showcase their warez. In all due respect, All the other startup marketing events have picked from that idea.

However, as for what value is Proto providing to startups that showcase there, thats debateable i guess. Our startup got some decent coverage because of proto. Cant speak of others though.

Sorry Oldie cant pull out his Yambi&#039;s comment. It was marketing his services but I guess I will live with his disgression.</description>
		<content:encoded><![CDATA[<p>@OldHand<br />
Yes, Proto.in is a trailblazer when it was the first forum for startups to showcase their warez. In all due respect, All the other startup marketing events have picked from that idea.</p>
<p>However, as for what value is Proto providing to startups that showcase there, thats debateable i guess. Our startup got some decent coverage because of proto. Cant speak of others though.</p>
<p>Sorry Oldie cant pull out his Yambi&#8217;s comment. It was marketing his services but I guess I will live with his disgression.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on the woods are lovely, dark and deep. but &#8230; by Old Hand</title>
		<link>http://zerocaffe.in/2008/01/19/the-woods-are-lovely-dark-and-deep-but/#comment-41538</link>
		<dc:creator>Old Hand</dc:creator>
		<pubDate>Tue, 03 Mar 2009 22:41:07 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/2008/01/19/the-woods-are-lovely-dark-and-deep-but/#comment-41538</guid>
		<description>Proto.in is a &quot;trailblazer&quot;? In what sense? Whats your definition of a trailblazer and what has proto.in done so far, apart from showcasing a bunch of startups that apply to being showcased? 

Is it any different than any other startup marketing event?

Also its pathetic of the Yambi guy to be using THIS thread market his services! Can you please pull out his comment?</description>
		<content:encoded><![CDATA[<p>Proto.in is a &#8220;trailblazer&#8221;? In what sense? Whats your definition of a trailblazer and what has proto.in done so far, apart from showcasing a bunch of startups that apply to being showcased? </p>
<p>Is it any different than any other startup marketing event?</p>
<p>Also its pathetic of the Yambi guy to be using THIS thread market his services! Can you please pull out his comment?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Globalization: Wolf In Sheep&#8217;s Clothing(Imperialism 2010) by This</title>
		<link>http://zerocaffe.in/2006/10/19/globalization-wolf-in-sheeps-clothingimperialism-2010/#comment-39240</link>
		<dc:creator>This</dc:creator>
		<pubDate>Tue, 10 Feb 2009 16:33:40 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/2006/10/19/globalization-wolf-in-sheeps-clothingimperialism-2010/#comment-39240</guid>
		<description>&lt;strong&gt;This...&lt;/strong&gt;

Have you been blogging long? The Persistent Middle East Crises: The Path to an Enduring Peace is ... is a great blog, you have a great writing style too.  Found this post last Tuesday and i&#039;ve been reading your blog since.  I&#039;ve subscribed to your RS...</description>
		<content:encoded><![CDATA[<p><strong>This&#8230;</strong></p>
<p>Have you been blogging long? The Persistent Middle East Crises: The Path to an Enduring Peace is &#8230; is a great blog, you have a great writing style too.  Found this post last Tuesday and i&#8217;ve been reading your blog since.  I&#8217;ve subscribed to your RS&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Value vs Revenue for startups by Voritrietrofs</title>
		<link>http://zerocaffe.in/2006/11/03/value-vs-revenue-for-startups/#comment-36826</link>
		<dc:creator>Voritrietrofs</dc:creator>
		<pubDate>Fri, 16 Jan 2009 08:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/2006/11/03/value-vs-revenue-for-startups/#comment-36826</guid>
		<description>Hey forum!

It&#039;s my first time I am here.

So i&#039;d like to ask you  if a world financial crisis affected someone among you?</description>
		<content:encoded><![CDATA[<p>Hey forum!</p>
<p>It&#8217;s my first time I am here.</p>
<p>So i&#8217;d like to ask you  if a world financial crisis affected someone among you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Value vs Revenue for startups by Juinnifomfofs</title>
		<link>http://zerocaffe.in/2006/11/03/value-vs-revenue-for-startups/#comment-36052</link>
		<dc:creator>Juinnifomfofs</dc:creator>
		<pubDate>Wed, 07 Jan 2009 13:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/2006/11/03/value-vs-revenue-for-startups/#comment-36052</guid>
		<description>What is bumburbia?</description>
		<content:encoded><![CDATA[<p>What is bumburbia?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiuser Chat using Flex and Ruby by Omar Malave</title>
		<link>http://zerocaffe.in/2008/05/14/multiuser-chat-using-flex-and-ruby/#comment-35282</link>
		<dc:creator>Omar Malave</dc:creator>
		<pubDate>Mon, 29 Dec 2008 03:03:22 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/2008/05/14/multiuser-chat-using-flex-and-ruby/#comment-35282</guid>
		<description>Hi, im using this example but with the java server class... well i dont know if it connect to but when i type something in the inputbox the server get null and it close.. any help?</description>
		<content:encoded><![CDATA[<p>Hi, im using this example but with the java server class&#8230; well i dont know if it connect to but when i type something in the inputbox the server get null and it close.. any help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Entrepreneurship for students II: 11 things to do before you leap by Gautham Krishnadas</title>
		<link>http://zerocaffe.in/2006/10/29/entrepreneurship-for-students-ii-11-things-to-do-before-you-leap/#comment-34775</link>
		<dc:creator>Gautham Krishnadas</dc:creator>
		<pubDate>Mon, 22 Dec 2008 16:41:37 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/2006/10/29/entrepreneurship-for-students-ii-11-things-to-do-before-you-leap/#comment-34775</guid>
		<description>That was a great bit of information on entrepreneurship.</description>
		<content:encoded><![CDATA[<p>That was a great bit of information on entrepreneurship.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Value vs Revenue for startups by Friegeideonry</title>
		<link>http://zerocaffe.in/2006/11/03/value-vs-revenue-for-startups/#comment-34590</link>
		<dc:creator>Friegeideonry</dc:creator>
		<pubDate>Fri, 19 Dec 2008 13:48:38 +0000</pubDate>
		<guid isPermaLink="false">http://zerocaffe.in/2006/11/03/value-vs-revenue-for-startups/#comment-34590</guid>
		<description>Hi all! 
 
As a fresh zerocaffe.in user i just wanted to say hello to everyone else who uses this site :-)</description>
		<content:encoded><![CDATA[<p>Hi all! </p>
<p>As a fresh zerocaffe.in user i just wanted to say hello to everyone else who uses this site <img src='http://zerocaffe.in/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

