<?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"
	>
<channel>
	<title>Comments for untitled</title>
	<atom:link href="http://warren.mesozen.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://warren.mesozen.com</link>
	<description>warren dot mesozen dot com</description>
	<pubDate>Thu, 11 Mar 2010 22:14:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>Comment on jQuery Lightbox in Drupal, via jLightbox by jd webb</title>
		<link>http://warren.mesozen.com/2007/09/18/jquery-lightbox-in-drupal-via-jlightbox/#comment-3996</link>
		<dc:creator>jd webb</dc:creator>
		<pubDate>Mon, 25 Jan 2010 06:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/2007/09/18/jquery-lightbox-in-drupal-via-jlightbox/#comment-3996</guid>
		<description>Hey, thanks for this!</description>
		<content:encoded><![CDATA[<p>Hey, thanks for this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Lightbox by jQuery LightBox Plugin by Krewenki</title>
		<link>http://warren.mesozen.com/jquery-lightbox/#comment-3584</link>
		<dc:creator>jQuery LightBox Plugin by Krewenki</dc:creator>
		<pubDate>Wed, 09 Dec 2009 08:43:11 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/jquery-lightbox/#comment-3584</guid>
		<description>[...] Example Demo Page [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Example Demo Page [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XBox 360 Warranty Replacement - The Beginning by randy</title>
		<link>http://warren.mesozen.com/2007/07/30/xbox-360-warranty-replacement-the-beginning/#comment-3280</link>
		<dc:creator>randy</dc:creator>
		<pubDate>Sun, 27 Sep 2009 21:56:30 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/2007/07/30/xbox-360-warranty-replacement-the-beginning/#comment-3280</guid>
		<description>my guitar hero drum set refuses to work. no light comes on . changed batteries no light. can u help. the system was bought for xmas. less than a year old. does it even have warranty any more???</description>
		<content:encoded><![CDATA[<p>my guitar hero drum set refuses to work. no light comes on . changed batteries no light. can u help. the system was bought for xmas. less than a year old. does it even have warranty any more???</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Lightbox on github by Chris</title>
		<link>http://warren.mesozen.com/2008/08/26/jquery-lightbox-on-github/#comment-3125</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 15 Sep 2009 10:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/?p=73#comment-3125</guid>
		<description>Hi - nice plugin. 

I made a little change to the doChangeImage() method to stop it from hanging up on a busted image link.

If you add an onerror handler you can at least show a blank image. If you wanted (I didn't need it) you could swap it out for a default image. At a bare minimum it allows you to skip over the broken image and still see the rest of the sequence.

imgPreloader.onerror = function(){
  imgPreloader.width = 400;
  imgPreloader.height = 300;
  imgPreloader.onload();
}

nice work!
CC</description>
		<content:encoded><![CDATA[<p>Hi - nice plugin. </p>
<p>I made a little change to the doChangeImage() method to stop it from hanging up on a busted image link.</p>
<p>If you add an onerror handler you can at least show a blank image. If you wanted (I didn&#8217;t need it) you could swap it out for a default image. At a bare minimum it allows you to skip over the broken image and still see the rest of the sequence.</p>
<p>imgPreloader.onerror = function(){<br />
  imgPreloader.width = 400;<br />
  imgPreloader.height = 300;<br />
  imgPreloader.onload();<br />
}</p>
<p>nice work!<br />
CC</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Trac Logo For Fluid by James Aitken</title>
		<link>http://warren.mesozen.com/2009/03/04/trac-logo-for-fluid/#comment-2804</link>
		<dc:creator>James Aitken</dc:creator>
		<pubDate>Fri, 28 Aug 2009 08:36:40 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/?p=75#comment-2804</guid>
		<description>Thanks, I needed the logo for the same reason - thought I'd google it before I made my own. You saved me some work!</description>
		<content:encoded><![CDATA[<p>Thanks, I needed the logo for the same reason - thought I&#8217;d google it before I made my own. You saved me some work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Shake Effect by Chuck Shipman</title>
		<link>http://warren.mesozen.com/2008/04/02/jquery-shake-effect/#comment-2703</link>
		<dc:creator>Chuck Shipman</dc:creator>
		<pubDate>Thu, 20 Aug 2009 19:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/?p=39#comment-2703</guid>
		<description>Here's a modification on the last one by Prateek that merges his with BooshTukka. The ability to specify number of shakes, distance, duration AND maintaining current position of the div.

jQuery.fn.shake = function(intShakes /*Amount of shakes*/, intDistance /*Shake distance*/, intDuration /*Time duration*/) {
	this.each(function() {
		$(this).css({position:'relative'});
		var origLeft = parseInt($(this).css("left"), 10)
		for (var x=1; x&#60;=intShakes; x++) {
			$(this).animate({left:origLeft-(intDistance*-1)}, (((intDuration/intShakes)/4)))
			.animate({left:origLeft+intDistance}, ((intDuration/intShakes)/2))
			.animate({left:origLeft}, (((intDuration/intShakes)/4)));
		}
	});
	return this;
};</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a modification on the last one by Prateek that merges his with BooshTukka. The ability to specify number of shakes, distance, duration AND maintaining current position of the div.</p>
<p>jQuery.fn.shake = function(intShakes /*Amount of shakes*/, intDistance /*Shake distance*/, intDuration /*Time duration*/) {<br />
	this.each(function() {<br />
		$(this).css({position:&#8217;relative&#8217;});<br />
		var origLeft = parseInt($(this).css(&#8221;left&#8221;), 10)<br />
		for (var x=1; x&lt;=intShakes; x++) {<br />
			$(this).animate({left:origLeft-(intDistance*-1)}, (((intDuration/intShakes)/4)))<br />
			.animate({left:origLeft+intDistance}, ((intDuration/intShakes)/2))<br />
			.animate({left:origLeft}, (((intDuration/intShakes)/4)));<br />
		}<br />
	});<br />
	return this;<br />
};</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MacHeist Bundle by mr. white</title>
		<link>http://warren.mesozen.com/2008/01/14/macheist-bundle/#comment-2299</link>
		<dc:creator>mr. white</dc:creator>
		<pubDate>Fri, 17 Jul 2009 01:21:52 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/2008/01/14/macheist-bundle/#comment-2299</guid>
		<description>Nice information on increasing your niche video website vision.</description>
		<content:encoded><![CDATA[<p>Nice information on increasing your niche video website vision.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby Cocoa Tutorial by Barbar</title>
		<link>http://warren.mesozen.com/2008/07/16/ruby-cocoa-tutorial/#comment-2294</link>
		<dc:creator>Barbar</dc:creator>
		<pubDate>Wed, 15 Jul 2009 01:24:37 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/?p=68#comment-2294</guid>
		<description>Hello, thank you for the great tutorial. It helped me improving my skills greatly. It is always excellent to get some formidable inspiration and I hope to read more of such articles here soon because nobody will ever stop learning new things. Props</description>
		<content:encoded><![CDATA[<p>Hello, thank you for the great tutorial. It helped me improving my skills greatly. It is always excellent to get some formidable inspiration and I hope to read more of such articles here soon because nobody will ever stop learning new things. Props</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XBox 360 Warranty Replacement - The Rejection by Xbox Fix</title>
		<link>http://warren.mesozen.com/2007/08/16/xbox-360-warranty-replacement-the-rejection/#comment-2250</link>
		<dc:creator>Xbox Fix</dc:creator>
		<pubDate>Thu, 18 Jun 2009 12:12:10 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/2007/08/16/xbox-360-warranty-replacement-the-rejection/#comment-2250</guid>
		<description>I'm having majour issues with red lights and a bad cd rom drive at the minute and finding your blog is hopefully the solution.</description>
		<content:encoded><![CDATA[<p>I&#8217;m having majour issues with red lights and a bad cd rom drive at the minute and finding your blog is hopefully the solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Firebug and FireFox 3 by hey</title>
		<link>http://warren.mesozen.com/2008/03/26/firebug-and-firefox-3/#comment-2214</link>
		<dc:creator>hey</dc:creator>
		<pubDate>Fri, 05 Jun 2009 08:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://warren.mesozen.com/2008/03/26/firebug-and-firefox-3/#comment-2214</guid>
		<description>you win!</description>
		<content:encoded><![CDATA[<p>you win!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
