<?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 Web Development Blog</title>
	<atom:link href="http://www.thewebdevelopmentblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thewebdevelopmentblog.com</link>
	<description>News, tips, scripts and tutorials for web developers.</description>
	<lastBuildDate>Sun, 09 May 2010 12:19:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>The death of Flash.</title>
		<link>http://www.thewebdevelopmentblog.com/2010/05/the-death-of-flash/</link>
		<comments>http://www.thewebdevelopmentblog.com/2010/05/the-death-of-flash/#comments</comments>
		<pubDate>Sun, 09 May 2010 12:19:38 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.thewebdevelopmentblog.com/?p=445</guid>
		<description><![CDATA[I&#8217;ve always been against Adobe Flash. It&#8217;s slow, CPU consuming, insecure, painful to work with and overly very user unfriendly. Finally my dislike for Flash is being met with by powerful companies who are all now rallying against Flash and pushing towards HTML 5. It all started with Steve Jobs writing a letter announcing why [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been against Adobe Flash. It&#8217;s slow, CPU consuming, insecure, painful to work with and overly very user unfriendly. Finally my dislike for Flash is being met with by powerful companies who are all now rallying against Flash and pushing towards HTML 5.</p>
<p><span id="more-445"></span></p>
<p>It all started with Steve Jobs writing <a href="http://www.apple.com/hotnews/thoughts-on-flash/">a letter</a> announcing why Flash will never be supported on the iPhone or iPad. It has been the talk of the industry and now more hands are rising in favour of ditching Flash and living with HTML 5. Following is Opera (the browser) and Microsoft both stating that they back HTML 5 in favour of Flash. (Microsoft clearly doesn&#8217;t realise it&#8217;s Silverlight is likely to die as well)</p>
<p>With Javascript being able to do most of Flash&#8217;s tricks natively it&#8217;s main purpose has been used for video and audio. Now HTML 5 can do both of these making Flash virtually pointless.</p>
<p>YouTube, Vimeo and Scribd are just a few of the sites that used to rely heavily on Flash that are taking advantage of HTML 5 features to rid themselves of Flash for a better user experience. I myself have been working of ridding Flash out of my sites, namely <a href="http://www.NexTunes.com.au" target="_blank">NexTunes.com.au</a>&#8216;s audio player will run using the audio tag in browsers which support it coming the next release of the site and it will also say goodbye to any Flash based ads.</p>
<p>Adobe are obviously concerned about this recent onslaught from competitors and will be interesting to see whether or not they try new techniques to keep Flash alive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2010/05/the-death-of-flash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Manipulating Images in PHP: Easy GD functions to make editing images easier.</title>
		<link>http://www.thewebdevelopmentblog.com/2010/03/manipulating-images-in-php-easy-gd-functions-to-make-editing-images-easier/</link>
		<comments>http://www.thewebdevelopmentblog.com/2010/03/manipulating-images-in-php-easy-gd-functions-to-make-editing-images-easier/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 06:49:28 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[GD]]></category>

		<guid isPermaLink="false">http://www.thewebdevelopmentblog.com/?p=438</guid>
		<description><![CDATA[Having done quite a bit of delving into using GD to do tasks such as resize images, rotate images and crop images I&#8217;ve found it&#8217;s quite a long process to code something that should be rather simple. To make it easier I&#8217;ve created a set of functions to do these simple tasks, simply&#8230; Get The [...]]]></description>
			<content:encoded><![CDATA[<p>Having done quite a bit of delving into using GD to do tasks such as resize images, rotate images and crop images I&#8217;ve found it&#8217;s quite a long process to code something that should be rather simple. To make it easier I&#8217;ve created a set of functions to do these simple tasks, simply&#8230;</p>
<p><span id="more-438"></span></p>
<h2>Get The Functions</h2>
<p>Download the functions here: <a href="http://www.thewebdevelopmentblog.com/examples/gd-image/gd-image.zip">GD Functions V1.0</a></p>
<h2>Using The Functions</h2>
<p>There are currently 3 functions included that are quite flexible and they allow you to:</p>
<ul>
<li>Resize Images</li>
<li>Rotate Images</li>
<li>Crop Images</li>
</ul>
<p>This is a pretty standard set of functions but they are very easy to use, and they do all the heavy GD lifting for you.</p>
<p>In order to use the functions you must first include the <a href="http://www.thewebdevelopmentblog.com/examples/gd-image/gd-image.zip">GD Functions</a> into your page.</p>
<p><code></p>
<pre>&lt;?php
require_once("gd-images.min.php");
?&gt;</pre>
<p></code></p>
<h3>resizeImage(file, width, height, [newFile, [forceResize, [quality]]]);</h3>
<p>Can resize an image in PHP.</p>
<p style="padding-left: 30px;"><strong>File: </strong>The address to the file you wish to resize. eg. <em>&#8220;../storage/my-image.jpg&#8221;</em></p>
<p style="padding-left: 30px;"><strong>Width: </strong>The max width (or new width) for the image to be resized to. eg. <em>125</em></p>
<p style="padding-left: 30px;"><strong>Height: </strong>The max height (or new height) for the image to be resized to. eg. <em>125</em></p>
<p style="padding-left: 30px;"><strong>NewFile: </strong>(optional, default:<em>file</em>) If set, it will create a new file at this address instead of replacing the old image file.eg. <em>&#8220;../storage/my-new-image.jpg&#8221;</em></p>
<p style="padding-left: 30px;"><strong>ForceResize: </strong>(optional, default:<em>false</em>) If set to true will force the image to resize (in ratio) to the new height. eg. <em>true</em></p>
<p style="padding-left: 30px;"><strong>Quality: </strong>(optional, default:<em>90</em>) The quality of the image being exported. Integer between 0-100, 100 being the best quality. eg. <em>80</em></p>
<p><code></p>
<pre>&lt;?php
require_once("gd-images.min.php");
// Resize Example
resizeImage("../storage/my-image.jpg", 125, 125, "../storage/my-new-image.jpg", true, 75);
?&gt;</pre>
<p></code></p>
<h3>rotateImage(file, Angle, [newFile]);</h3>
<p>Can rotate an image to any angle in PHP.</p>
<p style="padding-left: 30px;"><strong>File:</strong> The address to the file you wish to rotate. eg. <em>&#8220;../storage/my-image.jpg&#8221;</em></p>
<p style="padding-left: 30px;"><strong>Angle: </strong>The angle you would like to rotate the image to. Integer between 0-360. eg. <em>90</em></p>
<p style="padding-left: 30px;"><strong>NewFile: </strong>(optional, default:<em>file</em>) If set, it will create a new file at this address instead of replacing the old image file.eg. <em>&#8220;../storage/my-new-image.jpg&#8221;</em></p>
<p><code></p>
<pre>&lt;?php
require_once("gd-images.min.php");
// Rotate Example
rotateImage("../storage/my-image.jpg", 180, "../storage/my-new-image.jpg");
?&gt;</pre>
<p></code></p>
<h3>cropImage(file, X1, Y1, X2, Y2, [width, [height, [newFile]]]);</h3>
<p>Can crop a portion of an image, then resize that portion to a specified width/height in PHP.</p>
<p style="padding-left: 30px;"><strong>File:</strong> The address to the file you wish to crop. eg. <em>&#8220;../storage/my-image.jpg&#8221;</em></p>
<p style="padding-left: 30px;"><strong>X1: </strong>The X co-ordinate for the top left corner of the position you wish to cut. Integer. eg. <em>10</em></p>
<p style="padding-left: 30px;"><strong>Y1: </strong>The Y co-ordinate for the top left corner of the position you wish to cut. Integer. eg.<em> <em>10</em></em></p>
<p style="padding-left: 30px;"><strong>X2: </strong>The X co-ordinate for the bottom right corner of the position you wish to cut. Integer. eg. <em>100</em></p>
<p style="padding-left: 30px;"><strong>Y2: </strong>The Y co-ordinate for the bottom right corner of the position you wish to cut. Integer. eg. <em>100</em></p>
<p style="padding-left: 30px;"><strong>Width: </strong>(optional, default:<em>cropWidth</em>) The width you&#8217;d like the cropped image to be. If not set it will default to the width of the area being cropped. Integer. eg. <em>50</em></p>
<p style="padding-left: 30px;"><strong>Height: </strong>(optional, default:<em>cropHeight</em>) The height you&#8217;d like the cropped image to be. If not set it will default to the height of the area being cropped. Integer. eg. <em>50</em></p>
<p style="padding-left: 30px;"><strong>NewFile: </strong>(optional, default:<em>file</em>) If set, it will create a new file at this address instead of replacing the old image file.eg. <em>&#8220;../storage/my-new-image.jpg&#8221;</em></p>
<p><code></p>
<pre>&lt;?php
require_once("gd-images.min.php");
// Crop Example
rotateImage("../storage/my-image.jpg", 10, 10, 100, 100, 50, 50, "../storage/my-new-image.jpg");
?&gt;</pre>
<p></code></p>
<blockquote><p><em><span style="font-style: normal;"><strong>Notes</strong></span></em></p>
<ul>
<li>Requires the PHP GD extension installed to work (comes with most hosting set-ups)</li>
<li>Supports JPEG, PNG &amp; GIF files.</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2010/03/manipulating-images-in-php-easy-gd-functions-to-make-editing-images-easier/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>YouTube supports HTML 5 to rid Flash</title>
		<link>http://www.thewebdevelopmentblog.com/2010/01/youtube-supports-html-5-to-rid-flash/</link>
		<comments>http://www.thewebdevelopmentblog.com/2010/01/youtube-supports-html-5-to-rid-flash/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 23:41:12 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=425</guid>
		<description><![CDATA[YouTube has just launched an opt-in beta to support a HTML 5 instead of the flash player that we&#8217;re used to. If you&#8217;re like me you try to avoid using Flash where-ever possible, and HTML 5&#8242;s video support is a step closer to a Flash-free web. The beta currently supports the following browsers: Google Chrome [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com" target="_blank">YouTube</a> has just launched an opt-in beta to support a HTML 5 instead of the flash player that we&#8217;re used to. If you&#8217;re like me you try to avoid using Flash where-ever possible, and HTML 5&#8242;s video support is a step closer to a Flash-free web.</p>
<p><span id="more-425"></span></p>
<p>The beta currently supports the following browsers:</p>
<ul>
<li>Google Chrome</li>
<li>Safari (4+)</li>
<li>Internet Explorer with Chrome Frame installed</li>
</ul>
<p>If you&#8217;re using one of these browsers, jump on to the YouTube HTML 5 beta page to opt-in and start trying out the Flash-free video player.</p>
<p><a href="http://www.youtube.com/html5" target="_blank">http://www.youtube.com/html5</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2010/01/youtube-supports-html-5-to-rid-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery 1.4 hits the web.</title>
		<link>http://www.thewebdevelopmentblog.com/2010/01/jquery-1-4-hits-the-web/</link>
		<comments>http://www.thewebdevelopmentblog.com/2010/01/jquery-1-4-hits-the-web/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 05:09:02 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=419</guid>
		<description><![CDATA[In case you haven&#8217;t run around the web recently you may or may not have noticed jQuery 1.4 has just hit the web. The new release has a large list of improvements on features, speed increases as well as is highly backwards compatible which means most people can upgrade without any real hassles. Instead of [...]]]></description>
			<content:encoded><![CDATA[<p>In case you haven&#8217;t run around the web recently you may or may not have noticed jQuery 1.4 has just hit the web. The new release has a large list of improvements on features, speed increases as well as is highly backwards compatible which means most people can upgrade without any real hassles.</p>
<p><span id="more-419"></span></p>
<p>Instead of re-writing all the new features and speed improvements jump on the official release site for more details:</p>
<p><a href="http://jquery14.com/day-01/jquery-14" target="_blank">http://jquery14.com/day-01/jquery-14</a></p>
<p>Be sure to read the backwards incompatibilities at the bottom just to make sure nothing will break when you upgrade.</p>
<p>I&#8217;ll post a review once I&#8217;ve had a chance to put it through it&#8217;s paces properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2010/01/jquery-1-4-hits-the-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A new way to keep up to date with web design + development news.</title>
		<link>http://www.thewebdevelopmentblog.com/2009/11/a-new-way-to-keep-up-to-date-with-web-design-development-news/</link>
		<comments>http://www.thewebdevelopmentblog.com/2009/11/a-new-way-to-keep-up-to-date-with-web-design-development-news/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 02:32:51 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=414</guid>
		<description><![CDATA[Like most people, you probably have many blogs you check out frequently. A new site (Web Resauce) aggregates around 100 web design + development blogs (including this one) into one location so you can scan just 1 site for articles that interest you. Web Resauce allows you  to either view the article on the bloggers [...]]]></description>
			<content:encoded><![CDATA[<p>Like most people, you probably have many blogs you check out frequently. A new site (<a href="http://www.webresauce.com" target="_blank">Web Resauce</a>) aggregates around 100 web design + development blogs (including this one) into one location so you can scan just 1 site for articles that interest you. <a href="http://http://www.webresauce.com" target="_blank">Web Resauce</a> allows you  to either view the article on the bloggers site or view it on <a href="http://www.webresauce.com" target="_blank">Web Resauce</a> with it&#8217;s readability focused design.</p>
<p><span id="more-414"></span></p>
<p>If there are articles that you really like you can tell the world by clicking the &#8220;like&#8221; button much like Facebook, or you can share the article on Twitter or Facebook, with the click of a button. Many new features are planned and should be rolled out in the coming months. If you have any ideas on how to improve <a href="http://www.webresauce.com" target="_blank">Web Resauce</a> then please feel free to let me know by commenting this post.</p>
<p>But definitely check out <a href="http://www.webresauce.com" target="_blank">Web Resauce</a> and let me know your thoughts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2009/11/a-new-way-to-keep-up-to-date-with-web-design-development-news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to make a div stretch to 100% of the window height &amp; fixing the background color or image not covering the entire window</title>
		<link>http://www.thewebdevelopmentblog.com/2009/11/how-to-make-a-div-stretch-to-100-of-the-window-height-fixing-the-background-color-or-image-not-covering-the-entire-window/</link>
		<comments>http://www.thewebdevelopmentblog.com/2009/11/how-to-make-a-div-stretch-to-100-of-the-window-height-fixing-the-background-color-or-image-not-covering-the-entire-window/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 10:30:42 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=402</guid>
		<description><![CDATA[I know, it&#8217;s massively long title, but I thought I&#8217;d fix too issues with 1 post as they both have the identical solution. The main one is when creating some sites recently they were fairly short designs and bizarrely the CSS background color didn&#8217;t fill the window. This was puzzling, but I did find a solution. The [...]]]></description>
			<content:encoded><![CDATA[<p>I know, it&#8217;s massively long title, but I thought I&#8217;d fix too issues with 1 post as they both have the identical solution. The main one is when creating some sites recently they were fairly short designs and bizarrely the CSS background color didn&#8217;t fill the window. This was puzzling, but I did find a solution. The other issue is when you&#8217;re trying to make a div to stretch to fill a window, it doesn&#8217;t like to do it, the solution for this is the same as the other issue.</p>
<p><span id="more-402"></span></p>
<h1>The Problems</h1>
<p><strong>a) </strong>Your background won&#8217;t fill the screen even though you&#8217;ve set the color in the body via CSS as per below:</p>
<div id="attachment_404" class="wp-caption alignnone" style="width: 310px"><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/11/Screen-shot-2009-10-31-at-6.26.49-PM.png"><img class="size-medium wp-image-404" title="Screen shot 2009-10-31 at 6.26.49 PM" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/11/Screen-shot-2009-10-31-at-6.26.49-PM-300x191.png" alt="Background doesn't fill the screen" width="300" height="191" style="border:1px solid #000;<br />
"/></a><p class="wp-caption-text">Background doesn&#39;t fill the screen</p></div>
<p><strong>b)</strong> Can&#8217;t get a div or other element to stretch 100% of the browser window.</p>
<h1>The Solution</h1>
<p>It&#8217;s quite simple, in your CSS put <em>height: 100%;</em> in <strong>both</strong> the html and body as follows:</p>
<p><code></p>
<pre>html {
  height: 100%;
}

body {
  height: 100%;
  ........
}</pre>
<p></code></p>
<h1>Why does it occur?</h1>
<p>The reasons these problems occur is because most browsers don&#8217;t automatically render the page/body to 100% of the browser windows height.  This in turn means that when the background is rendered on the body or the height is set to 100% it will only fill 100% of whatever the body is. This is why setting the html and body&#8217;s height to 100% will fix the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2009/11/how-to-make-a-div-stretch-to-100-of-the-window-height-fixing-the-background-color-or-image-not-covering-the-entire-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First look at Google Chrome Alpha for Mac</title>
		<link>http://www.thewebdevelopmentblog.com/2009/10/test-drive-google-chrome-alpha-for-mac/</link>
		<comments>http://www.thewebdevelopmentblog.com/2009/10/test-drive-google-chrome-alpha-for-mac/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 01:48:21 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=398</guid>
		<description><![CDATA[I managed to get my hands on the long awaited alpha version of Google Chrome for Mac last week and have now taken it for a serious test drive. Although the browser is far from being ready for Beta, it is looking like it will hurt Safari and Firefox by combining the best features of [...]]]></description>
			<content:encoded><![CDATA[<p>I managed to get my hands on the long awaited alpha version of Google Chrome for Mac last week and have now taken it for a serious test drive. Although the browser is far from being ready for Beta, it is looking like it will hurt Safari and Firefox by combining the best features of each of them.</p>
<p><span id="more-398"></span></p>
<p>It has been a long time since I had last considered using an alternative browser to Safari. But when I got my hands on Google Chrome for Mac &#8211; My browser world was shaken.</p>
<p><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/10/chrome.png"><img class="alignnone size-medium wp-image-399" title="Google Chrome" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/10/chrome-300x193.png" alt="Google Chrome" width="300" height="193" /></a></p>
<h1>Appearance</h1>
<p>My grudge about Chrome on Windows was the ugly blue colour they chose. I love blue, but I don&#8217;t want a blue browser, that just doesn&#8217;t make sense. Thankfully the Mac version does away with the ugly blue and introduces the beautiful Mac chrome they all we love so very much. Although not the prettiest style, the tabs work very well sitting on top of the address bar as attempted by Apple in the Safari 4 Beta. The only difference is Chrome has enough space to drag the window separately to the tabs &#8211; Apple attempted to have all as one, which failed miserably. The address bar, bookmarks and navigation buttons aren&#8217;t anywhere near as nice as Safari and Firefox 3, but Google aren&#8217;t exactly known for their brilliant design skills. Google Chrome also has themes so if you don&#8217;t like the look, just change it.</p>
<h1>Speed</h1>
<p>Wow. They&#8217;re not lying when they say Google Chrome is the fastest browser ever. It is noticeably faster in all aspects, even compared to Safari. Pages load lightning quick and the javascript speed is brilliant. New tabs open virtually instantly and moving tabs around is a breeze. CPU usage is amazingly low which means it won&#8217;t hog your computers resources.</p>
<h1>Crash Test</h1>
<p>Well Chrome does crash a fair bit due to it being in Alpha. But the good thing about it is it&#8217;s crash handling. As each tab in Chrome is processed separately, meaning if a tab crashes the rest of the browser will continue to run fine. This is brilliant, now just fix the amount that the tabs are crashing&#8230;</p>
<h1>Developer Features</h1>
<p>As Google Chrome is based on webkit, you get the same developer inspector as in Safari. Anyone who has used Safari&#8217;s web inspector will know it is very comprehensive and can easily pin point any problems with your site, javascript or loading. I find it&#8217;s much better than Firebug in Firefox. The alpha version however does not allow you to view cookies yet which is a bit of an issue, but this will be introduced before the Beta launch.</p>
<h1>Plug-ins</h1>
<p>Google Chrome for Mac does not currently support plug-ins, but the plugins I want to talk about are the common plugins that come with the browser, Flash, Silverlight and Quicktime. 1 word, useless. Flash crashes at least once a day, usually more. Silverlight doesn&#8217;t even work &#8211; not a terrible thing, who uses it anyway? Quicktime barely works, and a lot of the time won&#8217;t work at all. This is a big problem for the browser, although it is forgiven as it&#8217;s just in Alpha.</p>
<h1 style="font-size: 2em;">Comparison</h1>
<p>As I said earlier Google Chrome is a mash of Safari and Firefox. If you took Safari &#8211; improve it slightly. Add in things such as the ability to force new windows into tabs automatically (one feature that has been lacking in Safari for sometime), add themes etc. Then take that out of the blender, rework the way tabs are handled and processed, rework the way downloads are handled so you don&#8217;t end up with 50 windows open among other things, Google is a clear winner, especially in the Mac market.</p>
<h1>Conclusion</h1>
<p>Google, why have we had to wait so long for a Mac version, and a version that looks like it&#8217;s  a good 6-12 months from Beta? Your browser nothing short of what I&#8217;ve always wanted in a browser, yet I can&#8217;t really use it every day as it&#8217;s too buggy and is missing some crucial features. Most companies these days have caught on to the whole launch Mac + Windows software together, why have you not? I&#8217;m not alone on this one, <a href="http://mac.blorge.com/2009/10/24/no-chrome-for-mac-googles-brin-still-embarrassed-13-months-later/" target="_blank">just ask Google co-founder Sergey Brin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2009/10/test-drive-google-chrome-alpha-for-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The importance of marketing for your web app or brand [video]</title>
		<link>http://www.thewebdevelopmentblog.com/2009/10/the-importance-of-marketing-for-your-web-app-or-brand/</link>
		<comments>http://www.thewebdevelopmentblog.com/2009/10/the-importance-of-marketing-for-your-web-app-or-brand/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 06:03:03 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[FOWA]]></category>
		<category><![CDATA[Small Business Hub]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=389</guid>
		<description><![CDATA[Those who are familiar with me will know I&#8217;m very passionate about marketing. It is the most important part of any web application or business. The reason I say this is because even if you have the worst web application in the world, providing you have the right marketing you can be making great money. [...]]]></description>
			<content:encoded><![CDATA[<p>Those who are familiar with me will know I&#8217;m very passionate about marketing. It is <strong>the most</strong> important part of any web application or business. The reason I say this is because even if you have the worst web application in the world, providing you have the right marketing you can be making great money. Obviously as a developer you want to make your web application better than everyone else&#8217;s &#8211; which is great! But if you don&#8217;t market it properly and put in the effort to market it properly you&#8217;re highly unlikely to make any money.</p>
<p><span id="more-389"></span></p>
<p>At the FOWA London 2009 Alex Hunter did a very interesting talk on marketing that is a <strong>must see</strong> for anyone in the web industry. In his talk he covers things such as putting a face to your company and becoming a person which I covered previously in my recent article about social media marketing on the <a href="http://smallbusinesshub.com.au/?p=371" target="_blank">small business hub</a>. He also talks about being real, putting in the effort to make your venture work and how the world has changed from the old way of doing business. Take the time to sit down and watch it, it just might change your world.</p>
<p><strong>Warning:</strong> <em>Contains material that may offend some viewers, but probably not you so don&#8217;t worry about it&#8230;</em></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="220" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=6969446&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="220" src="http://vimeo.com/moogaloop.swf?clip_id=6969446&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I&#8217;m currently working on many of these things as I rebrand one of the companies I started as well as my new venture <a title="Cheap Australian Domain Names" href="http://www.superdomains.com.au/" target="_blank">Super Domains</a>.</p>
<p>If you need a further kick in the pants to convince you to get serious about your business &#8211; watch the below video also from FOWA London 2009 where Gary Vaynerchuk tell you about how it is time to put the time into your business, stop talking, and start doing.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="220" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=6942731&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="220" src="http://vimeo.com/moogaloop.swf?clip_id=6942731&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2009/10/the-importance-of-marketing-for-your-web-app-or-brand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML 5 is coming [video]</title>
		<link>http://www.thewebdevelopmentblog.com/2009/10/html-5-is-coming/</link>
		<comments>http://www.thewebdevelopmentblog.com/2009/10/html-5-is-coming/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 05:08:26 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[FOWA]]></category>
		<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=383</guid>
		<description><![CDATA[So unless you&#8217;ve had your head under a rock for the past year or so you&#8217;ll have heard about HTML 5. But what&#8217;s to be expected in HTML 5 and when can we start using it? Well, you could start using it today in theory, however the full HTML 5 spec isn&#8217;t quite finished meaning [...]]]></description>
			<content:encoded><![CDATA[<p>So unless you&#8217;ve had your head under a rock for the past year or so you&#8217;ll have heard about HTML 5. But what&#8217;s to be expected in HTML 5 and when can we start using it? Well, you could start using it today in theory, however the full HTML 5 spec isn&#8217;t quite finished meaning browsers haven&#8217;t rolled out all the features. So who&#8217;s on board and what exactly can you do?</p>
<p><span id="more-383"></span></p>
<p>Well all major browser developers are on board INCLUDING Microsoft. This is great news, and it&#8217;s good to see Microsoft beginning to show support for these standards and <a href="http://www.browserforthebetter.com/" target="_blank">putting in the effort</a> to get IE6 + 7 users to upgrade to version 8. Thank you Microsoft!</p>
<p>Instead of me rambling on about what&#8217;s coming and what&#8217;s currently supported, I&#8217;ll show you a video from FOWA London 2009 of Bruce Lawson from Opera talking about HTML 5 and demoing on various browsers.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="220" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=6985053&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="220" src="http://vimeo.com/moogaloop.swf?clip_id=6985053&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>So many of the HTML 5 features are out and running in some browsers. However, the fact is until the modern browser uptake is greater we&#8217;d just be needing to code 2 sets of scripts, one for old and one for new. So at least for the next few years there is not a huge advantage in jumping onboard the HTML 5 train.</p>
<p><strong>Useful Links:</strong></p>
<ul>
<li><a href="http://html5doctor.com/" target="_blank">http://html5doctor.com/</a></li>
<li><a href="http://html5demos.com/" target="_blank">http://html5demos.com/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2009/10/html-5-is-coming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10 websites 10 years ago</title>
		<link>http://www.thewebdevelopmentblog.com/2009/09/10-sites-10-years-ago/</link>
		<comments>http://www.thewebdevelopmentblog.com/2009/09/10-sites-10-years-ago/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 02:00:25 +0000</pubDate>
		<dc:creator>Jason Stockton</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://thewebdevelopmentblog.com/?p=345</guid>
		<description><![CDATA[When it comes to the internet, a lot has changed in 10 years. Computers can handle a lot more processors, much more graphic detail and the speed is significant faster. This naturally has seen the web evolve, websites become more advanced and it&#8217;s users more technically savvy. Rewind 10 years ago when not many site [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to the internet, a lot has changed in 10 years. Computers can handle a lot more processors, much more graphic detail and the speed is significant faster. This naturally has seen the web evolve, websites become more advanced and it&#8217;s users more technically savvy. Rewind 10 years ago when not many site used CSS, Javascript or even PHP, what was the web like? Lets go back, way back to 1999! Y2K anyone?</p>
<p><span id="more-345"></span></p>
<h2><strong>Apple.com</strong></h2>
<p>One of today&#8217;s most inspirational sites was very different 10 years ago. They still kept their site very simple back then.</p>
<p><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.27.13-PM.png"><img class="alignnone size-medium wp-image-346" title="Apple 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.27.13-PM-278x300.png" alt="Apple 1999" width="278" height="300" /></a></p>
<h2><strong>Google.com</strong></h2>
<p>You&#8217;re witnessing what was the birth of one of today&#8217;s biggest corporations. Founded by Larry Page and Sergey Brin, Google officially went live in November 1999, 10 year birthday celebration? The founders invested $25,000 from credit cards to get the site going (along with a grant from the Stanford University Library), probably the best $25,000 of the banks money ever spent.</p>
<p><strong><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.28.29-PM.png"><img class="alignnone size-medium wp-image-347" title="Google 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.28.29-PM-300x130.png" alt="Google 1999" width="300" height="130" /></a></strong></p>
<p><strong><br />
</strong></p>
<h2><strong>Microsoft.com</strong></h2>
<p>It&#8217;s a bit concerning that Microsoft&#8217;s download center site still looks very similar to their site 10 years ago.</p>
<p><strong><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.35.26-PM.png"><img class="alignnone size-medium wp-image-349" title="Microsoft 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.35.26-PM-300x251.png" alt="Microsoft 1999" width="300" height="251" /></a></strong></p>
<p><strong><br />
</strong></p>
<h2><strong>Yahoo.com</strong></h2>
<p>It&#8217;s hard to believe that 10 years ago people were using something other than Google to search the web.</p>
<p><strong><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.34.21-PM.png"><img class="alignnone size-medium wp-image-348" title="Yahoo 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.34.21-PM-271x300.png" alt="Yahoo 1999" width="271" height="300" /></a></strong></p>
<p><strong><br />
</strong></p>
<h2><strong>Amazon.com</strong></h2>
<p>Founded by Jeff Bezos in 1995, Amazon saw fast growth online being named by Time magazine as one of it&#8217;s 10 best sites of 1996. By 1999 Amazon had 8 automated warehouses, each costing $50,000,000&#8230; Ouch. No wonder Amazon didn&#8217;t post it&#8217;s first full-year profit until 2003.</p>
<p><strong><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.56.25-PM.png"><img class="alignnone size-medium wp-image-351" title="Amazon 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.56.25-PM-300x240.png" alt="Amazon 1999" width="300" height="240" /></a></strong></p>
<p><strong><br />
</strong></p>
<h2><strong>Cnet.com</strong></h2>
<p>One of the web&#8217;s premiere destinations for anything tech, cnet has managed to stay a popular destination for it&#8217;s visitors by evolving with the web to give users what they want.</p>
<p><strong><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.36.42-PM.png"><img class="alignnone size-medium wp-image-350" title="CNET 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-2.36.42-PM-300x258.png" alt="CNET 1999" width="300" height="258" /></a></strong></p>
<p><strong><br />
</strong></p>
<h2><strong>Ask.com</strong></h2>
<p>Ask Jeeves was a popular destination to get your questions answered on the web. Today you don&#8217;t get to Ask Jeeves, the name was later shortened to just Ask.</p>
<p><strong><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-3.52.26-PM.png"><img class="alignnone size-medium wp-image-353" title="Ask 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-3.52.26-PM-300x176.png" alt="Ask 1999" width="300" height="176" /></a></strong></p>
<p><strong><br />
</strong></p>
<h2><strong>AOL.com</strong></h2>
<p>Once a monster Internet Service Provider, AOL had over 30 million subscribers. Today AOL has been on the decline since 2002 after merging with Time Warner and now has less than 6 million subscribers.</p>
<p><strong><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-3.48.26-PM.png"><img class="alignnone size-medium wp-image-352" title="AOL 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-3.48.26-PM-277x300.png" alt="AOL 1999" width="277" height="300" /></a></strong></p>
<p><strong><br />
</strong></p>
<h2><strong>Adobe.com</strong></h2>
<p>One of the worlds leading software companies, many elements of their 1999 site are still used in modern website design.</p>
<p><strong><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-3.56.31-PM.png"><img class="alignnone size-medium wp-image-354" title="Adobe 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-3.56.31-PM-300x230.png" alt="Adobe 1999" width="300" height="230" /></a></strong></p>
<p><strong><br />
</strong></p>
<h2><strong>IGN.com</strong></h2>
<p>Still a popular site for gamers IGN has been around for quite some time, here&#8217;s what it looked like in 1999.</p>
<p><strong><a href="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-4.07.47-PM.png"><img class="alignnone size-medium wp-image-355" title="IGN 1999" src="http://thewebdevelopmentblog.com/wp-content/uploads/2009/09/Screen-shot-2009-09-16-at-4.07.47-PM-261x300.png" alt="IGN 1999" width="261" height="300" /></a></strong></p>
<p><strong>Sources:</strong></p>
<ul>
<li>Website Screenshots from: <a href="http://www.archive.org/web/web.php">Way Back Machine</a>.</li>
<li><a href="http://wikipedia.org" target="_blank">Wikipedia</a></li>
<li><em>5</em><em>0 great e-businesses and the minds behind them</em>, Random House Australia 2007.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.thewebdevelopmentblog.com/2009/09/10-sites-10-years-ago/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
