<?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 gruchalski.com</title>
	<atom:link href="http://gruchalski.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://gruchalski.com</link>
	<description>just another blog in all that noise...</description>
	<lastBuildDate>Thu, 12 Jan 2012 21:23:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on ColdFusion 9 crashing? Try different garbage collection by radekg</title>
		<link>http://gruchalski.com/2011/03/24/coldfusion-9-crashing-try-different-garbage-collection/comment-page-1/#comment-58859</link>
		<dc:creator>radekg</dc:creator>
		<pubDate>Thu, 12 Jan 2012 21:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=504#comment-58859</guid>
		<description>Hopefully, fingers crossed. Please let us know in some time if this helped!</description>
		<content:encoded><![CDATA[<p>Hopefully, fingers crossed. Please let us know in some time if this helped!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ColdFusion 9 crashing? Try different garbage collection by Jason</title>
		<link>http://gruchalski.com/2011/03/24/coldfusion-9-crashing-try-different-garbage-collection/comment-page-1/#comment-58854</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 12 Jan 2012 20:41:42 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=504#comment-58854</guid>
		<description>awesome, thnx for sharing that. I&#039;ve been getting jrun eating up memory every couple weeks for what appeared to be no reason. Also running on a VM - so this looks very promising.</description>
		<content:encoded><![CDATA[<p>awesome, thnx for sharing that. I&#8217;ve been getting jrun eating up memory every couple weeks for what appeared to be no reason. Also running on a VM &#8211; so this looks very promising.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMLSocket.send / Socket.writeUTFBytes doesn&#8217;t work? by Nick</title>
		<link>http://gruchalski.com/2009/06/11/xmlsocket-send-socket-writeutfbytes-doesnt-work/comment-page-1/#comment-47325</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Wed, 26 Oct 2011 04:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=298#comment-47325</guid>
		<description>I hope you don&#039;t mind, but thought it might be useful to leave this here for others (found your post when looking for help) - I had a similar problem without the involvement of Java; just listening with netcat, couldn&#039;t seem to write to the AS3 socket.

My problem was that I wasn&#039;t waiting for successful connection before writing to the socket. Code I needed looked like (where s is my Socket):

s.addEventListener(flash.events.Event.CONNECT, onConnect);

then
                private function onConnect(event:Event):void {
                        if(s.connected) {
                                textOut.appendText(&quot;connected&quot;);
                                s.writeUTF( &quot;SUP ...&quot;);
                                s.flush();
                        }
                }</description>
		<content:encoded><![CDATA[<p>I hope you don&#8217;t mind, but thought it might be useful to leave this here for others (found your post when looking for help) &#8211; I had a similar problem without the involvement of Java; just listening with netcat, couldn&#8217;t seem to write to the AS3 socket.</p>
<p>My problem was that I wasn&#8217;t waiting for successful connection before writing to the socket. Code I needed looked like (where s is my Socket):</p>
<p>s.addEventListener(flash.events.Event.CONNECT, onConnect);</p>
<p>then<br />
                private function onConnect(event:Event):void {<br />
                        if(s.connected) {<br />
                                textOut.appendText(&#8220;connected&#8221;);<br />
                                s.writeUTF( &#8220;SUP &#8230;&#8221;);<br />
                                s.flush();<br />
                        }<br />
                }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex DataGridColumn width set to the longest value of that column by Abdalla Samy</title>
		<link>http://gruchalski.com/2009/06/16/flex-datagridcolumn-width-set-to-the-longest-value-in-that-column/comment-page-1/#comment-29777</link>
		<dc:creator>Abdalla Samy</dc:creator>
		<pubDate>Mon, 13 Jun 2011 12:52:12 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=312#comment-29777</guid>
		<description>Check this example
http://www.flex4ex.com/flex-datagrid/autofit-column-width-to-fit-the-longest-word/</description>
		<content:encoded><![CDATA[<p>Check this example<br />
<a href="http://www.flex4ex.com/flex-datagrid/autofit-column-width-to-fit-the-longest-word/" rel="nofollow">http://www.flex4ex.com/flex-datagrid/autofit-column-width-to-fit-the-longest-word/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMLSocket.send / Socket.writeUTFBytes doesn&#8217;t work? by Dan</title>
		<link>http://gruchalski.com/2009/06/11/xmlsocket-send-socket-writeutfbytes-doesnt-work/comment-page-1/#comment-23275</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Tue, 19 Apr 2011 14:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=298#comment-23275</guid>
		<description>Was just wondering if anyone could help me with multithreading, in regards to this server how would I allow connections from more than one client at a time?
I believe this is an old post, but it is very useful in dealing with policy files.

Dan</description>
		<content:encoded><![CDATA[<p>Was just wondering if anyone could help me with multithreading, in regards to this server how would I allow connections from more than one client at a time?<br />
I believe this is an old post, but it is very useful in dealing with policy files.</p>
<p>Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMLSocket.send / Socket.writeUTFBytes doesn&#8217;t work? by java and flash - Java Forums</title>
		<link>http://gruchalski.com/2009/06/11/xmlsocket-send-socket-writeutfbytes-doesnt-work/comment-page-1/#comment-23130</link>
		<dc:creator>java and flash - Java Forums</dc:creator>
		<pubDate>Mon, 18 Apr 2011 15:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=298#comment-23130</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Configuring postfix as a relay for GMail by radekg</title>
		<link>http://gruchalski.com/2009/04/27/configuring-postfix-as-a-relay-for-gmail/comment-page-1/#comment-22834</link>
		<dc:creator>radekg</dc:creator>
		<pubDate>Fri, 15 Apr 2011 15:42:50 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=196#comment-22834</guid>
		<description>To be honest I&#039;m not sure what would be better. AFAIR this article was compiled from few other sources. I remember trying setting postfix up on Ubuntu 10.10 using these instructions and couldn&#039;t get it working so it might be out of date a bit.</description>
		<content:encoded><![CDATA[<p>To be honest I&#8217;m not sure what would be better. AFAIR this article was compiled from few other sources. I remember trying setting postfix up on Ubuntu 10.10 using these instructions and couldn&#8217;t get it working so it might be out of date a bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Configuring postfix as a relay for GMail by Willem</title>
		<link>http://gruchalski.com/2009/04/27/configuring-postfix-as-a-relay-for-gmail/comment-page-1/#comment-22822</link>
		<dc:creator>Willem</dc:creator>
		<pubDate>Fri, 15 Apr 2011 14:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=196#comment-22822</guid>
		<description>I found your article on postfix and hope it&#039;s still accurate. You say to choose the satellite system option for postfix on installation. But wouldn&#039;t that relay incoming mail to the gmail smarthost as well? I would like my cms to be able to handle received mail e.g. for blog posts. Would internet with smarthost be a better option in that case?

PS In debian the CA.sh script is located at /usr/lib/ssl/misc/CA.sh.</description>
		<content:encoded><![CDATA[<p>I found your article on postfix and hope it&#8217;s still accurate. You say to choose the satellite system option for postfix on installation. But wouldn&#8217;t that relay incoming mail to the gmail smarthost as well? I would like my cms to be able to handle received mail e.g. for blog posts. Would internet with smarthost be a better option in that case?</p>
<p>PS In debian the CA.sh script is located at /usr/lib/ssl/misc/CA.sh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMLSocket.send / Socket.writeUTFBytes doesn&#8217;t work? by Dan</title>
		<link>http://gruchalski.com/2009/06/11/xmlsocket-send-socket-writeutfbytes-doesnt-work/comment-page-1/#comment-22338</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 11 Apr 2011 15:08:33 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=298#comment-22338</guid>
		<description>Thankyou so much, this is just what ive been looking for.

Had so much trouble with the new flash security methods and policy files.

Dan</description>
		<content:encoded><![CDATA[<p>Thankyou so much, this is just what ive been looking for.</p>
<p>Had so much trouble with the new flash security methods and policy files.</p>
<p>Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What I&#8217;ve been up to for over 3.5 years by radekg</title>
		<link>http://gruchalski.com/2011/03/23/what-ive-been-up-to-for-over-3-5-years/comment-page-1/#comment-20335</link>
		<dc:creator>radekg</dc:creator>
		<pubDate>Thu, 24 Mar 2011 13:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://gruchalski.com/?p=465#comment-20335</guid>
		<description>These are all good questions. I&#039;ll try answering in a separate article sometime over the weekend.</description>
		<content:encoded><![CDATA[<p>These are all good questions. I&#8217;ll try answering in a separate article sometime over the weekend.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

