<?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>creativenucleus</title>
	<atom:link href="http://www.creativenucleus.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.creativenucleus.com/blog</link>
	<description>freelance web developer</description>
	<lastBuildDate>Tue, 16 Aug 2011 09:19:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>&#8220;He who controls the spice controls the Universe&#8221;</title>
		<link>http://www.creativenucleus.com/blog/2011/08/05/he-who-controls-the-spice-controls-the-universe/</link>
		<comments>http://www.creativenucleus.com/blog/2011/08/05/he-who-controls-the-spice-controls-the-universe/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 16:42:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[link shortening]]></category>
		<category><![CDATA[t.co]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=155</guid>
		<description><![CDATA[Twitter has announced that it will, in the near future, wrap all links posted in tweets with their t.co wrapper (details here). This gives them, as they state, the opportunity to be proactive in blocking spam or phishing links and &#8230; <a href="http://www.creativenucleus.com/blog/2011/08/05/he-who-controls-the-spice-controls-the-universe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Twitter has announced that it will, in the near future, wrap <strong>all</strong> links posted in tweets with their t.co wrapper (<a href="https://dev.twitter.com/blog/next-steps-with-the-tco-link-wrapper" target="_blank">details here</a>).</p>
<p>This gives them, as they state, the opportunity to be proactive in blocking spam or phishing links and also the power to run metrics &#8211; who follows the link and when, how the link propagates across the web.</p>
<p>It appears that developers <em>may</em> still be able to decode the t.co links into their original form with a little further effort (I think their brief is unclear as to whether this applies to all t.co shortened links).</p>
<p>I dislike this idea for a few reasons:</p>
<ol>
<li><strong>Context</strong> &#8211; Anything that obfuscates a link target before you click it is bad for convenience (you can&#8217;t gloss over a URL you&#8217;ve seen already) and safety (you can&#8217;t guess whether the link is malicious). Sometimes I like to post a link without any description or comment- the link is self-describing, or I wish the visitor to make their own mind up &#8211; the new policy knocks a hole in this.</li>
<li><strong>Stability</strong> &#8211; Twitter seems to be pretty stable nowadays, but any extra link in the chain necessarily increases the risk of downtime- if you&#8217;re already using a link shortener for metrics, there will be an extra middleman.</li>
<li><strong>Control</strong> &#8211; A third-party has control over the destination of your link. Unlikely (but possible) scenarios include advert click-throughs, your link placed within Twitter&#8217;s frame and killed links on Twitter&#8217;s whim.</li>
<li><strong>Personality</strong> &#8211; Many use their own custom link shorteners, for fun and style. These will be masked.</li>
</ol>
<p>They mention developers will be able to tap into these metrics via the API. I wonder if access to large-scale link data will be a revenue stream for them?</p>
<p>Will this kill existing link shortening services?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2011/08/05/he-who-controls-the-spice-controls-the-universe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP isset() vs array_key_exists()</title>
		<link>http://www.creativenucleus.com/blog/2011/04/15/php-isset-vs-array_key_exists/</link>
		<comments>http://www.creativenucleus.com/blog/2011/04/15/php-isset-vs-array_key_exists/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 14:32:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scrapbook]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=152</guid>
		<description><![CDATA[I&#8217;ve seen isset( $my_array[ 'key' ] ) used as a synonym for array_key_exists( &#8216;key&#8217;, $my_array ) quite a few times. They aren&#8217;t equivalent, so unfortunately you can&#8217;t take the former as a shortcut for the latter! The difference is that &#8230; <a href="http://www.creativenucleus.com/blog/2011/04/15/php-isset-vs-array_key_exists/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen isset( $my_array[ 'key' ] ) used as a synonym for array_key_exists( &#8216;key&#8217;, $my_array ) quite a few times.</p>
<p>They aren&#8217;t equivalent, so unfortunately you can&#8217;t take the former as a shortcut for the latter!</p>
<p>The difference is that isset() will return false if $my_array[ 'key' ] = null, while array_key_exists will return true.</p>
<p>See <a href="http://php.net/manual/en/function.array-key-exists.php">the examples in the official documentation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2011/04/15/php-isset-vs-array_key_exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Function: string cleanse</title>
		<link>http://www.creativenucleus.com/blog/2011/02/20/php-function-string-cleanse/</link>
		<comments>http://www.creativenucleus.com/blog/2011/02/20/php-function-string-cleanse/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 21:34:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scrapbook]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=143</guid>
		<description><![CDATA[A code snippet for cleaning a string so that only certain characters are allowed through. A call like: string_clean( 'stri3ng87s 11and n642umb1ers', "abcdefghijklmnopqrstuvwxyz" ); &#8230;will return: strings and numbers Code: function string_clean( $string_in, $permitted_chars ) { $string_search_pos = 0; $string_out &#8230; <a href="http://www.creativenucleus.com/blog/2011/02/20/php-function-string-cleanse/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A code snippet for cleaning a string so that only certain characters are allowed through.</p>
<p>A call like:<br />
<code><br />
string_clean( 'stri3ng87s 11and n642umb1ers', "abcdefghijklmnopqrstuvwxyz" );<br />
</code><br />
&#8230;will return:<br />
<code><br />
strings and numbers<br />
</code></p>
<p>Code:</p>
<pre>
function string_clean( $string_in, $permitted_chars ) {

   $string_search_pos = 0;
   $string_out = '';

   while( $string_search_pos &lt; strlen( $string_in ) ) {

   // Let through a chunk...
      $permitted_len = strspn( $string_in, $permitted_chars, $string_search_pos );
      $string_out .= substr( $string_in, $string_search_pos, $permitted_len );
      $string_search_pos += $permitted_len;

   // Ignore a chunk...
      $not_permitted_len = strcspn( $string_in, $permitted_chars, $string_search_pos );
      $string_search_pos += $not_permitted_len;
   }

   return $string_out;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2011/02/20/php-function-string-cleanse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Code Challenge &#8211; Results</title>
		<link>http://www.creativenucleus.com/blog/2010/12/09/code-challenge-results/</link>
		<comments>http://www.creativenucleus.com/blog/2010/12/09/code-challenge-results/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 11:35:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code challenge]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=138</guid>
		<description><![CDATA[So &#8211; competition closed, and disappointingly, I only had one entry. Despite this, I wish not to take any merit from Colin, whose &#8216;Roids were fun, colourful and super-swiftly submitted. He abused my &#8220;Don&#8217;t touch the code harness&#8221; rule, but &#8230; <a href="http://www.creativenucleus.com/blog/2010/12/09/code-challenge-results/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So &#8211; competition closed, and disappointingly, I only had one entry.</p>
<p>Despite this, I wish not to take any merit from Colin, whose &#8216;Roids were fun, colourful and super-swiftly submitted. He abused my &#8220;Don&#8217;t touch the code harness&#8221; rule, but we&#8217;ll forgive him this once <img src='http://www.creativenucleus.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Congratulations, Colin, and I hope you enjoy <a href="http://thepud.codeworks.net/" target="_blank">your prize</a>!</p>
<p>@<a href="http://www.twitter.com/mynameiscolin" target="_blank">mynameiscolin</a>&#8216;s <a href="http://www.creativenucleus.com/blog/wp-content/uploads/2010/12/codechallenge.zip">entry</a>.</p>
<p>The rest of you can hang your heads in shame. I know at least three people were working on something (I saw a sneak peek of two of them). I&#8217;d hoped a code challenge would be a fun way of sharing ideas, so what went wrong?</p>
<p>I <em>think</em> the competition was reasonably well promoted at its target- it had been retweeted by ten or so people, including Codeworks, and favourited by a few.</p>
<p>Was there enough time? I thought a week would have been fine- especially one where some were snowed in. I&#8217;d expected no-one to put more than a couple of hours in. Still, a couple of people said that they&#8217;d wanted longer.</p>
<p>Was it inappropriately pitched? Do coders actually want to play with PHP to do this sort of stuff? To share it? Was the prize unattractive? (For me, the prize was always intended to be an incentive rather than an end).</p>
<p>Please, I&#8217;d like feedback- I was interested in running a few of these, since code-sharing / dissection has been mentioned in the past. But there&#8217;s not any point if people aren&#8217;t going to get involved&#8230; pop me an email or drop some feedback below if you&#8217;d be so kind <img src='http://www.creativenucleus.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2010/12/09/code-challenge-results/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Experiments in Mobile Web App Frameworks</title>
		<link>http://www.creativenucleus.com/blog/2010/11/30/experiments-in-mobile-web-app-frameworks/</link>
		<comments>http://www.creativenucleus.com/blog/2010/11/30/experiments-in-mobile-web-app-frameworks/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:15:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[SuperMondays]]></category>
		<category><![CDATA[talks]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=132</guid>
		<description><![CDATA[I presented at last night&#8217;s SuperMondays event, giving some thoughts on attempts to get a mobile (iPhone) web application working and the direction I&#8217;ve taken in trying to build a framework for further development. It was great to chat about &#8230; <a href="http://www.creativenucleus.com/blog/2010/11/30/experiments-in-mobile-web-app-frameworks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I presented at last night&#8217;s SuperMondays event, giving some thoughts on attempts to get a mobile (iPhone) web application working and the direction I&#8217;ve taken in trying to build a framework for further development.</p>
<p>It was great to chat about it in the pub afterwards and, from this, I intend to share the code with interested parties and see where that goes.</p>
<p>You&#8217;re quite welcome to my <a href="http://www.creativenucleus.com/blog/wp-content/uploads/2010/11/creativenucleus-experiments-in-mobile.ppsx" target="_blank">PowerPoint slides</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2010/11/30/experiments-in-mobile-web-app-frameworks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SuperMondays: Flash Talks &#8211; 29/11/2010</title>
		<link>http://www.creativenucleus.com/blog/2010/11/30/supermondays-flash-talks-2/</link>
		<comments>http://www.creativenucleus.com/blog/2010/11/30/supermondays-flash-talks-2/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 11:59:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[Newcastle]]></category>
		<category><![CDATA[SuperMondays]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=124</guid>
		<description><![CDATA[I was privileged to be able to chair last night&#8217;s SuperMondays event, a series of flash (nominally five minute) talks. The line-up was as follows: Alistair McDonald &#8211; An over-engineered solution to a problem that never exited in the first &#8230; <a href="http://www.creativenucleus.com/blog/2010/11/30/supermondays-flash-talks-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was privileged to be able to chair last night&#8217;s <a href="http://www.supermondays.org/" target="_blank">SuperMondays</a> event, a series of flash (nominally five minute) talks.</p>
<p>The line-up was as follows:</p>
<ul>
<li><a href="http://www.twitter.com/alistair" target="_blank">Alistair McDonald</a> &#8211; An over-engineered solution to a problem that never exited in the first place.</li>
<li><a href="http://www.welcometoalex.com/" target="_blank">Andy Hudson</a> &#8211; IT departments, the biggest inhibitor to economic growth.</li>
<li><a href="http://www.twitter.com/souterconsults" target="_blank">Justin Souter</a> &#8211; Itâ€™s so crazy it just might work!</li>
<li><a href="http://www.twitter.com/creativenucleus" target="_blank">James Rutherford</a> &#8211; Experiments in mobile/desktop web framework design</li>
<li><a href="http://www.twitter.com/tristanwatson" target="_blank">Tristan Watson</a> &#8211; Our Startup, Lessons from the trenches.</li>
<li><a href="http://www.twitter.com/stereografix" target="_blank">Saif Chaudhry</a> &#8211; 3D TV (with a 47â€³ TV, demoing 3D websites, interactive and prerecorded visuals).</li>
</ul>
<p>Due to the severe snow, some weren&#8217;t able to make it, but we still had a very respectable turnout, some great talks and lively discussion. It was pleasing  to see that most of us decamped to the pub afterwards for further chat!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2010/11/30/supermondays-flash-talks-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code Challenge: Wallpaper!</title>
		<link>http://www.creativenucleus.com/blog/2010/11/29/code-challenge-wallpaper/</link>
		<comments>http://www.creativenucleus.com/blog/2010/11/29/code-challenge-wallpaper/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 13:11:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[code challenge]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=106</guid>
		<description><![CDATA[Winter has well and truly made its presence known and it&#8217;s time to get creative behind drawn curtains; so here&#8217;s a quick, fun code challenge for you developers: * Write a script in PHP to generate desktop wallpaper * Prize: &#8230; <a href="http://www.creativenucleus.com/blog/2010/11/29/code-challenge-wallpaper/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Winter has well and truly made its presence known and it&#8217;s time to get creative behind drawn curtains; so here&#8217;s a quick, fun code challenge for you developers:</p>
<p><strong>* Write a script in PHP to generate desktop wallpaper *</strong></p>
<p>Prize: A ticket to Codeworks&#8217; Christmas event, <a href="http://thepud.codeworks.net/" target="_blank">The PUD</a>, in Newcastle on 9th December.<br />
NB: The prize is North-East based, but anyone may enter for kudos! No cash alternative, etc.<br />
Deadline: All entries to be received by noon on <strong>7th December</strong>.</p>
<p>Code harness (your script must use this): <a href="http://www.creativenucleus.com/blog/wp-content/uploads/2010/11/creativenucleus-codechallenge-wallpaper.zip">here</a>.<br />
(There&#8217;s an example submission in there- make sure you comment better than I have <img src='http://www.creativenucleus.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>
<p>Rules:</p>
<p>1. Code must be your own work.<br />
2. Your code will remain your property.<br />
3. Code may be republished by creativenucleus, successors and partners without limitation ([2] withstanding).<br />
4. No external files (fonts/graphics/URL loading, etc&#8230;)<br />
5. This challenge is neither sponsored nor organised by Codeworks.<br />
6. creativenucleus&#8217; decision is final.<br />
7. Be creative!</p>
<p>Scoring &#8211; Total 100 points, broken down as:</p>
<ul>
<li>??/40 points: Final Effect &#8211; How lovely/impressive is yout wallpaper image?</li>
<li>??/30 points: Configuration &#8211; How powerful are the $user_config options you&#8217;ve provided?</li>
<li>??/20 points: Parsimony &#8211; How tight/beautiful/sweetly documented is the source code?</li>
<li>??/10 points: Submission speed &#8211; How soon did you submit your entry?</li>
</ul>
<p>Submit your wallpaper.inc.php file to <a href="mailto:codechallenge@creativenucleus.com">codechallenge@creativenucleus.com</a> &#8211; the sooner you do so, the more submission points you&#8217;ll earn!</p>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2010/11/29/code-challenge-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SuperMondays &#8211; Flash Talks</title>
		<link>http://www.creativenucleus.com/blog/2010/11/25/supermondays-flash-talks/</link>
		<comments>http://www.creativenucleus.com/blog/2010/11/25/supermondays-flash-talks/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 10:38:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Newcastle]]></category>
		<category><![CDATA[SuperMondays]]></category>
		<category><![CDATA[talks]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=100</guid>
		<description><![CDATA[I&#8217;ll be doing a 5 minute talk on Monday 29th at Newcastle Beehive for the SuperMondays event. It&#8217;s free, and looks like a great line-up: Lee Duddell â€” why most websites are rubbish to use and what you can do &#8230; <a href="http://www.creativenucleus.com/blog/2010/11/25/supermondays-flash-talks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be doing a 5 minute talk on Monday 29th at Newcastle Beehive for the SuperMondays event. It&#8217;s free, and looks like a great line-up:</p>
<ul>
<li>Lee Duddell â€” why most websites are rubbish to use and what you can do about it.</li>
<li>Saif Chaudhry â€” 3D TV (with a 47â€³ TV as a demo!!!)</li>
<li>Alistair MacDonald â€” AnÂ over-engineered solution to a problem that never exited in the firstÂ place</li>
<li><strong>James Rutherford â€” Experiments in mobile/desktop web framework design.</strong></li>
<li>Oli Wood â€” Flavoured spirits in time for Christmas</li>
<li>Andy Hudson â€” IT departments, the biggest inhibitor to economic growth.</li>
<li>Justin Souter â€” Itâ€™s so crazy it just might work!</li>
<li>Tristan Watson â€” Our Startup, Lessons from the trenches</li>
<li>Philip Poots â€” Practice makes Perfect: Becoming a better developer for fun andÂ profit.</li>
</ul>
<p>My topic will cover a couple of stumbling blocks I encountered while building my first &#8216;mobile&#8217; project, <a href="http://www.creativenucleus.com/blog/2010/10/11/in-the-lab-torunnify-com/">Torunnify</a>, and introduce the basics of the framework I&#8217;ve recently developed.</p>
<p>More info, and sign-up on the <a href="http://www.supermondays.org/2010/11/23/flash-talk-monday-29th-november-2010/" target="_blank">SuperMondays</a> website.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<ul>
<li><strong>Lee Duddell</strong> â€” why most websites are rubbish to use and what you can do about it.</li>
<li><strong>Saif Chaudhry</strong> â€” 3D TV (with a 47â€³ TV as a demo!!!)</li>
<li><strong>Alistair MacDonald</strong> â€” AnÂ over-engineered solution to a problem that never exited in the firstÂ place</li>
<li><strong>James Rutherford</strong> â€” Experiments in mobile/desktop web framework design.</li>
<li><strong>Oli Wood</strong> â€” Flavoured spirits in time for Christmas</li>
<li><strong>Andy Hudson</strong> â€” IT departments, the biggest inhibitor to economic growth.</li>
<li><strong>Justin Souter</strong> â€” Itâ€™s so crazy it just might work!</li>
<li><strong>Tristan Watson</strong> â€” Our Startup, Lessons from the trenches</li>
<li><strong>Philip Poots</strong> â€” Practice makes Perfect: Becoming a better developer for fun andÂ profit.</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2010/11/25/supermondays-flash-talks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In the lab: Torunnify.com</title>
		<link>http://www.creativenucleus.com/blog/2010/10/11/in-the-lab-torunnify-com/</link>
		<comments>http://www.creativenucleus.com/blog/2010/10/11/in-the-lab-torunnify-com/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 14:20:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lab]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=70</guid>
		<description><![CDATA[I set myself a little project to produce a &#8216;web-app&#8217; as a 30th birthday present, using my Twitter-authentication code for user logins. I&#8217;m pretty pleased with it. Since it was rapidly developed, it doesn&#8217;t have niceties like proper error reporting &#8230; <a href="http://www.creativenucleus.com/blog/2010/10/11/in-the-lab-torunnify-com/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I set myself a little project to produce a &#8216;web-app&#8217; as a 30th birthday present, using my Twitter-authentication code for user logins.</p>
<p>I&#8217;m pretty pleased with it.</p>
<p>Since it was rapidly developed, it doesn&#8217;t have niceties like proper error reporting but it seems stable so that&#8217;s no big problem.</p>
<p>The one major thing I overlooked was that a &#8216;web-app&#8217; intended for the user&#8217;s home screen on iPhone should make all content updates by JavaScript / AJAX. If you click on any real page links the app minimises then launches a Safari browser window, which is decidedly unslick. Sadly, that would take a fairly major architectural overhaul to fix.</p>
<p>Experience of problems like this on non-critical projects is one major benefit of the laboratory. <img src='http://www.creativenucleus.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://www.creativenucleus.com/lab/?item=torunnify">Read more about Torunnify</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2010/10/11/in-the-lab-torunnify-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Battle 2010 &#8211; Codeworks TAAD</title>
		<link>http://www.creativenucleus.com/blog/2010/10/01/the-battle-2010-codeworks-taad/</link>
		<comments>http://www.creativenucleus.com/blog/2010/10/01/the-battle-2010-codeworks-taad/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 11:12:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Front Page]]></category>
		<category><![CDATA[Codeworks]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[Newcastle]]></category>
		<category><![CDATA[The Battle]]></category>
		<category><![CDATA[Think and a Drink]]></category>

		<guid isPermaLink="false">http://www.creativenucleus.com/blog/?p=56</guid>
		<description><![CDATA[Yesterday evening&#8217;s &#8216;Think and a Drink&#8216; event took place at Newcastle College&#8217;s performance academy. &#8216;The Battle&#8217; competition ran over a three stage tournament. Eight competitors started the first round (each provided with a Mac and Photoshop) &#8211; this halved to &#8230; <a href="http://www.creativenucleus.com/blog/2010/10/01/the-battle-2010-codeworks-taad/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday evening&#8217;s &#8216;<a href="http://www.thinkandadrink.com/" target="_blank">Think and a Drink</a>&#8216; event took place at Newcastle College&#8217;s performance academy.</p>
<p>&#8216;The Battle&#8217; competition ran over a three stage tournament. Eight competitors started the first round (each provided with a Mac and Photoshop) &#8211; this halved to four and then to two for the final. For each round the competitors were given a theme and some &#8216;stock&#8217; images to work up.</p>
<p>Alongside the competition, Codeworks organised AV entertainment, a buffet and drinks.</p>
<p>It&#8217;s a nice format &#8211; particularly to see the spread of designs produced from the same starting point. The event ran smoothly and made good use of tech &#8211; lighting and mixed projection sources were applied well for gameshow glitz.</p>
<p>I&#8217;d offer some suggestions for consideration next year:</p>
<p>The competition didn&#8217;t work well as a spectator sport &#8211; perhaps the contestants could face the other way so we could see their screens?</p>
<p>Our host seemed to misjudge the atmosphere a little. The contestant interviews felt stilted- something didn&#8217;t connect properly here.</p>
<p>All eight contestants were male &#8211; for whatever reason &#8211; shame! There are plenty of great female designers in the region.</p>
<p>My biggest beef was that the design objectives weren&#8217;t clear.</p>
<p>Design is about solving a problem and without that the event becomes a Photoshop digital art contest. I think it would have been easy to direct the rounds a bit further and still leave a lot of creative scope (e.g. &#8220;design a pro- or anti- war poster for 18-25 year olds&#8221;).</p>
<p>Further to that, I was left disappointed by the judging &#8211; there wasn&#8217;t any public feedback on their dissection (I suspect targeting a design problem would help them too). Perhaps the organisers might consider a Britain&#8217;s Got Talent -style open panel discussion? <em>[The most creative take in round 2 (contestant #7 - Ryan?) got the chop. An analysis would have been illuminating]</em>.</p>
<p>Regardless, it was an excellent event with great venue, good network and socialising opportunities. Codeworks are certainly a friendly bunch and I look forward to next year&#8217;s event.</p>
<p>I&#8217;m tempted to enter too! <img src='http://www.creativenucleus.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.creativenucleus.com/blog/2010/10/01/the-battle-2010-codeworks-taad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

