<?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>The Buzz</title>
	<atom:link href="http://thebuzz.creativehive.com.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://thebuzz.creativehive.com.au</link>
	<description>Creative Hive blog</description>
	<lastBuildDate>Wed, 18 May 2011 01:25:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>3 must have developer tools for Firefox</title>
		<link>http://thebuzz.creativehive.com.au/2010/12/3-must-have-developer-tools-for-firefox/</link>
		<comments>http://thebuzz.creativehive.com.au/2010/12/3-must-have-developer-tools-for-firefox/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 05:47:49 +0000</pubDate>
		<dc:creator>Harry</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://thebuzz.creativehive.com.au/?p=70</guid>
		<description><![CDATA[There are some developer tools which I can't live without when developing using Firefox. They have saved me countless hours and simplify the entire development experience, here is a list of my top three recommended Firefox add-ons. Firebug This firefox extension is by far the single most useful tool when developing a website, it has [...]]]></description>
			<content:encoded><![CDATA[<p>There are some developer tools which I can't live without when developing using Firefox. They have saved me countless hours and simplify the entire development experience, here is a list of my top three recommended Firefox add-ons.</p>
<p><strong>Firebug</strong><br />
This firefox extension is by far the single most useful tool when developing a website, it has the ability to modify HTML or even CSS live on the website. This means that you don't need to go and make changes to the actual code and refresh only to find it's still not working - you can adjust the code right through the open browser window and the changes will be updated automatically.<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/1843/">Download here</a></p>
<p><strong>Web developer toolbar.</strong><br />
While Firebug does cover a significant portion of this toolbars functionality, it still does have a lot to offer such and ability to manage your session cookies, images, JavaScript and advanced form handling functionality.<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/60/">Download here</a></p>
<p><strong>HTML Validator for Firefox</strong><br />
One of the most frustrating things I find about using the online validator is that it can only validate public facing URL's. Meaning that if you're developing on your local server or a page behind .htaccess authentication there's no way for you to check if the page is valid HTML mark up. Well with this nifty tool you'll be able to validate any page without an internet connection, meaning that you can validate any web page directly through your firefox browser.<br />
<a href="http://users.skynet.be/mgueury/mozilla/">Download here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thebuzz.creativehive.com.au/2010/12/3-must-have-developer-tools-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISO-8859 compliant text</title>
		<link>http://thebuzz.creativehive.com.au/2010/09/iso-8859-compliant-text/</link>
		<comments>http://thebuzz.creativehive.com.au/2010/09/iso-8859-compliant-text/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 04:56:07 +0000</pubDate>
		<dc:creator>Harry</dc:creator>
				<category><![CDATA[Email marketing]]></category>

		<guid isPermaLink="false">http://thebuzz.creativehive.com.au/?p=21</guid>
		<description><![CDATA[If you've ever created an email template and pasted text from Microsoft Word then chances are that you've experienced those weird letters which come up such as "&#226;&#8364;&#8220;". The reason this happens is because these characters are not part of the ISO 8859-1 character set, which are assigned values from 0 to 255. So the [...]]]></description>
			<content:encoded><![CDATA[<p>If you've ever created an email template and pasted text from Microsoft Word then chances are that you've experienced those weird letters which come up such as "&#226;&#8364;&#8220;". </p>
<p>The reason this happens is because these characters are not part of the ISO 8859-1 character set, which are assigned values from 0 to 255. So the solution is to convert these numbers into a numbered entity range from 128 to 255.</p>
<p><strong>Converting the ISO-8859-1 Characters to HTML Numbered Entities</strong><br />
This first option is to manually replace these characters as per the below reference table:</p>
<table width="100%" cellspacing="0" border="1">
<tbody>
<tr>
<th align="left">Character</th>
<th align="left">Entity Number</th>
<th align="left">Entity Name</th>
<th align="left">Description</th>
</tr>
<tr>
<td>"</td>
<td>&amp;#34;</td>
<td>&amp;quot;</td>
<td>quotation mark</td>
</tr>
<tr>
<td>'</td>
<td>&amp;#39;</td>
<td>&amp;apos; (does not work in IE)</td>
<td>apostrophe&nbsp;</td>
</tr>
<tr>
<td>&amp;</td>
<td>&amp;#38;</td>
<td>&amp;amp;</td>
<td>ampersand</td>
</tr>
<tr>
<td>&lt;</td>
<td>&amp;#60;</td>
<td>&amp;lt;</td>
<td>less-than</td>
</tr>
<tr>
<td>&gt;</td>
<td>&amp;#62;</td>
<td>&amp;gt;</td>
<td>greater-than</td>
</tr>
</tbody>
</table>
<p>* Full list available at <a href="http://www.w3schools.com/tags/ref_entities.asp">http://www.w3schools.com/tags/ref_entities.asp</a></p>
<p>The second option is to use a simple free program I've built for you to use, all you have to do is go to the below link and paste in your dirty code and it will output some nice clean ISO-8859 compliant text for you.</p>
<p><a href="http://creativehive.com.au/clean-up-my-code.php">Clean up my code >></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thebuzz.creativehive.com.au/2010/09/iso-8859-compliant-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to write new copy for your website</title>
		<link>http://thebuzz.creativehive.com.au/2010/06/how-to-write-new-copy-for-your-website/</link>
		<comments>http://thebuzz.creativehive.com.au/2010/06/how-to-write-new-copy-for-your-website/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 08:50:15 +0000</pubDate>
		<dc:creator>Harry</dc:creator>
				<category><![CDATA[Marketing copy]]></category>

		<guid isPermaLink="false">http://thebuzz.creativehive.com.au/?p=26</guid>
		<description><![CDATA[If you're like me, then you probably use Dreamweaver when you're building a new web page because its easy to switch between the code and design view. We'll this can cause all sorts of trouble when you're trying to write marketing copy. Here's my experience, one day I found myself needing to write some new [...]]]></description>
			<content:encoded><![CDATA[<p>If you're like me, then you probably use Dreamweaver when you're building a new web page because its easy to switch between the code and design view. We'll this can cause all sorts of trouble when you're trying to write marketing copy.</p>
<p>Here's my experience, one day I found myself needing to write some new copy for a web page, so I opened up Dreamweaver and started typing. </p>
<p>First I created my page heading, which of course I thought should be wrapped in a &lt;h1&gt; tag, to be consistent with the rest of the website. I then started writing some of the copy for the web page and realised that I needed to create my content &lt;div&gt; tag as well as my &lt;p&gt; tag.</p>
<p>This went on for quite some time, before I realised that I wasn't really making any progress with the message I was actually trying to convey. The problem as I'm sure you can probably see by now is that I was so occupied with the design that I couldn't focus properly on the actual copy of the new web page.</p>
<p>The lesson I learnt from this experience is that if you're creating a new web page you should always open up a basic text editor and start typing in there. That way you're not distracted by the design or layout of the page.</p>
<p>It's important to make sure that you don't lose the message you're trying to convey by being a jack of all trades.</p>
<p>Here's another great blog post on this topic, which also explains why it's important to have separation between a designer and marketer. <a href="http://shaynetilley.com/wear-more-than-one-hat-eventually-theyll-all-come-crashing-down/">Wear more than one hat and eventually they'll all come crashing down</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thebuzz.creativehive.com.au/2010/06/how-to-write-new-copy-for-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP error reporting</title>
		<link>http://thebuzz.creativehive.com.au/2009/03/php-error-reporting/</link>
		<comments>http://thebuzz.creativehive.com.au/2009/03/php-error-reporting/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 08:39:37 +0000</pubDate>
		<dc:creator>Harry</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://thebuzz.creativehive.com.au/?p=17</guid>
		<description><![CDATA[If you've ever experienced a blank white screen after modifying your PHP code, then you should find these two lines of code very useful. By default error reporting is turned off which most configurations of PHP, however to turn it on is pretty straight forward. In order to turn on PHP error reporting you'll just [...]]]></description>
			<content:encoded><![CDATA[<p>If you've ever experienced a blank white screen after modifying your PHP code, then you should find these two lines of code very useful.</p>
<p>By default error reporting is turned off which most configurations of PHP, however to turn it on is pretty straight forward. In order to turn on PHP error reporting you'll just need to add the following two lines of code at the beginning of your application.</p>
<p><code>ini_set('display_errors',1);<br />
error_reporting(E_ALL);</code></p>
<ul>
<li>The first line enables errors, and says that they should be printed to the screen as part of the output.</li>
<li>The second line specifies that all errors should be included in the output.</li>
</ul>
<p>Once you've made the change refresh your page and you should now see some useful error messages which will help you debug the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebuzz.creativehive.com.au/2009/03/php-error-reporting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE conditional statements</title>
		<link>http://thebuzz.creativehive.com.au/2008/10/ie-conditional-statements/</link>
		<comments>http://thebuzz.creativehive.com.au/2008/10/ie-conditional-statements/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 03:09:20 +0000</pubDate>
		<dc:creator>Harry</dc:creator>
				<category><![CDATA[Cross browser compatibility]]></category>

		<guid isPermaLink="false">http://thebuzz.creativehive.com.au/?p=5</guid>
		<description><![CDATA[We all know those ugly hacks for CSS Stylesheets, and the many reasons not to use them. IE (Internet Explorer) conditional statements allow us to create a separate stylesheet specifically for Internet Explorer browsers, we can even specify the browser version. This is very powerful because it means you can have more control and still [...]]]></description>
			<content:encoded><![CDATA[<p>We all know those ugly hacks for CSS Stylesheets, and the many reasons not to use them.</p>
<p>IE (Internet Explorer) conditional statements allow us to create a separate stylesheet specifically for Internet Explorer browsers, we can even specify the browser version.</p>
<p>This is very powerful because it means you can have more control and still have a fully compliant XHTML document.</p>
<p>The below example will detect if the browser is Internet Explorer version 7, and if so then it will load a separate style sheet.<br />
<code>&lt;!--[if lt IE 7]&gt;<br />
&lt;link rel="stylesheet" type="text/css" href="style_ie7.css" /&gt;<br />
&lt;![endif]--&gt;</code></p>
<p>Also, as mentioned earlier it's possible to specify a separate style sheet for Internet Explorer 6. You just need to modify the first line of the code to "IE 6", which is illustrated in the below example.<br />
<code>&lt;!--[if lt IE 6]&gt;<br />
&lt;link rel="stylesheet" type="text/css" href="style_ie6.css" /&gt;<br />
&lt;![endif]--&gt;</code></p>
<p>Make sure to place this code just before the closing <code>&lt;/head&gt;</code> tag of your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebuzz.creativehive.com.au/2008/10/ie-conditional-statements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

