<?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 gehrcke.de</title> <atom:link href="http://gehrcke.de/comments/feed/" rel="self" type="application/rss+xml" /><link>http://gehrcke.de</link> <description>Jan-Philip Gehrcke&#039;s website</description> <lastBuildDate>Fri, 18 May 2012 09:53:20 +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 WP-GeSHi-Highlight by Jan-Philip Gehrcke</title><link>http://gehrcke.de/wp-geshi-highlight/comment-page-1/#comment-6799</link> <dc:creator>Jan-Philip Gehrcke</dc:creator> <pubDate>Fri, 18 May 2012 09:53:20 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/#comment-6799</guid> <description>I don&#039;t have those plans.</description> <content:encoded><![CDATA[<p>I don&#8217;t have those plans.</p> ]]></content:encoded> </item> <item><title>Comment on WP-GeSHi-Highlight by chitgoks</title><link>http://gehrcke.de/wp-geshi-highlight/comment-page-1/#comment-6797</link> <dc:creator>chitgoks</dc:creator> <pubDate>Fri, 18 May 2012 06:49:00 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/#comment-6797</guid> <description>do you have plans to add a collapse feature for the code?</description> <content:encoded><![CDATA[<p>do you have plans to add a collapse feature for the code?</p> ]]></content:encoded> </item> <item><title>Comment on WP-GeSHi-Highlight by Kolorowanie składni &#187; Paweł Mazur</title><link>http://gehrcke.de/wp-geshi-highlight/comment-page-1/#comment-6790</link> <dc:creator>Kolorowanie składni &#187; Paweł Mazur</dc:creator> <pubDate>Sat, 12 May 2012 15:32:48 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/#comment-6790</guid> <description>[...] gotowych dodatków takich jak Better WordPress Syntax, czy WP-GeSHi-Highlight postanowiłem zrezygnować z tych udogodnień i wykorzystać naprawdę ciekawe i na dłużą metę [...]</description> <content:encoded><![CDATA[<p>[...] gotowych dodatków takich jak Better WordPress Syntax, czy WP-GeSHi-Highlight postanowiłem zrezygnować z tych udogodnień i wykorzystać naprawdę ciekawe i na dłużą metę [...]</p> ]]></content:encoded> </item> <item><title>Comment on WP-GeSHi-Highlight by Bharat Mandava</title><link>http://gehrcke.de/wp-geshi-highlight/comment-page-1/#comment-6769</link> <dc:creator>Bharat Mandava</dc:creator> <pubDate>Mon, 30 Apr 2012 06:48:14 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/#comment-6769</guid> <description>Fantastic plugin, its loading fast and displays code without any clutters.</description> <content:encoded><![CDATA[<p>Fantastic plugin, its loading fast and displays code without any clutters.</p> ]]></content:encoded> </item> <item><title>Comment on Reading files in C++ using ifstream: dealing correctly with badbit, failbit, eofbit, and perror() by Santosh</title><link>http://gehrcke.de/2011/06/reading-files-in-c-using-ifstream-dealing-correctly-with-badbit-failbit-eofbit-and-perror/comment-page-1/#comment-6728</link> <dc:creator>Santosh</dc:creator> <pubDate>Thu, 05 Apr 2012 14:41:10 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/?p=1639#comment-6728</guid> <description>In my c++ code I used is_open(), when I am running this code on Solaris 10 multi-core system I am facing issue. With 14 core I am getting true returned from is_open() and in 15 core machine I am getting false. In the system just increasing core by one, the is_open() function behavior is changed.</description> <content:encoded><![CDATA[<p>In my c++ code I used is_open(), when I am running this code on Solaris 10 multi-core system I am facing issue. With 14 core I am getting true returned from is_open() and in 15 core machine I am getting false. In the system just increasing core by one, the is_open() function behavior is changed.</p> ]]></content:encoded> </item> <item><title>Comment on Flash socket policy server in Python based on gevent by Nelson</title><link>http://gehrcke.de/2011/06/flash-socket-policy-server-in-python-based-on-gevent/comment-page-1/#comment-6671</link> <dc:creator>Nelson</dc:creator> <pubDate>Sat, 03 Mar 2012 04:34:18 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/?p=1612#comment-6671</guid> <description>Hello!
I have a problem that is breaking my head over a week!
I have a Flash game that works under Python.
The game works fine in localhost, but doesn&#039;t work if
someone try to play it from another computer. You can access mysql,
login into the server, but can&#039;t play.
When play it  in localhost the firestarter get first a 127.0.01 entry in 80 port, unknow service.
Then when the game starts the entry change to 127.0.0.1 2001, unknow service.
When other computer try to play, get a entry in 80 port, and stops there.
Below some file parts.
-----------#----------------
This is the config.py
mysql_host = &#039;localhost&#039;
mysql_user = &#039;root&#039;
mysql_pass = &#039;pass&#039;
root_host = &#039;localhost&#039;
policy_line = &#039;
&#039;
------------#-------------------
The init.py
from policy_server import PolicyFactory
from game_server import gameFactory
from twisted.internet import reactor
def main():
print &#039;Server Started...&#039;
reactor.listenTCP(843, PolicyFactory())
GameServer = GameFactory(&#039;localhost&#039;, &#039;pt_br&#039;)
reactor.listenTCP(1024, gameServer)
reactor.listenTCP(2001, gameServer)
reactor.listenTCP(3001, gameServer)
reactor.listenTCP(4001, gameServer)
reactor.listenTCP(6001, gameServer)
reactor.listenTCP(7001, gameServer)
reactor.listenTCP(8001, gameServer)
reactor.listenTCP(9001, gameServer)
reactor.listenTCP(9002, gameServer)
reactor.listenTCP(9092, gameServer)
reactor.run()
if (__name__ == &#039;__main__&#039;):
main()
----------------#-------------------------
crossdomain.xml
--------------#--------------------------------------
THX</description> <content:encoded><![CDATA[<p>Hello!</p><p>I have a problem that is breaking my head over a week!</p><p>I have a Flash game that works under Python.</p><p>The game works fine in localhost, but doesn&#8217;t work if</p><p>someone try to play it from another computer. You can access mysql,</p><p>login into the server, but can&#8217;t play.</p><p>When play it  in localhost the firestarter get first a 127.0.01 entry in 80 port, unknow service.</p><p>Then when the game starts the entry change to 127.0.0.1 2001, unknow service.</p><p>When other computer try to play, get a entry in 80 port, and stops there.</p><p>Below some file parts.</p><p>&#8212;&#8212;&#8212;&#8211;#&#8212;&#8212;&#8212;&#8212;&#8212;-</p><p>This is the config.py</p><p>mysql_host = &#8216;localhost&#8217;</p><p>mysql_user = &#8216;root&#8217;</p><p>mysql_pass = &#8216;pass&#8217;</p><p>root_host = &#8216;localhost&#8217;</p><p>policy_line = &#8216;</p><p>&#8216;</p><p>&#8212;&#8212;&#8212;&#8212;#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p><p>The init.py</p><p>from policy_server import PolicyFactory</p><p>from game_server import gameFactory</p><p>from twisted.internet import reactor</p><p>def main():</p><p> print &#8216;Server Started&#8230;&#8217;</p><p> reactor.listenTCP(843, PolicyFactory())</p><p> GameServer = GameFactory(&#8216;localhost&#8217;, &#8216;pt_br&#8217;)</p><p> reactor.listenTCP(1024, gameServer)</p><p> reactor.listenTCP(2001, gameServer)</p><p> reactor.listenTCP(3001, gameServer)</p><p> reactor.listenTCP(4001, gameServer)</p><p> reactor.listenTCP(6001, gameServer)</p><p> reactor.listenTCP(7001, gameServer)</p><p> reactor.listenTCP(8001, gameServer)</p><p> reactor.listenTCP(9001, gameServer)</p><p> reactor.listenTCP(9002, gameServer)</p><p> reactor.listenTCP(9092, gameServer)</p><p> reactor.run()</p><p>if (__name__ == &#8216;__main__&#8217;):</p><p> main()</p><p>&#8212;&#8212;&#8212;&#8212;&#8212;-#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p><p>crossdomain.xml</p><p>&#8212;&#8212;&#8212;&#8212;&#8211;#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p><p>THX</p> ]]></content:encoded> </item> <item><title>Comment on WP-GeSHi-Highlight by leonnib4</title><link>http://gehrcke.de/wp-geshi-highlight/comment-page-1/#comment-6669</link> <dc:creator>leonnib4</dc:creator> <pubDate>Wed, 29 Feb 2012 15:29:25 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/#comment-6669</guid> <description>If you&#039;re looking for simplicity try:
http://wordpress.org/extend/plugins/wp-shkshell/</description> <content:encoded><![CDATA[<p>If you&#8217;re looking for simplicity try:</p><p><a
href="http://wordpress.org/extend/plugins/wp-shkshell/" rel="nofollow">http://wordpress.org/extend/plugins/wp-shkshell/</a></p> ]]></content:encoded> </item> <item><title>Comment on Python backup/snapshot script with compression (BZ2, 7zip) by sulabh varshney</title><link>http://gehrcke.de/2010/02/python-backupsnapshot-script-with-compression-bz2-7zip/comment-page-1/#comment-6666</link> <dc:creator>sulabh varshney</dc:creator> <pubDate>Wed, 22 Feb 2012 08:57:09 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/?p=1134#comment-6666</guid> <description>awesome!! thanx a ton for this wonderful script! I added this to my crontab and it worked like a charm!</description> <content:encoded><![CDATA[<p>awesome!! thanx a ton for this wonderful script! I added this to my crontab and it worked like a charm!</p> ]]></content:encoded> </item> <item><title>Comment on WP-GeSHi-Highlight by Markus Ewald</title><link>http://gehrcke.de/wp-geshi-highlight/comment-page-1/#comment-6664</link> <dc:creator>Markus Ewald</dc:creator> <pubDate>Tue, 21 Feb 2012 15:32:00 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/#comment-6664</guid> <description>Ah, I didn&#039;t see the escaped=&quot;true&quot; option. That does exactly what I want!</description> <content:encoded><![CDATA[<p>Ah, I didn&#8217;t see the escaped=&quot;true&quot; option. That does exactly what I want!</p> ]]></content:encoded> </item> <item><title>Comment on WP-GeSHi-Highlight by Jan-Philip Gehrcke</title><link>http://gehrcke.de/wp-geshi-highlight/comment-page-1/#comment-6662</link> <dc:creator>Jan-Philip Gehrcke</dc:creator> <pubDate>Tue, 21 Feb 2012 13:34:36 +0000</pubDate> <guid
isPermaLink="false">http://gehrcke.de/#comment-6662</guid> <description>Carina,
sorry for the late reply. I&#039;ve not &quot;registered &lt;code&gt;wp-geshi-highlight.css&lt;/code&gt; with the theme editor&quot;, because I did not know that this is possible. Maybe I will look into that. Are you still requesting it? :)</description> <content:encoded><![CDATA[<p>Carina,</p><p>sorry for the late reply. I&#8217;ve not &#8220;registered <code>wp-geshi-highlight.css</code> with the theme editor&#8221;, because I did not know that this is possible. Maybe I will look into that. Are you still requesting it? <img
src='http://gehrcke.de/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> </channel> </rss>
<!-- Dynamic page generated in 1.639 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-18 12:34:09 -->

