<?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 BIT Consultants</title>
	<atom:link href="http://www.bitconsultants.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bitconsultants.net</link>
	<description></description>
	<lastBuildDate>Fri, 28 Jan 2011 04:42:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>Comment on jQuery Form Validation: theory and practice by Canli Yayin</title>
		<link>http://www.bitconsultants.net/2008/jquery-form-validation-theory-and-practice/comment-page-1/#comment-361</link>
		<dc:creator>Canli Yayin</dc:creator>
		<pubDate>Fri, 28 Jan 2011 04:42:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=173#comment-361</guid>
		<description>You are a so much clever person!...</description>
		<content:encoded><![CDATA[<p>You are a so much clever person!&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geocoding with Google Maps and the Zend Framework by Canli Yayin</title>
		<link>http://www.bitconsultants.net/2010/geocoding-with-google-maps-and-the-zend-framework/comment-page-1/#comment-360</link>
		<dc:creator>Canli Yayin</dc:creator>
		<pubDate>Fri, 28 Jan 2011 03:48:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=231#comment-360</guid>
		<description>One of my best articles i have read at last days. thank you dude....</description>
		<content:encoded><![CDATA[<p>One of my best articles i have read at last days. thank you dude&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geocoding with Google Maps and the Zend Framework by Rob</title>
		<link>http://www.bitconsultants.net/2010/geocoding-with-google-maps-and-the-zend-framework/comment-page-1/#comment-357</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 08 Jan 2011 03:59:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=231#comment-357</guid>
		<description>Hello again, Patrick,

I don&#039;t know if I updated and forgot since I read this comment last but that return statement is fixed. The syntaxhighlighting plugin I have been using keeps messing up my code and escaping the HTML characters. I am pretty sure all of the places that the code was being escaped have been fixed.</description>
		<content:encoded><![CDATA[<p>Hello again, Patrick,</p>
<p>I don&#8217;t know if I updated and forgot since I read this comment last but that return statement is fixed. The syntaxhighlighting plugin I have been using keeps messing up my code and escaping the HTML characters. I am pretty sure all of the places that the code was being escaped have been fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geocoding with Google Maps and the Zend Framework by Rob</title>
		<link>http://www.bitconsultants.net/2010/geocoding-with-google-maps-and-the-zend-framework/comment-page-1/#comment-356</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 08 Jan 2011 03:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=231#comment-356</guid>
		<description>Hi Patrick, sorry for the delay in response. You are absolutely right, I updated the code example to reflect best practices.</description>
		<content:encoded><![CDATA[<p>Hi Patrick, sorry for the delay in response. You are absolutely right, I updated the code example to reflect best practices.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geocoding with Google Maps and the Zend Framework by Patrick Bielen</title>
		<link>http://www.bitconsultants.net/2010/geocoding-with-google-maps-and-the-zend-framework/comment-page-1/#comment-352</link>
		<dc:creator>Patrick Bielen</dc:creator>
		<pubDate>Sat, 11 Dec 2010 10:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=231#comment-352</guid>
		<description>Your public function getCoordinates seems not to be correct...

$return(
&#039;lat&#039; =&gt; $result-&gt;Placemark[0]-&gt;Point-&gt;coordinates[1];
&#039;lon&#039; =&gt; $result-&gt;Placemark[0]-&gt;Point-&gt;coordinates[0];
);

is no valid php code... so i guess that has to be...

$return = array(
&#039;lat&#039; =&gt; $result-&gt;Placemark[0]-&gt;Point-&gt;coordinates[1],
&#039;lon&#039; =&gt; $result-&gt;Placemark[0]-&gt;Point-&gt;coordinates[0]
);

If that is correct you can also avoid the $return = array(); a few lines above, as $return is always initialised in the in the if-then construction.

Best Regards,

Patrick</description>
		<content:encoded><![CDATA[<p>Your public function getCoordinates seems not to be correct&#8230;</p>
<p>$return(<br />
&#8216;lat&#8217; =&gt; $result-&gt;Placemark[0]-&gt;Point-&gt;coordinates[1];<br />
&#8216;lon&#8217; =&gt; $result-&gt;Placemark[0]-&gt;Point-&gt;coordinates[0];<br />
);</p>
<p>is no valid php code&#8230; so i guess that has to be&#8230;</p>
<p>$return = array(<br />
&#8216;lat&#8217; =&gt; $result-&gt;Placemark[0]-&gt;Point-&gt;coordinates[1],<br />
&#8216;lon&#8217; =&gt; $result-&gt;Placemark[0]-&gt;Point-&gt;coordinates[0]<br />
);</p>
<p>If that is correct you can also avoid the $return = array(); a few lines above, as $return is always initialised in the in the if-then construction.</p>
<p>Best Regards,</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geocoding with Google Maps and the Zend Framework by Patrick Bielen</title>
		<link>http://www.bitconsultants.net/2010/geocoding-with-google-maps-and-the-zend-framework/comment-page-1/#comment-351</link>
		<dc:creator>Patrick Bielen</dc:creator>
		<pubDate>Sat, 11 Dec 2010 09:58:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=231#comment-351</guid>
		<description>Hi Rob,

Why are you using index.php tot put the key to the registry ?
Isn&#039;t it better to for example use the bootstrap file ?
Like this for example ?

protected function _initGoogleMapsKey()
{
    defined(&#039;CONFIG_PATH&#039;) 
    or define(&#039;CONFIG_PATH&#039;, APPLICATION_PATH . &#039;/configs/application.ini&#039;);
    Zend_Registry::set(&#039;google&#039;,    new Zend_Config_Ini(CONFIG_PATH, &#039;google&#039;));
}

I think this is best practice to configure the google maps key, as normally you do not touch index.php at all, or you should want to use another google framework version, which you can config in the index.php.

Best Regards,

Patrick</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>Why are you using index.php tot put the key to the registry ?<br />
Isn&#8217;t it better to for example use the bootstrap file ?<br />
Like this for example ?</p>
<p>protected function _initGoogleMapsKey()<br />
{<br />
    defined(&#8216;CONFIG_PATH&#8217;)<br />
    or define(&#8216;CONFIG_PATH&#8217;, APPLICATION_PATH . &#8216;/configs/application.ini&#8217;);<br />
    Zend_Registry::set(&#8216;google&#8217;,    new Zend_Config_Ini(CONFIG_PATH, &#8216;google&#8217;));<br />
}</p>
<p>I think this is best practice to configure the google maps key, as normally you do not touch index.php at all, or you should want to use another google framework version, which you can config in the index.php.</p>
<p>Best Regards,</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Actionscript 2.0: Centered Popup Window by Rob</title>
		<link>http://www.bitconsultants.net/2009/actionscript-2-0-centered-popup-window/comment-page-1/#comment-350</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sun, 07 Nov 2010 21:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=136#comment-350</guid>
		<description>The button instances are the only thing you need to change, you don&#039;t really need to change the MyWindow string, that just dictates the name of the window object created that can later be referenced by other javascript (e.g. MyWindow.close())</description>
		<content:encoded><![CDATA[<p>The button instances are the only thing you need to change, you don&#8217;t really need to change the MyWindow string, that just dictates the name of the window object created that can later be referenced by other javascript (e.g. MyWindow.close())</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Actionscript 2.0: Centered Popup Window by Didier Kebreau</title>
		<link>http://www.bitconsultants.net/2009/actionscript-2-0-centered-popup-window/comment-page-1/#comment-349</link>
		<dc:creator>Didier Kebreau</dc:creator>
		<pubDate>Sun, 07 Nov 2010 18:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=136#comment-349</guid>
		<description>In the code should I change anything else besides button instance, page/file name? What about the &quot;MyWindow&quot; portion?</description>
		<content:encoded><![CDATA[<p>In the code should I change anything else besides button instance, page/file name? What about the &#8220;MyWindow&#8221; portion?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix Windows 7 Flash Crashing, Remote Desktop Issue by marie</title>
		<link>http://www.bitconsultants.net/2009/fix-windows-7-flash-crashing-remote-desktop-issue/comment-page-1/#comment-348</link>
		<dc:creator>marie</dc:creator>
		<pubDate>Tue, 12 Oct 2010 11:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=203#comment-348</guid>
		<description>HI everyone!
I also have a problem ... my computer  does crash memory after a while , whenever i open  video applications, even  when i open windows games.
 I had format my computer few days ago and here we go again... I used mozilla firefox but because it conflicts with IE now I use Google chrome.
What do you suggest for me to do?</description>
		<content:encoded><![CDATA[<p>HI everyone!<br />
I also have a problem &#8230; my computer  does crash memory after a while , whenever i open  video applications, even  when i open windows games.<br />
 I had format my computer few days ago and here we go again&#8230; I used mozilla firefox but because it conflicts with IE now I use Google chrome.<br />
What do you suggest for me to do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix Windows 7 Flash Crashing, Remote Desktop Issue by Grace</title>
		<link>http://www.bitconsultants.net/2009/fix-windows-7-flash-crashing-remote-desktop-issue/comment-page-1/#comment-347</link>
		<dc:creator>Grace</dc:creator>
		<pubDate>Sun, 19 Sep 2010 14:17:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitconsultants.net/?p=203#comment-347</guid>
		<description>Hi there Rob, thanks for your article, i think i may be experiencing similar problems with Chrome in windows Vista, and as well as the flash/shockwave crashes I now have no sound on my computer. Is this possible? and how would one go about fixing this issue in Vista if this turns out to be the case?

Thanks for your time,
Grace.</description>
		<content:encoded><![CDATA[<p>Hi there Rob, thanks for your article, i think i may be experiencing similar problems with Chrome in windows Vista, and as well as the flash/shockwave crashes I now have no sound on my computer. Is this possible? and how would one go about fixing this issue in Vista if this turns out to be the case?</p>
<p>Thanks for your time,<br />
Grace.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using xcache
Page Caching using xcache
Object Caching 413/457 objects using memcached

Served from: www.bitconsultants.net @ 2012-02-05 16:04:09 -->
