<?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>Redweb Blog</title>
	<atom:link href="http://blog.redweb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.redweb.com</link>
	<description></description>
	<lastBuildDate>Tue, 15 May 2012 14:55:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>URL Rewriting Hell</title>
		<link>http://blog.redweb.com/2012/05/10/url-rewriting-hell/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=url-rewriting-hell</link>
		<comments>http://blog.redweb.com/2012/05/10/url-rewriting-hell/#comments</comments>
		<pubDate>Thu, 10 May 2012 13:35:23 +0000</pubDate>
		<dc:creator>Mik Konstantinou</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=2570</guid>
		<description><![CDATA[Recently we had a nightmare with URL rewriting. We weren&#8217;t trying to do anything particularly complicated; this kind of thing is well documented and has been done hundreds of times with other projects within the company. And somehow it nearly killed us and our project&#8230;&#8230; What is URL rewriting? According to Wikipedia&#8217;s entry on Url [...]]]></description>
			<content:encoded><![CDATA[<p>Recently we had a nightmare with URL rewriting. We weren&#8217;t trying to do anything particularly complicated; this kind of thing is well documented and has been done hundreds of times with other projects within the company. And somehow it nearly killed us and our project&#8230;&#8230;</p>
<p><span id="more-2570"></span></p>
<h2>What is URL rewriting?</h2>
<p>According to Wikipedia&#8217;s entry on <a href="http://en.wikipedia.org/wiki/URL_rewriting">Url Rewriting</a>, &#8220;A rewrite engine is software located in a Web application framework running on a Web server that modifies a web URL&#8217;s appearance. This modification is called URL rewriting. Rewritten URLs (sometimes known as short, fancy URLs, or search engine friendly &#8211; SEF) are used to provide shorter and more relevant-looking links to web pages. The technique adds a degree of separation between the files used to generate a web page and the URL that is presented to the outside world.&#8221;</p>
<p>This is fairly common on most modern websites. For example <em>www.domain.com/article_on_puppies</em> looks much better in the address bar than <em>www.domain.com/10987/article.aspx?id=3546728</em>. The former is relevant, much easier to read and subsequently easier to remember! Search engines know this as well, and tend to award better rankings for webpages that have &#8216;friendly&#8217; URLs.</p>
<p>&#8220;So why not simply make ALL URLs look &#8216;friendly&#8217; from the start, rather than mucking about with this fangled URL rewrite business?&#8221; I hear you ask (I&#8217;m picturing my readers to look and behave like the monocled businessman from Monopoly, sorry about that). This would of course seem like the most obvious solution, however we&#8217;re developers. We don&#8217;t work with nice looking text. We work with databases. Using those ugly looking codes are far more efficient to work with, and actually make OUR lives easier. And you wonder why we&#8217;re such geeks?</p>
<h2>In the beginning</h2>
<p><a href="http://blog.redweb.com/2012/05/10/url-rewriting-hell/geek_crossing/" rel="attachment wp-att-2574"><img class="alignnone size-full wp-image-2574" src="http://blog.redweb.com/wp-content/uploads/2012/05/geek_crossing.jpg" alt="" width="325" height="325" /></a></p>
<p><em>Warning &#8211; contains technical stuff!</em></p>
<p>It started out as a simple requirement. A pre-defined list of &#8216;friendly&#8217; URLs needed to be implemented which would redirect to the applicable page on the client&#8217;s site. For example, a URL like <em>www.ourdomain.com/descriptive-category-one/friendly-title-three</em> would redirect to <em>www.ourdomain.com/category_1.html?s=3</em>. The list of URLs was fairly large, so we wrote a script to generate a mappings file that would be read in by Helicon&#8217;s URL Mod Rewrite Engine, and apply the redirect. The mappings were placed in a text file named map.txt that looked something like this:</p>
<pre>
<table border="0">
<tbody>
<tr>
<td>/descriptive-category-one/friendly-title</td>
<td>/category_1.html?s=1</td>
</tr>
<tr>
<td>/descriptive-category-one/second-friendly-title</td>
<td>/category_1.html?s=2</td>
</tr>
<tr>
<td>/descriptive-category-one/an-entirely-different-title</td>
<td>/category_1.html?s=3</td>
</tr>
<tr>
<td>/descriptive-category-two/easy-title-one</td>
<td>/category_2.html?s=1</td>
</tr>
<tr>
<td>/descriptive-category-two/another-easy-title</td>
<td>/category_2.html?s=2</td>
</tr>
</tbody>
</table>
</pre>
<p>The rewrite rules in the .htaccess file were required to read in the above mappings file applying the rewrite/redirect, if a match was found.</p>
<p>These are the rules which were added to .htaccess:</p>
<pre>
1. RewriteEngine ON

2. # load in the mappings file

3. RewriteMap map txt:C:/path/to/file/map.txt [NC]

4.

5. # If a match is found in the map, apply the rewrite rule, otherwise do nothing.

6. RewriteCond ${map:%1|NOT_FOUND} !NOT_FOUND [NC]

7.

8. # Perform rewriting (in this case a redirect, remove the 'R=301' flag for a plain rewrite) if the record was found in map-file

9. RewriteRule .? ${map:%1} [NC,L,R=301]
</pre>
<p>Nothing fancy and certainly nothing we couldn&#8217;t handle. It&#8217;s quite straight-forward and fairly well explained in the Helicon help system. Apache&#8217;s mod_rewrite documentation covers it in detail. In no time we had applied it to the server and headed out to the local for a couple of rounds of lager and mutual back-slapping at how darn clever we all were.</p>
<p>And it completely failed to work&#8230;</p>
<h2>Searching for the answer</h2>
<p>Going through the rewrite engine logs, we came across an issue none of us had ever seen before. Turns out the incoming URLs were having what appeared to be random junk text appended to the end of them before the rewrite engine could process them. For example, the request for &#8216;www.ourdomain.com/descriptive-category-one/friendly-title-one&#8217; was being processed by the rewrite engine as &#8216;www.ourdomain.com/descriptive-category-one/friendly-title-one/eurl.axd/0ecb46028938824286f4a4614c5f94c8&#8242;, so of course none of the mappings worked, because they didn&#8217;t match. Even worse, the bit after the &#8216;eurl.axd&#8217; was different every time, even if we were processing the same initial URL. After a bit of hair pulling of collective head scratching, we fired up our trusty search engine (sounds like &#8216;oogle&#8217;) and discovered <a href="http://www.asp.net/whitepapers/aspnet4/breaking-changes#0.1__Toc256770153">this interesting explanation</a></p>
<p>See, if you&#8217;re running .Net4 on IIS6, you have a handy little feature enabled by default that handles extension-less URLs in a very special way, called the &#8216;ASP.NET v4.0 Extension-less URL feature on IIS 6.0&#8242;. Actually I have no idea what it&#8217;s called, but this feature appends &#8216;/eurl.axd/GUID&#8217; to extension-less URLs very early in the page request life-cycle, to allow the newly built-in isapi filter (aspnet_isapi.dll) to do its work, and then restores the original URL when it&#8217;s done. <a href="http://blogs.msdn.com/b/tmarq/archive/2010/06/18/how-to-disable-the-asp-net-v4-0-extensionless-url-feature-on-iis-6-0.aspx">Thomas Marquardt&#8217;s blog</a> has a good explanation of how this works which is beyond the scope of this post.</p>
<p>To solve it then, we had a few possibilities:</p>
<p>Option 1 was to downgrade the project to .Net 3.5. This was not satisfactory, since we spent a long time doing what we love doing: writing a bunch of code using the latest features in the newest version of our chosen platform. Downgrading to 3.5 would have meant undoing cool stuff we had already done and retesting everything.</p>
<p>Option 2 was to disable this feature as described in the article cited above. The problem with this approach is that it&#8217;s an all or nothing proposition; you disable it in a registry key that will affect the entire server, so no sites running on that instance of IIS would have access to this feature. Hopefully, when it matures in future versions of .Net, it will be configurable on a per-site basis, but right now that&#8217;s not the case. Since our project was to be hosted on a server with dozens of other sites of the client&#8217;s, we were stuck with it.</p>
<h2>The light bulb</h2>
<p>Option 3, therefore, was to tackle the bugger directly by stripping out the stuff we didn&#8217;t want and THEN applying the mapping and rewrite rules.</p>
<p>The final version of the .htaccess looked like this:</p>
<pre>
1. RewriteEngine ON

2.

3. # load in the mappings file

4. RewriteMap map txt:C:/path/to/file/map.txt [NC]

5.

6. #Strip out .Net 4's eurl.axd feature

7. RewriteCond %{REQUEST_URI} ^(.*)/eurl.axd/.* [NC]

8.

9. # If a match is found in the map, apply the redirect rule.

10. RewriteCond ${map:%1|NOT_FOUND} !NOT_FOUND [NC]

11.

12. # Perform rewriting (in this case a redirect, remove the 'R=301' flag for a plain rewrite) if the record was found in map-file

13. RewriteRule .? ${map:%1} [NC,L,R=301]
</pre>
<p>Line 7 is the winner. This simply matches the &#8216;/eurl.axd/GUID&#8217; part in the URL, and line 10 references the bit without it (%1), effectively stripping it out of the equation. This worked like a charm and lager drinking and mutual back-slapping resumed with haste.</p>
<p>Helpful links:</p>
<p><a href="http://www.vanadiumtech.com/OurBlog/post/2011/08/12/Cause-of-eurlaxd.aspx">http://www.vanadiumtech.com/OurBlog/post/2011/08/12/Cause-of-eurlaxd.aspx</a></p>
<p><a href="http://www.helicontech.com/forum/15029-ASPNET_40_MVC_and_ISAPI_Rewrite_3.html">http://www.helicontech.com/forum/15029-ASPNET_40_MVC_and_ISAPI_Rewrite_3.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/05/10/url-rewriting-hell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Morphing Innovation Day</title>
		<link>http://blog.redweb.com/2012/04/25/image-morphing-innovation-day/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=image-morphing-innovation-day</link>
		<comments>http://blog.redweb.com/2012/04/25/image-morphing-innovation-day/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 10:21:50 +0000</pubDate>
		<dc:creator>Howard Bayliss</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=2457</guid>
		<description><![CDATA[At Redweb we are fortunate enough to be able to book &#8220;Innovation Days&#8221;. With these days we can do, more or less, anything we like, such as: investigate new technology, create code libraries, explore mobile platforms, build games, etc. As long as it benefits the company, it&#8217;s ok. For mine, I wanted to do something [...]]]></description>
			<content:encoded><![CDATA[<p>At Redweb we are fortunate enough to be able to book &#8220;Innovation Days&#8221;. With these days we can do, more or less, anything we like, such as: investigate new technology, create code libraries, explore mobile platforms, build games, etc.</p>
<p>As long as it benefits the company, it&#8217;s ok.</p>
<p>For mine, I wanted to do something fun and learn how to use JQuery at the same time&#8230;.<span id="more-2457"></span></p>
<h2>The Idea &#8211; A SharePoint Morphing Carousel</h2>
<p>Many web sites include an image carousel. For example, there&#8217;s currently one on the BBC&#8217;s sport site.</p>
<p>Mostly, these carousels <strong>fade </strong>one image into the next. I wanted to create something a bit different: a carousel that <em><strong>morphs </strong></em>one image into the next.</p>
<h2>The Result</h2>
<p>Without further ado, here&#8217;s a short (real time) video which shows the finished carousel in action. In this example, a &#8220;Staff Carousel&#8221; morphs several faces:</p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/dNnchEEGv4U?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<h2>How I made the Carousel</h2>
<h3>Overview</h3>
<p>In a nutshell, the plan to implement the carousel was:</p>
<ol>
<li>Generate morphed images.</li>
<li>Upload the images to SharePoint.</li>
<li>Render the images on the client-side in quick succession; creating an animation where one image appears to morph into the next.</li>
<li>Use a multi-layer server-side architecture to enable easy porting to another CMS (if necessary).</li>
</ol>
<p>The solution had to be kept simple as:</p>
<ol>
<li>There was only me working on it.</li>
<li>I only had one day to finish it.</li>
</ol>
<h3>Image Morphing</h3>
<p>There wasn&#8217;t enough time to write my own morphing code, so I searched and found a <a title="Link to CodePlex" href="http://morphing.codeplex.com/">Windows application on CodePlex</a>, written by Poulicek. [All credit to him for the morphing code].</p>
<p>Poulicek&#8217;s application allows the user to map points on a source image; and then do the same on a target image. The application then does the maths to generate the morphed transition images; and you can choose how many transition images you want.</p>
<p>The image below shows how key points on a face can be mapped:</p>
<p><a href="http://blog.redweb.com/2012/04/25/image-morphing-innovation-day/innovation4/" rel="attachment wp-att-2477"><img class="alignleft size-full wp-image-2477" src="http://blog.redweb.com/wp-content/uploads/2012/04/Innovation4.bmp" alt="Face mapping" /></a></p>
<p>However, there was no easy way of exporting all of the images. Fortunately, the application&#8217;s source code was available and so I modified it to enable the source and target images, as well as all of the transition images to be exported to a Windows Explorer folder.</p>
<p>Note that, if the target CMS supports WebDAV, the images can be exported directly into the CMS (SharePoint already does that).</p>
<p>The following image shows some example images imported into SharePoint:</p>
<p><a href="http://blog.redweb.com/2012/04/25/image-morphing-innovation-day/innovation3/" rel="attachment wp-att-2480"><img class="alignleft size-full wp-image-2480" src="http://blog.redweb.com/wp-content/uploads/2012/04/Innovation3.bmp" alt="Transition images within SharePoint" /></a></p>
<p>These transition images were created by using a 36 point mesh. However, you get a much better morphing effect if you use more points, say 400 &#8211; it just takes much longer to do the mapping.</p>
<p>Also, you don&#8217;t have to use faces &#8211; the morphing works well for any type of image.</p>
<h3>Room for Improvement</h3>
<p>By the end of the day I had created a working prototype; and I&#8217;m really pleased with the results. However, the solution is a little rough around the edges. For a production version I would:</p>
<ol>
<li>Modify the JQuery to pre-load images and use double-buffering to improve the transition effect.</li>
<li>Handle users who do not have JavaScript enabled.</li>
<li>Perhaps add Next and Previous buttons.</li>
</ol>
<p>All of these would be very straight-forward to implement.</p>
<h3>Technical Detail</h3>
<p>Here are the main technical details of how I built the carousel and integrated with SharePoint:</p>
<ol>
<li>The source, target and transition images for a particular carousel are stored in their own SharePoint Asset library, split into folders.</li>
<li>The folders have several custom fields which enable a content editor to change how the carousel renders the images. For example, the editor can change the order in which the images appear. They can also set an image caption for the source images (as in the demo video), change the pause-length for source images, etc.</li>
<li>The carousel is built as a web part, which enables content editors to easily add the carousel to pages, and to specify which Asset library to use for the image data.</li>
<li>The web part renders JQuery, which makes an asynchronous call to a 3 layer SharePoint architecture. The call goes up through the layers to the data access layer, where the Asset library is queried and the data returned via business objects. These business objects are eventually serialised into JSON, which is then sent to the client-side.</li>
<li>Caching is used in the UI layer to improve performance.</li>
<li>Further JQuery on the client-side then loops through the JSON, rendering the images, captions and other content (if set). This is done using the image &#8220;onload&#8221; event and a timer.</li>
</ol>
<p>Howard Bayliss</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/04/25/image-morphing-innovation-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adventures in 3d printing &#8211; part1</title>
		<link>http://blog.redweb.com/2012/04/13/adventures-in-3d-printing-part1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adventures-in-3d-printing-part1</link>
		<comments>http://blog.redweb.com/2012/04/13/adventures-in-3d-printing-part1/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 09:43:32 +0000</pubDate>
		<dc:creator>David Burton</dc:creator>
				<category><![CDATA[3D printing]]></category>
		<category><![CDATA[Innovation]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=2443</guid>
		<description><![CDATA[3d printing has been around for a while and it’s seriously impressive: motor manufacturers are printing entire car dashboards in one piece; defence organisations are printing fully working drone aircraft; confectionery companies are printing intricate delicacies with chocolate and hospitals are starting to print transplantable organs. 3D printing looks like it’s going to have a [...]]]></description>
			<content:encoded><![CDATA[<p>3d printing has been around for a while and it’s seriously impressive: motor manufacturers are printing entire car dashboards in one piece; defence organisations are printing fully working drone aircraft; confectionery companies are printing intricate delicacies with chocolate and hospitals are starting to <a href="http://blog.ted.com/2011/03/07/printing-a-human-kidney-anthony-atala-on-ted-com/">print transplantable organs</a>.<span id="more-2443"></span></p>
<p>3D printing looks like it’s going to have a huge impact. It has the potential to revolutionise prototyping and product design, manufacturing, and retail over the next several years.  This promises to be as huge a sea change as the internet has been to the way we live, work and communicate nowadays.</p>
<p>The new generation of 3d printers are accessible, affordable and promise to open up 3D printing to everyone. There’s never been a more exciting time to explore this new technology and that’s why we’re rolling our sleeves up and seeing what this technology can do</p>
<h2>Our 3D printer</h2>
<p>We’ve decided to build our printer from kit form. A decision that was made out of curiousity, geekiness, a sense of adventure, and the hope that a deeper understanding of the printer&#8217;s workings will help us with trouble shooting should it ever fail.</p>
<p>The printer we’re building is a <a href="http://www.reprapcentral.com/Mendel/BotMill-Axis-2.1-Kit/flypage.tpl.html" title="Axis 2.1">RepRap Mendel Premier Axis 2.1</a>. The Axis is proven to perform day after day with very little maintenance, so it’s well suited to getting plenty of use and abuse from all our staff and friends. When it’s complete it will weigh 15.5 lbs, sit 20” x 16” x 14” and print with ABS plastic filament, laying down 0.012” thick layers with a positioning accuracy of 0.004”</p>
<p>We bought the kit form from <a href="http://www.reprapcentral.com">RepRap Central</a> who have been very helpful, offering plenty of advice, encouragement and excellent support.</p>
<h2>Self replicating</h2>
<p>A key feature of RepRap machines is that they can replicate themselves.<br />
Our kit is made up of metal parts (bars, nuts, bolts, &#038; washers), electronic parts (motherboard, motors, sensors, switches), and plastic parts (body parts, structural parts, gears). If you can source the metal and electronic parts then you can print the plastic parts using an existing 3D printer. </p>
<p><a href="http://www.flickr.com/photos/redwebltd/7044589253/" title="All the parts by Redweb Ltd, on Flickr"><img src="http://farm6.staticflickr.com/5347/7044589253_97cea1495d_z.jpg" width="460" height="300" alt="All the parts"></a></p>
<p>The idea of a self replicating machine is amazing. Perhaps the printer we’re building will one day become a parent, grandparent, or great grandparent and we’ll be deafened by the patter of tiny ‘extruder nozzles’</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6898493358/" title="RepRap'ed parts by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7245/6898493358_188c2cc3e2_z.jpg" width="460" height="300" alt="RepRap'ed parts"></a></p>
<h2>The build so far</h2>
<p>The build has gone smoothly so far. It’s been easier than expected and quite good fun. It was a little daunting at first, but we’ve put together a small team who’ve been brilliant and made it look simple.</p>
<p>We’ve completed the early, easier, stages of the mechanical assembly, and we’re eager to continue and move on to the electronics, wiring and firmware installation. We’re following instructions from the RepRap wiki that are a mixture of diagrams, 3D graphics, text and videos. It’s well up to date and isn’t as complicated as it first appears. </p>
<p><a href="http://www.flickr.com/photos/redwebltd/6925188044/" title="Concentration by Redweb Ltd, on Flickr"><img src="http://farm6.staticflickr.com/5459/6925188044_3e7726d4a8_z.jpg" width="460" height="300" alt="Concentration"></a></p>
<p>The kit that RepRap Central have put together for us is first class. All the pieces are clearly labelled and ready to use, and any items that need cleaning or cutting to size have already been prepared. </p>
<p>Our staff have once again amazed us with their hidden skills and talents. Who knew we had experienced engineers and electricians amongst our designers and developers?</p>
<p><a href="http://www.flickr.com/photos/redwebltd/7044593435/" title="Key assemblies by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7102/7044593435_31bd1c32a5_z.jpg" width="460" height="300" alt="Key assemblies"></a></p>
<p>There’s also the support we’ve had from RepRap Central which has felt like a safety net stretched out beneath us.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6925190822/" title="hot nozzle + extruder + x carriage by Redweb Ltd, on Flickr"><img src="http://farm6.staticflickr.com/5111/6925190822_6fedb9f404_z.jpg" width="460" height="300" alt="hot nozzle + extruder + x carriage"></a></p>
<h2>What are we going to print first?</h2>
<p>The first thing we hope to print will be a shot glass.  We’ve heard it’s the traditional way to celebrate a successful build and toast the birth of a new printer, so who are we to argue with that!</p>
<p>We’ve started playing with simple 3D programmes like <a href="http://sketchup.google.com/">Google SketchUp</a> and <a href="http://www.blender.org/">Blender</a> and created some models that we’ll line up for printing. There’s a miniature version of our building, cuff links for emergency meeting use, and a cube made out of arrow shaped cursors.</p>
<p>We’re quite excited about a more code-based approach to creating 3D models too. Programmes like <a href="http://www.openscad.org/">OpenSCAD</a> make it possible to easily create complex geometric shapes like spirals and fractal like forms.</p>
<h2>And after that?</h2>
<p>Well, there’s a whole host of inspiration on sites like <a href="http://www.thingiverse.com/">Thingiverse</a> and <a href="http://www.ponoko.com/">Ponoko</a>.</p>
<p>We are big fans of projects that produce objects with extra layers of meaning and value like <a href="http://www.miniaturemoments.com">Minature Moments</a>, <a href="http://www.shapeways.com/creator/lightpoem/">The Light Poem</a>, and <a href="http://www.shapeways.com/creator/thevibe">TheVibe</a></p>
<p>But the projects that stand out for us are those that have a social responsibility side to them.</p>
<p>In Scotland the NHS have cut costs and lead time in complicated bone surgery by producing cheap and quick <a href="http://www.bbc.co.uk/news/uk-scotland-glasgow-west-15535438">physical replicas</a> of what the surgeons will face during operations.</p>
<p><a href="http://inhabitat.com/3d-printers-can-help-solve-hermit-crab-shell-shortage-by-printing-custom-replacements/">Project Shelter</a>, initiated by Makerbot called for printer owners to print new shells for hermit crabs to address shell shortages in the wild. When 3d printers become common place in our homes, think what we’ll be able to do in times of disaster and relief efforts!</p>
<h2>To be continued…</h2>
<p>As with a lot of our innovation projects, our adventures in 3D printing are more about the journey than the final destination. Who knows where exactly we’ll end up? For now we’re happy exploring, experimenting and learning. We’re a creative bunch though, who love problem solving, so I know something will click into place eventually.</p>
<p>It’s a fabulous time to get involved with 3D printing and see for ourselves what this technology can do. We’ll let you know how we get on.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6902034504/" title="Frame build by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7127/6902034504_7d2ca4e4a6_z.jpg" width="460" height="300" alt="Frame build"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/04/13/adventures-in-3d-printing-part1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Energy Crisis</title>
		<link>http://blog.redweb.com/2012/03/30/energy-crisis/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=energy-crisis</link>
		<comments>http://blog.redweb.com/2012/03/30/energy-crisis/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 12:55:17 +0000</pubDate>
		<dc:creator>Howard Bayliss</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=2395</guid>
		<description><![CDATA[Professor Brian Cox [1] believes that we will soon be entering an energy crisis. This crisis will be caused because, as emerging countries crack-on with emerging, there will be a huge increase in the demand for energy world-wide. There won&#8217;t be enough energy to go around; not even if we build large numbers of new [...]]]></description>
			<content:encoded><![CDATA[<p>Professor Brian Cox [1] believes that we will soon be entering an <strong>energy crisis</strong>.</p>
<p>This crisis will be caused because, as emerging countries crack-on with emerging, there will be a huge increase in the demand for energy world-wide.</p>
<p>There won&#8217;t be enough energy to go around; not even if we build large numbers of new nuclear reactors, wind farms, etc, etc.</p>
<p>Howard Bayliss wonders how an energy crisis would affect the way we use the web?</p>
<p><span id="more-2395"></span></p>
<h2>The Size of the Problem</h2>
<p>In a Stamford University paper [2], it was stated that &#8220;Electricity used in global data centers in 2010 likely accounted for between 1.1% and 1.5% of <strong>total electricity use</strong>&#8220;.</p>
<p>1.1% may not sound like a lot.</p>
<p>However, consider that:</p>
<ol>
<li>The Stamford paper also states that (for Google Inc.) &#8220;less than 1% of electricity used by data centers worldwide was attributable to that company’s data center operations&#8221;, and that</li>
<li>The New York Times [3] equates Google Inc&#8217;s usage (alone) to &#8220;<strong>almost 260 million watts </strong>— about a quarter of the output of a nuclear power plant&#8221;</li>
</ol>
<p>OK, not all data centre usage powers the web; but these figures give an indication of the huge size of the problem.</p>
<h2>Crisis</h2>
<p><strong>cri•sis/ˈkrīsis/ Noun: A time of intense difficulty, trouble, or danger.</strong></p>
<p>If there&#8217;s not enough energy to power the data centres, and as energy prices soar, the web will certainly face a time of intense difficulty.</p>
<p>Here are some suggestions as to what might happen:</p>
<h3>The cost of content</h3>
<p>The huge price paid for energy by the data centre owners will be passed onto you, the web consumer, in a number of ways:</p>
<ol>
<li>Sites will charge you (a lot) to access their content. Poorer web users will be priced-out.</li>
<li>Web site adverts will be even more numerous, even more persistent and even more annoying.</li>
<li>Both of the above</li>
</ol>
<p>As a web consumer, you will become very choosy about the content you access.</p>
<h3>Rationalisation</h3>
<p>If you own a web site, and it cannot generate revenue (as per above), it will die &#8211; you won&#8217;t be able to afford to keep it running.</p>
<p>Content will be only provided by a small number of super-providers, who will develop in the way a few key super markets have taken over our food supply.</p>
<p>However, just as with lending libraries (where people who cannot afford to buy books are able to borrow them instead), maybe the government will fund a municipal hosting platform so that Mrs Miggins (and her pie shop) can still have a limited web presence?</p>
<h3>Rationing</h3>
<p>No amount of revenue charging will help though if there simply isn&#8217;t enough energy to power the data centres. In that case, we might well see rationing e.g. the population of a particular country might only be able to access the web for an hour a day.</p>
<p>Of course this would create a serious bandwidth bottle-neck, which in turn might impact the type of content available on the web &#8211; think an end to video streaming and a return to text-only browsing?</p>
<h3>Summary</h3>
<p>Professor Cox and his peers are attempting to avert the energy crisis issue by recreating nuclear fusion on earth. Apparently that is quite tricky. However, if they don&#8217;t manage it, the way we use the web will change dramatically.</p>
<p>&nbsp;</p>
<hr />
<p>You have been charged £4.99 to view this web page. [4]</p>
<p>[1] http://en.wikipedia.org/wiki/Brian_Cox_(physicist)<br />
[2] http://www.analyticspress.com/datacenters.html<br />
[3] http://www.nytimes.com/2011/09/09/technology/google-details-and-defends-its-use-of-electricity.html?_r=2<br />
[4] It&#8217;s only a matter of time.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/03/30/energy-crisis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Innovation at our heart</title>
		<link>http://blog.redweb.com/2012/03/03/innovation-at-our-heart/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=innovation-at-our-heart</link>
		<comments>http://blog.redweb.com/2012/03/03/innovation-at-our-heart/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 18:02:16 +0000</pubDate>
		<dc:creator>David Burton</dc:creator>
				<category><![CDATA[Innovation]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=2361</guid>
		<description><![CDATA[Winning the Econsultancy Innovation Award for Most Innovative Agency in 2011 was a memorable milestone. Winning it again in 2012 was even better. It’s fantastic to be recognised, and it cements the fact that our vision of an agency with innovation at its heart is becoming reality. We have big plans for 2012, it promises [...]]]></description>
			<content:encoded><![CDATA[<p>Winning the <a href="http://econsultancy.com/uk/awards">Econsultancy Innovation Award</a> for Most Innovative Agency in 2011 was a memorable milestone. <a href="http://econsultancy.com/uk/awards/winners">Winning it again in 2012</a> was even better. It’s fantastic to be recognised, and it cements the fact that our vision of an agency with innovation at its heart is becoming reality.<span id="more-2361"></span></p>
<p>We have big plans for 2012, it promises to be one of the best on our continuing journey. But at this time, it’s worth looking back on last years work and some of the projects that got us shortlisted for a third year in a row and saw us regain the trophy as reigning innovation champions.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6788752058/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7041/6788752058_b516e8cf13.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
Let’s start with our environment.  Collaboration and communication are key for innovation. We’ve created fantastic new spaces to help us share ideas and talk through solutions.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6934864769/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7180/6934864769_8d06571edf.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
We’ve thinned out the usual office furniture and opened spaces up so we can work flexibly as teams, often inviting clients in to be part of the process at crucial stages.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6788752208/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7200/6788752208_2fe2d3a980.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
We continue to run our Innovation department which has become a power house of creative thinking.  It’s an oasis for staff and friends to share ideas, explore new areas, and experiment with new technologies.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6788752256/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7183/6788752256_de6ece9b93.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
We gave five of our teams a chance to show off, giving them 36 hours between paid projects, to bring a crazy idea to life. The results have been amazing, tackling numerous issues: room booking via mobile, knowledge sharing using Xbox Kinect and bolstering our green credentials with waste and energy tracking, live info graphics, and a bin that’s connected to the internet.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6788753028/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7061/6788753028_5587ab2f66.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
Hack projects have changed our staff’s mentality, added energy, allowed expression, and given us new tools and techniques to work with. The most exciting development however, is that clients are now getting involved in our hack projects, setting us problems and then rolling their sleeves up to work along side us. We can’t say much more right now, but we hope to go live with a very cool product shortly.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6934865117/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7210/6934865117_6920282163.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
Our student internships continued and we welcomed students throughout 2011.  Notable work included mashing Twitter with Instagram, an app that creates unique graphics based on your voice, and a display app that describes the local weather with a mere glance.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6788752578/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7040/6788752578_96192e1a7d.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
We accepted invitations to share our knowledge and experience whenever we’ve been asked, whether that’s been locally or abroad. We believe in being open and honest with those working for the same goals and we hope we’ve been helpful in some way.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6788752660/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7055/6788752660_feebbc2ba4.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
For younger students, we mentored a local school to victory in the No10 Big Society Awards and BIMA Digital Challenge 2011. The project involved mentoring members of the elderly community on internet use. </p>
<p><a href="http://www.flickr.com/photos/redwebltd/6788752736/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7198/6788752736_2195a85fd0.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
Through our work with the Arts University College Bournemouth, we were able to provide printmaking workshops and life drawing classes for our staff.  Learning new techniques and solving unusual visual problems helped heighten creativity and visual communication. And it wasn’t just designers who took part.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6788752900/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7065/6788752900_116a0b2ef7.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
Our commitment to the digital and creative arts community of Bournemouth continued. We handed over the Meetdraw networking event we founded, and got involved with new ventures such as: Show &#038; Tell, a platform for local creatives;  Design Buddies a mentoring scheme for AUCB students: and Creative Crawl, a problem solving, drawing based, pub crawl for creative teams.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6934865505/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7060/6934865505_3de41b2b58.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
We try not to take our selves too seriously, and end of year Christmas projects area perfect chance to play around. Last year we made a bell ringing iPhone app, got dressed up and <a href="http://www.dingdongmerrilyoniphone.co.uk/">tried our very best to ring out a tune</a>.</p>
<p><a href="http://www.flickr.com/photos/redwebltd/6788752344/" title="Innovation @Redweb 2011 by Redweb Ltd, on Flickr"><img src="http://farm8.staticflickr.com/7051/6788752344_18b8d6bdb9.jpg" width="480" height="360" alt="Innovation @Redweb 2011"></a><br />
<strong>So there you have it,</strong> 3 years in the making and our ideas, activities and innovative projects are snowballing more than we ever imagined. We set out to put innovation at the heart of our agency, and we’ve certainly achieved it. We now have a heart that beats more strongly and healthily because of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/03/03/innovation-at-our-heart/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The future of Front End Development</title>
		<link>http://blog.redweb.com/2012/02/21/the-future-of-front-end-development/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-future-of-front-end-development</link>
		<comments>http://blog.redweb.com/2012/02/21/the-future-of-front-end-development/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 17:02:29 +0000</pubDate>
		<dc:creator>Luke Guppy</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Front End Development]]></category>
		<category><![CDATA[Innovation]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=2334</guid>
		<description><![CDATA[After attending jQuery UK 2012, the first jQuery conference held in Europe, on Friday 10th February, I was inspired to write something about the current and future state of Front End Development and how it is shaped by all those involved. This is not a blog post reiterating all the excellent points, techniques and snippets [...]]]></description>
			<content:encoded><![CDATA[<p>After attending <a href="http://events.jquery.org/2012/uk/">jQuery UK 2012</a>, the first jQuery conference held in Europe, on Friday 10th February, I was inspired to write something about the current and future state of Front End Development and how it is shaped by all those involved.<br />
<span id="more-2334"></span></p>
<p>This is not a blog post reiterating all the excellent points, techniques and snippets of information shared at the conference, you can see more about the talks themselves at <a href="http://lanyrd.com/2012/jquery-uk/">http://lanyrd.com/2012/jquery-uk/</a>. This is my own interpretation of the broad range of techniques, code libraries and approaches that are used today and how these have come about.</p>
<p><a href="http://blog.redweb.com/2012/02/21/the-future-of-front-end-development/jquery-lanyard/" rel="attachment wp-att-2336"><img class="alignleft  wp-image-2336" title="jQuery-lanyard" src="http://blog.redweb.com/wp-content/uploads/2012/02/jQuery-lanyard-460x625.jpg" alt="jQuery 2012" width="276" height="375" /></a></p>
<p>Libraries such as <a href="http://jquery.com/">jQuery</a> and <a href="http://dojotoolkit.org/">Dojo</a> came about to help Front End Developers to build rich JavaScript functionality into site builds quickly and easily. Eradicating the inconsistencies across browsers, which in the past was extremely difficult to work with, and I’m sure had a large impact on the number of Flash based sites that were being produced. Now jQuery has overtaken Flash in usage online!</p>
<p>These libraries are open source projects, many available to the development community on <a href="https://github.com/">github</a>, allowing us all to contribute and extend them. This approach to coding has generated a fast paced progression and enhancement of the tools available to us all. Without the continued involvement of the development community, jQuery would not be the powerful library it is today. This approach has also bred many other open source projects such as, <a href="http://jquerymobile.com/">jQuery Mobile</a>, <a href="http://jqueryui.com/">jQuery UI</a>, numerous plug-ins etc.</p>
<p>So if we share our code solutions with others, in the open community, or even within our own professional networks, we should find that our code will soon become better, more efficient and even extended further. Multiple minds will always have the capacity to create better solutions than just the one.</p>
<p>As said by Christian Heilmann at jQuery 2012, “Strive to make yourself redundant, that’s how we make good stuff”, we should not be afraid of this approach. When writing code we should all be considering how the code can be understood, reused and extended by others. The deciding factor in creating the best possible solution is not simply how efficient the code will run, but should encompass all these factors.</p>
<p>That brings us up to the present, so what about the future of Front End Development? With the influx of mobile browsing and native device applications, clients are expecting even richer functional experiences for their projects. This is leading us into much heavier script based applications, which require much more of a modular and structured approach to our coding. This makes the reuse and extensibility of our solutions paramount.</p>
<p>With the introduction of HTML5 and CSS3 technologies and the ever increasing functional support from browsers in this area, the future is looking pretty exciting. The inconsistencies between browsers are gradually being eradicated and many of the things we use code libraries for today may not need to be relied upon so heavily moving forward.</p>
<p>To conclude, we really need to make sure we question our own code, allow others to do the same and really take pride in what is produced by the Front End Development community as a whole.</p>
<p>We can all be a part of it!</p>
<p>At Redweb we are currently developing our own JavaScript library to support key functionality we reuse throughout our projects, we will be releasing this to the open source development community on <a href="https://github.com/">github</a> soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/02/21/the-future-of-front-end-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Function Over Form</title>
		<link>http://blog.redweb.com/2012/02/10/function-over-form/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=function-over-form</link>
		<comments>http://blog.redweb.com/2012/02/10/function-over-form/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 15:09:09 +0000</pubDate>
		<dc:creator>Howard Bayliss</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=2114</guid>
		<description><![CDATA[Howard Bayliss wonders if function always wins over form, or if it&#8217;s the other way around? Sweater Colour First, have a look at the picture below. What colour is the sweater? Your average Developer would simply say blue, where as a Designer would say cobalt, lapis or even cerulean &#8211; Designers notice and care about [...]]]></description>
			<content:encoded><![CDATA[<p>Howard Bayliss wonders if function always wins over form, or if it&#8217;s the other way around?</p>
<p><span id="more-2114"></span></p>
<h3>Sweater Colour</h3>
<p>First, have a look at the picture below. What colour is the sweater?<br />
<a href="http://blog.redweb.com/2012/02/10/function-over-form/main/" rel="attachment wp-att-2115"><img class="alignleft size-full wp-image-2115" src="http://blog.redweb.com/wp-content/uploads/2012/02/Main.bmp" alt="Blue sweater" /></a></p>
<p>Your average Developer would simply say <em><strong>blue</strong></em>, where as a Designer would say <em><strong>cobalt</strong></em>, <em><strong>lapis </strong></em>or even <em><strong>cerulean</strong></em> &#8211; Designers notice and care about that sort of thing; where as Developers don&#8217;t.</p>
<p>Indeed, when it comes to the different ways in which Developer / Designer brains are wired, the idiom &#8220;never the twain shall meet&#8221; is never more true. Here&#8217;s some more sweeping generalisations:</p>
<p><strong>The Designer</strong></p>
<p>• Lauds anything made by Apple Corp. Ltd<br />
• Thinks the Fiat 500 looks best in pink<br />
• Thinks Developers should take themselves less seriously</p>
<p><strong>The Developer</strong></p>
<p>• Enjoys a good game of chess<br />
• Likes anything running the Android O/S as it&#8217;s <em>not </em>made by Apple Corp. Ltd<br />
• Thinks efficiency and robustness are more important than making something look pretty</p>
<p>The last point is really just a way of saying they think function <em><strong>is</strong></em> more important than form; and here&#8217;s some proof to backup that premise &#8211; the US Air Force A10 Thunderbolt:</p>
<p><a href="http://blog.redweb.com/2012/02/10/function-over-form/a10-warthog/" rel="attachment wp-att-2142"><img class="alignleft size-full wp-image-2142" src="http://blog.redweb.com/wp-content/uploads/2012/02/a10-warthog.bmp" alt="a10-warthog" /></a></p>
<p>This aeroplane is so ugly its nickname is &#8220;<strong>the warthog</strong>&#8220;.</p>
<p>Its form maybe sub-optimal. However its function certainly isn&#8217;t, as some British soldiers nearly found out to their cost. The action was caught on video:</p>
<p>Warning &#8211; contains expletives&#8230;<a href="http://www.youtube.com/watch?v=kkkhYg8F2og&amp;t=19s">http://www.youtube.com/watch?v=kkkhYg8F2og&amp;t=19s</a></p>
<p>Tellingly, when debriefed after the attack, the soldiers said that the shark-tooth detailing (added by a Designer to &#8220;improve&#8221; the aeroplane) had made no impression on them what-so-ever.</p>
<h3>Art</h3>
<p><strong>But we need Designers</strong> &#8211; without you, the world would be a much poorer place.</p>
<p>I mean, what would the Sunflowers have looked like if Van Gogh had been a Developer? Here&#8217;s a non-artist&#8217;s impression:<br />
<a href="http://blog.redweb.com/2012/02/10/function-over-form/sunflowers/" rel="attachment wp-att-2175"><img class="alignleft size-medium wp-image-2175" src="http://blog.redweb.com/wp-content/uploads/2012/02/Sunflowers-460x460.png" alt="Sunflowers imitation" width="460" height="460" /></a></p>
<p><strong>Function without form looks pretty dull.</strong></p>
<h3>Synergy</h3>
<p>As a digital agency, Redweb employs both Developers and Designers. We <strong>have </strong>to work together to produce excellent websites. So it&#8217;s not a case of Form-over-Function, or Function-over-Form &#8211; they both have to be held in tension; this (and the different people who work here) makes Redweb a very interesting place to work.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/02/10/function-over-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Talking digital innovation in Whitehall</title>
		<link>http://blog.redweb.com/2012/01/26/talking-digital-innovation-in-whitehall/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=talking-digital-innovation-in-whitehall</link>
		<comments>http://blog.redweb.com/2012/01/26/talking-digital-innovation-in-whitehall/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 21:27:28 +0000</pubDate>
		<dc:creator>Andrew Henning</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[public sector]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=2085</guid>
		<description><![CDATA[On Wednesday I was kindly invited to attend a Product Surgery at Whitehall. Initially instigated by David Cameron and the Minister for the Cabinet Office, these informal consultations are to allow senior government staff the opportunity to talk to industry people about forthcoming projects prior to procurement. Without going into too much detail, the session [...]]]></description>
			<content:encoded><![CDATA[<p>On Wednesday I was kindly invited to attend a Product Surgery at Whitehall. Initially instigated by David Cameron and the Minister for the Cabinet Office, these informal consultations are to allow senior government staff the opportunity to talk to industry people about forthcoming projects prior to procurement.</p>
<p>Without going into too much detail, the session I attended focussed on Education data and its online access by public and professionals alike.</p>
<p><span id="more-2085"></span></p>
<p>The surgery is very strict in timekeeping with 10 minutes to ‘pitch’ and 10 minutes of Q&amp;A questions. I used my time to try to enhance the vision. I tried to emphasise the need for any large ICT solution not to be pre-prescribed and devoid of exploration, ideas and imagination.</p>
<p>This approach was as a result of being involved in many Government tenders where the ITT (Invitation to Tender) already defines the solution or concentrates on areas which I consider should only be defined once the scope is known. The existing approach maybe ideal to get comparative costs from suppliers, but it doesn’t allow boundaries to broaden or innovation to flourish.</p>
<p>The project I discussed at the surgery is extremely exciting. The potential to benefit the education sector is huge. But to realise the opportunity you need to understand the needs and expectations of the people who will ultimately use the solution. You also need to understand how they want to use it, benchmark other applications and think of the roadmap.</p>
<p>For this project expectations should be high, as it is obvious that the age group of teachers and parents is increasingly inline with the expert/web savvy users of the internet.</p>
<p>With audience groups defined and willing to contribute you can discover not just what they feel, but also use face-to-face sessions to brainstorm and innovate for the future. Using prototypes, sketches, proof of concepts and good old drawings, ideas can come to life and stakeholders can start to recognise the impact and value that can be generated. Add benefits and business case data to support this and the design phase becomes very compelling.</p>
<p>The future of digital is changing. People’s expectations of accessing data are becoming much more demanding. Ownership of 6 connected devices (Desktop, laptop, tablet, mobile, games console and TV) is becoming increasingly commonplace. New sites will need to cater for these varieties of interaction methods. The advancement of Responsive Web Design will be key. Sites built over the next few years will need to realise this.</p>
<p>So my message to Government was that they need to provide the mechanism for ideas to be explored by designers in an environment that is not prohibitive. We can’t do this work during a tender submission and we can’t quote for the unknown as we become uncompetitive. Hence innovation is left at the back door. If you ask for X you get X but what if Y was better (or X.5)!</p>
<p>Creating a distinct design and research phase will allow the opportunities to be explored and then when new business cases are built you can confidently set budgets and define technology, methodology etc.</p>
<p>With projects as large and important as tendered by DfE, I’d imagine that you’d even be able to invite agencies to work together at this critical stage for the good of the nation.</p>
<p>It is great that I was given the opportunity to attend. There seems a real shift in Government to change thinking and improve interaction between the wider business community (SMEs) and central departments.</p>
<p>The UK excels at creative services. For the government to get the same level of innovation and design as the private sector has to be a target.</p>
<p>Find out more about responsive design at <a title="Responsive Design link to Smashing Magazine" href="http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/">Smashing Magazine</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/01/26/talking-digital-innovation-in-whitehall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lamentations</title>
		<link>http://blog.redweb.com/2012/01/12/lamentations/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lamentations</link>
		<comments>http://blog.redweb.com/2012/01/12/lamentations/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 14:48:14 +0000</pubDate>
		<dc:creator>Howard Bayliss</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=1920</guid>
		<description><![CDATA[Howard Bayliss laments various boxes&#8230; Box 1 &#8211; Letterbox When was the last time you wrote a letter? Not a business letter, Christmas card or complaint, but a heartfelt, personal letter? When did you last receive such a letter? For me it was about a decade ago and I&#8217;ve almost forgotten how good it feels [...]]]></description>
			<content:encoded><![CDATA[<p>Howard Bayliss laments various boxes&#8230;<span id="more-1920"></span></p>
<h3>Box 1 &#8211; Letterbox</h3>
<p>When was the last time you wrote a letter? Not a business letter, Christmas card or complaint, but a heartfelt, personal letter?</p>
<p>When did you last <strong>receive</strong> such a letter?</p>
<p>For me it was about a decade ago and I&#8217;ve almost forgotten how good it feels to open a letter, personally written to me.</p>
<p>It seems that personal letter writing is dead. Generally speaking, the only things dropping though my letterbox now are junk mail and bills.</p>
<h3>Box 2 &#8211; Inbox</h3>
<p>I guess it was email that killed personal letter writing. And why not? Email delivery is pretty much instantaneous; and you don&#8217;t need to buy a stamp.</p>
<p>However, it appears that <strong>what-goes-around-comes-around</strong> as email is going the same way as the post. Now my inbox just fills up with marketing material, job adverts or emails from people who want a piece of me.</p>
<h3>Box 3 &#8211; Soapbox</h3>
<p>So the joy of receiving a long, personal letter or email has gone; replaced by <strong>look-at-me</strong> social media.</p>
<p>Why take time to &#8220;touch&#8221; someone on a personal level when you can climb on your soapbox and broadcast to all of your friends at the same time, particularly if you can do it in 140 characters or less?</p>
<p>But let&#8217;s face it &#8211; they&#8217;re mostly not your friends anyway; they&#8217;re just people you know. A little.</p>
<p>And why write something personal to someone, then post it somewhere 1100 people can also see it?</p>
<p>Indeed, I think that social media *can* sometimes do more harm than good. After all, do you really get a truthful picture of how someone is doing, based on their updates? Of course not. When did you last see an update like: &#8220;<strong>I&#8217;m really struggling with life at the moment</strong>&#8220;, or &#8220;<strong>No one takes an interest in me</strong>&#8220;?</p>
<p>Likewise, you can look at people&#8217;s airbrushed updates, and end-up feeling inadequate and unappreciated.</p>
<h3>The Next Big Thing</h3>
<p>I assume that social media (as we know it today) will go the same way as the post and email. I&#8217;m therefore going to chat with the collective creative genius at Redweb to see if we can come-up with some concepts for the next form of digital communication:</p>
<ul>
<li>It needs to be easy to use</li>
<li>It needs to be fun (email is passé)</li>
</ul>
<p>Above all though, it needs to recapture something of the joy of receiving a letter, knowing that it&#8217;s personally written to you (and only you). There&#8217;s real value in that.</p>
<p>If you would like to comment, please use the social media links below. Or, instead, why not surprise me by writing me a letter?</p>
<p>Yours sincerely<br />
Howard Bayliss</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/01/12/lamentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book to the future</title>
		<link>http://blog.redweb.com/2012/01/06/book-to-the-future/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=book-to-the-future</link>
		<comments>http://blog.redweb.com/2012/01/06/book-to-the-future/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 10:17:46 +0000</pubDate>
		<dc:creator>David Burton</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[Publish!]]></category>
		<category><![CDATA[Publishing]]></category>

		<guid isPermaLink="false">http://blog.redweb.com/?p=2051</guid>
		<description><![CDATA[Back in December I attended Publish! Organised by Media Futures, it was a day of innovation on the future of the book. The future of publishing is an interesting topic that’s been floating around for a while. The written word will forever be popular but what formats are best suited to deliver it in, now [...]]]></description>
			<content:encoded><![CDATA[<p>Back in December I attended <a title="Publish!" href="http://www.mediafutures.org.uk/2011/index.php">Publish!</a> Organised by <a title="Media Futures" href="http://www.mediafutures.org.uk/">Media Futures</a>, it was a day of innovation on the future of the book.</p>
<p>The future of publishing is an interesting topic that’s been floating around for a while. The written word will forever be popular but what formats are best suited to deliver it in, now and in the future? And how will traditional publishing and revenue models have to change to keep up?<span id="more-2051"></span></p>
<p><a title="Cinema 1 #publish2011 by phishtitz, on Flickr" href="http://www.flickr.com/photos/8889096@N05/6476032757/"><img src="http://farm8.staticflickr.com/7019/6476032757_a967f29170_z.jpg" alt="Cinema 1 #publish2011" width="460" height="460" /></a></p>
<p>The room was full, with a mix of authors, publishers and digital folk. Through each session: ‘innovation and the book’, ‘making money from digital’, ‘Pioneers or playing it safe?’ and ‘inventing the future’ there was a great sense of openness and honesty. It was clear that each section of the audience had a lot to learn but was equally eager to help where they could.</p>
<p>We saw some wonderful new work. <a title="Meg Geldens" href="http://www.mediafutures.org.uk/2011/presenters/MegGeldens.php">Meg Geldens</a> of <a title="Touch Press" href="http://touchpress.com/">Touch Press</a> showed off a couple of beautiful iPad apps that bring content to life in magical ways. <a title="Dave Addey" href="http://www.mediafutures.org.uk/2011/presenters/DaveAddey.php">Dave Addey</a> of <a title="Agant" href="http://www.agant.com/">Agant Ltd</a> walked us though their <a href="http://www.agant.com/app.php?appID=ttoi">Malcolm Tucker: The Missing Phone</a> app that reinvents what you think &#8216;book&#8217; content might be.</p>
<p>There were many more examples highlighting that if we can mix the best from the publishing world with the very best of what the digital world has to offer – agile approaches, digital strategy and engagement models, people shaped design, experimentation and innovation, then the future of the book, whether in body or soul will be an exciting landscape.</p>
<p>The last session ‘How to innovate’, was when I left my comfortable seat behind and had to get up and onto the stage myself.</p>
<p>I talked briefly about hack projects, why we often work this way and how we approach them. For us, hack projects have proved to be low cost, low risk, liberating, fast and exciting ways to get experimental work made and functioning ready for evaluation and improvement. A very pure, yet realistic way of innovating.</p>
<p>Here’s my slides:</p>
<div id="__ss_10485900" style="width: 460px;"><strong style="display: block; margin: 12px 0 4px;"></strong> <object id="__sse10485900" width="460" height="384" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=publish-cover-only-111206113717-phpapp01&amp;stripped_title=hack-projects-how-to-create-an-environment-for-rapid-innovation&amp;userName=davidburton" /><param name="allowscriptaccess" value="always" /><param name="allowfullscreen" value="true" /><embed id="__sse10485900" width="460" height="384" type="application/x-shockwave-flash" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=publish-cover-only-111206113717-phpapp01&amp;stripped_title=hack-projects-how-to-create-an-environment-for-rapid-innovation&amp;userName=davidburton" allowFullScreen="true" allowScriptAccess="always" wmode="transparent" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<div style="padding: 5px 0 12px;"></div>
</div>
<p>And yes, while I was in Bristol I did collect <a href="http://blog.redweb.com/2012/01/04/not-all-conferences-are-created-equal/">Damian’s Champagne</a>, and he was very lucky to get it back unopened!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.redweb.com/2012/01/06/book-to-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

