 <?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>Broken Links &#187; Miscellanea</title>
	<atom:link href="http://www.broken-links.com/category/miscellanea/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.broken-links.com</link>
	<description>Thoughts on web development and technologies by Peter Gasston</description>
	<lastBuildDate>Fri, 30 Jul 2010 00:10:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<atom:link rel='hub' href='http://www.broken-links.com/?pushpress=hub'/>
		<item>
		<title>Using SVG in backgrounds with PNG fallback</title>
		<link>http://www.broken-links.com/2010/06/14/using-svg-in-backgrounds-with-png-fallback/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=using-svg-in-backgrounds-with-png-fallback</link>
		<comments>http://www.broken-links.com/2010/06/14/using-svg-in-backgrounds-with-png-fallback/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 13:04:38 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Miscellanea]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[svg]]></category>
		<category><![CDATA[technique]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/?p=861</guid>
		<description><![CDATA[My last post was about using SVG values for the background-image property, and I pointed out one big problem with the technique: The drawback of this is that it’s not ready for use just yet—browsers that don’t support SVG in background-image will not provide any fallback, even if you supply another background-image value; so in [...]]]></description>
			<content:encoded><![CDATA[<p>My last post was about <a href="http://www.broken-links.com/2010/06/08/using-svg-in-background-image/">using <abbr title="Scalable Vector Graphics">SVG</abbr> values for the <code>background-image</code> property</a>, and I pointed out one big problem with the technique:</p>
<blockquote><p>
The drawback of this is that it’s not ready for use just yet—browsers that don’t support <abbr>SVG</abbr> in <code>background-image</code> will not provide any fallback, even if you supply another <code>background-image</code> value; so in non-supporting browsers, no image at all will be displayed.
</p></blockquote>
<p>This was annoying me a little, and I couldn’t find any workarounds that didn’t use JavaScript. However, after a bit of head-scratching I’ve come up with a way to get around it.</p>
<p><span id="more-861"></span></p>
<p>In order to have browsers which don’t support <abbr>SVG</abbr> display a <abbr>PNG</abbr> image instead, you should use this code:</p>
<pre>E {
background-image:  url('image.png');
background-image:  none,url('image.svg'), url('image.png');
background-size: 100% 100%;
}</pre>
<p>Browsers which support <abbr>SVG</abbr> and multiple backgrounds will show the <abbr>SVG</abbr>; browsers which don’t support <abbr>SVG</abbr> will fall back to the <abbr>PNG</abbr> in the <code>background-image</code> stack. As far as I know, all browsers which support <abbr>SVG</abbr> also support multiple backgrounds; any which don’t (i.e. <abbr>IE</abbr>) will fall back to the <abbr>PNG</abbr> in the first <code>background-image</code> declaration.</p>
<p><strong>Update:</strong> Thanks to a comment I have amended this technique. <abbr>IE</abbr> was not falling back to the first <code>background-image</code> as it should have done, but I got around this by adding a <em>none</em> value in the declaration. This invalidates the rule in <abbr>IE</abbr> and forces the fallback to the previous declaration.</p>
<p>You can see a demonstration of it here: <a href="http://www.broken-links.com/tests/svg/svg_hack.html">Background SVG with PNG fallback — demo</a>.</p>
<p>This technique is not without its own caveats, however. First and foremost, the <abbr>SVG</abbr> must not have a transparent background, or else the <abbr>PNG</abbr> in the background layer below it will probably show through. Also, depending on how fast the <abbr>SVG</abbr> file loads, the <abbr>PNG</abbr> file may show up first and then be covered over.</p>
<p>Finally, if you’re using the same background image at different sizes and either your browser doesn’t support <code>background-size</code> or you don’t want automatically resized <abbr>PNG</abbr>s, you’ll have to use the rule for each instance:</p>
<pre>E {
background-image:  url('image-small.png');
background-image:  none,url('image.svg'), url('image-small.png');
background-size: 100% 100%;
}

F {
background-image:  url('image-large.png');
background-image:  none,url('image.svg'), url('image-large.png');
background-size: 100% 100%;
}</pre>
<p>And of course, if you’re creating multiple <abbr>PNG</abbr> images anyway, you may feel there’s not a lot of point in using <abbr>SVG</abbr> images as well. I’ll be the first to admit that this isn’t a completely bulletproof technique, but I offer it in the hope that in certain circumstances it could be useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2010/06/14/using-svg-in-backgrounds-with-png-fallback/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My Name In Print</title>
		<link>http://www.broken-links.com/2010/05/26/my-name-in-print/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-name-in-print</link>
		<comments>http://www.broken-links.com/2010/05/26/my-name-in-print/#comments</comments>
		<pubDate>Wed, 26 May 2010 13:06:31 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Miscellanea]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[glow]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[selfpromotion]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/?p=814</guid>
		<description><![CDATA[I hope you’ll forgive a little self-promotion, as I’d just like to play a few quick notes on my own trumpet. The latest issue of Net magazine is now on sale, and features a tutorial article, Create A Dynamic Content Panel, written by me. In the article I explain how to build a dynamic Contact [...]]]></description>
			<content:encoded><![CDATA[<p>I hope you’ll forgive a little self-promotion, as I’d just like to play a few quick notes on my own trumpet. <a href="http://www.netmag.co.uk/zine/latest-issue/issue-203">The latest issue of Net magazine</a> is now on sale, and features a tutorial article, <em>Create A Dynamic Content Panel</em>, written by me.</p>
<p>In the article I explain how to build a dynamic Contact area, as we did on our recent redesign of <a href="http://preloaded.com/">Preloaded.com</a>, using the <a href="http://www.w3.org/TR/webstorage/">Web Storage API</a> and <a href="http://www.bbc.co.uk/glow/">the BBC’s Glow Javascript library</a>.</p>
<p>I’m not sure what the rights situation is with this article, but I hope that at some point in the future I’ll be able to post it here on my blog. But in the meantime, you can buy a copy of Net magazine in the UK at all good newsagents, as the saying goes (I don’t know if it will be in overseas editions also).</p>
<p><img src="/wp-content/uploads/2010/05/tut_js-1.jpg" alt="Printed Tutorial" title="Tutorial Page 1" width="190" height="250" class="aligncenter size-full wp-image-833" /><img src="/wp-content/uploads/2010/05/tut_js-2.jpg" alt="Printed Tutorial" title="Tutorial Page 2" width="190" height="250" class="aligncenter size-full wp-image-834" /><img src="/wp-content/uploads/2010/05/tut_js-3.jpg" alt="Printed Tutorial" title="Tutorial Page 3" width="190" height="250" class="aligncenter size-full wp-image-835" /></p>
<p>On the subject of print, I’m also currently writing a book about CSS3 which should be published later this year. I’ll have more information on that nearer the time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2010/05/26/my-name-in-print/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The State of the Web 2008</title>
		<link>http://www.broken-links.com/2009/01/13/the-state-of-the-web-2008/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=the-state-of-the-web-2008</link>
		<comments>http://www.broken-links.com/2009/01/13/the-state-of-the-web-2008/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 09:53:09 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Miscellanea]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[survey]]></category>
		<category><![CDATA[web directions]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/2009/01/13/the-state-of-the-web-2008/</guid>
		<description><![CDATA[Web Directions have posted the results of their 2008 survey today; full results and selected highlights are available. The most shocking result to me is that 10% of respondents still use tables for layout.]]></description>
			<content:encoded><![CDATA[<p>Web Directions have posted the results of their 2008 survey today; <a href="http://www.webdirections.org/the-state-of-the-web-2008/">full results</a> and <a href="http://www.webdirections.org/blog/the-state-of-the-web-survey-results/">selected highlights</a> are available. The most shocking result to me is that 10% of respondents still use tables for layout.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2009/01/13/the-state-of-the-web-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personal notices, open practices</title>
		<link>http://www.broken-links.com/2008/09/11/personal-notices-open-practices/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=personal-notices-open-practices</link>
		<comments>http://www.broken-links.com/2008/09/11/personal-notices-open-practices/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 11:24:22 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Miscellanea]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[information architecture]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/?p=253</guid>
		<description><![CDATA[Today is my penultimate day in my current job; next week I’m going on a trip to Spain, and when I get back I’m starting my new job at the award-winning Preloaded agency. My focus will be shifting away from client-side development and onto information architecture; it’s a fantastic challenge for me, and I’m very [...]]]></description>
			<content:encoded><![CDATA[<p>Today is my penultimate day in my current job; next week I’m going on a trip to Spain, and when I get back I’m starting my new job at the award-winning <a href="http://preloaded.com/">Preloaded</a> agency. My focus will be shifting away from client-side development and onto information architecture; it’s a fantastic challenge for me, and I’m very excited about working on top brands for a top agency.</p>
<p>I’ve been slowly introducing IA into my role over the past three years, and so this is a logical step for me to take. I’ll be sad to leave my current agency, but delighted to be moving to somewhere I’ll be able to focus on what I think are the next hot topics on the web: <a href="http://alistapart.com/articles/findabilityorphan">findability</a> &amp; usability.</p>
<p><span id="more-253"></span></p>
<p>In a piece of happy serendipity, there’s a big user-centred design project underway at the moment with the redesign of the <a href="http://drupal.org/">Drupal</a> community site and, with it being open software, the whole process is being conducted transparently — which means a great opportunity to study and learn. <a href="http://www.disambiguity.com/">Leisa Reichelt</a> is leading the discovery and planning stages, and blogging every step; you can read the <a href="http://www.disambiguity.com/draft-drupalorg-experience-strategy/">draft Experience Strategy</a>, <a href="http://www.disambiguity.com/insiders-and-outsiders/">how Drupal users were defined</a>, and <a href="http://www.disambiguity.com/opening-the-floodgates/">how to get involved</a>. Definitely worth keeping an eye on.</p>
<p>I won’t be leaving web development behind completely; it’s my passion, I wouldn’t be able to. Especially now that we’re entering into very exciting times with the forthcoming release of IE8; not because of any new features, but because we’ll finally have a completely stable, cross-browser platform of CSS2.1 to develop on. The IE team are doing a sterling job of releasing information about the new browser; for example, discussing <a href="http://blogs.msdn.com/ie/archive/2008/09/03/developer-tools-in-internet-explorer-8-beta-2.aspx">developer tools</a> and <a href="http://blogs.msdn.com/ie/archive/2008/09/08/microsoft-css-vendor-extensions.aspx">browser-specific CSS prefixes</a>. Let’s hope they don’t fall into the <a href="http://www.broken-links.com/2007/09/28/opacity-in-internet-explorer-8-development/">post-launch silence</a> that happened after the release of IE7.</p>
<p>So, interesting times to come. First, however: a holiday. Back later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2008/09/11/personal-notices-open-practices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are URLs on their way out in the UK too?</title>
		<link>http://www.broken-links.com/2008/07/21/are-urls-on-their-way-out-in-the-uk-too/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=are-urls-on-their-way-out-in-the-uk-too</link>
		<comments>http://www.broken-links.com/2008/07/21/are-urls-on-their-way-out-in-the-uk-too/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 20:42:18 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Miscellanea]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/2008/07/21/are-urls-on-their-way-out-in-the-uk-too/</guid>
		<description><![CDATA[Back in March of this year I read the article <a href="http://www.cabel.name/2008/03/japan-urls-are-totally-out.html">Japan: URL's Are Totally Out</a>, which showed the trend amongst advertisers in Japan to forsake URLs and instead show a search term (read the article; it explains better than I can). So I was intrigued when I saw what I believe may be the first instance of this strategy being used here, for Orange's new "I am" campaign.]]></description>
			<content:encoded><![CDATA[<p>Back in March of this year I read the article <a href="http://www.cabel.name/2008/03/japan-urls-are-totally-out.html">Japan: URL’s Are Totally Out</a>, which showed the trend amongst advertisers in Japan to forsake URLs and instead show a search term (read the article; it explains better than I can).</p>
<p>So I was intrigued when I saw what I believe may be the first instance of this strategy being used here, for Orange’s new “I am” campaign:</p>
<p><span id="more-182"></span></p>
<p><img src="http://www.broken-links.com/wp-content/uploads/2008/07/orange-i-am.jpg" alt="Orange 'I am' billboard" height="272" width="400" /></p>
<p>I queried the top four search engines here in the UK (Google, Yahoo!, MSN, Ask) and a link has been sponsored on all four. However, top results were returning a variety of different results, none of them relating to this campaign.</p>
<p>Like the author of the Japan article, I wonder how susceptible this is to counter-attacks from rival advertisers (or mischief-makers) who could game negative results to the top of the rankings? It’ll be interesting to see how this develops.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2008/07/21/are-urls-on-their-way-out-in-the-uk-too/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Unveiling my new theme</title>
		<link>http://www.broken-links.com/2008/04/28/unveiling-my-new-theme/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=unveiling-my-new-theme</link>
		<comments>http://www.broken-links.com/2008/04/28/unveiling-my-new-theme/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 22:39:13 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Miscellanea]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/2008/04/28/unveiling-my-new-theme/</guid>
		<description><![CDATA[Anyone not reading this in an RSS feed will notice that I've installed a new theme. I was never really happy with the previous one, as it was based on a design that had been rejected from another project and was called into action before it was ready.]]></description>
			<content:encoded><![CDATA[<p>Anyone not reading this in an RSS feed will notice that I’ve installed a new theme. I was never really happy with the previous one, as it was based on a design that had been rejected from another project and was called into action before it was ready.</p>
<p>I’ve given this one a version number of 0.5, as I still have a lot I want to do with it, notably: embedding more <a href="http://www.microformats.org/">microformats</a> in the code; adding more progressive enhancement to the CSS; making more use of WordPress’ tagging system; and testing more thoroughly in IE.</p>
<p>However, I’m pretty pleased with the more typographic direction in this design, and am excited to be using a theme I genuinely care about.</p>
<p>If any readers have any constructive criticism to give, please go ahead and do so in the comments. However, do please be gentle with me!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2008/04/28/unveiling-my-new-theme/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to apply for a web development job</title>
		<link>http://www.broken-links.com/2008/01/14/how-to-apply-for-a-web-development-job/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-apply-for-a-web-development-job</link>
		<comments>http://www.broken-links.com/2008/01/14/how-to-apply-for-a-web-development-job/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 19:22:29 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Miscellanea]]></category>
		<category><![CDATA[cv]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[recruitment]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/2008/01/14/how-to-apply-for-a-web-development-job/</guid>
		<description><![CDATA[The company I work for has a lot of SMB websites to produce over the next three or four months so we’re looking for a client-side developer to come in and help us out for a short term. I placed an ad on a few websites with details of what we’re looking for, and waited [...]]]></description>
			<content:encoded><![CDATA[<p>The company I work for has a lot of <abbr title="Small-Medium Business">SMB</abbr> websites to produce over the next three or four months so we’re looking for a client-side developer to come in and help us out for a short term. I placed an ad on a few websites with details of what we’re looking for, and waited for the applications to come in.</p>
<p>When they did, I was shocked. The majority of them were <em>terrible</em>. From the introductory email to the <abbr title="Curriculum Vitae">CV</abbr> to the examples provided, only one or two were good enough for consideration.</p>
<p>To pass on advice to prospective job seekers (and hopefully make my job a little easier in future), here are five tips for applying for a job in web development:</p>
<p><span id="more-132"></span></p>
<ol>
<li>
<h5>Read the advertisement</h5>
<p>This may sound ridiculous, but you’d be surprised how many people don’t seem to have done this. I asked for someone who could come into our offices in central London when needed; I got replies from Brazil, India, Russia, Indonesia. I know we live in a globalised world and work in an industry which lends itself to distance working, but I specifically requested someone who could come to our offices. If that wasn’t necessary, I wouldn’t have said so in the ad.</p>
</li>
<li>
<h5>Take care over your covering letter/email</h5>
<p>I understand that English is not first language to everyone, and I’ll pay no attention to grammatical errors if that’s the case. But at the very least I’d expect to see it spell checked, with punctuation and capitalisation. I received emails all in lower case written in txt speak; ‘i wld like this job can u plz reply asap’; if you don’t care about your application, why should I?</p>
</li>
<li>
<h5>Make your CV clear and informative</h5>
<p>I want to be able to see, at a glance, your most recent experience and your key skills. I don’t really care where you went to school or what you studied, I want to know if you’re good for the role I’m offering. There are literally thousands of websites giving information on how to write a good CV; take a little time and read one of them.</p>
</li>
<li>
<h5>Provide links to examples</h5>
<p>I want to know how good your code is, and for that I need to see it. Not images of websites you’ve worked on, but live pages I can view the source of for myself. Also, we work on the world wide web, where the hyperlink is king; if you don’t put hyperlinks in your CV or the covering email, I’m far less likely to take the time to visit your examples. Live links, and lots of them, please.</p>
</li>
<li>
<h5>Know what you are talking about</h5>
<p>The most important rule of all: don’t try and bullshit me. If your covering email says you have been working as a professional web designer for five years, I expect to see evidence of that. I looked at some of the examples I was sent today and I thought I had travelled 10 years back in time; table-based layouts with inline styles and javascript, Times New Roman for all the text, badly-sized images, ugly tiled backgrounds… it was nasty. And there is no excuse for it; there’s an embarrassment of fantastic articles on web development available, and sending me an amateurish ‘portfolio’ just proves to me you don’t pay attention. If you don’t have a lot of commercial experience, you should have a knock-out portfolio site to make up for it.</p>
<p>And if the position I’m advertising is for an HTML and CSS developer, why would I want to see your Flash portfolio? Why send me a CV with ten years of server-side programming jobs? I want relevant experience, relevant examples.</p>
<p>By all means, if you have knowledge of a subject but not much commercial experience, embellish your CV a little; we’ve all done it. But don’t flat-out bullshit me by claiming you know something, when all the evidence points to the contrary. If I don’t catch it at the CV stage, I’ll definitely catch it at the interview stage, and that’s more embarrassing for you.</p>
</li>
</ol>
<p>Phew! That’s a load off my chest.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2008/01/14/how-to-apply-for-a-web-development-job/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I took the 2007 Web Design survey</title>
		<link>http://www.broken-links.com/2007/04/25/i-took-the-2007-web-design-survey/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-took-the-2007-web-design-survey</link>
		<comments>http://www.broken-links.com/2007/04/25/i-took-the-2007-web-design-survey/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 08:57:43 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Miscellanea]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/2007/04/25/i-took-the-2007-web-design-survey/</guid>
		<description><![CDATA[Over at A List Apart they’re asking people in the web industry to participate in their first annual web design survey, to try and build up a profile of who we are and what we do.]]></description>
			<content:encoded><![CDATA[<p>Over at <em>A List Apart</em> they’re asking people in the web industry to participate in their <a href="http://alistapart.com/articles/webdesignsurvey">first annual web design survey</a>, to try and build up a profile of who we are and what we do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2007/04/25/i-took-the-2007-web-design-survey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Closed for the holidays</title>
		<link>http://www.broken-links.com/2007/04/03/closed-for-the-holidays/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=closed-for-the-holidays</link>
		<comments>http://www.broken-links.com/2007/04/03/closed-for-the-holidays/#comments</comments>
		<pubDate>Tue, 03 Apr 2007 13:40:54 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Miscellanea]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/2007/04/03/closed-for-the-holidays/</guid>
		<description><![CDATA[I’m off on holiday — back towards the end of April. I’ve written a new post for CSS3.info before I go: Kill IE6 to let CSS3 live.]]></description>
			<content:encoded><![CDATA[<p>I’m off on holiday — back towards the end of April. I’ve written a new post for CSS3.info before I go: <a href="http://www.css3.info/kill-ie6-to-let-css3-live/">Kill IE6 to let CSS3 live</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2007/04/03/closed-for-the-holidays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moved to my own domain</title>
		<link>http://www.broken-links.com/2007/03/29/moved-to-my-own-domain/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=moved-to-my-own-domain</link>
		<comments>http://www.broken-links.com/2007/03/29/moved-to-my-own-domain/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 10:33:10 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Miscellanea]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/?p=37</guid>
		<description><![CDATA[I’ve moved to my new domain: www.Broken-Links.com (no, I don’t like the hyphen either). RSS Feeds should be updated automatically, and all old links should redirect here… fingers crossed…]]></description>
			<content:encoded><![CDATA[<p>I’ve moved to my new domain: www.Broken-Links.com (no, I don’t like the hyphen either). RSS Feeds should be updated automatically, and all old links should redirect here… fingers crossed…</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2007/03/29/moved-to-my-own-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
