<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Aaron Pearson &#187; Tutorials</title>
	<atom:link href="http://www.aaronwpearson.com/tag/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aaronwpearson.com</link>
	<description>Making Technology Work for You</description>
	<lastBuildDate>Sun, 31 Jan 2010 18:02:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Regex Tutorial preg_match preg_replace</title>
		<link>http://www.aaronwpearson.com/regex-tutorial-preg_match-preg_replace/</link>
		<comments>http://www.aaronwpearson.com/regex-tutorial-preg_match-preg_replace/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 05:11:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.aaronwpearson.com/?p=173</guid>
		<description><![CDATA[Understanding Regular Expressions can be a real pain, but they are a very powerful tool. I use them in Apaches mod_rewrite to create SEO friendly URL&#8217;s and to screen scrape content from sites. Here is a web site with excellent step by step broken down explanations as to how common regex engines work.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.regular-expressions.info/">Understanding Regular Expressions</a> can be a real pain, but they are a very powerful tool. I use them in Apaches mod_rewrite to create SEO friendly URL&#8217;s and to screen scrape content from sites. Here is a web site with excellent step by step broken down explanations as to how common regex engines work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronwpearson.com/regex-tutorial-preg_match-preg_replace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Resizing in Internet Explorer 7 and IE6</title>
		<link>http://www.aaronwpearson.com/image-resizing-in-internet-explorer-7/</link>
		<comments>http://www.aaronwpearson.com/image-resizing-in-internet-explorer-7/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 02:37:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.aaronwpearson.com/?p=128</guid>
		<description><![CDATA[I&#8217;ve always been annoyed with how IE7 does image scaling. If you have an image that&#8217;s 100 X 100 and resize/scale it with HTML to 70 X 70 Internet Explorer doesn&#8217;t resample the image so it winds up looking &#8220;blocky&#8221;. I ran across a page on Flickr&#8217;s Developer Blog that describes a little known CSS command [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been annoyed with how IE7 does image scaling. If you have an image that&#8217;s 100 X 100 and resize/scale it with HTML to 70 X 70 Internet Explorer doesn&#8217;t resample the image so it winds up looking &#8220;blocky&#8221;. I ran across a page on Flickr&#8217;s Developer Blog that describes a little known CSS command that will cause IE7 to do bicubic resampling of HTML scaled images. <strong>If you use a Mac, both Firefox and Safari do bicubic resizing automatically&#8230;.</strong> The way to apply this to every image on your page in CSS:</p>
<p>&lt;style&gt;</p>
<p><code style="display: inline; color: #006600;">img{-ms-interpolation-mode:bicubic;}</code></p>
<p>&lt;/style&gt;</p>
<p><strong>IE7 example:</strong></p>
<p>Original Image Size</p>
<p><img src="http://www.google.com/intl/en_ALL/images/logo.gif" alt="" /></p>
<p>Image Scaled with HTML to 100px width:</p>
<p><img style="width: 100px;" src="http://www.google.com/intl/en_ALL/images/logo.gif" alt="" /><br />
Image Scaled with HTML to 100px &#8211; Bicubic Resampling:<br />
<img style="width: 100px; -ms-interpolation-mode:bicubic;" src="http://www.google.com/intl/en_ALL/images/logo.gif" alt="" /> </p>
<p><strong>For IE6 You have to get a little crazy for minor improvement&#8230;</strong><br />
<span style="position: absolute; z-index: 100; width: 100px; display: inline-block; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://www.google.com/intl/en_ALL/images/logo.gif',sizingMethod='scale');"><img style="filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" src="http://www.google.com/intl/en_ALL/images/logo.gif" border="0" alt="" width="100" /></span></p>
<div style="height:30px;"></div>
<p><code><br />
&lt;span style="position: absolute; z-index: 100; width: 100px; display: inline-block; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://www.google.com/intl/en_ALL/images/logo.gif',sizingMethod='scale');"&gt;&lt;img style=" filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" src="http://www.google.com/intl/en_ALL/images/logo.gif" border="0" alt="" width="100" /&gt;&lt;/span&gt;<br />
</code></p>
<p>For more information on this IE6 fix check out Microsofts site: http://msdn.microsoft.com/en-us/library/ms532969.aspx</p>
<p><a name="alexglover">@Alex Glover</a><br />
Full Size:<br />
<img src="http://vaceos.nsd9.com/wp-content/uploads/nopicture.png" /><br />
<br />
Bicubic is not working because the image you are using is a PNG:<br />
<img src="http://vaceos.nsd9.com/wp-content/uploads/nopicture.png" style="width:150px; height:121px; -ms-interpolation-mode:bicubic;  " /><br />
Image saved as GIF:<br />
<img src="http://www.aaronwpearson.com/wordpress/wp-content/uploads/2009/01/nopicture.gif" alt="nopicture" title="nopicture" style="width:150px; height:121px; -ms-interpolation-mode:bicubic; " /><br />
Image saved as JPG:<br />
<img src="http://www.aaronwpearson.com/wordpress/wp-content/uploads/2009/01/nopicture.jpg" style="width:150px; height:121px; -ms-interpolation-mode:bicubic; " /></p>
<p>You will need to save all your &#8220;spotlight&#8221; images as JPG and make the background color the same as the background of the site, or re-size the image to the exact dimensions you need.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronwpearson.com/image-resizing-in-internet-explorer-7/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>iPhone Programming Tutorials</title>
		<link>http://www.aaronwpearson.com/hello-world/</link>
		<comments>http://www.aaronwpearson.com/hello-world/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 19:44:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://98.129.25.95/wordpress/?p=1</guid>
		<description><![CDATA[One of the best video tutorial sites if you are just starting to dig into the iPhone SDK.

]]></description>
			<content:encoded><![CDATA[<p>One of the best video tutorial sites if you are just starting to dig into the iPhone SDK.</p>
<p><a href="http://icodeblog.com/"><img src="http://www.aaronwpearson.com/wordpress/wp-content/uploads/2008/10/uitouch.png" alt="" title="uitouch" width="400" height="250" class="alignnone size-full wp-image-89" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aaronwpearson.com/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
