<?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 Weevil Genius</title>
	<atom:link href="http://weevilgenius.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://weevilgenius.net</link>
	<description>I&#039;m *your* sort of raving lunatic</description>
	<lastBuildDate>Sun, 20 May 2012 19:10:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Vim Tip &#8211; Relocating vim swapfiles by Kevin Steinhardt</title>
		<link>http://weevilgenius.net/2010/10/vim-tip-relocating-vim-swapfiles/comment-page-1/#comment-220</link>
		<dc:creator>Kevin Steinhardt</dc:creator>
		<pubDate>Sun, 20 May 2012 19:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=26#comment-220</guid>
		<description>Great tip. I&#039;ve updated my .vimrc ...now to distribute the new .vimrc to all my computers using Dropbox!</description>
		<content:encoded><![CDATA[<p>Great tip. I&#8217;ve updated my .vimrc &#8230;now to distribute the new .vimrc to all my computers using Dropbox!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Explain &#8211; Reference by Drupal teljesítménytuning &#124; Ineversity</title>
		<link>http://weevilgenius.net/2010/09/mysql-explain-reference/comment-page-1/#comment-212</link>
		<dc:creator>Drupal teljesítménytuning &#124; Ineversity</dc:creator>
		<pubDate>Fri, 06 Apr 2012 10:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=24#comment-212</guid>
		<description>[...] (mára ipari standarddá vált) MySQL adatbáziskezelő esetében a mysql_slow_query.log és az EXPLAIN utasítás adhat a legkönnyebben segítséget. Érdemes megfontolni, hogy MyISAM vagy InnoDB [...]</description>
		<content:encoded><![CDATA[<p>[...] (mára ipari standarddá vált) MySQL adatbáziskezelő esetében a mysql_slow_query.log és az EXPLAIN utasítás adhat a legkönnyebben segítséget. Érdemes megfontolni, hogy MyISAM vagy InnoDB [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating OS X-style DMG volumes in Linux by Sumi</title>
		<link>http://weevilgenius.net/2010/03/creating-os-x-style-dmg-volumes-in-linux/comment-page-1/#comment-211</link>
		<dc:creator>Sumi</dc:creator>
		<pubDate>Thu, 29 Mar 2012 14:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=3#comment-211</guid>
		<description>on ubuntu you can do 
sudo apt-get install hfsprogs</description>
		<content:encoded><![CDATA[<p>on ubuntu you can do<br />
sudo apt-get install hfsprogs</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML 5 &#8211; Websocket Chat Demo by lilzz</title>
		<link>http://weevilgenius.net/2010/10/html-5-websocket-chat-demo/comment-page-1/#comment-210</link>
		<dc:creator>lilzz</dc:creator>
		<pubDate>Thu, 29 Mar 2012 06:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=48#comment-210</guid>
		<description>Can PHPwebsocket used for server and Mobile devices instead of just web browsers and servers?</description>
		<content:encoded><![CDATA[<p>Can PHPwebsocket used for server and Mobile devices instead of just web browsers and servers?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML 5 &#8211; Websocket Chat Demo by Laszlo Dobos</title>
		<link>http://weevilgenius.net/2010/10/html-5-websocket-chat-demo/comment-page-1/#comment-209</link>
		<dc:creator>Laszlo Dobos</dc:creator>
		<pubDate>Mon, 26 Mar 2012 10:25:42 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=48#comment-209</guid>
		<description>&lt;a href=&quot;#comment-200&quot; rel=&quot;nofollow&quot;&gt;@nemo &lt;/a&gt; 

in the &quot;php server/server.php 127.0.0.1 8080&quot; the 127.0.0.1 means the 8080 port will only response to localhost (!!!!!!!!) requests. 

&#039;127.0.0.1&#039;
accepts clients from localhost (eg. 127.0.0.1)

&#039;0.0.0.0&#039;
accepts clients from localhost, and the server&#039;s network (eg. 127.0.0.1, 192.168.2.5, 10.20.30.40)

&#039;0&#039; or 0
accepts clients from localhost, the server&#039;s network, and external networks (eg. 127.0.0.1, 192.168.2.5, 10.20.30.40, 209.85.169.99)

So, start this way: 
php server/server.php 0 8080

Now you can open it with telnet, because the port is open. However the example won&#039;t work as new Google Chrome browsers using a newer draft specification (version 13), so you have to overwrite the old server code or try another newer websockets server implementation.

Now I try to implement this server: http://code.google.com/p/phpws/
If hope this will work fine.</description>
		<content:encoded><![CDATA[<p><a href="#comment-200" rel="nofollow">@nemo </a> </p>
<p>in the &#8220;php server/server.php 127.0.0.1 8080&#8243; the 127.0.0.1 means the 8080 port will only response to localhost (!!!!!!!!) requests. </p>
<p>&#8217;127.0.0.1&#8242;<br />
accepts clients from localhost (eg. 127.0.0.1)</p>
<p>&#8217;0.0.0.0&#8242;<br />
accepts clients from localhost, and the server&#8217;s network (eg. 127.0.0.1, 192.168.2.5, 10.20.30.40)</p>
<p>&#8217;0&#8242; or 0<br />
accepts clients from localhost, the server&#8217;s network, and external networks (eg. 127.0.0.1, 192.168.2.5, 10.20.30.40, 209.85.169.99)</p>
<p>So, start this way:<br />
php server/server.php 0 8080</p>
<p>Now you can open it with telnet, because the port is open. However the example won&#8217;t work as new Google Chrome browsers using a newer draft specification (version 13), so you have to overwrite the old server code or try another newer websockets server implementation.</p>
<p>Now I try to implement this server: <a href="http://code.google.com/p/phpws/" rel="nofollow">http://code.google.com/p/phpws/</a><br />
If hope this will work fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML 5 &#8211; Websocket Chat Demo by Laszlo Dobos</title>
		<link>http://weevilgenius.net/2010/10/html-5-websocket-chat-demo/comment-page-1/#comment-208</link>
		<dc:creator>Laszlo Dobos</dc:creator>
		<pubDate>Mon, 26 Mar 2012 10:18:57 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=48#comment-208</guid>
		<description>Author: Thanks for the post! I learned a lot from it.
Others: The post is old and the example not working with the actual browsers.</description>
		<content:encoded><![CDATA[<p>Author: Thanks for the post! I learned a lot from it.<br />
Others: The post is old and the example not working with the actual browsers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML 5 &#8211; Websocket Chat Demo by alice</title>
		<link>http://weevilgenius.net/2010/10/html-5-websocket-chat-demo/comment-page-1/#comment-206</link>
		<dc:creator>alice</dc:creator>
		<pubDate>Thu, 15 Mar 2012 09:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=48#comment-206</guid>
		<description>do you used chrome?</description>
		<content:encoded><![CDATA[<p>do you used chrome?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML 5 &#8211; Websocket Chat Demo by alice</title>
		<link>http://weevilgenius.net/2010/10/html-5-websocket-chat-demo/comment-page-1/#comment-205</link>
		<dc:creator>alice</dc:creator>
		<pubDate>Thu, 15 Mar 2012 08:41:05 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=48#comment-205</guid>
		<description>&lt;a href=&quot;#comment-204&quot; rel=&quot;nofollow&quot;&gt;@alice  &lt;/a&gt; 

Did you find a solution?

Regards.</description>
		<content:encoded><![CDATA[<p><a href="#comment-204" rel="nofollow">@alice  </a> </p>
<p>Did you find a solution?</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML 5 &#8211; Websocket Chat Demo by alice</title>
		<link>http://weevilgenius.net/2010/10/html-5-websocket-chat-demo/comment-page-1/#comment-204</link>
		<dc:creator>alice</dc:creator>
		<pubDate>Thu, 15 Mar 2012 08:40:50 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=48#comment-204</guid>
		<description>me, too</description>
		<content:encoded><![CDATA[<p>me, too</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML 5 &#8211; Websocket Chat Demo by alice</title>
		<link>http://weevilgenius.net/2010/10/html-5-websocket-chat-demo/comment-page-1/#comment-203</link>
		<dc:creator>alice</dc:creator>
		<pubDate>Thu, 15 Mar 2012 08:36:06 +0000</pubDate>
		<guid isPermaLink="false">http://weevilgenius.net/?p=48#comment-203</guid>
		<description>Hi

As far as I know,

ws://localhost:8000/socket/server/startDaemon.php
==&gt; Scheme://Host:Port/WebSocketServer

I hope this information helps you.

Regards.</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>As far as I know,</p>
<p>ws://localhost:8000/socket/server/startDaemon.php<br />
==&gt; Scheme://Host:Port/WebSocketServer</p>
<p>I hope this information helps you.</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

