<?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 Tower Of Power</title>
	<atom:link href="http://www.toosweettobesour.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.toosweettobesour.com</link>
	<description>Far Too Sweet To Be Sour</description>
	<lastBuildDate>Fri, 12 Mar 2010 14:46:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Partial Classes in PHP by Prasanna Shetye</title>
		<link>http://www.toosweettobesour.com/2008/05/01/partial-classes-in-php/comment-page-1/#comment-2125</link>
		<dc:creator>Prasanna Shetye</dc:creator>
		<pubDate>Fri, 12 Mar 2010 14:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=46#comment-2125</guid>
		<description>nice logic. it saved my time on thinking for this logic :) thanks</description>
		<content:encoded><![CDATA[<p>nice logic. it saved my time on thinking for this logic :) thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP 5.3 and Closures by Colleen Dick</title>
		<link>http://www.toosweettobesour.com/2008/07/21/php-53-and-closures/comment-page-1/#comment-2124</link>
		<dc:creator>Colleen Dick</dc:creator>
		<pubDate>Thu, 11 Mar 2010 07:36:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=62#comment-2124</guid>
		<description>The use variable does not need to have global scope, and in fact it is probably bad programming to have it so.    It can be a local var inside a function that declares a lambda.  And the other people are right, using the global keyword inside the  function makes it totally NOT a closure cuz a closure is, well, closed, by definition.</description>
		<content:encoded><![CDATA[<p>The use variable does not need to have global scope, and in fact it is probably bad programming to have it so.    It can be a local var inside a function that declares a lambda.  And the other people are right, using the global keyword inside the  function makes it totally NOT a closure cuz a closure is, well, closed, by definition.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickie: Module-specific Error Controllers in Zend Framework (1.5) by Joe Devon</title>
		<link>http://www.toosweettobesour.com/2008/08/11/quickie-module-specific-error-controllers-in-zend-framework-15/comment-page-1/#comment-2123</link>
		<dc:creator>Joe Devon</dc:creator>
		<pubDate>Sun, 07 Mar 2010 19:16:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=113#comment-2123</guid>
		<description>Could have used this in the past; bookmarked for the future ;) Good job.</description>
		<content:encoded><![CDATA[<p>Could have used this in the past; bookmarked for the future ;) Good job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Development Environment Help! Setting Up PHP mail() On Windows, Or: Where Is My Windows sendmail.exe? by WAMP &#8211; Windows &#8211; mail smtp strežnik &#8211; pošiljanje epošte &#124; T&#38;R splet - internetne storitve</title>
		<link>http://www.toosweettobesour.com/2009/08/21/development-environment-help-setting-up-php-mail-on-windows-or-where-is-my-windows-sendmail-exe/comment-page-1/#comment-2121</link>
		<dc:creator>WAMP &#8211; Windows &#8211; mail smtp strežnik &#8211; pošiljanje epošte &#124; T&#38;R splet - internetne storitve</dc:creator>
		<pubDate>Thu, 25 Feb 2010 10:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=439#comment-2121</guid>
		<description>[...] Najbolj neodvisna rešitev je seveda postavitev lokalnega strežnika. Na voljo imam najbolj preprosti program Free SMTP Server ali hMailServer. Za enostavno testiranje priporočam FREE SMTP Server, za bolj napredno uporabo pa hMailServer. Postopek kako zadevo namestiti na Windows računalniku. [...]</description>
		<content:encoded><![CDATA[<p>[...] Najbolj neodvisna rešitev je seveda postavitev lokalnega strežnika. Na voljo imam najbolj preprosti program Free SMTP Server ali hMailServer. Za enostavno testiranje priporočam FREE SMTP Server, za bolj napredno uporabo pa hMailServer. Postopek kako zadevo namestiti na Windows računalniku. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Partial Classes in PHP by Kris</title>
		<link>http://www.toosweettobesour.com/2008/05/01/partial-classes-in-php/comment-page-1/#comment-2120</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Tue, 09 Feb 2010 22:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=46#comment-2120</guid>
		<description>There is an easier way to do this for those of us also writing the code that generates the classes...

insert a file into the generated class during generation.

This way, you don&#039;t need to add any glue code to make anything work at runtime and your changes remain intact after regenerating the code.

I&#039;m doing this for my Data Entities and it works great. Also has much less runtime overhead (the __call, __get and __set methods do have a performance penalty, even if it&#039;s not much, it adds up over time.</description>
		<content:encoded><![CDATA[<p>There is an easier way to do this for those of us also writing the code that generates the classes&#8230;</p>
<p>insert a file into the generated class during generation.</p>
<p>This way, you don&#8217;t need to add any glue code to make anything work at runtime and your changes remain intact after regenerating the code.</p>
<p>I&#8217;m doing this for my Data Entities and it works great. Also has much less runtime overhead (the __call, __get and __set methods do have a performance penalty, even if it&#8217;s not much, it adds up over time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tamulink-wpa and Ubuntu (For my aggie linux readers) by M.A. Wortman</title>
		<link>http://www.toosweettobesour.com/2009/03/24/tamulink-wpa-and-ubuntu-for-my-aggie-linux-readers/comment-page-1/#comment-2119</link>
		<dc:creator>M.A. Wortman</dc:creator>
		<pubDate>Fri, 29 Jan 2010 15:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=420#comment-2119</guid>
		<description>Great post ... Thanks!</description>
		<content:encoded><![CDATA[<p>Great post &#8230; Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Logitech MX Revolution revoco in Ubuntu 9.04 Jaunty: Click-to-Click even after a resume/wakeup by hatchetman82</title>
		<link>http://www.toosweettobesour.com/2009/05/13/logitech-mx-revolution-revoco-in-ubuntu-904-jaunty-click-to-click-even-after-a-resumewakeup/comment-page-1/#comment-2118</link>
		<dc:creator>hatchetman82</dc:creator>
		<pubDate>Fri, 29 Jan 2010 13:34:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=428#comment-2118</guid>
		<description>thank you very much for the guide, it was really helpful.

I&#039;ve switched to using udev to configure the mouse, and published the modified howto here:
http://hatchetman82.blogspot.com/2009/11/solving-mx-revolution-click-to-click.html</description>
		<content:encoded><![CDATA[<p>thank you very much for the guide, it was really helpful.</p>
<p>I&#8217;ve switched to using udev to configure the mouse, and published the modified howto here:<br />
<a href="http://hatchetman82.blogspot.com/2009/11/solving-mx-revolution-click-to-click.html" rel="nofollow">http://hatchetman82.blogspot.com/2009/11/solving-mx-revolution-click-to-click.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickie: Module-specific Error Controllers in Zend Framework (1.5) by D3N</title>
		<link>http://www.toosweettobesour.com/2008/08/11/quickie-module-specific-error-controllers-in-zend-framework-15/comment-page-1/#comment-2117</link>
		<dc:creator>D3N</dc:creator>
		<pubDate>Thu, 28 Jan 2010 22:11:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=113#comment-2117</guid>
		<description>Oh man das hab ich gesucht :)
Thank you, wunderful plugin</description>
		<content:encoded><![CDATA[<p>Oh man das hab ich gesucht :)<br />
Thank you, wunderful plugin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Logitech MX Revolution revoco in Ubuntu 9.04 Jaunty: Click-to-Click even after a resume/wakeup by Stew</title>
		<link>http://www.toosweettobesour.com/2009/05/13/logitech-mx-revolution-revoco-in-ubuntu-904-jaunty-click-to-click-even-after-a-resumewakeup/comment-page-1/#comment-2115</link>
		<dc:creator>Stew</dc:creator>
		<pubDate>Wed, 18 Nov 2009 22:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=428#comment-2115</guid>
		<description>Absolute life saver ! Thank you so much.</description>
		<content:encoded><![CDATA[<p>Absolute life saver ! Thank you so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tamulink-wpa and Ubuntu (For my aggie linux readers) by Anna</title>
		<link>http://www.toosweettobesour.com/2009/03/24/tamulink-wpa-and-ubuntu-for-my-aggie-linux-readers/comment-page-1/#comment-2094</link>
		<dc:creator>Anna</dc:creator>
		<pubDate>Tue, 03 Nov 2009 18:04:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.toosweettobesour.com/?p=420#comment-2094</guid>
		<description>I have a netbook running Ubuntu 8.04 that I can&#039;t get to connect. I haven&#039;t been able to upgrade to 9.10 and not sure it can even handle that with a 2gb flash drive. 

Any ideas on what I should do? 
Thanks!</description>
		<content:encoded><![CDATA[<p>I have a netbook running Ubuntu 8.04 that I can&#8217;t get to connect. I haven&#8217;t been able to upgrade to 9.10 and not sure it can even handle that with a 2gb flash drive. </p>
<p>Any ideas on what I should do?<br />
Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
