<?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 Glen Smith</title>
	<atom:link href="http://blogs.bytecode.com.au/glen/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.bytecode.com.au/glen</link>
	<description>Java, XML and all that Jazz... from Canberra, Australia</description>
	<lastBuildDate>Tue, 14 May 2013 20:37:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Tuning Android Battery Life with BetterBatteryStats by bart</title>
		<link>http://blogs.bytecode.com.au/glen/2012/12/24/tuning-android-battery-life-with-stats.html#comment-92735</link>
		<dc:creator>bart</dc:creator>
		<pubDate>Tue, 14 May 2013 20:37:27 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glen/?p=840#comment-92735</guid>
		<description><![CDATA[How exactly did u turn off google now ?
And 3 days is nice, but what is important is the screen-on time. 
If its 20 minutes screen-on in 3 days its very dissapointing. 
If its 6 hours screen-on in 3 days thats great !
My sister got 9 days from her galaxy note, but screen-on time was 20 minutes in total. Not that impressive anymore now is it.]]></description>
		<content:encoded><![CDATA[<p>How exactly did u turn off google now ?<br />
And 3 days is nice, but what is important is the screen-on time.<br />
If its 20 minutes screen-on in 3 days its very dissapointing.<br />
If its 6 hours screen-on in 3 days thats great !<br />
My sister got 9 days from her galaxy note, but screen-on time was 20 minutes in total. Not that impressive anymore now is it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eliminating annoying flicker transitions with jQuery Mobile on Android by Damilola</title>
		<link>http://blogs.bytecode.com.au/glen/2011/07/14/eliminating-annoying-flicker-transitions-with.html#comment-91107</link>
		<dc:creator>Damilola</dc:creator>
		<pubDate>Thu, 09 May 2013 17:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glen/?p=567#comment-91107</guid>
		<description><![CDATA[&lt;em&gt;Got this from a jquery ghithub website&lt;/em&gt;

Solution to flicker problem in jQuery mobile page transitions!
Milestone: 1.4.0 
 
  uGoMobi is assigned
I&#039;m developing a mobile web site using jQuery mobile framework. When I use page transitions (like slide), it causes a flicking. Especially in default browser in android phones, flicking is really bad.

I deeply investigate the jquery-mobile.js to understand when this flickering happens. After spending many hours, I found which code part causes the problem: Enabling/Disabling zoom on just before page transition!

in jQuery mobile 1.2.0 source codes (line 7211 to 7234):

$.mobile.zoom = $.extend( {}, {
enabled: !disabledInitially,
locked: false,
disable: function( lock ) {
if ( !disabledInitially &amp;&amp; !$.mobile.zoom.locked ) {
meta.attr( &quot;content&quot;, disabledZoom );
$.mobile.zoom.enabled = false;
$.mobile.zoom.locked = lock &#124;&#124; false;
}
},
enable: function( unlock ) {
if ( !disabledInitially &amp;&amp; ( !$.mobile.zoom.locked &#124;&#124; unlock === true ) ) {
meta.attr( &quot;content&quot;, enabledZoom );
$.mobile.zoom.enabled = true;
$.mobile.zoom.locked = false;
}
},
restore: function() {
if ( !disabledInitially ) {
meta.attr( &quot;content&quot;, initialContent );
$.mobile.zoom.enabled = true;
}
}
});

I deleted the lines:

meta.attr( &quot;content&quot;, disabledZoom );

and

meta.attr( &quot;content&quot;, enabledZoom );

(lines 7216 and 7223)

Then it worked smoothly without a problem! I don&#039;t know if it causes another problem but the problem was changing max-zoom in page transition. In my tests, it worked correctly without any problem.

I wanted to inform you to consider this problem while changing zoom.]]></description>
		<content:encoded><![CDATA[<p><em>Got this from a jquery ghithub website</em></p>
<p>Solution to flicker problem in jQuery mobile page transitions!<br />
Milestone: 1.4.0 </p>
<p>  uGoMobi is assigned<br />
I&#8217;m developing a mobile web site using jQuery mobile framework. When I use page transitions (like slide), it causes a flicking. Especially in default browser in android phones, flicking is really bad.</p>
<p>I deeply investigate the jquery-mobile.js to understand when this flickering happens. After spending many hours, I found which code part causes the problem: Enabling/Disabling zoom on just before page transition!</p>
<p>in jQuery mobile 1.2.0 source codes (line 7211 to 7234):</p>
<p>$.mobile.zoom = $.extend( {}, {<br />
enabled: !disabledInitially,<br />
locked: false,<br />
disable: function( lock ) {<br />
if ( !disabledInitially &amp;&amp; !$.mobile.zoom.locked ) {<br />
meta.attr( &#8220;content&#8221;, disabledZoom );<br />
$.mobile.zoom.enabled = false;<br />
$.mobile.zoom.locked = lock || false;<br />
}<br />
},<br />
enable: function( unlock ) {<br />
if ( !disabledInitially &amp;&amp; ( !$.mobile.zoom.locked || unlock === true ) ) {<br />
meta.attr( &#8220;content&#8221;, enabledZoom );<br />
$.mobile.zoom.enabled = true;<br />
$.mobile.zoom.locked = false;<br />
}<br />
},<br />
restore: function() {<br />
if ( !disabledInitially ) {<br />
meta.attr( &#8220;content&#8221;, initialContent );<br />
$.mobile.zoom.enabled = true;<br />
}<br />
}<br />
});</p>
<p>I deleted the lines:</p>
<p>meta.attr( &#8220;content&#8221;, disabledZoom );</p>
<p>and</p>
<p>meta.attr( &#8220;content&#8221;, enabledZoom );</p>
<p>(lines 7216 and 7223)</p>
<p>Then it worked smoothly without a problem! I don&#8217;t know if it causes another problem but the problem was changing max-zoom in page transition. In my tests, it worked correctly without any problem.</p>
<p>I wanted to inform you to consider this problem while changing zoom.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Windows 7 to recognise your OCZ Agility SSD by Juv</title>
		<link>http://blogs.bytecode.com.au/glen/2011/06/26/getting-windows-7-to-recognise-your-ocz-agility-ssd.html#comment-90253</link>
		<dc:creator>Juv</dc:creator>
		<pubDate>Tue, 07 May 2013 11:00:51 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glen/?p=529#comment-90253</guid>
		<description><![CDATA[After searching for hours and hours you were the one with the correct way of my pc finding my ocz agility 3 ssd.
Thank you for your help.
My HTPC
I-3 3225 intel
OCZ agility 3 ssd
Seagate hdd
G-skill ram 8g
gigabyte z77n motherboard 
Coolermaster elite 120 case]]></description>
		<content:encoded><![CDATA[<p>After searching for hours and hours you were the one with the correct way of my pc finding my ocz agility 3 ssd.<br />
Thank you for your help.<br />
My HTPC<br />
I-3 3225 intel<br />
OCZ agility 3 ssd<br />
Seagate hdd<br />
G-skill ram 8g<br />
gigabyte z77n motherboard<br />
Coolermaster elite 120 case</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exploring the Grails Cache Plugin: Evicting Multiple Caches by TimeSearcher</title>
		<link>http://blogs.bytecode.com.au/glen/2013/04/12/exploring-the-grails-cache-plugin-evicting-multiple-caches.html#comment-85760</link>
		<dc:creator>TimeSearcher</dc:creator>
		<pubDate>Fri, 19 Apr 2013 15:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glen/?p=906#comment-85760</guid>
		<description><![CDATA[Very helpful article. I&#039;m wrangling with some caching issues at the moment: specifically with the GLDAPO 0.82 plugin that adapts LDAP to domain class-like GORM behaviours. 

Updates (to passwords) work fine, but binds with the old password succeed when they no longer should (until the Grails server is restarted).

I&#039;m going to experiment with this caching approach in this article. GLDAPO has a Spring 1.2.2 dependency. But it may be time to explore use of Spring 3.1 to get lightweight caching (and eviction!) for my GLDAPO service methods.

P.S.  Am a happy MEAP subscriber to your GinA 2nd edition).]]></description>
		<content:encoded><![CDATA[<p>Very helpful article. I&#8217;m wrangling with some caching issues at the moment: specifically with the GLDAPO 0.82 plugin that adapts LDAP to domain class-like GORM behaviours. </p>
<p>Updates (to passwords) work fine, but binds with the old password succeed when they no longer should (until the Grails server is restarted).</p>
<p>I&#8217;m going to experiment with this caching approach in this article. GLDAPO has a Spring 1.2.2 dependency. But it may be time to explore use of Spring 3.1 to get lightweight caching (and eviction!) for my GLDAPO service methods.</p>
<p>P.S.  Am a happy MEAP subscriber to your GinA 2nd edition).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eliminating annoying flicker transitions with jQuery Mobile on Android by Brent</title>
		<link>http://blogs.bytecode.com.au/glen/2011/07/14/eliminating-annoying-flicker-transitions-with.html#comment-84730</link>
		<dc:creator>Brent</dc:creator>
		<pubDate>Mon, 15 Apr 2013 18:38:33 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glen/?p=567#comment-84730</guid>
		<description><![CDATA[Dude yeah.  PhoneGap is doing that to me completely.]]></description>
		<content:encoded><![CDATA[<p>Dude yeah.  PhoneGap is doing that to me completely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eliminating annoying flicker transitions with jQuery Mobile on Android by Brent</title>
		<link>http://blogs.bytecode.com.au/glen/2011/07/14/eliminating-annoying-flicker-transitions-with.html#comment-84729</link>
		<dc:creator>Brent</dc:creator>
		<pubDate>Mon, 15 Apr 2013 18:37:32 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glen/?p=567#comment-84729</guid>
		<description><![CDATA[Ya know, this did fix that flicker on Android for me, but it introduced an iOS bug that was worse.  It made my fixed jQM header and footer tabbar disappear sometimes in iOS only.  This was a most unfortunate and unhappy occurrence as I considered what to do.

What fixed THAT was to make sure that they had the correct data-position as fixed - for instance:
&lt;code&gt;&lt;/code&gt;

That worked to fix the bug that your fix solved.  Thank you!  But arrugggghh with this web-wrapped-in-js-native-mobile sandwich stuff.  The layers of fixes for simple UI things is reminding me of bad cross-browser compatibility days of long ago.

&lt;strong&gt;Thank you Glen !!&lt;/strong&gt;]]></description>
		<content:encoded><![CDATA[<p>Ya know, this did fix that flicker on Android for me, but it introduced an iOS bug that was worse.  It made my fixed jQM header and footer tabbar disappear sometimes in iOS only.  This was a most unfortunate and unhappy occurrence as I considered what to do.</p>
<p>What fixed THAT was to make sure that they had the correct data-position as fixed &#8211; for instance:<br />
<code></code></p>
<p>That worked to fix the bug that your fix solved.  Thank you!  But arrugggghh with this web-wrapped-in-js-native-mobile sandwich stuff.  The layers of fixes for simple UI things is reminding me of bad cross-browser compatibility days of long ago.</p>
<p><strong>Thank you Glen !!</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tuning Android Battery Life with BetterBatteryStats by kranthi</title>
		<link>http://blogs.bytecode.com.au/glen/2012/12/24/tuning-android-battery-life-with-stats.html#comment-76026</link>
		<dc:creator>kranthi</dc:creator>
		<pubDate>Tue, 19 Mar 2013 04:25:45 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glen/?p=840#comment-76026</guid>
		<description><![CDATA[Very useful for BBS starters. I didn&#039;t understand all those options until i read this guide.]]></description>
		<content:encoded><![CDATA[<p>Very useful for BBS starters. I didn&#8217;t understand all those options until i read this guide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grails with Redis: Painless NoSQL by Alex</title>
		<link>http://blogs.bytecode.com.au/glen/2010/10/13/grails-with-redis-painless-nosql.html#comment-72992</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sun, 10 Mar 2013 11:53:26 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glens/2010/10/13/grails-with-redis-painless-nosql/#comment-72992</guid>
		<description><![CDATA[It&#039;s not the first time that I am googling grails and reached you blog. Great articles!]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s not the first time that I am googling grails and reached you blog. Great articles!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tuning Android Battery Life with BetterBatteryStats by Andreas</title>
		<link>http://blogs.bytecode.com.au/glen/2012/12/24/tuning-android-battery-life-with-stats.html#comment-69385</link>
		<dc:creator>Andreas</dc:creator>
		<pubDate>Wed, 27 Feb 2013 19:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glen/?p=840#comment-69385</guid>
		<description><![CDATA[Great guide! Thanks. Very useful for me. I also have Nexus 4. :-)]]></description>
		<content:encoded><![CDATA[<p>Great guide! Thanks. Very useful for me. I also have Nexus 4. <img src='http://blogs.bytecode.com.au/glen/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Lesser Known Grails Tag: g:external by yamkazu</title>
		<link>http://blogs.bytecode.com.au/glen/2013/01/30/a-lesser-known-grails-tag-gexternal.html#comment-66264</link>
		<dc:creator>yamkazu</dc:creator>
		<pubDate>Tue, 12 Feb 2013 16:21:40 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.bytecode.com.au/glen/?p=893#comment-66264</guid>
		<description><![CDATA[In this case, I think you should use &quot;r:external&quot;.
&quot;g:external&quot; writes unnecessary tags, ex dir,file,contextPath. 

Another reason is wrong media output.
http://jira.grails.org/browse/GRAILS-9834]]></description>
		<content:encoded><![CDATA[<p>In this case, I think you should use &#8220;r:external&#8221;.<br />
&#8220;g:external&#8221; writes unnecessary tags, ex dir,file,contextPath. </p>
<p>Another reason is wrong media output.<br />
<a href="http://jira.grails.org/browse/GRAILS-9834" rel="nofollow">http://jira.grails.org/browse/GRAILS-9834</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
