<?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>Musings of ErisDS &#187; Internet</title>
	<atom:link href="http://erisds.co.uk/category/internet/feed" rel="self" type="application/rss+xml" />
	<link>http://erisds.co.uk</link>
	<description>Web development, Symfony, Wordpress and general geekery</description>
	<lastBuildDate>Sat, 07 Jan 2012 10:29:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Why don&#8217;t all HTML elements have a src attribute?</title>
		<link>http://erisds.co.uk/internet/why-dont-all-html-elements-have-a-src-attribute</link>
		<comments>http://erisds.co.uk/internet/why-dont-all-html-elements-have-a-src-attribute#comments</comments>
		<pubDate>Wed, 09 Mar 2011 13:52:27 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=2020</guid>
		<description><![CDATA[In the middle of writing a blog post about generating placeholder text (think lipsum..coming soon) I started wondering why there is no HTML-native way to load arbitrary content into an element. API&#8217;s and RESTful services are all over the web these days, but we continue to have to jump through hoops to access them. Either [...]


Related posts:<ol><li><a href='http://erisds.co.uk/code/html-canvas-going-ninja-with-net-magazines-processing-js-tutorial' rel='bookmark' title='Permanent Link: HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial'>HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial</a><small>Yesterday I finally got around to sitting down with the...</small></li>
<li><a href='http://erisds.co.uk/internet/state-of-the-browser' rel='bookmark' title='Permanent Link: State of the Browser'>State of the Browser</a><small>On the 19th March I'm going to be attending "State...</small></li>
<li><a href='http://erisds.co.uk/code/yui-javascript-carousel-custom-navigation-part-1' rel='bookmark' title='Permanent Link: YUI: Javascript Carousel with Custom Navigation &#8211; Part 1'>YUI: Javascript Carousel with Custom Navigation &#8211; Part 1</a><small>Welcome to my first JavaScript related post! I'm currently in...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In the middle of writing a blog post about generating placeholder text (think lipsum..coming soon) I started wondering why there is no HTML-native way to load arbitrary content into an element.</p>
<p>API&#8217;s and RESTful services are all over the web these days, but we continue to have to jump through hoops to access them. Either we have to use AJAX (which is essentially a clever hack) or we have to resort to server side technologies like cURL. This isn&#8217;t the case if the &#8220;arbitrary content&#8221; is an image, a script, some css or audio/video in HTML5. For those we have clever HTML elements like &lt;img&gt;, &lt;script&gt; &lt;link&gt; or in HTML5 even &lt;video&gt; or &lt;audio&gt; and if you want to fetch a whole document you can use the (imo horrendous) &lt;iframe&gt; tag. Most of these use a &#8220;src&#8221; attribute to go off and fetch some content, check if its appropriate for the tag, and then render it appropriately.</p>
<p>Why can&#8217;t we do that with a &lt;p&gt;, &lt;h#&gt; or &lt;div&gt; tag?</p>
<p>Imagine twitter has an additional API that just returns bits of text or HTML rather than XML/json for our hoop jumping ajax/curl type requests.</p>
<p>On my blog page, I could do this:</p>
<div class="codecolorer-container html4strict twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">div</span></a> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;twitter.com/erisds/latest&quot;</span>&gt;</span>sorry, my latest tweet could not be loaded<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">div</span></a>&gt;</span></div></td></tr></tbody></table></div>
<p>I could use RESTful requests directly in my page, without having to jump through hoops, without needing additional javascript &amp; serverside code. Fetching content from a URL is effectively the core function of a browser, as is handling the resulting HTML. It just seems odd, that given HTML has this functionality (fetching and handling/rendering responses from a URL) built in for complex stuff like images, video and audio, why can it not do it for the simple stuff?</p>
<p>Sure this could be abused, but is it not even worth considering?</p>
<p>It turns out this was in the XHTML2 spec: <a href="http://www.w3.org/TR/xhtml2/mod-embedding.html">http://www.w3.org/TR/xhtml2/mod-embedding.html</a> So where did it go? Why didn&#8217;t it make it into HTML5?</p>
<h3>More detail&#8230;</h3>
<p><ins datetime="2011-03-09T13:56:11+00:00"><strong>Updated</strong>:</ins> This wouldn&#8217;t replace AJAX entirely, as these would be synchronous requests on page load, but if we only need the content to be updated once per page refresh, it would make perfect sense. We&#8217;d still be using AJAX to submit forms etc, but there are a lot of cases I can think of where there&#8217;s no need for the requests to be asynchronous, it&#8217;s just that AJAX is the current easiest method of going to get data from somewhere else.</p>
<p>Also there&#8217;s the potential problem of people trying to load in all their content from different places and making tonnes of requests. Or alternatively abusing this to recreate the frameset / iframe hell of the 90&#8242;s. Whilst obviously this would be an issue, we&#8217;ve already learned the frameset lesson, and now people know how to use these tools properly (or not at all). In most cases, the request would just be replacing one that was being made some other way.</p>
<p>Also some people have raised the point, what would the browser do if it didn&#8217;t recognise the content fetched? This is already handled for images, video, audio etc. I don&#8217;t see why it is a hard problem to solve for HTML and plain text &#8211; this is what a browser is for!!</p>
<h3>Some more examples&#8230;</h3>
<p><ins datetime="2011-03-09T21:29:06+00:00"><strong>Updated 2:</strong></ins> It seems that I&#8217;ve not done a great job of explaining the potential benefits of this feature. If you&#8217;ve worked extensively with APIs, or if you&#8217;ve ever built a fully RESTful/MVC style PHP application, perhaps the benefits are clearer. Also if you&#8217;ve ever dealt with smarty or another templating language.</p>
<p>I&#8217;m not suggesting doing an API call for every single variable that might go into an HTML page, but it would still be possible to massively reduce the complexity of some templating or theme systems.</p>
<p>For example, in Symfony there is the concept of components. These are standalone templates which might draw part of the page &#8211; for example the menu, or a sidebar. WordPress&#8217; templates &amp; business logic isn&#8217;t separated in the &#8220;MVC&#8221; style same way, but it still has the concept of sidebars, widgets &amp; menus. These components, or separate templates, are still driven by PHP but usually are completely standalone &#8211; they work outside of the context of a page. So an archive widget is still an archive widget whether it&#8217;s on page X, Y, or completely on it&#8217;s own.</p>
<p>In Symfony, components are pulled in using a glorified PHP include. WordPress is full of &#8220;template tag&#8221; functions which echo HTML by default and are always available to the theme.</p>
<p>If we had a src attribute for all attributes we could do things like:</p>
<div class="codecolorer-container html4strict twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;aside <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/widgets/archive&quot;</span>&gt;</span>Archive Unavailable<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span>aside&gt;</span></div></td></tr></tbody></table></div>
<p>or</p>
<div class="codecolorer-container html4strict twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;nav <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/menus/main-menu&quot;</span>&gt;&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/&quot;</span>&gt;</span>Home<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;&lt;<span style="color: #66cc66;">/</span>nav&gt;</span></div></td></tr></tbody></table></div>
<p>or</p>
<div class="codecolorer-container html4strict twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;section <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/products/t-shirts/mens/&quot;</span>&gt;</span>0 products available<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span>section&gt;</span></div></td></tr></tbody></table></div>
<p>Each time we can specify some default or placeholder content, and then rely on the browser to query the URL, and place the response into the right part of the page. All while keeping our HTML nice and clean and separating our business logic from our templates in the same way we have been separating our content &amp; styling with HTML &amp; CSS for years.</p>
<p>For WordPress, it wouldn&#8217;t make a great deal of sense currently, because you&#8217;d effectively have to have a PHP file at the location of /widgets/archive with:</p>
<div class="codecolorer-container php twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_get_archives<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'type=monthly'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></div></td></tr></tbody></table></div>
<p>But MVC style applications which use routing systems with controllers already know how to handle a URL like /menus/main-menu, send it to a certain controller to do some business logic and then render a partial template. For example an e-commerce platform may already have a product controller &#8211; this would probably take a couple of arguments, go off to the database (via a model) fetch the right products based on those arguments, then do some logic before passing the data to a partial templates. </p>
<p>So my /products/t-shirts/mens example would send the arguments category = t-shirts, sub-category = mens to the product controller, get all the products from the database and pass the list of products to a template to render a pre-formatted list of products. This could be used anywhere a list of products is needed on the site, and could potentially be exposed to the wider internet so that other sites can show your products (think amazon affiliate programs).</p>
<p>The MVC pattern is widely accepted as being one of the better application patterns &#8211; partly because it encourages a RESTful / stateless system which is basically an API with templates built on top of it. More and more websites and web applications are offering APIs and it makes sense to build your application with an API and use it yourself. I can&#8217;t help feeling that if we had this src functionality, this would encourage this style of programming much more and make the tendancy towards publishing an API even more widespread. </p>
<p>(And if you want to know what&#8217;s great about APIs&#8230; maybe <a href="http://www.webmonkey.com/2011/03/thousand-of-apis-paint-a-bright-future-for-the-web/" target="_blank">start here</a>)</p>


<p>Related posts:<ol><li><a href='http://erisds.co.uk/code/html-canvas-going-ninja-with-net-magazines-processing-js-tutorial' rel='bookmark' title='Permanent Link: HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial'>HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial</a><small>Yesterday I finally got around to sitting down with the...</small></li>
<li><a href='http://erisds.co.uk/internet/state-of-the-browser' rel='bookmark' title='Permanent Link: State of the Browser'>State of the Browser</a><small>On the 19th March I'm going to be attending "State...</small></li>
<li><a href='http://erisds.co.uk/code/yui-javascript-carousel-custom-navigation-part-1' rel='bookmark' title='Permanent Link: YUI: Javascript Carousel with Custom Navigation &#8211; Part 1'>YUI: Javascript Carousel with Custom Navigation &#8211; Part 1</a><small>Welcome to my first JavaScript related post! I'm currently in...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/why-dont-all-html-elements-have-a-src-attribute/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>State of the Browser</title>
		<link>http://erisds.co.uk/internet/state-of-the-browser</link>
		<comments>http://erisds.co.uk/internet/state-of-the-browser#comments</comments>
		<pubDate>Tue, 08 Mar 2011 13:33:13 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=1992</guid>
		<description><![CDATA[<img class="alignleft size-thumbnail wp-image-2007" title="Browsers" src="http://erisds.co.uk/wp-content/uploads/2011/03/browsers-150x150.png"  />On the 19th March I'm going to be attending "<a title="State of the Browser" href="http://browser.londonwebstandards.org/" target="_blank">State of the Browser</a>". It's an event hosted by the <a title="London Web Standards group" href="http://www.londonwebstandards.org/" target="_blank">London Web Standards</a> group for "web creators" to get the low down on up-and-coming features of the 4 modern browsers.

Tickets for the event are £10 and are still available on <a title="EventBrite State of the Browser Tickets" href="http://lwsbrowser.eventbrite.com/" target="_blank">Eventbrite</a>. You can follow tweets about the event via the hashtag <a title="#lwsbrowser on twitter" href="http://twitter.com/#!/search/%23lwsbrowser" target="_blank">#lwsbrowser</a>


Related posts:<ol><li><a href='http://erisds.co.uk/internet/down-with-ie6-tell-it-to-microsoft' rel='bookmark' title='Permanent Link: Down with IE6? Tell it to Microsoft'>Down with IE6? Tell it to Microsoft</a><small>There has been much talk in the web design and...</small></li>
<li><a href='http://erisds.co.uk/internet/why-dont-all-html-elements-have-a-src-attribute' rel='bookmark' title='Permanent Link: Why don&#8217;t all HTML elements have a src attribute?'>Why don&#8217;t all HTML elements have a src attribute?</a><small>In the middle of writing a blog post about generating...</small></li>
<li><a href='http://erisds.co.uk/business/future-of-web-design-my-thoughts-two-months-on' rel='bookmark' title='Permanent Link: Future of Web Design London 2010: My thoughts two months on&#8230;'>Future of Web Design London 2010: My thoughts two months on&#8230;</a><small>Technology conferences are fun, an enormous amount of extremely geeky...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-2007" title="Browsers" src="http://erisds.co.uk/wp-content/uploads/2011/03/browsers-300x300.png"  />On the 19th March I&#8217;m going to be attending &#8220;<a title="State of the Browser" href="http://browser.londonwebstandards.org/" target="_blank">State of the Browser</a>&#8220;. It&#8217;s an event hosted by the <a title="London Web Standards group" href="http://www.londonwebstandards.org/" target="_blank">London Web Standards</a> group for &#8220;web creators&#8221; to get the low down on up-and-coming features of the 4 modern browsers.</p>
<p>Tickets for the event are £10 and are still available on <a title="EventBrite State of the Browser Tickets" href="http://lwsbrowser.eventbrite.com/" target="_blank">Eventbrite</a>. You can follow tweets about the event via the hashtag <a title="#lwsbrowser on twitter" href="http://twitter.com/#!/search/%23lwsbrowser" target="_blank">#lwsbrowser</a></p>
<p>Representatives will be attending from Microsoft, Mozilla, Opera and Google to introduce the latest and greatest in browser-based technologies. For me it&#8217;s going to be really interesting to see folks from all four browsers together in the same space, and watch them hash out the doubtless tricky questions that will be flying around the room. I&#8217;m also interested to get the inside scoop on what the plan of attack is for each browser and handling all the magic that is meant to come with HTML5. I also imagine that they&#8217;ll all have some pretty nifty apps and demos to show us what they can do.</p>
<p>The <a title="HTML5 Readiness" href="http://html5readiness.com/" target="_blank">HTML5 readiness interactive infographic</a> is one of my favourite little tools for inspecting what will be available where, and determining which features will really be usable in the near future. It shows that not just IE6, but IE7 &amp; IE8 also need to die out or completely lose market share before a lot of the new tech will be truly ready for use. I hope everyone has already heard about<a title="Microsoft IE6 Countdown" href="http://ie6countdown.com/" target="_blank"> Microsoft&#8217;s IE6 Countdown</a> page tracking the death of it&#8217;s much loathed browser, but is this just too little too late? You can test your current browser out at <a href="http://html5test.com/">http://html5test.com/</a> (at the moment even Chrome only scores 282/400 for me) And <a href="http://www.deepbluesky.com/blog/-/browser-support-for-css3-and-html5_72/" target="_blank" alt="CSS3 &#038; HTML5 support">this blog post</a> is also pretty interesting for seeing CSS3 support as well. </p>
<p>For other random &amp; interesting browser-based statistics &amp; infographics (I collect these things!) check out this <a title="Axiis Historical Browser Statistics" href="http://michaelvandaniker.com/blog/2009/10/31/visualizing-historic-browser-statistics-with-axiis/" target="_blank">graph of historical browser statistics</a>, these breakdowns of <a title="Browser statistics by country" href="http://www.browserrank.com/" target="_blank">browser statistics by country</a>, or this overview of <a title="Browser performance statistics" href="http://sixrevisions.com/infographics/performance-comparison-of-major-web-browsers/" target="_blank">browser performance statistics</a>.</p>
<p>Drop me a comment/tweet if you&#8217;ll be there too!</p>


<p>Related posts:<ol><li><a href='http://erisds.co.uk/internet/down-with-ie6-tell-it-to-microsoft' rel='bookmark' title='Permanent Link: Down with IE6? Tell it to Microsoft'>Down with IE6? Tell it to Microsoft</a><small>There has been much talk in the web design and...</small></li>
<li><a href='http://erisds.co.uk/internet/why-dont-all-html-elements-have-a-src-attribute' rel='bookmark' title='Permanent Link: Why don&#8217;t all HTML elements have a src attribute?'>Why don&#8217;t all HTML elements have a src attribute?</a><small>In the middle of writing a blog post about generating...</small></li>
<li><a href='http://erisds.co.uk/business/future-of-web-design-my-thoughts-two-months-on' rel='bookmark' title='Permanent Link: Future of Web Design London 2010: My thoughts two months on&#8230;'>Future of Web Design London 2010: My thoughts two months on&#8230;</a><small>Technology conferences are fun, an enormous amount of extremely geeky...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/state-of-the-browser/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>More life beyond the internet</title>
		<link>http://erisds.co.uk/internet/more-life-beyond-the-internet</link>
		<comments>http://erisds.co.uk/internet/more-life-beyond-the-internet#comments</comments>
		<pubDate>Fri, 28 Jan 2011 19:57:51 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=1878</guid>
		<description><![CDATA[<a href="http://erisds.co.uk/wp-content/uploads/2011/01/P1000154.jpg"><img src="http://erisds.co.uk/wp-content/uploads/2011/01/P1000154-168x300.jpg" alt="" title="Cuban Style" width="168" height="300" class="alignleft size-medium wp-image-1883" /></a>Last week, whilst on my honeymoon in Cuba, I <a href="http://erisds.co.uk/internet/life-beyond-the-internet">wrote this post</a> about being disconnected, and liking it.

I've been home 2 days, and haven't yet brought myself to deal with my email, read any news, or write a tweet. I've been on facebook, but that's because it's where my friends, family and wedding photos are. I'm only half using my iPhone... I've only had my PC on a couple of hours a day... I'm feeling slightly intimidated.]]></description>
			<content:encoded><![CDATA[<p><a href="http://erisds.co.uk/wp-content/uploads/2011/01/P1000154.jpg"><img src="http://erisds.co.uk/wp-content/uploads/2011/01/P1000154-168x300.jpg" alt="" title="Cuban Style" width="168" height="300" class="alignleft size-medium wp-image-1883" /></a>Last week, whilst on my honeymoon in Cuba, I <a href="http://erisds.co.uk/internet/life-beyond-the-internet">wrote this post</a> about being disconnected, and liking it.</p>
<p>I&#8217;ve been home 2 days, and haven&#8217;t yet brought myself to deal with my email, read any news, or write a tweet. I&#8217;ve been on facebook, but that&#8217;s because it&#8217;s where my friends, family and wedding photos are. I&#8217;m only half using my iPhone&#8230; I&#8217;ve only had my PC on a couple of hours a day&#8230; I&#8217;m feeling slightly intimidated.</p>
<p>Normally when people are addicted to something, they&#8217;re told to avoid it completely. Some people go cold turkey, other people wean themselves gently, but the key to giving up is giving up entirely. I&#8217;m addicted to being connected to the internet, but my life dictates I can&#8217;t give it up entirely &#8211; it&#8217;s my livelihood and to be honest it&#8217;s who I am.</p>
<p>I believe my earlier conclusion was correct: I need a better balance &#8211; to disconnect once in a while. At the moment I&#8217;m worried that once I get back on twitter, catch up with everything that&#8217;s going on, get my iPhone notifications all switched on again etc, I&#8217;ll forget how to disconnect again and get lost in the ether. So this is my reminder to myself (before I take the plunge) to turn my iPhone off once in a while, to disconnect &#8211; you don&#8217;t ALWAYS need to know what&#8217;s going on &#8211; and to take a little time to relax &#8220;Cuban style&#8221; once in a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/more-life-beyond-the-internet/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Life beyond the internet</title>
		<link>http://erisds.co.uk/internet/life-beyond-the-internet</link>
		<comments>http://erisds.co.uk/internet/life-beyond-the-internet#comments</comments>
		<pubDate>Fri, 21 Jan 2011 22:16:42 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=1871</guid>
		<description><![CDATA[I am a child of the internet. I remember the early(ish) days, when we had 14.4k modems and I hadn't yet discovered search engines. Always a geek, I was one of the first kids in school to get access at home. One day after doing some research for a school project on The Blitz using altavista, I announced excitedly to my classmates that one day soon all the information known to mankind would be on the Internet AND the internet would be everywhere. They laughed.

Cuba doesn't really have the internet. There is an expensive data network (not 3G) I can access from my phone and a very slow broadband connection available on the islands for tourists, but the locals can only gain access by queuing for hours at small, rare internet cafe type places. Two weeks here have been an interesting experiment.]]></description>
			<content:encoded><![CDATA[<p>I am a child of the internet. I remember the early(ish) days, when we had 14.4k modems and I hadn&#8217;t yet discovered search engines. Always a geek, I was one of the first kids in school to get access at home. One day after doing some research for a school project on The Blitz using altavista, I announced excitedly to my classmates that one day soon all the information known to mankind would be on the Internet AND the internet would be everywhere. They laughed.</p>
<p>Cuba doesn&#8217;t really have the internet. There is an expensive data network (not 3G) I can access from my phone and a very slow broadband connection available on the islands for tourists, but the locals can only gain access by queuing for hours at small, rare internet cafe type places. Two weeks here have been an interesting experiment.</p>
<p>The initial feeling of panic that overcame me with the realisation I no longer had constant access to email, Google &#038; the wonderful exercise in crowdsourcing that is Twitter, was quickly replaced with a serene calm. Being disconnected feels good.</p>
<p>Normally I&#8217;m constantly checking email, Twitter, Google Analytics, news feeds &#038; other sources of information that feed a thirst for knowledge which only grows and deepens. A question posits itself: what&#8217;s the weather going to be like? what other film is that actor in? what&#8217;s the proper CSS for text shadow again? how long does it take to drive to the train station?&#8230; I can&#8217;t help myself, a few clicks or taps and I&#8217;ve got the answer. There&#8217;s not really even any reason to remember it as I can always find it again later.</p>
<p>Here I have to think, remember, use my powers of reason and deduction. I&#8217;ve read fiction books, something I&#8217;ve not done in a long while, and it&#8217;s been tantalising and frustrating to have to figure out or guess at what words mean instead of looking them up, to not be able to quickly wiki some battle or historic figure or religious icon because it sounded interesting. It&#8217;s been liberating, I feel like I&#8217;ve freed my mind.</p>
<p>Surely that&#8217;s what a holiday is about right? Taking time out, relaxing, leaving the world behind, reading a few books and having time to just be. This however has been something more, this has been the realisation that although the internet feeds my passion for knowledge (and knowledge is power) it also somewhat quashes my imagination, my ability to think for myself and to have original thought.</p>
<p>With the advent of broadband, and not much more than a year ago my obtaining an iPhone, I have reached a stage where I am never disconnected. It is time, I think, to work at getting some balance back.s at</p>
]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/life-beyond-the-internet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Top Resources for Twitter Success</title>
		<link>http://erisds.co.uk/internet/5-top-resources-for-twitter-success</link>
		<comments>http://erisds.co.uk/internet/5-top-resources-for-twitter-success#comments</comments>
		<pubDate>Thu, 24 Jun 2010 22:25:38 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=1324</guid>
		<description><![CDATA[I've been experimenting with developing my Twitter account for the last year or so, and this week I published 5 simple steps for getting from beginner to a successful Twitterer: <a title="Getting Started with Twitter: 5 Simple Steps" href="http://www.enginecreative.co.uk/blog/getting-started-with-twitter-5-simple-steps.html" target="_blank">Getting Started with Twitter: 5 Simple Steps</a>. The article is aimed largely at small companies and organisations who are looking to use Twitter to drive traffic to their sites and improve their Brand's reputation.


Related posts:<ol><li><a href='http://erisds.co.uk/code/twitter-oauth-simple-curl-requests-for-your-own-data' rel='bookmark' title='Permanent Link: Twitter OAuth: Simple cURL requests for your own data'>Twitter OAuth: Simple cURL requests for your own data</a><small>Having to include an entire PHP OAuth library every time...</small></li>
<li><a href='http://erisds.co.uk/internet/digging-twitter' rel='bookmark' title='Permanent Link: Digging Twitter'>Digging Twitter</a><small>Last night this article hit the front page of Digg....</small></li>
<li><a href='http://erisds.co.uk/awesome/awesome-1-real-time-radiation-levels-twitter-heartbeat-bbc-fail' rel='bookmark' title='Permanent Link: Awesome: 1. Real-time radiation levels, Twitter heartbeat &#038; BBC #fail'>Awesome: 1. Real-time radiation levels, Twitter heartbeat &#038; BBC #fail</a><small>An introduction This is the first in a new series...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been experimenting with developing my Twitter account for the last year or so, and this week I published 5 simple steps for getting from beginner to a successful Twitterer: <a title="Getting Started with Twitter: 5 Simple Steps" href="http://www.enginecreative.co.uk/blog/getting-started-with-twitter-5-simple-steps.html" target="_blank">Getting Started with Twitter: 5 Simple Steps</a>. The article is aimed largely at small companies and organisations who are looking to use Twitter to drive traffic to their sites and improve their Brand&#8217;s reputation.</p>
<p>I thought I&#8217;d post a link here, as I wanted to add my top 5 resources. The following 5 articles go into more depth regarding what Twitter is about, do&#8217;s and dont&#8217;s and how to make best use of the service. Enjoy!</p>
<ol>
<li><a rel="bookmark" href="http://stoneatwine.wordpress.com/2010/03/10/twitter-glossary-15-common-twitter-terms-explained/">Twitter Glossary – 15 Common Twitter Terms Explained</a></li>
<li><a rel="bookmark" href="http://stoneatwine.wordpress.com/2010/03/10/twitter-glossary-15-common-twitter-terms-explained/"></a><a title="Practical 101s: Getting started with Twitter" href="http://davefleet.com/2008/10/practical-101s-getting-started-with-twitter/" target="_blank">Practical 101s: Getting started with Twitter &#8211; from Dave Flee</a>t</li>
<li> <a title=" My Twitter Rules: What Not To Do" href="http://john.onolan.org/my-twitter-rules-what-not-to-do/" target="_blank">My Twitter Rules : What not to do - from John O&#8217;Nolan</a></li>
<li><a title=" My Twitter Rules: What Not To Do" href="http://john.onolan.org/my-twitter-rules-what-not-to-do/" target="_blank"></a><a title="7 Ways to Use Microblogging Services for Traffic and Brand Exposure" href="http://www.doshdosh.com/7-ways-to-use-microblogging-services-for-traffic-and-brand-exposure/" target="_blank">7 ways to use Microblogging Services for Traffic and Brand Exposure &#8211; from DoshDosh</a></li>
<li><a title="7 Ways to Use Microblogging Services for Traffic and Brand Exposure" href="http://www.doshdosh.com/7-ways-to-use-microblogging-services-for-traffic-and-brand-exposure/" target="_blank"></a><a title="How to Track your Success (or Failure) on Twitter" href="http://rich-page.com/ramblings/how-to-track-your-success-or-failure-on-twitter/" target="_blank">How to Track your Success or Failure on Twitter &#8211; from Rich Page</a></li>
</ol>


<p>Related posts:<ol><li><a href='http://erisds.co.uk/code/twitter-oauth-simple-curl-requests-for-your-own-data' rel='bookmark' title='Permanent Link: Twitter OAuth: Simple cURL requests for your own data'>Twitter OAuth: Simple cURL requests for your own data</a><small>Having to include an entire PHP OAuth library every time...</small></li>
<li><a href='http://erisds.co.uk/internet/digging-twitter' rel='bookmark' title='Permanent Link: Digging Twitter'>Digging Twitter</a><small>Last night this article hit the front page of Digg....</small></li>
<li><a href='http://erisds.co.uk/awesome/awesome-1-real-time-radiation-levels-twitter-heartbeat-bbc-fail' rel='bookmark' title='Permanent Link: Awesome: 1. Real-time radiation levels, Twitter heartbeat &#038; BBC #fail'>Awesome: 1. Real-time radiation levels, Twitter heartbeat &#038; BBC #fail</a><small>An introduction This is the first in a new series...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/5-top-resources-for-twitter-success/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The ExplicitWeb Podcast</title>
		<link>http://erisds.co.uk/internet/the-explicitweb-podcast</link>
		<comments>http://erisds.co.uk/internet/the-explicitweb-podcast#comments</comments>
		<pubDate>Sun, 20 Jun 2010 10:50:20 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[explicitweb]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=1188</guid>
		<description><![CDATA[<a href="http://explicitweb.co.uk"><img class="alignleft size-medium wp-image-1305" title="ExplicitWeb" src="http://erisds.co.uk/wp-content/uploads/2010/06/explicitweb_logo-300x300.jpg" alt="" width="300" height="300" /></a>Last week marked the launch of the <a title="Ep. 7 of Explicit Web - Content vs. Design, Microformats, Working in Bursts, and the iPad" href="http://explicitweb.co.uk/post/697393363/episode-7-content-vs-design-microformats" target="_blank">7th ExplicitWeb podcast</a>, complete with our second guest, Rick Nunn. The show seems to be gathering strength with each new episode and I thought it about time I shared my thoughts. If you haven't heard the podcast yet, I recommend checking us out either at the <a title="ExplictWeb Podcast " href="http://explicitweb.co.uk/" target="_blank">ExplicitWeb site</a> or our page on <a title="Explicit Web on iTunes" href="http://bit.ly/cun27g" target="_blank">iTunes</a>.

Just a quick post on the origins of the podcast, the idea behind it and why it is the way it is!


Related posts:<ol><li><a href='http://erisds.co.uk/business/how-to-solve-problematic-client-relationships-back-to-basics' rel='bookmark' title='Permanent Link: How to Solve Problematic Client Relationships: Back to Basics'>How to Solve Problematic Client Relationships: Back to Basics</a><small>Please Note: This is the companion blog post to a...</small></li>
<li><a href='http://erisds.co.uk/code/html-canvas-going-ninja-with-net-magazines-processing-js-tutorial' rel='bookmark' title='Permanent Link: HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial'>HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial</a><small>Yesterday I finally got around to sitting down with the...</small></li>
<li><a href='http://erisds.co.uk/business/another-dot-com-boom' rel='bookmark' title='Permanent Link: Another dot com boom&#8230;'>Another dot com boom&#8230;</a><small> Despite the current economic turmoil, many people are warning...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://explicitweb.co.uk"><img class="alignleft size-medium wp-image-1305" title="ExplicitWeb" src="http://erisds.co.uk/wp-content/uploads/2010/06/explicitweb_logo-300x300.jpg" alt="" width="300" height="300" /></a>Last week marked the launch of the <a title="Ep. 7 of Explicit Web - Content vs. Design, Microformats, Working in Bursts, and the iPad" href="http://explicitweb.co.uk/post/697393363/episode-7-content-vs-design-microformats" target="_blank">7th ExplicitWeb podcast</a>, complete with our second guest, Rick Nunn. The show seems to be gathering strength with each new episode and I thought it about time I shared my thoughts. If you haven&#8217;t heard the podcast yet, I recommend checking us out either at the <a title="ExplictWeb Podcast " href="http://explicitweb.co.uk/" target="_blank">ExplicitWeb site</a> or our page on <a title="Explicit Web on iTunes" href="http://bit.ly/cun27g" target="_blank">iTunes</a>.</p>
<p>ExplicitWeb came from a series of conversations between <a title="John O'Nolan on ExplicitWeb" href="http://john.onolan.org/the-explicitweb-podcast/" target="_blank">John O&#8217;Nolan</a>, <a title="Rob Hawkes on ExplicitWeb" href="http://rawkes.com/blog/2010/03/10/explicitweb-a-podcast-from-the-front-lines-of-web-development" target="_blank">Rob Hawkes</a> and I regarding the state of web industry podcasts. We felt that the existing podcasts were often overly long and self-indulgent, many focus on one subject per show making them hit-and-miss, and most are done by professional podcasters, or people who have become professional podcasters meaning they no longer practise web design and development on a daily basis. The three of us saw an opportunity to do something new &amp; different and <a title="ExplictWeb Podcast " href="http://explicitweb.co.uk/" target="_blank">ExplicitWeb</a> was born.</p>
<p>Doing things differently means shaking it up a bit (and invariably making some people unhappy). Here&#8217;s a few features of ExplicitWeb:</p>
<ul>
<li><strong>ExplicitWeb is short</strong> &#8211; the average show time is around 39 minutes. Hopefully this means you won&#8217;t get bored.</li>
<li><strong>ExplicitWeb is in 3 segments</strong> &#8211; each host presents a topic, meaning that in those 39-odd minutes you get 3 bite-sized looks at 3 very different subjects.</li>
<li><strong>ExplicitWeb is flexible</strong> &#8211; we regularly play with the format: one episode was a 30 minute interview and in another we added an extra segment presented by a guest. We&#8217;re open to ideas and always looking to improve.</li>
<li><strong>ExplicitWeb is diverse</strong> &#8211; we&#8217;re from agency, freelance and student backgrounds, developer, designer, and somewhere in the middle and yup we&#8217;ve even got the token girl ;)</li>
<li><strong>ExplicitWeb is informal</strong> &#8211; we try to present our topics like we&#8217;re having a chat down your local. We don&#8217;t try to be holier-than-thou and what we say comes from our real world experience in a hopefully down-to-earth way&#8230;</li>
<li><strong>ExplicitWeb is Explicit</strong> &#8211; &#8230;not because it&#8217;s smart or funny, but because that&#8217;s how we talk normally.</li>
<li><strong>ExplicitWeb is how it comes (warts and all) </strong>- we don&#8217;t censor and rarely edit. It keeps it quick &amp; easy to produce and hopefully gives the show that &#8220;in the pub&#8221; feel!</li>
<li><strong>ExplicitWeb is bi-weekly</strong> &#8211; despite our time-cutting measures we still only realistically have time to produce a show every 2 weeks. This is definitely the biggest gripe of our listeners! Honestly we&#8217;d all LOVE to have the time to do it weekly, but we don&#8217;t. Hey, at least it&#8217;s not monthly!</li>
</ul>
<p>The entire point behind <a title="ExplictWeb Podcast " href="http://explicitweb.co.uk/" target="_blank">ExplicitWeb</a> is that we are web industry professionals, not professional podcasters. We hope that the benefits of this approach outweigh the negatives. That the content we produce is better for it, even if it means less frequent shows.</p>
<p><a title="ExplicitWeb Podcast" href="http://explicitweb.co.uk" target="_blank">Check out the show</a> and if you like it please don&#8217;t forget to subscribe on <a title="Explicit Web on iTunes" href="http://bit.ly/cun27g" target="_blank">iTunes</a> or to <a title="ExplicitWeb RSS Feed" href="http://media.explicitweb.co.uk/feed/explicitweb_feed.xml" target="_blank">the feed</a> if you prefer. Whether you have positive feedback or constructive criticism, <a title="ExplicitWeb on Twitter" href="http://twitter.com/explicitweb" target="_blank">let us know</a> and maybe <a title="Vote for your favourite ExplicitWeb episode" href="http://explicitweb.co.uk/post/718005957/quick-poll-which-episode-is-your-favourite-so-far" target="_blank">vote for your favourite episode</a>? If you&#8217;ve got ideas for topics, or would like to present one yourself, <a title="ExplicitWeb on Twitter" href="http://twitter.com/explicitweb" target="_blank">get in touch</a>.</p>


<p>Related posts:<ol><li><a href='http://erisds.co.uk/business/how-to-solve-problematic-client-relationships-back-to-basics' rel='bookmark' title='Permanent Link: How to Solve Problematic Client Relationships: Back to Basics'>How to Solve Problematic Client Relationships: Back to Basics</a><small>Please Note: This is the companion blog post to a...</small></li>
<li><a href='http://erisds.co.uk/code/html-canvas-going-ninja-with-net-magazines-processing-js-tutorial' rel='bookmark' title='Permanent Link: HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial'>HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial</a><small>Yesterday I finally got around to sitting down with the...</small></li>
<li><a href='http://erisds.co.uk/business/another-dot-com-boom' rel='bookmark' title='Permanent Link: Another dot com boom&#8230;'>Another dot com boom&#8230;</a><small> Despite the current economic turmoil, many people are warning...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/the-explicitweb-podcast/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve signed up to Project52</title>
		<link>http://erisds.co.uk/internet/ive-signed-up-to-project52</link>
		<comments>http://erisds.co.uk/internet/ive-signed-up-to-project52#comments</comments>
		<pubDate>Thu, 07 Jan 2010 23:15:52 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[resolutions]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=913</guid>
		<description><![CDATA[<a href="http://project52.info/"><img src="http://erisds.co.uk/wp-content/uploads/2010/01/p52_300x377.png" alt="" title="p52_300x377" width="300" height="377" class="alignleft size-full wp-image-914" /></a>I've just signed up to Project52. Originally intended as a small group of friends supporting each other to reach their goals, there are now over 700 members and I'm really interested to see how this develops into a workable system.

Last year I promised to write once a week and failed, so I'm hoping this might spur me on to achieve that goal this year. The intention is that a tracking system will be created to monitor progress of group members. If the system works (once it goes live) I'll also be <a href="http://www.zazzle.com/anton/gifts?cg=196894207769697724">purchasing a mug</a> as a daily reminder - I just wish they did one in purple!


Related posts:<ol><li><a href='http://erisds.co.uk/personal/four-things-for-four-months-ish' rel='bookmark' title='Permanent Link: Four things for four months (ish)'>Four things for four months (ish)</a><small>Today is my 25th birthday. It feels like a milestone,...</small></li>
<li><a href='http://erisds.co.uk/personal/stay-on-top-of-the-game' rel='bookmark' title='Permanent Link: Stay on top of the game'>Stay on top of the game</a><small>For 2010 I pledge to stay on top of the...</small></li>
<li><a href='http://erisds.co.uk/general/2009-review-and-aims-part-ii' rel='bookmark' title='Permanent Link: 2009 Review and Aims Part II'>2009 Review and Aims Part II</a><small>On the first of June I published a summary of...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3><a href="http://project52.info/"><img class="alignleft size-full wp-image-914" title="p52_300x377" src="http://erisds.co.uk/wp-content/uploads/2010/01/p52_300x377.png" alt="" width="300" height="377" /></a>I&#8217;ve just signed up to <a href="http://project52.info/">Project52</a>.</h3>
<p>Originally intended as a small group of friends supporting each other to reach their goals, there are now over 700 members and I&#8217;m really interested to see how this develops into a workable system.</p>
<p>Last year I promised to write once a week and failed, so I&#8217;m hoping this might spur me on to achieve that goal this year. The intention is that a tracking system will be created to monitor progress of group members. If the system works (once it goes live) I&#8217;ll also be <a href="http://www.zazzle.com/anton/gifts?cg=196894207769697724">purchasing a mug</a> as a daily reminder &#8211; I just wish they did one in purple!</p>


<p>Related posts:<ol><li><a href='http://erisds.co.uk/personal/four-things-for-four-months-ish' rel='bookmark' title='Permanent Link: Four things for four months (ish)'>Four things for four months (ish)</a><small>Today is my 25th birthday. It feels like a milestone,...</small></li>
<li><a href='http://erisds.co.uk/personal/stay-on-top-of-the-game' rel='bookmark' title='Permanent Link: Stay on top of the game'>Stay on top of the game</a><small>For 2010 I pledge to stay on top of the...</small></li>
<li><a href='http://erisds.co.uk/general/2009-review-and-aims-part-ii' rel='bookmark' title='Permanent Link: 2009 Review and Aims Part II'>2009 Review and Aims Part II</a><small>On the first of June I published a summary of...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/ive-signed-up-to-project52/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Web Hosting Nightmare&#8230;</title>
		<link>http://erisds.co.uk/internet/my-web-hosting-nightmare</link>
		<comments>http://erisds.co.uk/internet/my-web-hosting-nightmare#comments</comments>
		<pubDate>Fri, 14 Aug 2009 21:05:56 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=797</guid>
		<description><![CDATA[This past week and a half I have "moved home" in more ways than one. Not only have I had to move EVERYTHING out of the house we bought 8 months ago so that electricians can re-wire the entire place, but I have also moved this blog to a new home with <a href="http://hosting.peartreeuk.com/" target="_blank">PeartreeUK</a>. The result is I have been unbelievably busy, have no electricity at home (or sofa, or bed) and the 3rd part of my <a href="http://erisds.co.uk/code/yui-javascript-carousel-custom-navigation-part-1" target="_blank">YUI: Javascript Carousel</a> series has been delayed.

<h2>Web Hosting is a minefield...</h2>
Seeing the web hosting feature in the latest edition of <a href="http://www.netmag.co.uk/" target="_blank"><strong>.net Magazine</strong></a> has confirmed my feelings about the web hosting industry: it's a minefield. A completely over saturated market of small-fry &#38; big brands, most of which you will never have heard of unless you've heard a horror story or two. In my experience it doesn't seem to matter where you turn, something unexpected goes wrong.

..last weekend I  decided to finally sort out my hosting life. With all my resold accounts still hanging around on slowly-slowly-Surpass, and my blog on clunky-Clook, I've turned back to the one place I know I'll get what I pay for - <a href="http://hosting.peartreeuk.com/" target="_blank">PearTreeUK</a>. They may be relatively small, but there's nothing like being able to get hold of an <strong>intelligent human being</strong> whenever you need one! Having kept my original account open as a test bed, I have now upgraded to a reseller with them.


Related posts:<ol><li><a href='http://erisds.co.uk/general/2009-review-and-aims-final-part' rel='bookmark' title='Permanent Link: 2009 Review and Aims Final Part'>2009 Review and Aims Final Part</a><small>Short, honest and to the point. The last 5 months...</small></li>
<li><a href='http://erisds.co.uk/personal/four-things-for-four-months-ish' rel='bookmark' title='Permanent Link: Four things for four months (ish)'>Four things for four months (ish)</a><small>Today is my 25th birthday. It feels like a milestone,...</small></li>
<li><a href='http://erisds.co.uk/wordpress/migrate-announcement' rel='bookmark' title='Permanent Link: WordPress: Migrate! Easy WordPress Site Migration'>WordPress: Migrate! Easy WordPress Site Migration</a><small>If you work with multiple environments (development, staging, production etc)...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This past week and a half I have &#8220;moved home&#8221; in more ways than one. Not only have I had to move EVERYTHING out of the house we bought 8 months ago so that electricians can re-wire the entire place, but I have also moved this blog to a new home with <a href="http://hosting.peartreeuk.com/" target="_blank">PeartreeUK</a>. The result is I have been unbelievably busy, have no electricity at home (or sofa, or bed) and the 3rd part of my <a href="http://erisds.co.uk/code/yui-javascript-carousel-custom-navigation-part-1" target="_blank">YUI: Javascript Carousel</a> series has been delayed.</p>
<h2>Web Hosting is a minefield&#8230;</h2>
<p>Seeing the web hosting feature in the latest edition of <a href="http://www.netmag.co.uk/" target="_blank"><strong>.net Magazine</strong></a> has confirmed my feelings about the web hosting industry: it&#8217;s a minefield. A completely over saturated market of small-fry &amp; big brands, most of which you will never have heard of unless you&#8217;ve heard a horror story or two. In my experience it doesn&#8217;t seem to matter where you turn, something unexpected goes wrong.</p>
<p>For years I was a happy client of <strong>Lonex</strong>. Their support was good enough although there was no status page, the servers were reliable, and generally things went ok. Then they got <strong>DDoSed </strong>and never recovered &#8211; my sites suffered <strong>downtime</strong> a few times a week, everything was <strong>slow</strong>, and I couldn&#8217;t get support to acknowledge or fix the problem.</p>
<p>So I moved to <strong>Surpass</strong>: a seemingly huge company with a public community, status pages, good support, and reliable service. Then I started work on this blog and found the <strong>pages loaded really slowly</strong>. I queried this and after ages of back and forth with support I got a message which simply read: <em>&#8220;Thanks for your patience. We have completed some work on this server and performance is back to normal. Thanks for hanging in there.&#8221;</em> &#8211; Nothing had changed as far as I was concerned.</p>
<p>Next I opened a single account on <a href="http://hosting.peartreeuk.com/">PeartreeUK</a> and started prepping my blog for launch. For some reason I couldn&#8217;t get <strong>WordPress</strong> to work properly. In my frustration I gave up without giving them a chance and tried yet another company.</p>
<p>This time it was <strong>Clook</strong>. A more expensive company but they had good reviews from friends so I figured I&#8217;d get what I paid for. My blog had the same WordPress problems  &amp; I realised it was entirely my fault. So I got it all fixed and launched my blog on<strong> Clook.</strong></p>
<p>4 months later and I have two niggles with <strong>Clook</strong>:</p>
<ol>
<li> Because Apache is running as &#8220;noone&#8221; PHP scripts create files that I can&#8217;t delete through FTP. There is no way to remove the files through the control panel so I have had to install a PHP File manager which I really don&#8217;t like. It just makes my life far more complicated than it needs to be, especially when trying to work with a publishing platform like <strong>WordPress</strong>.</li>
<li>For some reason there is no way to setup recurring payments. I have to remember to pay my bill each month. Yet again just something dumb that makes my life harder than it needs to be.</li>
</ol>
<h2>PeartreeUK &#8211; my Web Hosting Solution</h2>
<p>So last weekend I  decided to finally sort out my hosting life. With all my resold accounts still hanging around on slowly-slowly-Surpass, and my blog on clunky-Clook, I&#8217;ve turned back to the one place I know I&#8217;ll get what I pay for &#8211; <a href="http://hosting.peartreeuk.com/" target="_blank">PearTreeUK</a>. They may be relatively small, but there&#8217;s nothing like being able to get hold of an <strong>intelligent human being</strong> whenever you need one! Having kept my original account open as a test bed, I have now upgraded to a reseller with them.</p>
<p>I doubt you will find better customer service than <a href="http://hosting.peartreeuk.com/" target="_blank">PeartreeUK&#8217;s</a> -  having one person consistently deal with you from day one means that you are always taken care of without the frustration of trying to explain yourself AGAIN everytime there&#8217;s a shift-change. If you&#8217;ve visited here before you may notice how much faster pages (and FTP) now loads &#8211; my WordPress backend feels like it&#8217;s on speed. Add to that their prices &amp; the excellent attitude of their employees and you have a value-for-money service that I <strong>highly recommend</strong>.</p>
<p class="small"><strong>Note:</strong> Expect an update post in 6 months documenting my experiences with Peartree!</p>


<p>Related posts:<ol><li><a href='http://erisds.co.uk/general/2009-review-and-aims-final-part' rel='bookmark' title='Permanent Link: 2009 Review and Aims Final Part'>2009 Review and Aims Final Part</a><small>Short, honest and to the point. The last 5 months...</small></li>
<li><a href='http://erisds.co.uk/personal/four-things-for-four-months-ish' rel='bookmark' title='Permanent Link: Four things for four months (ish)'>Four things for four months (ish)</a><small>Today is my 25th birthday. It feels like a milestone,...</small></li>
<li><a href='http://erisds.co.uk/wordpress/migrate-announcement' rel='bookmark' title='Permanent Link: WordPress: Migrate! Easy WordPress Site Migration'>WordPress: Migrate! Easy WordPress Site Migration</a><small>If you work with multiple environments (development, staging, production etc)...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/my-web-hosting-nightmare/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Down with IE6? Tell it to Microsoft</title>
		<link>http://erisds.co.uk/internet/down-with-ie6-tell-it-to-microsoft</link>
		<comments>http://erisds.co.uk/internet/down-with-ie6-tell-it-to-microsoft#comments</comments>
		<pubDate>Sun, 12 Apr 2009 22:39:07 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=125</guid>
		<description><![CDATA[There has been much talk in the web design and development community of late regarding the demise of Internet Explorer 6. Most web developers and designers have a special place in their hearts for their hatred of IE6, but the strength of their loathing varies from the <a href="http://davidwalsh.name/6-reasons-why-ie6-must-die">occasional moaning</a>, to the <a href="http://www.ihateie6.com/">t-shirt wearing</a>,  to those running campaigns of contempt (see <a href="http://iedeathmarch.org/">IE Death March</a>, <a href="http://www.bringdownie6.com/">Bring Down IE 6</a> or <a href="http://www.stoplivinginthepast.com/">Stop Living in the Past</a>).

Personally, I strongly disagree with those who say web folk should <a href="http://www.robertnyman.com/2009/02/09/stop-developing-for-internet-explorer-6/">stop supporting IE6 now</a>, that we should use <a href="http://www.simonclayson.co.uk/reportage/ie_6_text_only/">special stylesheets</a> to make sites look particularly ugly in IE6, or more worryingly that <a href="http://www.stopie6.org/script">scripts</a> should be used to prevent sites from working in IE6 at all. It is the job of a web developer to support all major browsers (<a href="http://www.thecounter.com/stats/2009/March/browser.php">of which IE6 is still one</a>) and punishing unwitting users is not the solution. It is Microsoft's job to cease support of this ancient and incapable technology not ours.


Related posts:<ol><li><a href='http://erisds.co.uk/internet/state-of-the-browser' rel='bookmark' title='Permanent Link: State of the Browser'>State of the Browser</a><small>On the 19th March I'm going to be attending "State...</small></li>
<li><a href='http://erisds.co.uk/general/microsoft-apple-or-google-for-world-domination' rel='bookmark' title='Permanent Link: Microsoft, Apple or Google for World Domination?'>Microsoft, Apple or Google for World Domination?</a><small>If one of Microsoft, Apple or Google was definitely going...</small></li>
<li><a href='http://erisds.co.uk/code/html-canvas-going-ninja-with-net-magazines-processing-js-tutorial' rel='bookmark' title='Permanent Link: HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial'>HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial</a><small>Yesterday I finally got around to sitting down with the...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There has been much talk in the web design and development community of late regarding the demise of Internet Explorer 6. Most web developers and designers have a special place in their hearts for their hatred of IE6, but the strength of their loathing varies from the <a href="http://davidwalsh.name/6-reasons-why-ie6-must-die">occasional moaning</a>, to the <a href="http://www.ihateie6.com/">t-shirt wearing</a>,  to those running campaigns of contempt (see <a href="http://iedeathmarch.org/">IE Death March</a>, <a href="http://www.bringdownie6.com/">Bring Down IE 6</a> or <a href="http://www.stoplivinginthepast.com/">Stop Living in the Past</a>).</p>
<p>Personally, I strongly disagree with those who say web folk should <a href="http://www.robertnyman.com/2009/02/09/stop-developing-for-internet-explorer-6/">stop supporting IE6 now</a>, that we should use <a href="http://www.simonclayson.co.uk/reportage/ie_6_text_only/">special stylesheets</a> to make sites look particularly ugly in IE6, or more worryingly that <a href="http://www.stopie6.org/script">scripts</a> should be used to prevent sites from working in IE6 at all. It is the job of a web developer to support all major browsers (<a href="http://www.thecounter.com/stats/2009/March/browser.php">of which IE6 is still one</a>) and punishing unwitting users is not the solution. It is Microsoft&#8217;s job to cease support of this ancient and incapable technology not ours.</p>
<p>The problem lies with the large number of companies and organisations that depend upon either Windows 2000 (which only supports IE6 not 7 or 8) or IE 6 for their internal business applications to function (think public sector in particular). It is these sources of revenue which force Microsoft to continue to support old technology &amp; which keep the IE6 usage statistics high. All of these companies are aware that these technologies will be phased out eventually and should have plans in place to upgrade their systems, but again it&#8217;s not our place to force these changes.</p>
<p>Microsoft are now <a href="http://blogs.msdn.com/ie/archive/2009/04/10/prepare-for-automatic-update-distribution-of-ie8.aspx">pushing IE8 through automatic updates</a> and will <a href="http://support.microsoft.com/lifecycle/search/?sort=PN&amp;alpha=Windows+2000&amp;Filter=FilterNO">cease support for Windows 2k in July next year</a> &#8211; with this I can see the lifespan of IE6 finally drawing to a close. With the death of the OS which supports only the abominable IE6, it will be feasible for Microsoft to finally cease supporting IE6 too. When Microsoft say IE6 is dead, and only then, will IE6 really start to die &#8211; so the web design community needs to stop wasting it&#8217;s breath on users who can&#8217;t do anything about it &#8211; and tell it to Microsoft.</p>
<p>For now IE6 is still here and web folk still need to do their jobs. This means continuing to develop websites which support IE6 even in a slightly downgraded fashion, but it also means pointing clients towards a future without IE6 and guiding them them through this transition by removing all reliance on it. Cheer up, just think of all the work that will come flying in when IE6 does die.</p>


<p>Related posts:<ol><li><a href='http://erisds.co.uk/internet/state-of-the-browser' rel='bookmark' title='Permanent Link: State of the Browser'>State of the Browser</a><small>On the 19th March I'm going to be attending "State...</small></li>
<li><a href='http://erisds.co.uk/general/microsoft-apple-or-google-for-world-domination' rel='bookmark' title='Permanent Link: Microsoft, Apple or Google for World Domination?'>Microsoft, Apple or Google for World Domination?</a><small>If one of Microsoft, Apple or Google was definitely going...</small></li>
<li><a href='http://erisds.co.uk/code/html-canvas-going-ninja-with-net-magazines-processing-js-tutorial' rel='bookmark' title='Permanent Link: HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial'>HTML Canvas: Going Ninja with .Net Magazine&#8217;s Processing.js tutorial</a><small>Yesterday I finally got around to sitting down with the...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/down-with-ie6-tell-it-to-microsoft/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Digging Twitter</title>
		<link>http://erisds.co.uk/internet/digging-twitter</link>
		<comments>http://erisds.co.uk/internet/digging-twitter#comments</comments>
		<pubDate>Sun, 05 Apr 2009 22:19:29 +0000</pubDate>
		<dc:creator>ErisDS</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://erisds.co.uk/?p=25</guid>
		<description><![CDATA[Last night this article hit the front page of Digg. Written by Thomas Hardy over at Web Designer Help, it&#8217;s a showcase on the top 30 web folk to follow on twitter, in which I was included. I had no idea that the article had been written or that I was in it, so imagine [...]


Related posts:<ol><li><a href='http://erisds.co.uk/internet/5-top-resources-for-twitter-success' rel='bookmark' title='Permanent Link: 5 Top Resources for Twitter Success'>5 Top Resources for Twitter Success</a><small>I've been experimenting with developing my Twitter account for the...</small></li>
<li><a href='http://erisds.co.uk/awesome/awesome-1-real-time-radiation-levels-twitter-heartbeat-bbc-fail' rel='bookmark' title='Permanent Link: Awesome: 1. Real-time radiation levels, Twitter heartbeat &#038; BBC #fail'>Awesome: 1. Real-time radiation levels, Twitter heartbeat &#038; BBC #fail</a><small>An introduction This is the first in a new series...</small></li>
<li><a href='http://erisds.co.uk/code/twitter-oauth-simple-curl-requests-for-your-own-data' rel='bookmark' title='Permanent Link: Twitter OAuth: Simple cURL requests for your own data'>Twitter OAuth: Simple cURL requests for your own data</a><small>Having to include an entire PHP OAuth library every time...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Last night this article <a href=" http://digg.com/d1nwYD">hit the front page of Digg</a>. Written by <a href="http://twitter.com/thomasjhardy">Thomas Hardy</a> over at <a href="http://www.webdesignerhelp.co.uk">Web Designer Help</a>, it&#8217;s a showcase on the <a href="http://www.webdesignerhelp.co.uk/index.php/2009/04/over-30-webgraphic-designers-to-follow-on-twitter/">top 30 web folk to follow on twitter</a>, in which I was included. </p>
<p>I had no idea that the article had been written or that I was in it, so imagine my surprise when I woke up this morning to find I&#8217;d gained 20+ new followers in the middle of the night!! This is a prime example of how the combination of micro blogging and social bookmarking has become a powerful tool for networking and marketing. It is allowing more and more people to have their say, and is exactly why I love the internet.</p>
<p>I also want to say thanks to <a href="http://twitter.com/mariess/">Mariess</a> and <a href="http://twitter.com/WoollyMittens/">WollyMittens</a> for enlightening me to the mystery of the midnight followers!</p>


<p>Related posts:<ol><li><a href='http://erisds.co.uk/internet/5-top-resources-for-twitter-success' rel='bookmark' title='Permanent Link: 5 Top Resources for Twitter Success'>5 Top Resources for Twitter Success</a><small>I've been experimenting with developing my Twitter account for the...</small></li>
<li><a href='http://erisds.co.uk/awesome/awesome-1-real-time-radiation-levels-twitter-heartbeat-bbc-fail' rel='bookmark' title='Permanent Link: Awesome: 1. Real-time radiation levels, Twitter heartbeat &#038; BBC #fail'>Awesome: 1. Real-time radiation levels, Twitter heartbeat &#038; BBC #fail</a><small>An introduction This is the first in a new series...</small></li>
<li><a href='http://erisds.co.uk/code/twitter-oauth-simple-curl-requests-for-your-own-data' rel='bookmark' title='Permanent Link: Twitter OAuth: Simple cURL requests for your own data'>Twitter OAuth: Simple cURL requests for your own data</a><small>Having to include an entire PHP OAuth library every time...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://erisds.co.uk/internet/digging-twitter/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

