<?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"
	>

<channel>
	<title>Jon Paul Davies</title>
	<atom:link href="http://www.j-dee.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.j-dee.com</link>
	<description>Liverpool ASP.NET, C#, IVR, OOP, Agile and other cool stuff to explore</description>
	<pubDate>Thu, 03 Jul 2008 15:19:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Microsoft Remix UK 08</title>
		<link>http://www.j-dee.com/2008/07/03/microsoft-remix-uk-08/</link>
		<comments>http://www.j-dee.com/2008/07/03/microsoft-remix-uk-08/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 15:19:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ReMixUK08]]></category>

		<guid isPermaLink="false">http://www.j-dee.com/2008/07/03/microsoft-remix-uk-08/</guid>
		<description><![CDATA[ &#34;ReMix UK 08 is a 48 hr conversation; join us from the 18 - 19 September 2008 at the Brighton Centre, Kings Road, Brighton. ReMix UK 08 is all about the &#8216;Next Web&#8217;, what it means today and the potential impact of technologies, tools and techniques for the future. &#34;     [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" alt="remmix08uk" src="http://www.j-dee.com/wp-content/uploads/2008/07/mix08.gif" align="left" border="0" /> &quot;<a href="http://www.microsoft.com/uk/remix08/" target="_blank">ReMix UK 08</a> is a 48 hr conversation; join us from the 18 - 19 September 2008 at the Brighton Centre, Kings Road, Brighton. ReMix UK 08 is all about the &#8216;Next Web&#8217;, what it means today and the potential impact of technologies, tools and techniques for the future. &quot;     </p>
<p>If you want to attend, you better get a hustle on and <a href="http://www.delegate.com/microsoft/remix/2008/display?view=1" target="_blank">register</a> as tickets are selling fast by all accounts. Last years event was fantastic and this time around it&#8217;s set to be bigger and better than ever. <strong>See you there!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/07/03/microsoft-remix-uk-08/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Super Lambda Bananas</title>
		<link>http://www.j-dee.com/2008/06/29/super-lambda-bananas/</link>
		<comments>http://www.j-dee.com/2008/06/29/super-lambda-bananas/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 08:30:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://www.j-dee.com/2008/06/29/super-lambda-bananas/</guid>
		<description><![CDATA[ I&#8217;m a big generic collection user and I can&#8217;t express how much the C# 3 Linq expressions have improved my coding experience, especially in the form of lambda syntax. I used to spend a lot of time trying to bend predicates to my will in order to pull the good stuff out of my [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.j-dee.com/wp-content/uploads/2008/06/302279198-06564a7141-m.jpg" border="0" alt="302279198_06564a7141_m" width="106" height="80" align="left" /> I&#8217;m a big generic collection user and I can&#8217;t express how much the C# 3 Linq expressions have improved my coding experience, especially in the form of lambda syntax. I used to spend a lot of time trying to bend predicates to my will in order to pull the good stuff out of my collections, and some of the new expressions make this a thing of the past.</p>
<p>Some of the expressions do need a bit of extra thought to understand what is going on though. For example, what is the difference between .Where, .TakeWhile and .SkipWhile? They all return a subset of your collection, but what exactly do you get? Let&#8217;s investigate!</p>
<p>So say we start with this:</p>
<pre class="csharpcode"><span class="kwrd">string</span>[] names = {<span class="str">&#8220;dave&#8221;</span>, <span class="str">&#8220;dee&#8221;</span>, <span class="str">&#8220;dozy&#8221;</span>, <span class="str">&#8220;beaky&#8221;</span>,
<span class="str">&#8220;mick&#8221;</span>, <span class="str">&#8220;titch&#8221;</span>, <span class="str">&#8220;darius&#8221;</span>};

names.Where(name =&gt; name.StartsWith(<span class="str">&#8220;d&#8221;</span>));</pre>
<p> .Where will return &#8220;dave&#8221;, &#8220;dee&#8221;, &#8220;dozy&#8221; and &#8220;darius&#8221;, matching everything that starts with &#8216;d&#8217;. TakeWhile and SkipWhile are different though, working on your sequence <strong>only until a specified condition is deemed false</strong>. So&#8230;..</p>
<pre class="csharpcode">names.TakeWhile(name =&gt; name.StartsWith(<span class="str">&#8220;d&#8221;</span>));</pre>
<p>will return &#8220;dave&#8221;, &#8220;dee&#8221; and &#8220;dozy&#8221;: the search is called off when StartsWith(&#8221;d&#8221;) becomes false. Conversely</p>
<pre class="csharpcode">names.SkipWhile(name =&gt; name.StartsWith(<span class="str">&#8220;d&#8221;</span>));</pre>
<p> </p>
<p>will get you &#8220;beaky&#8221;, &#8220;mick&#8221;, &#8220;titch&#8221; and &#8220;darius&#8221;, skipping the items in the sequence until StartsWith(&#8221;d&#8221;) becomes false.</p>
<p>Try doing that with predicates!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/06/29/super-lambda-bananas/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Entity Framework Under Fire</title>
		<link>http://www.j-dee.com/2008/06/27/entity-framework-under-fire/</link>
		<comments>http://www.j-dee.com/2008/06/27/entity-framework-under-fire/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 12:24:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[EntityFramework]]></category>

		<guid isPermaLink="false">http://www.j-dee.com/2008/06/27/entity-framework-under-fire/</guid>
		<description><![CDATA[If like me you spend some of your spare time keeping tabs on what is going on in the .Net blogosphere you wont have failed to notice the current drama surrounding the new Microsoft Entity Framework.
To cut a long story short: a bunch of know-it-alls have got their knickers in a twist over some of [...]]]></description>
			<content:encoded><![CDATA[<p>If like me you spend some of your spare time keeping tabs on what is going on in the .Net blogosphere you wont have failed to notice the current drama surrounding the new Microsoft Entity Framework.</p>
<p>To cut a long story short: a bunch of know-it-alls have got their <a href="http://efvote.wufoo.com/forms/ado-net-entity-framework-vote-of-no-confidence/" target="_blank">knickers in a twist</a> over some of the features excluded from version 1 ( VERSION 1!!!) of the framework. I think, knowing the nature in which Microsoft evolves their products nowadays ( look at how different the Ajax Framework is now compared to the first release ) this really is a storm in a teacup. The most common sense, pragmatic, real world view of the state of play is <a href="http://neverindoubtnet.blogspot.com/2008/06/rejoinder-1-to-of-no-confidence-in.html" target="_blank">this one by Ward Bell</a>. For me, he hits the nail on the head.</p>
<p>In my opinion there is a real attitude problem on display from the petitioners, who I suspect have a vested interest in seeing EF fail or look half thought out. I&#8217;ve had a long term disregard for 99% of ORM tool vendors ( the excellent Subsonic framework excluded ) because of the <a href="http://forums.asp.net/p/897690/971921.aspx" target="_blank">&#8216;I-know-best-don&#8217;t-even-try-to-question-or-understand&#8217;</a> tactics they use to retain a foothold in the marketplace.</p>
<p>I&#8217;m a big fan of this quote from the highly recommended book - <a href="http://www.amazon.com/Pragmatic-Programmer-Journeyman-Master/dp/020161622X" target="_blank">The Pragmatic Programmer by Andrew Hunt &amp; David Thomas</a>:</p>
<p><strong>&#8220;Critically Analyse What You Read and Hear</strong>. Don&#8217;t be swayed by vendors, media hype, or dogma. Analyse information in terms of you and your project.&#8221;</p>
<p>Bottom line: Make your own mind up about Entity Framework, about if it&#8217;s right for you and your projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/06/27/entity-framework-under-fire/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SQL Injection - Script kid method du jour</title>
		<link>http://www.j-dee.com/2008/06/25/sql-injection-script-kid-method-du-jour/</link>
		<comments>http://www.j-dee.com/2008/06/25/sql-injection-script-kid-method-du-jour/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 16:18:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.j-dee.com/2008/06/25/sql-injection-script-kid-method-du-jour/</guid>
		<description><![CDATA[SQL Injection is back on the rise again it seems. Remember kids, make sure your forms are well scrubbed before doing anything with user data.

]]></description>
			<content:encoded><![CDATA[<p>SQL Injection is <a rel="nofollow" href="http://www.theregister.co.uk/2008/06/25/sql_injection_attacks/" target="_blank">back on the rise again</a> it seems. Remember kids, make sure your forms are well scrubbed before doing <strong><em>anything</em></strong> with user data.</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.j-dee.com/wp-content/uploads/2008/06/exploits-of-a-mom.jpg" border="0" alt="sql" width="520" height="160" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/06/25/sql-injection-script-kid-method-du-jour/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ADO.NET Entity Framework Quickstart Tutorial</title>
		<link>http://www.j-dee.com/2008/06/03/adonet-entity-framework-quickstart-tutorial/</link>
		<comments>http://www.j-dee.com/2008/06/03/adonet-entity-framework-quickstart-tutorial/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 16:29:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[C#]]></category>

		<category><![CDATA[EntityFramework]]></category>

		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://www.j-dee.com/?p=104</guid>
		<description><![CDATA[The ADO.NET Entity framework received another update last week as part of the Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta, so to coincide with this I give you a quick run through to get you started. Being honest, if you have used an OR mapper in the past this will be [...]]]></description>
			<content:encoded><![CDATA[<p>The ADO.NET Entity framework received another update last week as part of the <a href="http://msdn.microsoft.com/en-us/vstudio/products/cc533447.aspx" target="_blank">Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta</a>, so to coincide with this I give you a quick run through to get you started. Being honest, if you have used an OR mapper in the past this will be familiar territory. If not, this new implementation is a good place to start.</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.j-dee.com/wp-content/uploads/2008/06/screenshot1.jpg" border="0" alt="screenshot1" align="left" /> So to begin, create a new ASP.NET website, Add New item, and then choose ADO.NET Entity Data Model. Name it <strong>EntityModel.edmx</strong> and click <strong>Add</strong> to create a new model.</p>
<p>The Entity Data Model Wizard will pop up and give you a chance to configure your new model. For the purposes of this walk through, choose <strong>Generate from database</strong> and click <strong>Next</strong>.</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.j-dee.com/wp-content/uploads/2008/06/screenshot4.jpg" border="0" alt="screenshot4" align="right" /> Set up your data connection, I won&#8217;t go into this as it&#8217;s simple enough to figure out if you&#8217;ve never done it before. Click the checkbox to save entity connection settings into your web.config and name it <strong>MyEntities.</strong></p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.j-dee.com/wp-content/uploads/2008/06/screenshot6.jpg" border="0" alt="screenshot6" width="167" height="221" align="left" />The wizard will then tootle off and retrieve the names of all the tables, views and stored procedures in your database. Choose a table ( I&#8217;ve chosen a table from my DB called &#8216;Log&#8217; ) and name the Model Namespace <strong>MyModel</strong>.</p>
<p>Click <strong>Finish</strong> and the designer for your model will open. As a side note have a look at the Model Browser on the right hand side - it looks a bit &#8216;rendered&#8217; for want of a better description, as though it&#8217;s drawn via GDI+ compared to the Solution Explorer&#8230;.strange!</p>
<p>Now add a new web page and go into the code behind to start the real work. It&#8217;s just a simple bit of code to CRUD the Log entities in my database.</p>
<p><span style="color: #008000;"><br />
// instantiate a new Log entity<br />
</span>MyModel.<span style="color: #2b91af;">Log </span>log = <span style="color: #0000ff;">new </span>MyModel.<span style="color: #2b91af;">Log</span>();</p>
<p><span style="color: #008000;">// populate it&#8217;s properties<br />
</span>log.Date = <span style="color: #2b91af;">DateTime</span>.Now;<br />
log.Exception = <span style="color: #a31515;">&#8220;Test Exception&#8221;</span>;<br />
log.Level = <span style="color: #a31515;">&#8220;Test Level&#8221;</span>;<br />
log.Logger = <span style="color: #a31515;">&#8220;Test Logger&#8221;</span>;<br />
log.Message = <span style="color: #a31515;">&#8220;Test Message&#8221;</span>;<br />
log.Thread = <span style="color: #a31515;">&#8220;Test Thread&#8221;</span>;</p>
<p><span style="color: #008000;">//instantiate the entity &#8216;context&#8217; - the object used<br />
//as a &#8216;gateway&#8217; to the DB<br />
</span>MyModel.MyEntities entities = <span style="color: #0000ff;">new </span>MyModel.MyEntities();</p>
<p><span style="color: #008000;">// Save the new log entity to the DB<br />
</span>entities.AddToLog(log);<br />
entities.SaveChanges();</p>
<p><span style="color: #008000;">// Load it back via a little LINQ query<br />
// ( funny how you must use .First instead of .Single )<br />
</span>MyModel.<span style="color: #2b91af;">Log </span>loadedLog = entities.Log .Where(ent =&gt; ent.Level == <span style="color: #a31515;">&#8220;Test Level&#8221;</span>).First();</p>
<p><span style="color: #008000;">// make a change and save it back to the DB<br />
</span>loadedLog.Message = <span style="color: #a31515;">&#8220;Message has changed!&#8221;</span>;<br />
entities.SaveChanges();</p>
<p><span style="color: #008000;">// Finally delete the object from the DB<br />
</span>entities.DeleteObject(loadedLog);<br />
entities.SaveChanges();</p>
<p><strong>Notice how you have to call .SaveChanges() to persist back to the DB. That&#8217;s it! A super fast run through of CRUD with the ADO.NET Entity Framework! Enjoy!</strong> <br/> <br/><a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.j-dee.com%2f2008%2f06%2f03%2fadonet-entity-framework-quickstart-tutorial%2f"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.j-dee.com%2f2008%2f06%2f03%2fadonet-entity-framework-quickstart-tutorial%2f" border="0" alt="kick it on DotNetKicks.com" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/06/03/adonet-entity-framework-quickstart-tutorial/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Come and work for Qire in Liverpool</title>
		<link>http://www.j-dee.com/2008/06/03/come-and-work-for-qire-in-liverpool/</link>
		<comments>http://www.j-dee.com/2008/06/03/come-and-work-for-qire-in-liverpool/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 08:43:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.j-dee.com/?p=102</guid>
		<description><![CDATA[Fancy coming to work in Liverpool - European Capitol of Culture 2008 - to build the next generation of voice driven applications?
Qire is the acknowledged leader in intelligent voice messaging systems with many top notch public and private sector clients.
We create applications that manage security, business process and call centre automation via the power of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.qire.co.uk" target="_blank"><img class="alignleft size-medium wp-image-103" title="Qire" src="http://www.j-dee.com/wp-content/uploads/2008/06/logo2.jpg" alt="Qire Logo" width="287" height="154" /></a>Fancy coming to work in Liverpool - European Capitol of Culture 2008 - to build the next generation of voice driven applications?<br />
<a href="http://www.qire.co.uk" target="_blank">Qire</a> is the acknowledged leader in intelligent voice messaging systems with many top notch public and private sector clients.<br />
We create applications that manage security, business process and call centre automation via the power of ASP.NET and C# ( plus some other exciting technologies that you can learn on the job ). We are looking for a permanent mid/high level developer to join our small team of happy coders to help shape the future of telephony. You will be adept at asp.net c# sql, have good soft skills and want to work in a friendly and creative coding environment. If you are interested, send me note ( or even better a link to your CV) via the contact form on this site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/06/03/come-and-work-for-qire-in-liverpool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blabnote.com - Vocal Social Network</title>
		<link>http://www.j-dee.com/2008/05/16/101/</link>
		<comments>http://www.j-dee.com/2008/05/16/101/#comments</comments>
		<pubDate>Fri, 16 May 2008 15:35:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blabnote]]></category>

		<category><![CDATA[Telecommunications]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.j-dee.com/?p=101</guid>
		<description><![CDATA[
I&#8217;ve got 5 invites to the brand new voice powered social network Blabnote to give away. This new application, currently in private beta, promises to give users access to advanced communication tools, ad-hoc creation of contact conference groups and industrial strength feature rich voice mail and messaging. To win an invite, drop me an email [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blabnote.com"><img class="alignnone size-full wp-image-100" title="blabnote" src="http://www.j-dee.com/wp-content/uploads/2008/05/moo2.jpg" alt="" width="515" height="223" /></a><br />
I&#8217;ve got 5 invites to the brand new voice powered social network <a href="http://www.blabnote.com/" target="_blank"><span style="color: #006666;">Blabnote</span></a> to give away. This new application, currently in private beta, promises to give users access to advanced communication tools, ad-hoc creation of contact conference groups and industrial strength feature rich voice mail and messaging. To win an invite, drop me an email and the first 5 to land will get one.</p>
<p><strong>Edit: Too late! All gone! Leave a comment and i&#8217;ll get back to you if I get any more invites to distribute.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/05/16/101/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thinking Digital: 21-23 May 2008</title>
		<link>http://www.j-dee.com/2008/05/15/thinking-digital-21-23-may-2008/</link>
		<comments>http://www.j-dee.com/2008/05/15/thinking-digital-21-23-may-2008/#comments</comments>
		<pubDate>Thu, 15 May 2008 20:59:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Mesh]]></category>

		<category><![CDATA[Telecommunications]]></category>

		<category><![CDATA[VOIP]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.j-dee.com/2008/05/15/thinking-digital-21-23-may-2008/</guid>
		<description><![CDATA[ I&#8217;m off to the Thinking Digital conference at The Sage Gateshead this time next week. Billed as an &#8216;event where outstanding individuals gather to take part in an exclusive conversation about technology, ideas and our future&#8217; it&#8217;s a great chance to see some of the best speakers the planet has to offer in action. [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="85" alt="thinking digital" src="http://www.j-dee.com/wp-content/uploads/2008/05/img-108-1200496159-1-1-0-scaled.jpg" width="170" align="left" border="0" /> I&#8217;m off to the <a href="http://thinkingdigital.co.uk" target="_blank">Thinking Digital</a> conference at The Sage Gateshead this time next week. Billed as an &#8216;event where outstanding individuals gather to take part in an exclusive conversation about technology, ideas and our future&#8217; it&#8217;s a great chance to see some of the best speakers the planet has to offer in action. Highlights on offer include:</p>
<p><a href="http://www.thinkingdigital.co.uk/speakers/speaker_profile.php?id=6">Steve Clayton</a>, Microsoft&#8217;s Software plus Services Lead and all round top bloke, demonstrating some of the coolest new technologies to come out of Redmond, including what&#8217;s expected to be a first UK demo of <a href="http://dev.live.com/blogs/devlive/archive/2008/04/22/279.aspx">Live Mesh</a>.</p>
<p>The Fake Steve Jobs (a.k.a. Dan Lyons, Senior Editor at Forbes), author of Internet sensation <a href="http://fakesteve.blogspot.com/">The Secret Diary of Steve Jobs</a>, giving his unique, hilarious take on the world of technology, the people who drive it, and the future of media.</p>
<p><a href="http://www.thinkingdigital.co.uk/speakers/speaker_profile.php?id=102">Greg Dyke</a>, Chairman of the British Film being interviewed live on stage by Andy Allan, the former CEO of Carlton Television, about management and leadership challenges, as well as his views on the future of media.</p>
<p>World-renowned inventor and futurist <a href="http://www.thinkingdigital.co.uk/speakers/speaker_profile.php?id=101">Ray Kurzweil</a> speaking via stunning <a href="http://www.youtube.com/watch?v=SaRrDYshmVE">Teleportec</a> technology about his groundbreaking work on The Singularity and the point at which computer intelligence will surpass our own, in every form.     </p>
<p><strong>Hopefully it should be clear to you that with such a lineup set to appear, I&#8217;m more than a little excited to be one of the lucky 400 who gets to attend!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/05/15/thinking-digital-21-23-may-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mosso Pricing Update - Compute Cycles</title>
		<link>http://www.j-dee.com/2008/05/15/mosso-pricing-update-compute-cycles/</link>
		<comments>http://www.j-dee.com/2008/05/15/mosso-pricing-update-compute-cycles/#comments</comments>
		<pubDate>Thu, 15 May 2008 19:57:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Cloud]]></category>

		<guid isPermaLink="false">http://www.j-dee.com/2008/05/15/mosso-pricing-update-compute-cycles/</guid>
		<description><![CDATA[A couple of months ago, Mosso the cloud based hosting provider introduced a change to their billing model that had existing users up in arms. The change that caused all the concern was a move to bill users partly on the number of requests that hosted sites incurred. If your sites clocked over 3 million [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of months ago, <a href="http://www.mosso.com" target="_blank">Mosso</a> the cloud based hosting provider introduced a change to their billing model that had existing users up in arms. The change that caused all the concern was a move to bill users partly on the number of requests that hosted sites incurred. If your sites clocked over 3 million requests in a month, you would be billed at quite a hefty rate for the number of requests over this limit. This site alone would burn 3 million requests easily given the amount of traffic I get: It only amounts to about 70000 unique visits per month.</p>
<p>Well the latest news is that Mosso appear to have been listening to users and revised the strategy yet again, to a metric that will be based on the concept of &#8216;compute cycles&#8217;. Pricing and the amount of cycles you get in your package has not been released yet but obviously users are keen to see if Mosso still provides the value for money that was originally apparent.</p>
<p>The fact is that with new technology models, new pricing models must follow: it remains to be seen if new pricing models build successful sustainable businesses.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/05/15/mosso-pricing-update-compute-cycles/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mosso</title>
		<link>http://www.j-dee.com/2008/05/01/mosso/</link>
		<comments>http://www.j-dee.com/2008/05/01/mosso/#comments</comments>
		<pubDate>Thu, 01 May 2008 20:52:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Cloud]]></category>

		<guid isPermaLink="false">http://www.j-dee.com.php5-7.websitetestlink.com/?p=90</guid>
		<description><![CDATA[Given my current obsession with all things cloud bound - including Live Mesh and my employer Qire ( the world leader in cloud based intelligent telecoms ) i&#8217;ve upped sticks from my current hosting provider and decided to give Mosso a whirl.
Only time will tell if it will work out for me, given the new [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="FLOAT: left" src="http://www.j-dee.com.php5-7.websitetestlink.com/wp-content/uploads/2008/05/mosso_logo.png" alt="mosso" width="179" height="59" />Given my current obsession with all things cloud bound - including Live Mesh and my employer <a href="http://www.qire.co.uk" target="_blank">Qire</a> ( the world leader in cloud based intelligent telecoms ) i&#8217;ve upped sticks from my current hosting provider and decided to give <a href="http://www.mosso.com" target="_blank">Mosso</a> a whirl.</p>
<p>Only time will tell if it will work out for me, given the new 3M request policy.</p>
<p>So anyway, the point being, if you see anything broken on the site, leave a comment or drop me a line. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-dee.com/2008/05/01/mosso/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
