<?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 BDoran</title>
	<atom:link href="http://www.bdoran.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bdoran.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 15 Dec 2011 01:06:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Detecting the iPhone4 and Resolution with Javascript or PHP by Ben Zemm</title>
		<link>http://www.bdoran.co.uk/2010/07/19/detecting-the-iphone4-and-resolution-with-javascript-or-php/comment-page-1/#comment-1599</link>
		<dc:creator>Ben Zemm</dc:creator>
		<pubDate>Thu, 15 Dec 2011 01:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=25#comment-1599</guid>
		<description>No. That is the build number of software, nothing to do with hardware. My iPod 3G and iPhone 4 have the same Mobile/9A405 (same iOS 5.0.1).</description>
		<content:encoded><![CDATA[<p>No. That is the build number of software, nothing to do with hardware. My iPod 3G and iPhone 4 have the same Mobile/9A405 (same iOS 5.0.1).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Google&#8217;s Closure Tools by Michael</title>
		<link>http://www.bdoran.co.uk/2011/11/28/introduction-to-googles-closure-tools/comment-page-1/#comment-1394</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 29 Nov 2011 21:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=105#comment-1394</guid>
		<description>Excellent -- thanks for posting; I just started integrating Closure Library into my site &amp; workflow and this is exactly the type of info I need.</description>
		<content:encoded><![CDATA[<p>Excellent &#8212; thanks for posting; I just started integrating Closure Library into my site &amp; workflow and this is exactly the type of info I need.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing PHP Soap on OSX Lion 10.7.2 by Installing PHP Soap on OSX Lion 10.6.4 &#124; BDoran</title>
		<link>http://www.bdoran.co.uk/2011/11/22/installing-php-soap-on-osx-lion-10-7-2/comment-page-1/#comment-1304</link>
		<dc:creator>Installing PHP Soap on OSX Lion 10.6.4 &#124; BDoran</dc:creator>
		<pubDate>Tue, 22 Nov 2011 11:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=158#comment-1304</guid>
		<description>[...] Note: There is an update for this article: Installing PHP Soap on OSX Lion 10.7.2 [...]</description>
		<content:encoded><![CDATA[<p>[...] Note: There is an update for this article: Installing PHP Soap on OSX Lion 10.7.2 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting the iPhone4 and Resolution with Javascript or PHP by Ben Doran</title>
		<link>http://www.bdoran.co.uk/2010/07/19/detecting-the-iphone4-and-resolution-with-javascript-or-php/comment-page-1/#comment-1294</link>
		<dc:creator>Ben Doran</dc:creator>
		<pubDate>Mon, 21 Nov 2011 17:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=25#comment-1294</guid>
		<description>It seems that iPhone 4S has fell prey to this same issue :( So this code will only tell you whether the connecting device is an iOS device with Retina Display or not, as of now there&#039;s no discernible way of telling the difference between the devices in each category ie:

Pixel Density of 1: iPhone 2G, iPhone 3G &amp; iPhone 3GS
Pixel Density of 2: iPhone 4 &amp; iPhone 4S</description>
		<content:encoded><![CDATA[<p>It seems that iPhone 4S has fell prey to this same issue <img src='http://www.bdoran.co.uk/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  So this code will only tell you whether the connecting device is an iOS device with Retina Display or not, as of now there&#8217;s no discernible way of telling the difference between the devices in each category ie:</p>
<p>Pixel Density of 1: iPhone 2G, iPhone 3G &#038; iPhone 3GS<br />
Pixel Density of 2: iPhone 4 &#038; iPhone 4S</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting the iPhone4 and Resolution with Javascript or PHP by Ben Doran</title>
		<link>http://www.bdoran.co.uk/2010/07/19/detecting-the-iphone4-and-resolution-with-javascript-or-php/comment-page-1/#comment-1131</link>
		<dc:creator>Ben Doran</dc:creator>
		<pubDate>Tue, 25 Oct 2011 12:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=25#comment-1131</guid>
		<description>That&#039;s a good point, I passed through the cookie, mainly due to the fact that I build sites with mod_rewrite urls, so using GET vars never usually help as it messes up these URLs.

But you&#039;re right of course, GET is much simpler, and I have used that method on a site before as well.

Another option is to back-call the page with POST as well through Ajax, but that&#039;s probably just silly :P</description>
		<content:encoded><![CDATA[<p>That&#8217;s a good point, I passed through the cookie, mainly due to the fact that I build sites with mod_rewrite urls, so using GET vars never usually help as it messes up these URLs.</p>
<p>But you&#8217;re right of course, GET is much simpler, and I have used that method on a site before as well.</p>
<p>Another option is to back-call the page with POST as well through Ajax, but that&#8217;s probably just silly <img src='http://www.bdoran.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting the iPhone4 and Resolution with Javascript or PHP by Otto</title>
		<link>http://www.bdoran.co.uk/2010/07/19/detecting-the-iphone4-and-resolution-with-javascript-or-php/comment-page-1/#comment-1100</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Tue, 06 Sep 2011 17:27:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=25#comment-1100</guid>
		<description>Thanks for this.

I was desperately looking for a way to detect iPhone4 or 3....

cheers</description>
		<content:encoded><![CDATA[<p>Thanks for this.</p>
<p>I was desperately looking for a way to detect iPhone4 or 3&#8230;.</p>
<p>cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting the iPhone4 and Resolution with Javascript or PHP by Alexandre Bernard</title>
		<link>http://www.bdoran.co.uk/2010/07/19/detecting-the-iphone4-and-resolution-with-javascript-or-php/comment-page-1/#comment-1099</link>
		<dc:creator>Alexandre Bernard</dc:creator>
		<pubDate>Mon, 22 Aug 2011 10:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=25#comment-1099</guid>
		<description>You can do it passing the device pixel ratio as a get parameter of the current page by simply redirecting when the javascript is displayed. then you don&#039;t need cookies enabled, but still javascript.

something like this :

location.replace(location.href + &#039;?device_pixel=&#039;+ window.devicePixelRatio);

this is the way i&#039;ll do it</description>
		<content:encoded><![CDATA[<p>You can do it passing the device pixel ratio as a get parameter of the current page by simply redirecting when the javascript is displayed. then you don&#8217;t need cookies enabled, but still javascript.</p>
<p>something like this :</p>
<p>location.replace(location.href + &#8216;?device_pixel=&#8217;+ window.devicePixelRatio);</p>
<p>this is the way i&#8217;ll do it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting the iPhone4 and Resolution with Javascript or PHP by Ben Doran</title>
		<link>http://www.bdoran.co.uk/2010/07/19/detecting-the-iphone4-and-resolution-with-javascript-or-php/comment-page-1/#comment-1092</link>
		<dc:creator>Ben Doran</dc:creator>
		<pubDate>Wed, 03 Aug 2011 14:50:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=25#comment-1092</guid>
		<description>@evolutioneer on further investigation the 8A293 tag is merely indicative of an 4.0 OS GM build, and not an iPhone 4 device.</description>
		<content:encoded><![CDATA[<p>@evolutioneer on further investigation the 8A293 tag is merely indicative of an 4.0 OS GM build, and not an iPhone 4 device.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing PHP Soap on OSX Leopard 10.6.4 by Andy</title>
		<link>http://www.bdoran.co.uk/2010/08/03/installing-php-soap-on-osx-leopard-10-6-4/comment-page-1/#comment-1085</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Thu, 30 Jun 2011 13:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=69#comment-1085</guid>
		<description>ext/php doesnt exist? 10.6.8? =]</description>
		<content:encoded><![CDATA[<p>ext/php doesnt exist? 10.6.8? =]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting the iPhone4 and Resolution with Javascript or PHP by Detecting the iPhone4 and Resolution with Javascript or PHP - Quid de l&#039;internet : blog seo, php, css, dev, psd &#124; Quid de l&#039;internet : blog seo, php, css, dev, psd</title>
		<link>http://www.bdoran.co.uk/2010/07/19/detecting-the-iphone4-and-resolution-with-javascript-or-php/comment-page-1/#comment-1072</link>
		<dc:creator>Detecting the iPhone4 and Resolution with Javascript or PHP - Quid de l&#039;internet : blog seo, php, css, dev, psd &#124; Quid de l&#039;internet : blog seo, php, css, dev, psd</dc:creator>
		<pubDate>Fri, 20 May 2011 18:18:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.bdoran.co.uk/?p=25#comment-1072</guid>
		<description>[...] Detecting the iPhone4 and Resolution with Javascript or PHP : BDoran [...]</description>
		<content:encoded><![CDATA[<p>[...] Detecting the iPhone4 and Resolution with Javascript or PHP : BDoran [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

