<?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>Shawson&#039;s Code Blog</title>
	<atom:link href="http://www.shawson.co.uk/codeblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shawson.co.uk/codeblog</link>
	<description>development notes for my failing memory</description>
	<lastBuildDate>Wed, 01 Sep 2010 09:25:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>World of VS: Make it easy to change the default browser in Visual Studio Blog</title>
		<link>http://www.shawson.co.uk/codeblog/world-of-vs-make-it-easy-to-change-the-default-browser-in-visual-studio-blog/</link>
		<comments>http://www.shawson.co.uk/codeblog/world-of-vs-make-it-easy-to-change-the-default-browser-in-visual-studio-blog/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 09:25:08 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=772</guid>
		<description><![CDATA[World of VS: Make it easy to change the default browser in Visual Studio Blog.


Related posts:Windows Vista, Visual Studio 2003/5 and Front Page Extensions!
2 tabs fresh!
WCF 404.3 Errors



Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/windows-vista-visual-studio-20035-and-front-page-extensions/' rel='bookmark' title='Permanent Link: Windows Vista, Visual Studio 2003/5 and Front Page Extensions!'>Windows Vista, Visual Studio 2003/5 and Front Page Extensions!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/2-tabs-fresh/' rel='bookmark' title='Permanent Link: 2 tabs fresh!'>2 tabs fresh!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/wcf-404-3-errors/' rel='bookmark' title='Permanent Link: WCF 404.3 Errors'>WCF 404.3 Errors</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.wovs.com/2010/08/make-it-easy-to-change-default-browser.html">World of VS: Make it easy to change the default browser in Visual Studio Blog</a>.</p>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/windows-vista-visual-studio-20035-and-front-page-extensions/' rel='bookmark' title='Permanent Link: Windows Vista, Visual Studio 2003/5 and Front Page Extensions!'>Windows Vista, Visual Studio 2003/5 and Front Page Extensions!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/2-tabs-fresh/' rel='bookmark' title='Permanent Link: 2 tabs fresh!'>2 tabs fresh!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/wcf-404-3-errors/' rel='bookmark' title='Permanent Link: WCF 404.3 Errors'>WCF 404.3 Errors</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/world-of-vs-make-it-easy-to-change-the-default-browser-in-visual-studio-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clear down transaction logs</title>
		<link>http://www.shawson.co.uk/codeblog/clear-down-transaction-logs/</link>
		<comments>http://www.shawson.co.uk/codeblog/clear-down-transaction-logs/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 08:47:41 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=768</guid>
		<description><![CDATA[A bit of syntax that I can never remember off the top of my head!  SQL 2005 &#8216;Transaction Log is Full on database xxx&#8217;

DBCC SHRINKFILE(&#039;dbname_log&#039;, 1)
BACKUP LOG dbname WITH TRUNCATE_ONLY DBCC SHRINKFILE(&#039;dbname_log&#039;, 1)



Related posts:SQL Server truncate log
Full Text Reindex, scheduled job has no steps!
Grant Execute Permissions for all sprocs on SQL 2005



Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/sql-server-truncate-log/' rel='bookmark' title='Permanent Link: SQL Server truncate log'>SQL Server truncate log</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/full-text-reindex-scheduled-job-has-no-steps/' rel='bookmark' title='Permanent Link: Full Text Reindex, scheduled job has no steps!'>Full Text Reindex, scheduled job has no steps!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/grant-execute-permissions-for-all-sprocs-on-sql-2005/' rel='bookmark' title='Permanent Link: Grant Execute Permissions for all sprocs on SQL 2005'>Grant Execute Permissions for all sprocs on SQL 2005</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>A bit of syntax that I can never remember off the top of my head!  SQL 2005 &#8216;Transaction Log is Full on database xxx&#8217;</p>
<pre class="brush: sql">
DBCC SHRINKFILE(&#039;dbname_log&#039;, 1)
BACKUP LOG dbname WITH TRUNCATE_ONLY DBCC SHRINKFILE(&#039;dbname_log&#039;, 1)
</pre>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/sql-server-truncate-log/' rel='bookmark' title='Permanent Link: SQL Server truncate log'>SQL Server truncate log</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/full-text-reindex-scheduled-job-has-no-steps/' rel='bookmark' title='Permanent Link: Full Text Reindex, scheduled job has no steps!'>Full Text Reindex, scheduled job has no steps!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/grant-execute-permissions-for-all-sprocs-on-sql-2005/' rel='bookmark' title='Permanent Link: Grant Execute Permissions for all sprocs on SQL 2005'>Grant Execute Permissions for all sprocs on SQL 2005</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/clear-down-transaction-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross server queries in SQL Server</title>
		<link>http://www.shawson.co.uk/codeblog/cross-server-queries-in-sql-server/</link>
		<comments>http://www.shawson.co.uk/codeblog/cross-server-queries-in-sql-server/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 09:29:07 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=762</guid>
		<description><![CDATA[Without linking the servers you can do one off queries against another server using the OPENDATASOURCE or OPENROWSET functions.  You will need to first enable &#8220;Ad Hoc Distributed Queries&#8221; as this is disabled by default- this can be achieved using sp_configure (if you&#8217;re logged in as sa)

sp_configure &#039;Ad Hoc Distributed Queries&#039;, 1
reconfigure

Once active you [...]


Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/setting-up-session-state-database-on-sql-server/' rel='bookmark' title='Permanent Link: Setting up session state database on sql server'>Setting up session state database on sql server</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/cross-apply-in-sql/' rel='bookmark' title='Permanent Link: Cross Apply in SQL'>Cross Apply in SQL</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/how-to-run-sql-profiler-against-local-sql-express-instances/' rel='bookmark' title='Permanent Link: How to run SQL Profiler against local SQL Express instances'>How to run SQL Profiler against local SQL Express instances</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>Without linking the servers you can do one off queries against another server using the OPENDATASOURCE or OPENROWSET functions.  You will need to first enable &#8220;Ad Hoc Distributed Queries&#8221; as this is disabled by default- this can be achieved using sp_configure (if you&#8217;re logged in as sa)</p>
<pre class="brush: sql">
sp_configure &#039;Ad Hoc Distributed Queries&#039;, 1
reconfigure
</pre>
<p>Once active you can use the function like this;</p>
<pre class="brush: sql">
SELECT
    *
FROM
    OPENDATASOURCE(&#039;SQLOLEDB&#039;, &#039;Data Source=&lt;servername&gt;;User ID=&lt;user&gt;;Password=&lt;password&gt;&#039;).&lt;dbname&gt;.&lt;dbo&gt;.&lt;tablename&gt;
</pre>
<p>There is also an OPENROWSET function;</p>
<pre class="brush: sql">
SELECT
    source.*
FROM
    OPENROWSET(&#039;SQLOLEDB&#039;, &#039;Data Source=&lt;servername&gt;;User ID=&lt;user&gt;;Password=&lt;password&gt;&#039;, &#039;SELECT * FROM &lt;dbname&gt;.&lt;dbo&gt;.&lt;tablename&gt;&#039;) as source
</pre>
<p>Thanks to Richard who dug this little nugget up from the interwebs.</p>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/setting-up-session-state-database-on-sql-server/' rel='bookmark' title='Permanent Link: Setting up session state database on sql server'>Setting up session state database on sql server</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/cross-apply-in-sql/' rel='bookmark' title='Permanent Link: Cross Apply in SQL'>Cross Apply in SQL</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/how-to-run-sql-profiler-against-local-sql-express-instances/' rel='bookmark' title='Permanent Link: How to run SQL Profiler against local SQL Express instances'>How to run SQL Profiler against local SQL Express instances</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/cross-server-queries-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grant Execute Permissions for all sprocs on SQL 2005</title>
		<link>http://www.shawson.co.uk/codeblog/grant-execute-permissions-for-all-sprocs-on-sql-2005/</link>
		<comments>http://www.shawson.co.uk/codeblog/grant-execute-permissions-for-all-sprocs-on-sql-2005/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 15:37:39 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=759</guid>
		<description><![CDATA[So I did a post for SQL 2000 aaages ago showing how to do this- it&#8217;s a lot easier in SQL 2005 but i always forget the syntax as i rarly have to use it.
Open a new query editor on your selected database server then run this;

use &#60;database_name&#62;;
/* CREATE A NEW ROLE */
CREATE ROLE db_executor

/* [...]


Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/assigning-execute-permissions-to-stored-procedure-in-bulk-on-sql-server-2000/' rel='bookmark' title='Permanent Link: Assigning execute permissions to Stored procedure in bulk on sql server 2000'>Assigning execute permissions to Stored procedure in bulk on sql server 2000</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/how-to-run-sql-profiler-against-local-sql-express-instances/' rel='bookmark' title='Permanent Link: How to run SQL Profiler against local SQL Express instances'>How to run SQL Profiler against local SQL Express instances</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/setting-up-session-state-database-on-sql-server/' rel='bookmark' title='Permanent Link: Setting up session state database on sql server'>Setting up session state database on sql server</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>So I did a post for SQL 2000 aaages ago showing how to do this- it&#8217;s a lot easier in SQL 2005 but i always forget the syntax as i rarly have to use it.</p>
<p>Open a new query editor on your selected database server then run this;</p>
<pre class="brush: sql">
use &lt;database_name&gt;;
/* CREATE A NEW ROLE */
CREATE ROLE db_executor

/* GRANT EXECUTE TO THE ROLE */
GRANT EXECUTE TO db_executor
</pre>
<p>Then right click your database user (under security for the given database) and tick the new db_executor role.  You&#8217;re done!</p>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/assigning-execute-permissions-to-stored-procedure-in-bulk-on-sql-server-2000/' rel='bookmark' title='Permanent Link: Assigning execute permissions to Stored procedure in bulk on sql server 2000'>Assigning execute permissions to Stored procedure in bulk on sql server 2000</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/how-to-run-sql-profiler-against-local-sql-express-instances/' rel='bookmark' title='Permanent Link: How to run SQL Profiler against local SQL Express instances'>How to run SQL Profiler against local SQL Express instances</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/setting-up-session-state-database-on-sql-server/' rel='bookmark' title='Permanent Link: Setting up session state database on sql server'>Setting up session state database on sql server</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/grant-execute-permissions-for-all-sprocs-on-sql-2005/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Running multiple ASP.net membership sites under the same domain</title>
		<link>http://www.shawson.co.uk/codeblog/running-multiple-asp-net-membership-sites-under-the-same-domain/</link>
		<comments>http://www.shawson.co.uk/codeblog/running-multiple-asp-net-membership-sites-under-the-same-domain/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 14:59:25 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=751</guid>
		<description><![CDATA[We have a bunch of seperate microsites hosting book extras content all running in sub domains for a publishers website.  Each site is secured is independantly secured with .net membership.  A colleague of mine (Richard!) noticed after putting up the second site, that logging into one, also gave access to the other.
The fix [...]


Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/asp-net-aspx-pages-posting-back-to-the-wrong-url-when-using-server-rewrite/' rel='bookmark' title='Permanent Link: ASP.net aspx pages posting back to the wrong URL when using Server Rewrite'>ASP.net aspx pages posting back to the wrong URL when using Server Rewrite</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/linq-distinct/' rel='bookmark' title='Permanent Link: Linq Distinct!'>Linq Distinct!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/aspnet-role-membership-providers-under-iis7-doesnt-work/' rel='bookmark' title='Permanent Link: ASP.Net Role &#038; Membership Providers (Under IIS7) &#8211; DOESN&#8217;T Work!'>ASP.Net Role &#038; Membership Providers (Under IIS7) &#8211; DOESN&#8217;T Work!</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>We have a bunch of seperate microsites hosting book extras content all running in sub domains for a publishers website.  Each site is secured is independantly secured with .net membership.  A colleague of mine (Richard!) noticed after putting up the second site, that logging into one, also gave access to the other.</p>
<p>The fix was simple; Because cookies are domain-wide, the first auth cookie was being set, and then picked up by all the other sites on that domain.  The fix, as detailed in the <a href="http://msdn.microsoft.com/en-us/library/ff648341.aspx">Microsoft Patterns and Practices Forms Authentication doc</a>, is to just specify a distinct cookie name per application.</p>
<blockquote><p>Use unique name and path attribute values on the<br />
element as follows.</p>
<pre class="brush: html">
&lt;forms name=&quot;YourAppName&quot;
path=&quot;/FormsAuth&quot; ... /&gt;
</pre>
</blockquote>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/asp-net-aspx-pages-posting-back-to-the-wrong-url-when-using-server-rewrite/' rel='bookmark' title='Permanent Link: ASP.net aspx pages posting back to the wrong URL when using Server Rewrite'>ASP.net aspx pages posting back to the wrong URL when using Server Rewrite</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/linq-distinct/' rel='bookmark' title='Permanent Link: Linq Distinct!'>Linq Distinct!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/aspnet-role-membership-providers-under-iis7-doesnt-work/' rel='bookmark' title='Permanent Link: ASP.Net Role &#038; Membership Providers (Under IIS7) &#8211; DOESN&#8217;T Work!'>ASP.Net Role &#038; Membership Providers (Under IIS7) &#8211; DOESN&#8217;T Work!</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/running-multiple-asp-net-membership-sites-under-the-same-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dummy Image Generator</title>
		<link>http://www.shawson.co.uk/codeblog/dummy-image-generator/</link>
		<comments>http://www.shawson.co.uk/codeblog/dummy-image-generator/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 14:39:57 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=749</guid>
		<description><![CDATA[&#8217;nuff said!  http://dummyimage.com/


Related posts:Machine Key Generator



Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/machine-key-generator/' rel='bookmark' title='Permanent Link: Machine Key Generator'>Machine Key Generator</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>&#8217;nuff said!  <a href="http://dummyimage.com/">http://dummyimage.com/</a></p>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/machine-key-generator/' rel='bookmark' title='Permanent Link: Machine Key Generator'>Machine Key Generator</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/dummy-image-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.net File Uploads with NeatUpload</title>
		<link>http://www.shawson.co.uk/codeblog/asp-net-file-uploads-with-neatupload/</link>
		<comments>http://www.shawson.co.uk/codeblog/asp-net-file-uploads-with-neatupload/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 14:19:30 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[C#.net]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[uploader]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=745</guid>
		<description><![CDATA[File Uploads are a fickle thing, and have been.. well.. always.  ASP.net has it&#8217;s own default max file size, IIS is also put under strain while processing large files and trapping excpetions when file&#8217;s are too large, or providing progress bars during the process is a fiddly process.
I&#8217;ve recently started using NeatUpload which is [...]


Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/my-shiny-new-blog/' rel='bookmark' title='Permanent Link: My shiny new blog'>My shiny new blog</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/runaway-sharepoint-2003-indexing/' rel='bookmark' title='Permanent Link: Runaway Sharepoint 2003 Indexing!'>Runaway Sharepoint 2003 Indexing!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/creating-a-re-usable-shopping-basket-with-generics-in-c-sharp/' rel='bookmark' title='Permanent Link: Creating a re-usable shopping basket with Generics in C#'>Creating a re-usable shopping basket with Generics in C#</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>File Uploads are a fickle thing, and have been.. well.. always.  ASP.net has it&#8217;s own default max file size, IIS is also put under strain while processing large files and trapping excpetions when file&#8217;s are too large, or providing progress bars during the process is a fiddly process.</p>
<p>I&#8217;ve recently started using NeatUpload which is an HttpModule which takes care of uploads, streaming the data straight to storage on the file system, or sql- taking a load off of IIS and also offering progress bars!</p>
<p>It&#8217;s a fairly old project, which has only recently gone up on codeplex- <a href="http://neatupload.codeplex.com/">check it out!</a></p>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/my-shiny-new-blog/' rel='bookmark' title='Permanent Link: My shiny new blog'>My shiny new blog</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/runaway-sharepoint-2003-indexing/' rel='bookmark' title='Permanent Link: Runaway Sharepoint 2003 Indexing!'>Runaway Sharepoint 2003 Indexing!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/creating-a-re-usable-shopping-basket-with-generics-in-c-sharp/' rel='bookmark' title='Permanent Link: Creating a re-usable shopping basket with Generics in C#'>Creating a re-usable shopping basket with Generics in C#</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/asp-net-file-uploads-with-neatupload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8WeekGame &#8211; I Won!</title>
		<link>http://www.shawson.co.uk/codeblog/8weekgame-i-won/</link>
		<comments>http://www.shawson.co.uk/codeblog/8weekgame-i-won/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 15:47:16 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=728</guid>
		<description><![CDATA[Woo hoo!  I won the very first 8weekgame competition with my HTML5/ Javascript rendition of Manic Miner named &#8220;Manic Spaceman&#8221;.  
Hats off to both Martin &#038; Gareth- I think we all did brilliantly to get a game smashed out in 8 weeks with no previous game development experience.  The next competition kicks [...]


Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/speed-up-your-javascript-video/' rel='bookmark' title='Permanent Link: Speed up your JavaScript : Video'>Speed up your JavaScript : Video</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/8-week-game-competition/' rel='bookmark' title='Permanent Link: 8 Week Game Competition'>8 Week Game Competition</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/couple-of-interesting-news-items-today/' rel='bookmark' title='Permanent Link: Couple of interesting news items today'>Couple of interesting news items today</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>Woo hoo!  I won the very first <a href="http://8weekgame.shawson.co.uk/">8weekgame competition</a> with my HTML5/ Javascript rendition of Manic Miner named &#8220;Manic Spaceman&#8221;.  </p>
<p>Hats off to both Martin &#038; Gareth- I think we all did brilliantly to get a game smashed out in 8 weeks with no previous game development experience.  The next competition kicks off in October (the 4th) where I will be joining the other guys to tackle some XNA!  We will be free to produce any game we want this time round!</p>
<p>I&#8217;m on holiday for the next 3 weeks, returning mid-August when I shall complete the <a href="http://www.shawson.co.uk/codeblog/8-week-game-competition/">articles detailing the classes I wrote for Manic Spaceman</a>, just incase anyone else wants to try doing something similar and needs some ideas!</p>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/speed-up-your-javascript-video/' rel='bookmark' title='Permanent Link: Speed up your JavaScript : Video'>Speed up your JavaScript : Video</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/8-week-game-competition/' rel='bookmark' title='Permanent Link: 8 Week Game Competition'>8 Week Game Competition</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/couple-of-interesting-news-items-today/' rel='bookmark' title='Permanent Link: Couple of interesting news items today'>Couple of interesting news items today</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/8weekgame-i-won/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8WeekGame Competition Over &#8211; Vote Now!</title>
		<link>http://www.shawson.co.uk/codeblog/8weekgame-competition-over-vote-now/</link>
		<comments>http://www.shawson.co.uk/codeblog/8weekgame-competition-over-vote-now/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:16:55 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=635</guid>
		<description><![CDATA[The 8 week are over, and each of us has our game up and live for you to try out- pop over here to try them out and vote!


Related posts:8WeekGame &#8211; I Won!
8 Week Game Competition
HTML5 Audio and Video (Media) Tags &#8211; How do you know when the data&#8217;s loaded? And how to play multiple [...]


Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/8weekgame-i-won/' rel='bookmark' title='Permanent Link: 8WeekGame &#8211; I Won!'>8WeekGame &#8211; I Won!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/8-week-game-competition/' rel='bookmark' title='Permanent Link: 8 Week Game Competition'>8 Week Game Competition</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/html5-audio-and-video-media-tags-how-do-you-know-when-the-datas-loaded-and-how-to-play-multiple-instances-of-the-same-sample-at-the-same-time/' rel='bookmark' title='Permanent Link: HTML5 Audio and Video (Media) Tags &#8211; How do you know when the data&#8217;s loaded? And how to play multiple instances of the same sample at the same time'>HTML5 Audio and Video (Media) Tags &#8211; How do you know when the data&#8217;s loaded? And how to play multiple instances of the same sample at the same time</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>The 8 week are over, and each of us has our game up and live for you to try out- pop over <a href="http://8weekgame.shawson.co.uk/?p=147">here to try them out and vote</a>!</p>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/8weekgame-i-won/' rel='bookmark' title='Permanent Link: 8WeekGame &#8211; I Won!'>8WeekGame &#8211; I Won!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/8-week-game-competition/' rel='bookmark' title='Permanent Link: 8 Week Game Competition'>8 Week Game Competition</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/html5-audio-and-video-media-tags-how-do-you-know-when-the-datas-loaded-and-how-to-play-multiple-instances-of-the-same-sample-at-the-same-time/' rel='bookmark' title='Permanent Link: HTML5 Audio and Video (Media) Tags &#8211; How do you know when the data&#8217;s loaded? And how to play multiple instances of the same sample at the same time'>HTML5 Audio and Video (Media) Tags &#8211; How do you know when the data&#8217;s loaded? And how to play multiple instances of the same sample at the same time</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/8weekgame-competition-over-vote-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed up your JavaScript : Video</title>
		<link>http://www.shawson.co.uk/codeblog/speed-up-your-javascript-video/</link>
		<comments>http://www.shawson.co.uk/codeblog/speed-up-your-javascript-video/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 12:05:26 +0000</pubDate>
		<dc:creator>shawson</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.shawson.co.uk/codeblog/?p=632</guid>
		<description><![CDATA[Found a great video today giving JavaScript performance tips while researching last minute omtimisations for my Manic Spaceman game, being launched tommorow at the end of the 8weekgame  competition!  Check the video out here of a talk given by Google employee, Nicholas Zakas.


Related posts:8WeekGame &#8211; I Won!
HTML5 Audio and Video (Media) Tags &#8211; [...]


Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/8weekgame-i-won/' rel='bookmark' title='Permanent Link: 8WeekGame &#8211; I Won!'>8WeekGame &#8211; I Won!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/html5-audio-and-video-media-tags-how-do-you-know-when-the-datas-loaded-and-how-to-play-multiple-instances-of-the-same-sample-at-the-same-time/' rel='bookmark' title='Permanent Link: HTML5 Audio and Video (Media) Tags &#8211; How do you know when the data&#8217;s loaded? And how to play multiple instances of the same sample at the same time'>HTML5 Audio and Video (Media) Tags &#8211; How do you know when the data&#8217;s loaded? And how to play multiple instances of the same sample at the same time</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/8-week-game-competition/' rel='bookmark' title='Permanent Link: 8 Week Game Competition'>8 Week Game Competition</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>Found a great video today giving JavaScript performance tips while researching last minute omtimisations for my Manic Spaceman game, being launched tommorow at the end of the <a href="http://8weekgame.shawson.co.uk">8weekgame </a> competition!  <a href="http://www.youtube.com/watch?v=mHtdZgou0qU">Check the video out here</a> of a talk given by Google employee, Nicholas Zakas.</p>


<p>Related posts:<ul><li><a href='http://www.shawson.co.uk/codeblog/8weekgame-i-won/' rel='bookmark' title='Permanent Link: 8WeekGame &#8211; I Won!'>8WeekGame &#8211; I Won!</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/html5-audio-and-video-media-tags-how-do-you-know-when-the-datas-loaded-and-how-to-play-multiple-instances-of-the-same-sample-at-the-same-time/' rel='bookmark' title='Permanent Link: HTML5 Audio and Video (Media) Tags &#8211; How do you know when the data&#8217;s loaded? And how to play multiple instances of the same sample at the same time'>HTML5 Audio and Video (Media) Tags &#8211; How do you know when the data&#8217;s loaded? And how to play multiple instances of the same sample at the same time</a></li>
<li><a href='http://www.shawson.co.uk/codeblog/8-week-game-competition/' rel='bookmark' title='Permanent Link: 8 Week Game Competition'>8 Week Game Competition</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.shawson.co.uk/codeblog/speed-up-your-javascript-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
