<?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 dbaranski.net</title>
	<atom:link href="http://www.dbaranski.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dbaranski.net</link>
	<description>Programming... it&#039;s personal</description>
	<lastBuildDate>Thu, 08 Jul 2010 16:10:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Slow SSH Logins on CentOS 5 by Mirko</title>
		<link>http://www.dbaranski.net/2010/03/slow-ssh-logins-on-centos-5/comment-page-1/#comment-70</link>
		<dc:creator>Mirko</dc:creator>
		<pubDate>Thu, 08 Jul 2010 16:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=110#comment-70</guid>
		<description>Thank you! Thank you! Thank you!</description>
		<content:encoded><![CDATA[<p>Thank you! Thank you! Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Canvas Art and Data Visualization by Dominic Baranski</title>
		<link>http://www.dbaranski.net/2010/04/canvas-art-and-data-visualization/comment-page-1/#comment-29</link>
		<dc:creator>Dominic Baranski</dc:creator>
		<pubDate>Fri, 09 Apr 2010 15:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=139#comment-29</guid>
		<description>Thanks Rob :)

The front banner is a WIP &lt;a href=&#039;http://processingjs.org/&#039; rel=&quot;nofollow&quot;&gt;written with the processing-js JavaScript library&lt;/a&gt;.  Really just toying with the new technology (I still have to be IE friendly).  But for some quick fun with canvas (HTML5) you should check it out!

As for Prezi offline. Here&#039;s a quote from their website:
&lt;blockquote&gt;
Exported prezis are supported on Windows XP, Windows Vista, Windows 7, Mac OS X operating systems and no additional software is required, not even Adobe Flash Player
&lt;/blockquote&gt;
It&#039;s included in the free version, although there are &lt;a href=&#039;http://prezi.com/profile/signup/&#039; rel=&quot;nofollow&quot;&gt;other features available&lt;/a&gt; with a bit of $$.</description>
		<content:encoded><![CDATA[<p>Thanks Rob <img src='http://www.dbaranski.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The front banner is a WIP <a href='http://processingjs.org/' rel="nofollow">written with the processing-js JavaScript library</a>.  Really just toying with the new technology (I still have to be IE friendly).  But for some quick fun with canvas (HTML5) you should check it out!</p>
<p>As for Prezi offline. Here&#8217;s a quote from their website:</p>
<blockquote><p>
Exported prezis are supported on Windows XP, Windows Vista, Windows 7, Mac OS X operating systems and no additional software is required, not even Adobe Flash Player
</p></blockquote>
<p>It&#8217;s included in the free version, although there are <a href='http://prezi.com/profile/signup/' rel="nofollow">other features available</a> with a bit of $$.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Canvas Art and Data Visualization by Rob McIntosh</title>
		<link>http://www.dbaranski.net/2010/04/canvas-art-and-data-visualization/comment-page-1/#comment-28</link>
		<dc:creator>Rob McIntosh</dc:creator>
		<pubDate>Thu, 08 Apr 2010 02:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=139#comment-28</guid>
		<description>Very cool new front banner.
Prezi looks interesting, but there&#039;s the problem of what to do if the presentation room doesn&#039;t have Internet access? Is there an offline presenter?</description>
		<content:encoded><![CDATA[<p>Very cool new front banner.<br />
Prezi looks interesting, but there&#8217;s the problem of what to do if the presentation room doesn&#8217;t have Internet access? Is there an offline presenter?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SRCDS Linux auto-update fix by Guest</title>
		<link>http://www.dbaranski.net/2009/02/srcds-linux-auto-update-fix/comment-page-1/#comment-15</link>
		<dc:creator>Guest</dc:creator>
		<pubDate>Fri, 04 Sep 2009 02:07:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=58#comment-15</guid>
		<description>&lt;code&gt;
update() {
    PWD=`pwd`
    cd ..
    updatesingle
    cd $PWD
}
&lt;/code&gt;

Nice work so far, except you forgot the backticks around pwd.
It will do fine with backticks, but won&#039;t work without.

Explanation:
Backticks will make the shell (I think bash is used) to execute the command between the ticks and write the output into PWD. Without it would degrade to a pointless copy variable content from undefined variable, causing the error as described.</description>
		<content:encoded><![CDATA[<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">update() {<br />
&nbsp; &nbsp; PWD=`pwd`<br />
&nbsp; &nbsp; cd ..<br />
&nbsp; &nbsp; updatesingle<br />
&nbsp; &nbsp; cd $PWD<br />
}</div></div>
<p>Nice work so far, except you forgot the backticks around pwd.<br />
It will do fine with backticks, but won&#8217;t work without.</p>
<p>Explanation:<br />
Backticks will make the shell (I think bash is used) to execute the command between the ticks and write the output into PWD. Without it would degrade to a pointless copy variable content from undefined variable, causing the error as described.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ubuntu 8.10: HAL .fdi files replace xorg.conf by Guest</title>
		<link>http://www.dbaranski.net/2009/02/ubuntu-810-hal-fdi-files-replace-xorgconf/comment-page-1/#comment-20</link>
		<dc:creator>Guest</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=72#comment-20</guid>
		<description>I&#039;m afraid I must agree that this is the WRONG PATH!!! I HATE Windows because things like configuration are hidden in a thousand little dark corners and handled by a wizard that is supposed to know how I want my system to work. Problem is the evil little troll has his own agenda and now rather than go to the xorg.conf file and read a TEXT file and make adjustments I need to first FIND a file full of cryptic markup tags and then try to get the settings the way I want them. Oh yeah, I almost forgot, after I make said changes I now have to reboot for the changes to take effect. 

Congratulations! You have taken a giant step toward turning the solution (I&#039;ll clarify here, since the folks who decided to abort xorg.conf seem to be pretty clueless, LINUX) into the problem (clarification again, WINDOWS). </description>
		<content:encoded><![CDATA[<p>I&#8217;m afraid I must agree that this is the WRONG PATH!!! I HATE Windows because things like configuration are hidden in a thousand little dark corners and handled by a wizard that is supposed to know how I want my system to work. Problem is the evil little troll has his own agenda and now rather than go to the xorg.conf file and read a TEXT file and make adjustments I need to first FIND a file full of cryptic markup tags and then try to get the settings the way I want them. Oh yeah, I almost forgot, after I make said changes I now have to reboot for the changes to take effect. </p>
<p>Congratulations! You have taken a giant step toward turning the solution (I&#8217;ll clarify here, since the folks who decided to abort xorg.conf seem to be pretty clueless, LINUX) into the problem (clarification again, WINDOWS).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SRCDS Linux auto-update fix by Dominic Baranski</title>
		<link>http://www.dbaranski.net/2009/02/srcds-linux-auto-update-fix/comment-page-1/#comment-19</link>
		<dc:creator>Dominic Baranski</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=58#comment-19</guid>
		<description>lol, it&#039;s all right.

I actually have another solution as well that might take care of having two separate files and the need to check them for updates individually.

Create a &quot;patch&quot; with the updated code in it and run the patch on every update..

&lt;code&gt;
update() {
    PWD=pwd
    cd ..
    updatesingle
    patch srcds_run updatefix.patch
    cd $PWD
}
&lt;/code&gt;

The only downside (that is probably fixable with a &gt; /dev/null) is every time the patch is run it creates a &quot;rejected hunk&quot; file for patches that were not applied.

I&#039;ll probably update the posting with the patch sometime soon.

Hope that helps!</description>
		<content:encoded><![CDATA[<p>lol, it&#8217;s all right.</p>
<p>I actually have another solution as well that might take care of having two separate files and the need to check them for updates individually.</p>
<p>Create a &#8220;patch&#8221; with the updated code in it and run the patch on every update..</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">update() {<br />
&nbsp; &nbsp; PWD=pwd<br />
&nbsp; &nbsp; cd ..<br />
&nbsp; &nbsp; updatesingle<br />
&nbsp; &nbsp; patch srcds_run updatefix.patch<br />
&nbsp; &nbsp; cd $PWD<br />
}</div></div>
<p>The only downside (that is probably fixable with a > /dev/null) is every time the patch is run it creates a &#8220;rejected hunk&#8221; file for patches that were not applied.</p>
<p>I&#8217;ll probably update the posting with the patch sometime soon.</p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SRCDS Linux auto-update fix by Guest</title>
		<link>http://www.dbaranski.net/2009/02/srcds-linux-auto-update-fix/comment-page-1/#comment-18</link>
		<dc:creator>Guest</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=58#comment-18</guid>
		<description>Sorry, repeated the note...
OK, 03:30 local time, i beg your pardon...</description>
		<content:encoded><![CDATA[<p>Sorry, repeated the note&#8230;<br />
OK, 03:30 local time, i beg your pardon&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SRCDS Linux auto-update fix by Guest</title>
		<link>http://www.dbaranski.net/2009/02/srcds-linux-auto-update-fix/comment-page-1/#comment-17</link>
		<dc:creator>Guest</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=58#comment-17</guid>
		<description>Copy the file &quot;srcds_run&quot; to &quot;srcds_run_fixed&quot;.
Steam will leave it alone and you have an working copy.

Anyways must check from time to time, if srcds_run is modified.

Again, using a regular expression to replace stuff within an executable is very keen and likely to cause unexpected results.</description>
		<content:encoded><![CDATA[<p>Copy the file &#8220;srcds_run&#8221; to &#8220;srcds_run_fixed&#8221;.<br />
Steam will leave it alone and you have an working copy.</p>
<p>Anyways must check from time to time, if srcds_run is modified.</p>
<p>Again, using a regular expression to replace stuff within an executable is very keen and likely to cause unexpected results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SRCDS Linux auto-update fix by Guest</title>
		<link>http://www.dbaranski.net/2009/02/srcds-linux-auto-update-fix/comment-page-1/#comment-16</link>
		<dc:creator>Guest</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=58#comment-16</guid>
		<description>It will cause steam to install the whole game again within the orangebox-directory (for dod:s) and then run the still unpatched version from ..!

Although Valve does many stupid things with srcds, this one is on purpose.

Anyways, if steam verifys the integrity of the files it will delete that &quot;patch&quot;. Using perl to defeat the integrity check is stupid at best. The approach described using backticks with pwd will do fine and you won&#039;t need a cron.

Interesting approach nevertheless but way off course.</description>
		<content:encoded><![CDATA[<p>It will cause steam to install the whole game again within the orangebox-directory (for dod:s) and then run the still unpatched version from ..!</p>
<p>Although Valve does many stupid things with srcds, this one is on purpose.</p>
<p>Anyways, if steam verifys the integrity of the files it will delete that &#8220;patch&#8221;. Using perl to defeat the integrity check is stupid at best. The approach described using backticks with pwd will do fine and you won&#8217;t need a cron.</p>
<p>Interesting approach nevertheless but way off course.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ubuntu 8.10: HAL .fdi files replace xorg.conf by LtWorf</title>
		<link>http://www.dbaranski.net/2009/02/ubuntu-810-hal-fdi-files-replace-xorgconf/comment-page-1/#comment-14</link>
		<dc:creator>LtWorf</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dbaranski.net/?p=72#comment-14</guid>
		<description>Yeah no more .conf editing!!! Now we have .fdi editing!!!
And as Linus says: xml is not text-file.</description>
		<content:encoded><![CDATA[<p>Yeah no more .conf editing!!! Now we have .fdi editing!!!<br />
And as Linus says: xml is not text-file.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
