<?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>waveneyavenue &#187; Programming</title>
	<atom:link href="http://www.waveneyavenue.co.uk/blog/tags/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.waveneyavenue.co.uk/blog</link>
	<description>A Web developers and scuba divers blog</description>
	<lastBuildDate>Tue, 27 Oct 2009 02:30:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>The 3 most important skills for a trainee web developer/web designer</title>
		<link>http://www.waveneyavenue.co.uk/blog/2008/03/the-3-most-important-skills-for-a-trainee-web-developerweb-designer/</link>
		<comments>http://www.waveneyavenue.co.uk/blog/2008/03/the-3-most-important-skills-for-a-trainee-web-developerweb-designer/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 01:00:34 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.waveneyavenue.co.uk/blog/2008/03/the-3-most-important-skills-for-a-trainee-web-developerweb-designer/</guid>
		<description><![CDATA[Having spent the last 8 months working with a trainee and taking it upon myself to give them a firm grounding in all aspects of web development, I decided to write this article which is primarily aimed at young school leavers or under graduates hoping to embark on a career in the web industry . [...]]]></description>
			<content:encoded><![CDATA[<p>Having spent the last 8 months working with a trainee and taking it upon myself to give them a firm grounding in all aspects of web development, I decided to write this article which is primarily aimed at young school leavers or under graduates hoping to embark on a career in the web industry . Of course those of you reading who are yourselves involved in the industry and have a few years experience behind you may like to add your own ideas on what you feel are the 3 most important skills to acquire.</p>
<p>First of all, a few parameters. I have used the term web developer/web designer to cover anyone who is starting out in the web arena. You may have aspirations to progress into a programming role, a design role or indeed a mixture of both or even some of the more specific roles like information architect, user centric designer, experience designer. Regardless of which path you take you will all need a firm grounding in HTML and CSS, and regardless of which path you take these skills will be invaluable on your journey.</p>
<h3>Attention to detail</h3>
<p>By far the most important of these , particularly in relation to writing HTML and CSS for the novice developer/designer, is attention to detail. This is particularly important for the brave of heart amongst you who will embark on this journey armed only with a text editor, and I would highly recommend this approach.  It is all very well to be able to drive your fancy new WYSIWYG, but what are you going to do when it breaks down and you have to go tinkering under the hood. Take it from me, learn how to hand code. It will be worth the endless hours of heartache and pain.</p>
<ul>
<li> Check every line of code</li>
<li>Make sure opening and closing brackets are there on all HTML tags</li>
<li>Make sure all opening and closing HTML tags are there (remember some tags are self closing <code>&lt;img src="" /&gt;</code>)</li>
<li>Make sure all your equal symbols are there</li>
<li>Make sure all your quotation marks are there</li>
<li>Make sure you have spaces where there should be spaces and none where there should be none.</li>
<li>Spell check <strong>and</strong> proof read your all your content</li>
<li>Check all your links</li>
</ul>
<p>Now might a good time to go and find yourself a checklist of all the things to check as you go. I could provide links but as you will see from the next points it is upto you to learn how to learn. So start now.</p>
<h3>Ability to teach yourself</h3>
<p>Again I cannot emphasis the importance of this enough. In order to progress in this field, probably just like most others, you must be prepared to learn new skills and enhance and improve your current ones. You must be able to motivate yourself and spend as much time as you can, getting to grips with and keeping up with the ever changing industry standards, benchmarks and techniques. Don&#8217;t expect to progress if you cannot. There are more than enough sources of information, insight and tutorials online for this purpose. Learn how to use google, read blogs, subscribe to RSS feeds, listen to podcasts and watch tutorial videos. Welcome to the <strong>Worldwide University of the Internet</strong>. This is self learning or no learning time.</p>
<h3>Ability to develop good problem solving and bug solving techniques</h3>
<p>You will, and you can be sure of this, very early on in the process of learning HTML and CSS come up against problems. It is vital both for your sanity and  your ability to meet a deadline, that you develop skills to be able to deal with these problems. Arm yourself with as many tools as you can, Chris Pederick&#8217;s <a href="http://chrispederick.com/work/web-developer/">Web developer toolbar</a> is a good place to start, and learn how to use them. You will find them invaluable. Remember the importance of validating your code, I refer back to attention to detail, which cannot be overstated enough. ( I have lost hours as the result of missing &#8220;=&#8221; signs or quotation marks).</p>
<p>Establish a process you can go through, with any HTML , CSS problem to get to the bottom of it. the first step in fixing a problem is finding the cause. I personally use some or all of the following when working with layouts problems for example.</p>
<ol>
<li>Validate your HTML and CSS to make sure you have not done something silly like remove a starting tag and forgotten to remove the ending tag</li>
<li>Apply a background colour to all block elements on the page, making sure all colours are different. This gives you a great insight into how all the elements on the page sit in relation to one another.</li>
<li>Some people swear by using borders for the same reason, to display the layout of each element, although I always found the extra pixels could throw pixel based layouts into disarray. (You mean you haven&#8217;t studies the <a href="http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug">Box model</a> yet, why not!</li>
<li>You can achieve a similar effect using the web developer toolbar, in particular the outline drop down menu</li>
</ol>
<p>The important thing is to develop these techniques early on and be able to pull them from your armoury if and when they are required.</p>
<p>If you can master these 3 skills you are well on your way to becoming a better web developer/web designer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waveneyavenue.co.uk/blog/2008/03/the-3-most-important-skills-for-a-trainee-web-developerweb-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Frameworks</title>
		<link>http://www.waveneyavenue.co.uk/blog/2006/11/javascript-frameworks/</link>
		<comments>http://www.waveneyavenue.co.uk/blog/2006/11/javascript-frameworks/#comments</comments>
		<pubDate>Sat, 04 Nov 2006 20:03:01 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.waveneyavenue.co.uk/2006/11/javascript-frameworks/</guid>
		<description><![CDATA[What am I after Simplicity, easy to use and compact Platform/Browser compatibility Good documentation Extensive community &#8211; I need something with some longevity and plenty of resource driving it forward Readily available examples of implementations &#8211; again a large community helps Good range of plug-ins for day to day development requirements &#8211; remember why I [...]]]></description>
			<content:encoded><![CDATA[<h3>What am I after</h3>
<ul>
<li><strong>Simplicity</strong>, easy to use and compact</li>
<li><strong>Platform/Browser compatibility</strong></li>
<li><strong>Good documentation</strong></li>
<li><strong>Extensive community</strong> &#8211; I need something with some longevity and plenty of resource driving it forward</li>
<li><strong>Readily available examples of implementations</strong> &#8211; again a large community helps</li>
<li><strong>Good range of plug-ins</strong> for day to day development requirements &#8211; remember why I need it in the first place</li>
<li>Something that assists me in my job of <strong>creating better user experiences</strong> on websites &#8211; Is it used by people of like mind</li>
<li><strong>Unobtrusive</strong> &#8211; easy to implement in an unobtrusive fashion</li>
<li><strong>Easily updateable</strong> , preferably no maintenance on my part</li>
</ul>
<p>I am not an accomplished programmer, so I am less interested in whats under the hood and how it is all implemented behind the scenes and more interested in how these clever and talented programmers have provided me with a useful tool for web development. With this in mind I do hope that one day I will be able to grab the basics and use them to create my own useful components. The fear being that I become an accomplished googler and a magpie excelling at stealing other peoples work and not creating any of my own.</p>
<h3>Who are the contenders?</h3>
<p>For me I think it is between two, namely; <a href="http://www.jquery.com">jQuery</a> and <a href="http://mootools.net/">mootools</a></p>
<h4>jQuery</h4>
<p><a href="http://jquery.com/">jQuery</a> is a Javascript library that takes this motto to heart: Writing Javascript code should be fun. jQuery achieves this goal by taking common, repetitive, tasks, stripping out all the unnecessary markup, and leaving them short, smart and understandable.</p>
<h4>Mootools</h4>
<p><a href="http://mootools.net/"><strong>moo</strong>tools</a> is a very compact, modular, Object-Oriented javascript framework. Its unique design makes it extremely crossbrowser, easy to use, and a snap to extend with your own code. It comes with a choice of more than fifteen scripts, plugins and add-ons</p>
<h3>Whats my verdict</h3>
<p>I wouldn&#8217;t look beyond either of these two. Both have great documentation, I particularly like <a href="http://www.visualjquery.com/"> visualjquery </a>as a quick reference</p>
<p>I am currently in favour of JQuery and plan to stay so for the foreseeable future unless mootools pulls something out of the bag. I hope that jQuery integrates nicely with CakePHP which is to be my new endeavour&#8230;or one of them.</p>
<p>If anyone has any other suggestions I&#8217;d like to give them a look.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waveneyavenue.co.uk/blog/2006/11/javascript-frameworks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geotagging on Flickr</title>
		<link>http://www.waveneyavenue.co.uk/blog/2006/08/geotagging-on-flickr/</link>
		<comments>http://www.waveneyavenue.co.uk/blog/2006/08/geotagging-on-flickr/#comments</comments>
		<pubDate>Wed, 30 Aug 2006 06:00:45 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.waveneyavenue.co.uk/2006/08/geotagging-on-flickr/</guid>
		<description><![CDATA[What is geotagging? In laymans terms (what you mean you&#8217;re not laymen?) it basically means &#8216;tagging&#8217; a photo or a blog entry or any entity really with a some meta data pertaining to its geographic location. Yes I know that wasn&#8217;t really laymans&#8217; terms but sure you all claimed not to be laymen! Ok the [...]]]></description>
			<content:encoded><![CDATA[<h3>What is geotagging?</h3>
<p>In laymans terms (what you mean you&#8217;re not laymen?) it basically means &#8216;tagging&#8217; a photo or a blog entry or any entity really with a some meta data pertaining to its geographic location. Yes I know that wasn&#8217;t really laymans&#8217; terms but sure you all claimed not to be laymen! Ok the simple version you can now let people know where you took your photos on Flickr by placing them on a map &#8211; waaoohh</p>
<h3>Geotagging your Flickr photos then and now</h3>
<p>Up until today it was possible ,with the aid of this helpful <a href="http://typolis.net/sumaato/stories/4323/" rel="external" title="link to page which has the bookmarklet">little bookmarklet</a> (follow link and drag to your toolbar if you want to use it but read on first! you may need firefox for the bookmarklet) for example to add geotagging info to your Flickr photos and link to them on a google map.(note the google map is way better than any other for our little island, much more detail.</p>
<p>As of today Flickr have added this functionality to your Flickr using Yahoo maps, which makes sense seeing as Yahoo now own Flickr! The maps aren&#8217;t as detailed as googles effort but they still do the job nicely. The interface is fantastic and couldn&#8217;t be easier to use. Just go to your &#8216;organize&#8217; tab where you will notice a new tab at the top called &#8216;Map&#8217;. Click it and off you go. you don&#8217;t need to be told how to do it, you can work it out for yourself, its all drag and drop and follow the prompts. You will probably start to notice on further inspection the mention of maps in a few other dropdown menus and tabs and places. Have Fun.</p>
<h4>Update</h4>
<p>Try out zooomr which also does geotagging, in fact they got there first. They seem to be affiliated with google. They offer a wide range of features for both free and pro accounts. You can actually get a free pro account for a year by posting one of your photos on your blog. Find out how <a href="http://blog.zooomr.com/2006/07/20/more-love-for-bloggers-25gb-free-pro-accounts/">here</a></p>
<div><a title="Photo Sharing" href="http://beta.zooomr.com/photos/waveneyavenue/313674/"><img width="256" height="192" border="0" alt="174973500_4dcf1b9866_o" src="http://static.zooomr.com/images/313674_67ea7ea9ed_b.jpg" /></a>174973500_4dcf1b9866_o Hosted on <strong>Zooomr</strong></div>
]]></content:encoded>
			<wfw:commentRss>http://www.waveneyavenue.co.uk/blog/2006/08/geotagging-on-flickr/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Minimo 0.15 Mobile device browsing catching up</title>
		<link>http://www.waveneyavenue.co.uk/blog/2006/05/minimo-015-mobile-device-browsing-catching-up/</link>
		<comments>http://www.waveneyavenue.co.uk/blog/2006/05/minimo-015-mobile-device-browsing-catching-up/#comments</comments>
		<pubDate>Fri, 26 May 2006 07:53:24 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.waveneyavenue.co.uk/2006/05/minimo-015-mobile-device-browsing-catching-up/</guid>
		<description><![CDATA[I was thrilled today to discover that after many months of patiently waiting I can at last have a reasonable browsing experience on my PDA (iPAQ). While I have not looked at versions 0.11 through to 0.14, the release of version 0.15 sees some fantastic improvements to earlier versions. As the version number indicates it [...]]]></description>
			<content:encoded><![CDATA[<p>I was thrilled today to discover that after many months of patiently waiting I can at last have a reasonable browsing experience on my PDA (iPAQ). While I have not looked at versions 0.11 through to 0.14, the release of version 0.15 sees some fantastic improvements to earlier versions. As the version number indicates it is still very much in its infancy, but, and this will be no surprise to the initiated amongst you, it blows IE for Windows Mobile 2003 out of the water.</p>
<p>We now have, and I&#8217;ll be brief, vastly improved CSS support including @import and media type. We have support for AJAX!, RSS and tabbed browsing with close icons, all the main stays of the modern browsing experience. Oh and did I mention automatic updates, CAB installer or exe via active sync. We have nice bookmarks management, Good useability features like text size switching, find on page feature,variuos layouts, single column, desktop layout and panning. So now I may actually try a little harder to do truely cross device versions of my websites, heck at this rate in a few more months it may be worth it. I will certainly be more inclined to use the iPAQ to casually surf the internet.</p>
<p>You can download the windows installer or the mobile cab installer <a href="http://www.mozilla.org/projects/minimo/" title="download this mobile browser" rel="external">here</a>.It just goes to show how far the project has come that it has its own page on Mozilla, I used to have to trawl server directories to find the nightly builds. You knwo I think this time next year it will be standard on all mobile devices&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waveneyavenue.co.uk/blog/2006/05/minimo-015-mobile-device-browsing-catching-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 No excuses for the title</title>
		<link>http://www.waveneyavenue.co.uk/blog/2006/01/web-20-no-excuses-for-the-title/</link>
		<comments>http://www.waveneyavenue.co.uk/blog/2006/01/web-20-no-excuses-for-the-title/#comments</comments>
		<pubDate>Wed, 18 Jan 2006 05:13:12 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.waveneyavenue.co.uk/2006/01/web-20-no-excuses-for-the-title/</guid>
		<description><![CDATA[Part of the reason I posted this was to try and get some traffic. I make no apologies for this, heck I need to get this thing moving or I am destined to spend the year talking to myself! Never really though much of personality tests, but I must applaud the superb UI of personaldna [...]]]></description>
			<content:encoded><![CDATA[<p>Part of the reason I posted this was to try and get some traffic. I make no apologies for this, heck I need to get this thing moving or I am destined to spend the year talking to myself!</p>
<p>Never really though much of personality tests, but I must applaud the superb UI of <a href="http://www.personaldna.com">personaldna</a> by <a href="http://attap.com/">attap</a> who have put together some lovely web apps. I approve of their philosophy and outlook for the web. (They can all rest easier now!)</p>
<p>I think a short list of web 2.0 apps is in order, with or without a critique, depending on if anyone wishes to contribute. Before I start, for all the geeks out there, yes I will be mentioning all the usual stuff, but for some of you this may be new and exciting and worth a visit. Have a look anyway, see for yourself and be your own judge.</p>
<h3>The ones I use regularly at home</h3>
<ul>
<li><a href="http://www.flickr.com">Flickr </a>- no list would be complete without it, for all your photography sharing needs</li>
<li><a href="http://www.gmail.com">Gmail</a> &#8211; the new hotmail</li>
<li><a href="http://del.icio.us">Delicious</a> &#8211; online bookmarking, tagging app</li>
<li><a href="http://www.measuremap.com/">Measuremap</a> &#8211; fabulous tracking stats for blogs </li>
<li><a href="http://www.rollyo.com/">rollyo</a> &#8211; custom build search engines </li>
<li><a href="http://www.netvibes.com/">netvibes</a> &#8211; loving this combines loads of the others </li>
</ul>
<h3>The ones I use regularly at work</h3>
<ul>
<li><a href="http://www.basecamphq.com">Basecamp</a> &#8211; project management</li>
<li><a href="http://del.icio.us">Delicious</a> &#8211; online bookmarks</li>
</ul>
<h3>The ones I have used but not returned to</h3>
<ul>
<li><a href="http://web2.0validator.com/">web2.0validator</a> &#8211; a bit of fun </li>
<li><a href="http://www.writely.com/">writely</a> &#8211; an alternative to 37signals writeboards </li>
<li><a href="http://odeo.com/">odeo</a> &#8211; all things media </li>
<li><a href="http://www.backpackit.com/">backpackit</a> &#8211; little brother to basecamp, good for lists and organising </li>
<li><a href="http://www.shutterbook.com">shutterbook</a> &#8211; alternative to flickr </li>
<li><a href="http://www.digg.com/">digg</a> &#8211; social news aggregator </li>
<li><a href="http://www.rememberthemilk.com/">rememberthemilk</a> &#8211; another tada type list maker. Nelly take note! </li>
<li><a href="http://rojo.com">Rojo</a> &#8211; online RSS reader and sharing app</li>
</ul>
<h3>The ones I will be using regularly when the necessity arises</h3>
<ul>
<li><a href="http://attap.com">Anything by attap</a> &#8211; keeping my eye on these guys, great stuff </li>
<li><a href="http://script.aculo.us">script.aculo.us</a> &#8211; special effect javascript library </li>
<li><a href="https://www.linkedin.com/">linkedin</a> &#8211; networking tool </li>
</ul>
<h3>The ones I have yet to try</h3>
<ul>
<li><a href="http://www.sidejobtrack.com/">sidejobtrack</a> </li>
<li><a href="http://www.mypimp.com/">mypimp</a> &#8211; </li>
<li><a href="http://www.pxn8.com/">pxn8</a> &#8211; </li>
<li><a href="http://conversate.org/">conversate &#8211; </a></li>
<li><a href="http://www.mailchimp.com/">mailchimp &#8211; </a></li>
<li><a href="http://www.formassembly.com/time-tracker/">time-tracker</a> &#8211; </li>
<li><a href="http://www.listal.com/">listal</a> &#8211; </li>
<li><a href="http://youtube.com/">youtube</a> &#8211; </li>
<li><a href="http://www.vimeo.com/">vimeo</a> &#8211; </li>
<li><a href="http://www.goffice.com">goffice</a> &#8211; </li>
<li><a href="http://www.serversidewiki.com">serversidewiki</a> &#8211; </li>
<li><a href="http://www.meetup.com/">meetup</a> &#8211; </li>
<li><a href="http://www.goovite.com/">goovite</a> &#8211; </li>
<li><a href="http://joyent.com/">joyent</a> &#8211; </li>
<li><a href="http://www.merchboss.com">merchboss</a> &#8211; </li>
<li><a href="http://www.backbase.com">backbase</a> &#8211; </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.waveneyavenue.co.uk/blog/2006/01/web-20-no-excuses-for-the-title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated Web Developer Extension for Firefox</title>
		<link>http://www.waveneyavenue.co.uk/blog/2006/01/updated-web-developer-extension-for-firefox/</link>
		<comments>http://www.waveneyavenue.co.uk/blog/2006/01/updated-web-developer-extension-for-firefox/#comments</comments>
		<pubDate>Tue, 03 Jan 2006 08:58:16 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.waveneyavenue.co.uk/2006/01/updated-web-developer-extension-for-firefox/</guid>
		<description><![CDATA[A ‘version 1’ release of every developers tried and trusted friend, Chris has really excelled himself with this upgrade. GET IT NOW, hit that ‘more extensions’ button. Improvements Better and more intuative organisation of features. Reimplementation of online and offline validation tools. Improvements to and more variety of outline capabilities. Miscellenous Goodies, including small screen [...]]]></description>
			<content:encoded><![CDATA[<p>A ‘version 1’ release of every developers tried and trusted friend, <a href="http://chrispederick.com/work/webdeveloper/ " rel="external">Chris</a> has really excelled himself with this upgrade. GET IT NOW, hit that ‘more extensions’ button.</p>
<h3>Improvements</h3>
<ul>
<li>Better and more intuative organisation of features.</li>
<li>Reimplementation of online and offline validation tools.</li>
<li>Improvements to and more variety of outline capabilities.</li>
<li>Miscellenous Goodies, including small screen rendering, linerize layout</li>
<li>Greater scope when displaying information, even more at your fingertips</li>
<li>Realtime editing of HTML and CSS </li>
<li>More complete manipulation of images</li>
<li>All the old favourites, mostly improved and optimised</li>
</ul>
<h3>Uses</h3>
<ul>
<li>Final Checks, Images, Accessibility, Validation.</li>
<li>Measuring and checking layouts.</li>
<li>Debugging CSS layouts.</li>
<li>Simulating test environments.</li>
<li>Gathering information and researching during web browsing.</li>
</ul>
<p>Just a quick note to say, perhaps ,<a rel="external" href="http://www.macromedia.com">dreamweaver</a> does a better job of these sitewide checks at development stage, but on a page by page basis perhaps after you have moved to staging server this takes the biscuit.</p>
<blockquote><p>A must for all web designers and developers. I couldn&#8217;t recommend it enough</p>
</blockquote>
<h3>Did Chris leave anything out?</h3>
<p>Well aside from a “create lovely website button using web standard techniques and wake me up when you are finished” button! I think he has it pretty much covered. Perhaps a generate lorum ipsum would have been useful, but with the likes of display line guides and display ruler he really has surpassed himself. Creating Web Standard sites is such a breeze with this extension in your arsenal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waveneyavenue.co.uk/blog/2006/01/updated-web-developer-extension-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.300 seconds -->
