<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>iZone Design Blog</title>
	
	<link>http://www.izonedesign.co.uk/blog</link>
	<description>The internet is just the world passing notes in a classroom.</description>
	<pubDate>Wed, 05 Nov 2008 14:26:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/IzoneDesignBlog" type="application/rss+xml" /><item>
		<title>Sine Wave Frequency Sweep with Audacity</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/443277131/</link>
		<comments>http://www.izonedesign.co.uk/blog/tutorials/sine-wave-frequency-sweep-with-audacity/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 14:26:37 +0000</pubDate>
		<dc:creator>Adam Pope</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[DSP]]></category>

		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80</guid>
		<description>I was recently trying to create a sine wave frequency sweep audio sample file to test out a digital signal processing (DSP) filter I was trying to write.  Using Audacity, you can create plug-ins to achieve all sorts of cool effects.  After a little experimentation I came up with the following code:

;nyquist plug-in
;version 3
;type generate
;name [...]</description>
			<content:encoded><![CDATA[<p>I was recently trying to create a sine wave frequency sweep audio sample file to test out a digital signal processing (DSP) filter I was trying to write.  Using <a href="http://audacity.sourceforge.net/" target="_blank">Audacity</a>, you can create plug-ins to achieve all sorts of cool effects.  After a little experimentation I came up with the following code:</p>
<p><span id="more-80"></span><code><br />
;nyquist plug-in<br />
;version 3<br />
;type generate<br />
;name "Frequency Sweep"<br />
;action "Producing frequency sweep..."<br />
;info "by Adam Pope"</code><br />
<code><br />
;control startf "Start Frequency (Hz)" real "" 1 0 20000<br />
;control endf "End Frequency (Hz)" real "" 10000 0 30000<br />
;control duration "Duration (secs)" real "" 20 1 300<br />
;control type "Sweep scale [1=Linear, 2=Exponential]" int "" 1 1 2<br />
;control other "I dont know what this does" real "" 5 0 100<br />
</code><br />
<code><br />
(if (= type 2)<br />
(fmosc startf (pwe duration endf other))<br />
(fmosc startf (pwl duration endf other)) )<br />
</code></p>
<p>Copy this code into a <strong>frequencysweep.ny</strong> file and place it in your Audacity plug-ins directory.  You&#8217;ll need to restart audactity for it to register the new plug-in.  Once you&#8217;re back in, click on &#8216;Generate&#8217; on the menu bar and select &#8216;Frequency Sweep&#8217; from the list of options.  You will then be presented with a dialog containing sliders to play with the parameters of your sweep.  If any of the limits are too restricitve for you, simply change the values in the plug-in file!</p>
<p>If anybody can explain what the 3rd parameter of pwe and pwl does, I&#8217;d love to know!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=7qCjN"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=7qCjN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=1x2Fn"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=1x2Fn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=McbFN"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=McbFN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=WnNTn"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=WnNTn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=FRJIN"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=FRJIN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=KahmN"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=KahmN" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/443277131" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/tutorials/sine-wave-frequency-sweep-with-audacity/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/tutorials/sine-wave-frequency-sweep-with-audacity/</feedburner:origLink></item>
		<item>
		<title>No rule to make target `/System/Library/Perl/5.8.8/darwin-thread-multi-2level/CORE/config.h’, needed by `Makefile’.</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/315751634/</link>
		<comments>http://www.izonedesign.co.uk/blog/tutorials/perl/no-rule-to-make-target-systemlibraryperl588darwin-thread-multi-2levelcoreconfigh-needed-by-makefile/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 22:27:45 +0000</pubDate>
		<dc:creator>Adam Pope</dc:creator>
		
		<category><![CDATA[Perl]]></category>

		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=79</guid>
		<description>If you receive the following error when trying to install a CPAN module using Mac OS X Leopard and Perl 5.8.8:
No rule to make target `/System/Library/Perl/5.8.8/darwin-thread-multi-2level/CORE/config.h', needed by `Makefile'.
..then salvation is at hand.

Mac OS X Leopard Perl
The problem (in most cases) is that files are missing from the 5.8.8 Perl installation and are present in [...]</description>
			<content:encoded><![CDATA[<p>If you receive the following error when trying to install a CPAN module using Mac OS X Leopard and Perl 5.8.8:</p>
<p><code>No rule to make target `/System/Library/Perl/5.8.8/darwin-thread-multi-2level/CORE/config.h', needed by `Makefile'.</code></p>
<p>..then salvation is at hand.</p>
<p><span id="more-79"></span></p>
<h2>Mac OS X Leopard Perl</h2>
<p>The problem (in most cases) is that files are missing from the 5.8.8 Perl installation and are present in the older 5.8.6 version.  To correct the error you simply need to copy the files from the 5.8.6 directory to the 5.8.8 dir.  Execute the following command as root or using sudo:</p>
<pre>cp /System/Library/Perl/5.8.6/darwin-thread-multi-2level/CORE/*
/System/Library/Perl/5.8.8/darwin-thread-multi-2level/CORE/</pre>
<p>You should then be able to install Perl modules happily.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=MWWE9I"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=MWWE9I" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=KtS2ei"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=KtS2ei" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=SjrqJI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=SjrqJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=ZpmPYi"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=ZpmPYi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=yWIhRI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=yWIhRI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=02yOuI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=02yOuI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/315751634" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/tutorials/perl/no-rule-to-make-target-systemlibraryperl588darwin-thread-multi-2levelcoreconfigh-needed-by-makefile/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/tutorials/perl/no-rule-to-make-target-systemlibraryperl588darwin-thread-multi-2levelcoreconfigh-needed-by-makefile/</feedburner:origLink></item>
		<item>
		<title>Download Firefox - World Record Day</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/313664651/</link>
		<comments>http://www.izonedesign.co.uk/blog/other/download-firefox-world-record-day/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 09:18:25 +0000</pubDate>
		<dc:creator>Dave Kelly</dc:creator>
		
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=78</guid>
		<description>We&amp;#8217;d like to show our support for the team over at Mozilla, who today, are trying to break a world record with the number of downloads of their latest offering, Firefox 3.0.
If you are already a Firefox user, please go and update yourself  
If you have never tried Firefox *shock* please give it a [...]</description>
			<content:encoded><![CDATA[<p><a title="Get Firefox Now" href="http://www.spreadfirefox.com/en-US/worldrecord" target="_blank"><img class="alignleft" style="float: left;" src="http://www.spreadfirefox.com/files/images/affiliates_banners/dday_badge_fox.png" alt="Download Firefox" width="201" height="160" /></a>We&#8217;d like to show our support for the team over at Mozilla, who today, are trying to break a world record with the number of downloads of their latest offering, Firefox 3.0.</p>
<p>If you are already a Firefox user, please go and update yourself <img src='http://www.izonedesign.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>If you have never tried Firefox *shock* please give it a go! We promise you&#8217;ll love it.</p>
<p>You can pledge your support at <strong><a title="Get Firefox Now" href="http://www.spreadfirefox.com/en-US/worldrecord/" target="_blank">http://www.spreadfirefox.com/en-US/worldrecord/</a> </strong>and they will let you know as SOON as you can download and help make a record.</p>
<p>Good luck to the Mozilla Firefox team from all of us at iZone!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=T5rzcI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=T5rzcI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=se5nNi"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=se5nNi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=XNrwPI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=XNrwPI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=JnxRRi"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=JnxRRi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=EuVlCI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=EuVlCI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=CCX6lI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=CCX6lI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/313664651" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/other/download-firefox-world-record-day/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/other/download-firefox-world-record-day/</feedburner:origLink></item>
		<item>
		<title>Perl: Sorting an Array of Hashes</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/305959337/</link>
		<comments>http://www.izonedesign.co.uk/blog/tutorials/perl/perl-sorting-an-array-of-hashes/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 09:11:11 +0000</pubDate>
		<dc:creator>Adam Pope</dc:creator>
		
		<category><![CDATA[Perl]]></category>

		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=76</guid>
		<description>I recently has a scenario where I had an array of hashes.  Each hash represented a row of data for a table and I wanted to sort the whole array by the value of one element of the hash. As you&amp;#8217;d expect, Perl has a very nice answer to the problem.

Sorting by a Hash [...]</description>
			<content:encoded><![CDATA[<p>I recently has a scenario where I had an array of hashes.  Each hash represented a row of data for a table and I wanted to sort the whole array by the value of one element of the hash. As you&#8217;d expect, Perl has a very nice answer to the problem.</p>
<p><span id="more-76"></span></p>
<h2>Sorting by a Hash Key</h2>
<p>The answer is really quite simple and very elegant.  Let&#8217;s build up an example.</p>
<pre>my @data;
push @data, {name =&gt; "Item A", price =&gt; 9.99 };
push @data, { name =&gt; "Item B", price =&gt; 4.99 };
push @data, { name =&gt; "Item C", price =&gt; 7.5};</pre>
<p>We now have an array with 3 hashes in.  Suppose we want to sort by price, how do we do it?</p>
<pre>my @sorted =  sort { $a-&gt;{price} &lt;=&gt; $b-&gt;{price} } @data;</pre>
<p>Perl&#8217;s build in <a title="Perl Sort" href="http://perldoc.perl.org/functions/sort.html" target="_blank">sort</a> function allows us to specify a custom sort order.  Within the curly braces Perl gives us 2 variables, $a and $b, which reference 2 items to compare.  In our case, these are hash references so we can access the elements of the hash and sort by any key we want.  A description of the &lt;=&gt; operator can be found on <a title="comparison" href="http://www.perlfect.com/articles/sorting.shtml" target="_blank">Perlfect</a>.  Suppose we want to sort in reverse order?</p>
<pre>my @sorted =  sort { $b-&gt;{price} &lt;=&gt; $a-&gt;{price} } @data;</pre>
<p>Simple.  You can test this by adding the following line to the bottom of the script.</p>
<pre>print join "\n", map {$_-&gt;{name}." - ".$_-&gt;{price}} @sorted;</pre>
<p>Which gives us:</p>
<pre>Item B - 4.99
Item C - 7.5
Item A - 9.99</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=xD5qpI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=xD5qpI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=yPjAJi"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=yPjAJi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=RYJ65I"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=RYJ65I" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=1GoiNi"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=1GoiNi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=sSCpnI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=sSCpnI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=TOibaI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=TOibaI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/305959337" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/tutorials/perl/perl-sorting-an-array-of-hashes/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/tutorials/perl/perl-sorting-an-array-of-hashes/</feedburner:origLink></item>
		<item>
		<title>Phishing Attack Hosted on UK Government Website</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/302319168/</link>
		<comments>http://www.izonedesign.co.uk/blog/phishing/phishing-attack-hosted-on-uk-government-website/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 11:29:42 +0000</pubDate>
		<dc:creator>Adam Pope</dc:creator>
		
		<category><![CDATA[Phishing]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=74</guid>
		<description>A phishing attack has been discovered on the UK Government&amp;#8217;s Home Office website, The Register reports.  The attack, which targets poste.it, the website of Italian bank Poste Italiane, can be found here.  The attack was detected by security researchers PrevX and used an RFI exploit via an SQL injection to serve the fraudulent [...]</description>
			<content:encoded><![CDATA[<p>A phishing attack has been discovered on the UK Government&#8217;s Home Office website, <a title="Phishing Attack on UK Government site" href="http://www.theregister.co.uk/2008/06/03/home_office_crime_reduction_hack/" target="_blank">The Register reports</a>.  The attack, which targets <a href="http://www.poste.it" target="_blank">poste.it</a>, the website of Italian bank Poste Italiane, can be <a title="Poste Italiane Phish" href="http://www.crimereduction.homeoffice.gov.uk/alcoholorders/Archive070410/poste/cartepr/" target="_blank">found here</a>.  The attack was detected by security researchers PrevX and used an RFI exploit via an SQL injection to serve the fraudulent content.</p>
<p><span id="more-74"></span></p>
<p><a href="http://www.crimereduction.homeoffice.gov.uk/alcoholorders/Archive070410/poste/cartepr/"><img class="alignnone size-full wp-image-75" title="Poste Italiane Phish" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/06/phish.jpg" alt="" width="500" height="313" /></a></p>
<p>Whilst the phish gains no extra credibility by being hosted on the Home Office&#8217;s website, it does raise serious questions about how it got there in the first place  and the security of the government&#8217;s websites. This is the department that knows everything there is to know about UK citizens after all and hackers have obviously found a back door somewhere!</p>
<p>&#8220;This is very embarrassing for the Home Office, having the Crime Reduction website hacked by cybercriminals is a bit like having a mugger hiding in the local police station nicking people&#8217;s wallets when they come in,&#8221; said Jacques Erasmus, head of malware research at Prevx.</p>
<p>May we suggest the web developers working for Her Maj&#8217;s government take time to read up on <a href="http://dev.mysql.com/tech-resources/articles/4.1/prepared-statements.html" target="_blank">SQL prepared statements</a> and how to properly escape SQL queries to <a href="http://en.wikipedia.org/wiki/SQL_injection" target="_blank">prevent such attacks</a> in the future.</p>
<p><strong>Update:</strong> The Home Office removed the phishy content from the site early on Monday morning.</p>
<p><strong>Update 2:</strong> The Government IT bods have been caught with their pants around their ankles again, this time with an <a href="http://www.theregister.co.uk/2008/06/04/direct_gov_web_kit_slip_up/" target="_blank">editable interface left open to the public</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=p0wxnI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=p0wxnI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=eypbGi"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=eypbGi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=v2E2UI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=v2E2UI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=jqaWvi"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=jqaWvi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=jJZdeI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=jJZdeI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=pJbRhI"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=pJbRhI" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/302319168" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/phishing/phishing-attack-hosted-on-uk-government-website/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/phishing/phishing-attack-hosted-on-uk-government-website/</feedburner:origLink></item>
		<item>
		<title>Netcraft Toolbar for Firefox 3 Released</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/294325933/</link>
		<comments>http://www.izonedesign.co.uk/blog/phishing/netcraft-toolbar-for-firefox-3-released/#comments</comments>
		<pubDate>Tue, 20 May 2008 15:05:03 +0000</pubDate>
		<dc:creator>Adam Pope</dc:creator>
		
		<category><![CDATA[Phishing]]></category>

		<category><![CDATA[extensions]]></category>

		<category><![CDATA[Netcraft]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=57</guid>
		<description>Netcraft have released a Firefox 3 compatible version of their widely used anti-phishing toolbar.  The new 1.2 version can be downloaded from addons.mozilla.org.
We named the Netcraft Toolbar as one of our Top Web Browsing Extensions and are delighted to be able to continue using it with the lastest version of our favourite web browser.
Thank [...]</description>
			<content:encoded><![CDATA[<p><a href="http://www.netcraft.com"><img class="alignleft size-full wp-image-58" title="Netcraft" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/logo.jpg" alt="" width="190" height="55" /></a><a href="http://news.netcraft.com">Netcraft</a> have released a Firefox 3 compatible version of their widely used <a href="http://toolbar.netcraft.com">anti-phishing toolbar</a>.  The new 1.2 version can be downloaded from <a title="Download Netcraft Toolbar" href="https://addons.mozilla.org/en-US/firefox/downloads/file/28161/netcraft_toolbar-1.1.1.9-fx.xpi" target="_blank">addons.mozilla.org</a>.</p>
<p>We named the Netcraft Toolbar as one of our <a href="http://www.izonedesign.co.uk/blog/internet-news/top-web-browsing-firefox-extensions/">Top Web Browsing Extensions</a> and are delighted to be able to continue using it with the lastest version of our favourite web browser.</p>
<p>Thank you Netcraft <img src='http://www.izonedesign.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=sKUcxH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=sKUcxH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=0H51ih"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=0H51ih" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=tM2OOH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=tM2OOH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=oJw7rh"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=oJw7rh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=eTEHiH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=eTEHiH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=3auoIH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=3auoIH" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/294325933" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/phishing/netcraft-toolbar-for-firefox-3-released/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/phishing/netcraft-toolbar-for-firefox-3-released/</feedburner:origLink></item>
		<item>
		<title>XSS Vulnerability at PayPal could lead to Phishing</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/291687706/</link>
		<comments>http://www.izonedesign.co.uk/blog/phishing/xss-vulnerability-at-paypal-could-lead-to-phishing/#comments</comments>
		<pubDate>Fri, 16 May 2008 14:36:08 +0000</pubDate>
		<dc:creator>Adam Pope</dc:creator>
		
		<category><![CDATA[Phishing]]></category>

		<category><![CDATA[paypal]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[xss]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=61</guid>
		<description>A cross-site scripting vulnerability (XSS) has been found in online payment processing firm PayPal&amp;#8217;s website.  The vulnerability allows arbitrary code execution and could be used in a Phishing attack to gather data from unsuspecting users.

This is a delightfully ironic story on the back of news that Paypal is planning to block &amp;#8216;unsafe&amp;#8217; browsers that [...]</description>
			<content:encoded><![CDATA[<p><a href="http://www.paypal.com"><img class="alignleft size-full wp-image-64" title="paypal" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/paypal.jpg" alt="" width="120" height="50" /></a>A <a href="http://en.wikipedia.org/wiki/Cross-site_scripting" target="_blank">cross-site scripting</a> vulnerability (XSS) has been found in online payment processing firm PayPal&#8217;s website.  The vulnerability allows arbitrary code execution and could be used in a Phishing attack to gather data from unsuspecting users.</p>
<p><span id="more-61"></span></p>
<p>This is a delightfully ironic story on the back of news that Paypal is planning to <a href="http://news.bbc.co.uk/1/hi/technology/7354539.stm" target="_blank">block &#8216;unsafe&#8217; browsers</a> that do not implement a variety of security features to help prevent phishing.  Perhaps they should try looking a little close to home first!</p>
<p><a href="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/paypal_xss12.jpg"><img class="alignnone size-full wp-image-66" title="paypal xss" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/paypal_xss12.jpg" alt="paypal xss vulnerability" width="500" height="337" /></a></p>
<h2>Potential for Phishing</h2>
<p>The vulnerability allows a malicious attacker to construct an entirely new page which will appear to be on the paypal.com domain name.  This fraudulent page could mimic the PayPal login and harvest account details.</p>
<p><a href="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/paypal_xss2.jpg"><img class="alignnone size-full wp-image-63" title="paypal xss" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/paypal_xss2.jpg" alt="Paypal xss allows code execution" width="476" height="171" /></a></p>
<p>And with a little more imagination you can do funny things like putting the WikiPedia XSS page onto PayPal:</p>
<p><a href="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/paypal_wikipedia.jpg"><img class="alignnone size-full wp-image-67" title="paypal wikipedia" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/paypal_wikipedia.jpg" alt="paypal xss whole" width="500" height="227" /></a></p>
<p>The vulnerability has been reported to PayPal, lets hope they close the hole before people fall victim to this.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=RMboZH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=RMboZH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=nHemFh"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=nHemFh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=ZxYelH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=ZxYelH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=VZSyjh"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=VZSyjh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=wZKHbH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=wZKHbH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=nFt9VH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=nFt9VH" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/291687706" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/phishing/xss-vulnerability-at-paypal-could-lead-to-phishing/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/phishing/xss-vulnerability-at-paypal-could-lead-to-phishing/</feedburner:origLink></item>
		<item>
		<title>Digg Releases New Comment System</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/291674209/</link>
		<comments>http://www.izonedesign.co.uk/blog/internet-news/digg-releases-new-comment-system/#comments</comments>
		<pubDate>Fri, 16 May 2008 14:13:03 +0000</pubDate>
		<dc:creator>Adam Pope</dc:creator>
		
		<category><![CDATA[Internet News]]></category>

		<category><![CDATA[Digg]]></category>

		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=59</guid>
		<description>Digg, the quintessential Web 2.0 social news site has released an update to its comment system.  This is a much needed update to a crumbling system.  The previous incarnation use to kill my browser if their were more than a couple of hundred comments, the new system is faultless - even on the [...]</description>
			<content:encoded><![CDATA[<h3><a href="http://www.digg.com"><img class="alignleft size-full wp-image-60" title="Digg" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/digg-2.jpg" alt="" width="145" height="84" /></a></h3>
<p><a href="http://www.digg.com" target="_blank">Digg</a>, the quintessential Web 2.0 social news site has released an <a href="http://blog.digg.com/?p=122" target="_blank">update to its comment system</a>.  This is a much needed update to a crumbling system.  The previous incarnation use to kill my browser if their were more than a couple of hundred comments, the new system is faultless - even on the announcement of this news, which had almost <a href="http://digg.com/tech_news/Digg_New_Comments_System_Released_2" target="_blank">2,000 comments</a>.</p>
<p><span id="more-59"></span></p>
<h2>Overview of Changes</h2>
<p>The new system is fairly comprehensive and leaves little untouched.  The changes can be broken down into 4 key areas:</p>
<h3>Presentation</h3>
<p>The new comment system pages the comments in blocks of 50 and only shows the first level of conversation by default.</p>
<blockquote><p>&#8220;The display of each page of comments is now managed by a processing queue, which allows the pages to load quickly without hammering your browser with all of the discussions and replies at once&#8221;</p></blockquote>
<p>The new system also hides comments by un-important users, highlighting the interesting comments and &#8220;you can now click the Digg count to see the total number of Diggs and buries for each comment&#8221;.</p>
<h3>Sorting</h3>
<p>The Digg team have added an fascinating new sort order.  Controversy.</p>
<blockquote><p>&#8220;Controversial sort &#8230; highlights comments with the most divergent ratings from Digg users&#8221;</p></blockquote>
<p>It&#8217;s also possible to filter comments made by you or your friends - very handy for finding the opinion of people you know among a sea of dross.</p>
<h3>Posting</h3>
<p>Posting is now easier than before.  A bigger, expanding text area and larger font size make posting a comment more accessible and a 5 minute edit window lets you tweak your opinion.</p>
<p>And for the indecisive among you, you can also now change your up/down vote for any comment as much as you like.</p>
<h3>Preferences</h3>
<p>Logged in users can customise the default comment display to their hearts content.</p>
<blockquote><p>&#8220;you can now choose how many discussions to initially load as well as whether discussions should be collapsed or expanded by default&#8221;</p></blockquote>
<p>Congratulations to the Digg team for listening to the community and delivering a much needed improvement!  Digg might not quite be <a href="http://mashable.com/2008/05/13/yahoo-buzz-is-bigger-than-digg-according-to-comscore/" target="_blank">dead</a>. Yet.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=2iz2hH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=2iz2hH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=voiSxh"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=voiSxh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=EhDYPH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=EhDYPH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=0Ga5Jh"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=0Ga5Jh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=fQ4yZH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=fQ4yZH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=rFSWvH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=rFSWvH" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/291674209" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/internet-news/digg-releases-new-comment-system/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/internet-news/digg-releases-new-comment-system/</feedburner:origLink></item>
		<item>
		<title>CSS Tab Navigation Creation Made Easy</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/291212177/</link>
		<comments>http://www.izonedesign.co.uk/blog/web-design/css-tab-navigation-creator/#comments</comments>
		<pubDate>Thu, 15 May 2008 21:44:32 +0000</pubDate>
		<dc:creator>Adam Pope</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[iZone News]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[iZone]]></category>

		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=52</guid>
		<description>iZone are proud to announce the beta release of a new time-saving tool for web designers and developers: iZone Design Tab Creator.  No coding.  No need for PhotoShop.  Quick and easy
Horizontal tabbed navigation created with standards compliant CSS and XHTML is becoming a very popular choice among web designers and developers.  Our [...]</description>
			<content:encoded><![CDATA[<p>iZone are proud to announce the beta release of a new time-saving tool for web designers and developers: <a title="Tab Navigation Creator" href="http://www.izonedesign.co.uk/blog/tools/TabCreator" target="_blank">iZone Design Tab Creator</a>.  No coding.  No need for PhotoShop.  Quick and easy</p>
<p>Horizontal tabbed navigation created with standards compliant CSS and XHTML is becoming a very popular choice among web designers and developers.  Our Tab Creator guides you through a range of options before delivering W3C standards compliant, semantic XHTML and CSS.</p>
<p><span id="more-52"></span></p>
<h2>Stylish CSS based Horizontal Tabbed Menu</h2>
<p>The <a title="Horizontal Navigation Creator" href="http://www.izonedesign.co.uk/blog/tools/TabCreator/" target="_blank">iZone Tab Creator</a> splits the tab creation process into 4 easy steps.  You can then see an instant preview of your new menu before downloading the code and images.  This step-by-step tutorial will walk you through the process of creating your menu:</p>
<h3>Step 1: Select Your Tab Style</h3>
<p><a href="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/picture-1.png"><img class="aligncenter size-full wp-image-53" title="Select Tab Style" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/picture-1.png" alt="Select your tab style" width="500" height="257" /></a></p>
<p>The iZone Tab Creator lets you create menus with a range of tab styles.  In the initial release there are 6 styles to pick from.  Simply click on your preferred style to select it and move on to step 2.</p>
<p>If you&#8217;ve got any suggestions for styles, leave us a note in the comments.</p>
<hr />
<h3>Step 2: Select Your Tab Color Scheme</h3>
<p><a href="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/picture-3.png"><img class="aligncenter size-full wp-image-54" title="Select colors" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/picture-3.png" alt="Define the color palette for your tabs" width="500" height="256" /></a></p>
<p>Step 2 allows you to blend your menu into the look and feel of your site.  Select the text and background color for the active and inactive tabs.  A Photoshop style color picker is provided to help you explore ideas and a single tab preview lets you see how it will look.  We have also provided 8 presets to get you started.</p>
<p>If you&#8217;ve already got hex values, you can simply copy and paste them into the text boxes.</p>
<hr />
<h3>Step 3: Add Tabs To Your Menu</h3>
<p><a href="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/picture-4.png"><img class="aligncenter size-full wp-image-55" title="Add Tabs" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/picture-4.png" alt="Add Tabs to your menu" width="500" height="256" /></a></p>
<p>Your menu needs to link to the pages on your site, right?  Step 3 lets you add tabs to your menu, up to a maximum of 10.  For each tab you can specify the text to display and the URL that the tab links to.</p>
<p>You can remove a tab by clicking on the cross on the left side. Tabs can be re-ordered by dragging and dropping the rows.</p>
<hr />
<h3>Step 4: Customise Your Menu&#8217;s Look and Feel</h3>
<p>In the initial beta launch the options area looks a little bare, we&#8217;re working on adding cool new features all the time!  Currently you have 3 options:</p>
<ul>
<li>The spacing between each of your tabs</li>
<li>The width of the bottom border</li>
<li>Whether your menu is aligned to the left or right.</li>
</ul>
<p>If you have any ideas for options you&#8217;d like to see, please let us know in the comments!</p>
<hr />
<h3>Step 5: Preview Your New Menu</h3>
<p><a href="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/picture-6.png"><img class="aligncenter size-full wp-image-56" title="Preview" src="http://www.izonedesign.co.uk/blog/wp-content/uploads/2008/05/picture-6.png" alt="preview the appearance of your menu" width="500" height="35" /></a></p>
<p>Step 5 provides an instant preview of the menu you have created.  It isn&#8217;t 100% accurate to the code that gets generated, but gives you a good idea of the appearance.  The main differences are:</p>
<ul>
<li>The preview only shows the first 3 tabs</li>
<li>Each tab is fixed width, the real menu is fluid and expands to contain the text entered</li>
</ul>
<hr />
<h3>Step 6: Download The Code</h3>
<p>When you click the &#8216;Download&#8217; button we generate the code and images needed for your menu, package it all up in one nice ZIP file and let you download it.  Inside your Zip file you will find:</p>
<ul>
<li><strong>tab_on.gif</strong> - The active tab background</li>
<li><strong>tab_off.gif</strong> - The inactive tab background</li>
<li><strong>tabs.html</strong> - HTML file containing code to navigation and related CSS</li>
</ul>
<p>To use the menu on your site:</p>
<ul>
<li>Copy the HTML onto your page.  You&#8217;ll need the &lt;div&gt; tag and its contents:
<pre id="line86">&lt;<span class="start-tag">div</span><span class="attribute-name"> id</span>=<span class="attribute-value">&#8220;nav&#8221;&gt;

&#8230;

&lt;/div&gt;</span></pre>
</li>
<li>Copy the CSS.  You can either place it in a &lt;style&gt; tag in the &lt;head&gt; of your page, or put it into an external style sheet (the preferred method).</li>
<li> Upload your pages and the 2 images to your server</li>
</ul>
<h2>Future Development</h2>
<p>We are still working on the <a title="Tab Navigation Creator" href="http://www.izonedesign.co.uk/blog/tools/TabCreator/" target="_blank">Tab Creator</a> and hope to add more cool features soon.  If you have any ideas or you find any bugs in the tool, please let us know in the comments.</p>
<h3>Credits</h3>
<p>Thanks to <a title="Isocra" href="http://www.isocra.com/2007/07/dragging-and-dropping-table-rows-in-javascript/" target="_blank">Isocra</a> for their ultra cool drag-n-drop script and <a title="Color Picker" href="http://www.webreference.com/programming/javascript/mk/column3/index.html" target="_blank">Mark Kahn</a> for his awesome color picker.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=1Utr7H"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=1Utr7H" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=QBA2Nh"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=QBA2Nh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=U21JSH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=U21JSH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=XItzxh"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=XItzxh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=sbg6yH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=sbg6yH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=sDbHHH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=sDbHHH" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/291212177" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/web-design/css-tab-navigation-creator/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/web-design/css-tab-navigation-creator/</feedburner:origLink></item>
		<item>
		<title>Photo Touchup in Photoshop CS3</title>
		<link>http://feeds.feedburner.com/~r/IzoneDesignBlog/~3/289585261/</link>
		<comments>http://www.izonedesign.co.uk/blog/tutorials/photo-touchup-in-photoshop-cs3/#comments</comments>
		<pubDate>Tue, 13 May 2008 17:32:33 +0000</pubDate>
		<dc:creator>Dave Kelly</dc:creator>
		
		<category><![CDATA[Adobe Photoshop]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=50</guid>
		<description>This tutorial will take us back to basics using some of the simplest yet most effective Photoshop CS3 tools available to us. The Burn, Dodge and Sponge tools.
Using these tools, we will turn an otherwise dull image into something far more beautiful.
Although they are examples of &amp;#8216;destructive&amp;#8217; Photoshoping, when dealing with small areas of images, [...]</description>
			<content:encoded><![CDATA[<p>This tutorial will take us back to basics using some of the simplest yet most effective Photoshop CS3 tools available to us. The <strong>Burn, Dodge</strong> and <strong>Sponge</strong> tools.</p>
<p>Using these tools, we will turn an otherwise dull image into something far more beautiful.</p>
<p>Although they are examples of &#8216;destructive&#8217; Photoshoping, when dealing with small areas of images, especially photos, it is far easier and more effective to &#8216;paint in&#8217; these effects rather than using masks to create similar results.<span id="more-50"></span></p>
<h3><strong>STEP 1</strong></h3>
<p>Select a photo that you want to touch up. I have picked an image i took on <a title="Brownsea Island" href="hhttp://www.nationaltrust.org.uk/main/w-vh/w-visits/w-findaplace/w-brownseaisland/" target="_blank">Brownsea Island</a> in. It isn&#8217;t a bad photo but the colours aren&#8217;t as vivid as i remember them in real life.</p>
<p><img class="alignnone" src="http://www.izonedesign.co.uk/blog/wp-content/tutorials/Brownsea/1.jpg" alt="Photo Touchup" /></p>
<hr />
<h3><strong>STEP 2 - Dodge</strong></h3>
<p>The dodge tool is the first of a pallet of three that we will be exploring in this tutorial. It is located here..</p>
<p><img class="alignnone" src="http://www.izonedesign.co.uk/blog/wp-content/tutorials/Brownsea/2.jpg" alt="Photo Touchup" /></p>
<p>The dodge tool works by lightening darkened areas under the brush. Its primary function is to bring back detail that you may have otherwise thought lost to the black.</p>
<p>I am using <strong>Brush Size 70</strong> with <strong>0 Hardness</strong>, and will be lightening the <strong>Midtones</strong> with an <strong>Exposure of 18.</strong></p>
<p>In my experience, you wont often need to change from Midtones, but for extra tweaking feel free to change the mode and experiment.</p>
<p>In my image i want to being some of the detail lost in the sand back to life.</p>
<p><img class="alignnone" src="http://www.izonedesign.co.uk/blog/wp-content/tutorials/Brownsea/3.jpg" alt="Photo Touchup" /></p>
<p>After a <strong>light brushing</strong> in the areas I want to save i have achieved the effect i want. Be careful you don&#8217;t overdo the dodging. It can lead to creation of noise.</p>
<p><img class="alignnone" src="http://www.izonedesign.co.uk/blog/wp-content/tutorials/Brownsea/4.jpg" alt="Photo Touchup" /></p>
<hr />
<h3><strong>STEP 3 - Burn</strong></h3>
<p>The <strong>Burn Tool</strong> as you may expect does the reverse of the dodge tool. It darkens objects. You may wonder about its uses, but it is fantastic at adding definition into photos. My favorite use is to revive distant, Grey horizon hills or mountains.</p>
<p>In my image, I want to restore that horizon and make some of the clouds look a little more ominous.</p>
<p><img class="alignnone" src="http://www.izonedesign.co.uk/blog/wp-content/tutorials/Brownsea/5.jpg" alt="Photo Touchup" /></p>
<p>Ive got my <strong>Burn Tool</strong> set to a very soft brush (<strong>0 Hardness</strong>), <strong>varying the size</strong> as i need with the burn settings on <strong>Midtones</strong> and a very <strong>low exposure of 10</strong>.</p>
<p><img class="alignnone" src="http://www.izonedesign.co.uk/blog/wp-content/tutorials/Brownsea/6.jpg" alt="Photo Touchup" /></p>
<hr />
<h3><strong>STEP 4 - Sponge</strong></h3>
<p>Now for a little touch of Photoshop CS3 magic. The sponge tool has the ability to <strong>saturate or desaturate</strong> an area in order to restore or take away vivid colour.</p>
<p>The beauty of using the sponge tool over a hue/saturate adjustment is that i can can apply different levels of saturation with my brush depending on the areas i want to effect. So in this case i want to bring out the colours in the amazing sky, and more so in the sunset oranges.</p>
<p>To do this I will be using a soft brush (<strong>0 Hardness</strong>), of <strong>varying size</strong>. <strong>Mode set to Saturate</strong> and <strong>Flow set to 20.</strong></p>
<p>So simply brush more over the areas you want to effect the most. To give you an idea of how I&#8217;ve applied the sponge,I saturated the blues slightly less than the reds and oranges. The water had the least amount of saturation.</p>
<p><img class="alignnone" src="http://www.izonedesign.co.uk/blog/wp-content/tutorials/Brownsea/7.jpg" alt="Photo Touchup" /></p>
<p>And the results are fairly fantastic..</p>
<p><img class="alignnone" src="http://www.izonedesign.co.uk/blog/wp-content/tutorials/Brownsea/8.jpg" alt="Photo Touchup" /></p>
<hr />
<h3><strong>STEP 5 - Crop, Frame and Sign</strong></h3>
<p>A few final touches. I have cropped the image and added a black border to focus the viewer. I have also added a Palce/Date to the finished artical.</p>
<p><img class="alignnone" src="http://www.izonedesign.co.uk/blog/wp-content/tutorials/Brownsea/9.jpg" alt="Photo Touchup" /></p>
<p>I hope you have enjoyed seeing these simple yet effective tools in action. Please feel free to post your own revitalized images and comment below.</p>
<h4>Recommended</h4>
<div class="amm_product">
<div class="amm_image"><a href="http://www.amazon.co.uk/exec/obidos/ASIN/0321492021/developetutor-21/" title="Click to view item at Amazon"><img src="http://ecx.images-amazon.com/images/I/01IZFg4oVwL.jpg" alt="Adobe Photoshop CS3 Classroom in a Book" /></a></div>
<div class="amm_product_info"><a href="http://www.amazon.co.uk/exec/obidos/ASIN/0321492021/developetutor-21/" class="amm_title">Adobe Photoshop CS3 Classroom in a Book</a><span class="amm_author"><em>Author:</em> Adobe Creative Team</span><span class="amm_rating"><em>Rating:</em> <img src="http://www.izonedesign.co.uk/blog/wp-content/plugins/amm/4.gif" alt="Rating: 4"/></span></div>
</div>
<div class="amm_product">
<div class="amm_image"><a href="http://www.amazon.co.uk/exec/obidos/ASIN/B000FK88JK/developetutor-21/" title="Click to view item at Amazon"><img src="http://ecx.images-amazon.com/images/I/11kkq3myLgL.jpg" alt="Mac OS X Leopard" /></a></div>
<div class="amm_product_info"><a href="http://www.amazon.co.uk/exec/obidos/ASIN/B000FK88JK/developetutor-21/" class="amm_title">Mac OS X Leopard</a><span class="amm_author"><em>Manufacturer:</em> Apple</span><span class="amm_rating"><em>Rating:</em> <img src="http://www.izonedesign.co.uk/blog/wp-content/plugins/amm/5.gif" alt="Rating: 5"/></span></div>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=MNYBXH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=MNYBXH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=ePsHZh"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=ePsHZh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=caBKhH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=caBKhH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=MgWzlh"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=MgWzlh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=TBbOsH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=TBbOsH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/IzoneDesignBlog?a=3C2ZnH"><img src="http://feeds.feedburner.com/~f/IzoneDesignBlog?i=3C2ZnH" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/IzoneDesignBlog/~4/289585261" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.izonedesign.co.uk/blog/tutorials/photo-touchup-in-photoshop-cs3/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.izonedesign.co.uk/blog/tutorials/photo-touchup-in-photoshop-cs3/</feedburner:origLink></item>
	</channel>
</rss>
