<?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>The spirit sustains the stone</title>
	<atom:link href="http://www.darklump.co.uk/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.darklump.co.uk/blog</link>
	<description></description>
	<lastBuildDate>Sun, 13 Nov 2011 15:18:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Code Snippet &#8211; using as3Signals to delay function call by a frame</title>
		<link>http://www.darklump.co.uk/blog/?p=341&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=code-snippet-using-as3signals-to-delay-function-call-by-a-frame</link>
		<comments>http://www.darklump.co.uk/blog/?p=341#comments</comments>
		<pubDate>Thu, 20 May 2010 19:12:54 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=341</guid>
		<description><![CDATA[Sometimes there’s a need to delay a function call by a frame (normally to insure a rendering phase has been completed). Easily done with Signals: import org.osflash.signals.natives.NativeSignal; var delayFrameSignal:NativeSignal = new NativeSignal(this, Event.ENTER_FRAME, Event); delayFrameSignal.addOnce(delayFrameCall); function delayFrameCall(e:Event):void { trace("called"); }]]></description>
			<content:encoded><![CDATA[<p>Sometimes there’s a need to delay a function call by a frame (normally to insure a rendering phase has been completed). Easily done with Signals:</p>
<p> <code><br />
import org.osflash.signals.natives.NativeSignal;</p>
<p>var delayFrameSignal:NativeSignal = new NativeSignal(this, Event.ENTER_FRAME, Event);</p>
<p>delayFrameSignal.addOnce(delayFrameCall);</p>
<p>function delayFrameCall(e:Event):void<br />
{<br />
      trace("called");<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=341</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FCSS &#8211; Loading/merging external css files and loading external fonts (with source)</title>
		<link>http://www.darklump.co.uk/blog/?p=329&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fcss-loadingmerging-external-css-files-and-loading-external-fonts-with-source</link>
		<comments>http://www.darklump.co.uk/blog/?p=329#comments</comments>
		<pubDate>Thu, 20 May 2010 18:35:53 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=329</guid>
		<description><![CDATA[Here is a proof of concept for using FCSS to load and merge css files externally for multilingual support. It could easily be integrated into a MVC(S) application but unfortunately I can&#8217;t share that code at this time. If you haven&#8217;t used FCSS take a look as it has some really handy features http://fcss.flashartofwar.com/. The [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a proof of concept for using FCSS to load and merge css files externally for multilingual support. It could easily be integrated into a MVC(S) application but unfortunately I can&#8217;t share that code at this time. If you haven&#8217;t used FCSS take a look as it has some really handy features <a href="http://fcss.flashartofwar.com/">http://fcss.flashartofwar.com/</a>. The demo may not look like much but don&#8217;t let that put you off how it can be used.</p>
<p>The basic process:</p>
<p>1.       Load a default css file<br />
2.       Load a locale specific css file (could come from a flashVar or configuration setting)<br />
3.       Merger the 2 css files (FCSS handles this)<br />
4.       Get a list of used fontNames  (with an optional rule to only return ones that have embedFonts:true)<br />
5.       Load font swfs ( this could easily be enhanced to work with a fontmapping configuration)<br />
6.       Use FCSS&#8217;s API for getting CSS textFormatting into a TextField (you could extend TextField to CSSTextField or the likes for real world applications)<br />
7. Optionally use  the css to set custom properties to manipulate positioning/layout of assets etc</p>
<p>Known issues:</p>
<p>·         The CSS for fonts can only be; font, fontFace or font-face (FCSS hasn&#8217;t implemented font-family yet)<br />
·         The value of the font must not have quote &#8220;|&#8217; around it i.e These will NOT work; font:”Arial”, font:&#8217;Arial&#8217;. This WILL work font:Arial  (Need to log a bug with FCSS on this one)  </p>
<p>Demo:<br />
<a href="http://www.darklump.co.uk/experiments/fcss/loading-and-merging/">http://www.darklump.co.uk/experiments/fcss/loading-and-merging/</a></p>
<p>Source: (flash builder project)<br />
<a href="http://www.darklump.co.uk/experiments/fcss/loading-and-merging/srcview/">http://www.darklump.co.uk/experiments/fcss/loading-and-merging/srcview/</a></p>
<p>Happy Days&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=329</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ant Build scripts &#8211; java.lang.OutOfMemoryError</title>
		<link>http://www.darklump.co.uk/blog/?p=312&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ant-build-scripts-javalangoutofmemoryerror</link>
		<comments>http://www.darklump.co.uk/blog/?p=312#comments</comments>
		<pubDate>Mon, 14 Sep 2009 09:26:40 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=312</guid>
		<description><![CDATA[I seem to find getting a &#8216;java.lang.OutOfMemoryError&#8217; a fairly common occurance when using ANT to build my flash projects ;( There&#8217;s not much docmentations out there and none of the solutions I found on the web fixed the issue for me ;( the code example below did&#8230; &#60;!-- IMPORTANT added folk='true' to help avoid java.lang.OutOfMemoryError [...]]]></description>
			<content:encoded><![CDATA[<p>I seem to find getting a &#8216;java.lang.OutOfMemoryError&#8217; a fairly common occurance when using ANT to build my flash projects ;( There&#8217;s not much docmentations out there and none of the solutions I found on the web fixed the issue for me ;( the code example below did&#8230;</p>
<p><code><br />
<span style="color: #999999;">&lt;!-- IMPORTANT added folk='true' to help avoid java.lang.OutOfMemoryError --&gt;</span><br />
&lt;mxmlc file="${module.class}"<br />
output="${module.target}"<br />
keep-generated-actionscript="${module.generateActionscript}"<br />
debug="${module.debug}"<br />
actionscript-file-encoding="UTF-8"<br />
optimize="true"<br />
<span style="color: #ff0000;">fork="true"</span><br />
compiler.show-binding-warnings="false" incremental="false" strict="true" headless-server="${flex.compile.headlessServer}"&gt;<br />
<span style="color: #999999;">&lt;!-- IMPORTANT we need to give process more memory to avoid java.lang.OutOfMemoryError    --&gt;</span><br />
<span style="color: #ff0000;">&lt;jvmarg line="-Xms512m -Xmx700m -XX:MaxPermSize=700m -XX:PermSize=512m" /&gt;</span><br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=312</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Twitter</title>
		<link>http://www.darklump.co.uk/blog/?p=311&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=twitter</link>
		<comments>http://www.darklump.co.uk/blog/?p=311#comments</comments>
		<pubDate>Thu, 03 Sep 2009 19:46:57 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=311</guid>
		<description><![CDATA[Seeing as I never seem to find the time to write decent blog posts at the moment anyone who&#8217;s interested can follow me on twitter http://twitter.com/pddykn Blogged with the Flock Browser]]></description>
			<content:encoded><![CDATA[<p>Seeing as I never seem to find the time to write decent blog posts at the moment anyone who&#8217;s interested can follow me on twitter <a href="http://twitter.com/pddykn">http://twitter.com/pddykn</a></p>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=311</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bit Masking 600% faster than modulus operator</title>
		<link>http://www.darklump.co.uk/blog/?p=295&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bit-masking-600-faster-than-modulus-operator</link>
		<comments>http://www.darklump.co.uk/blog/?p=295#comments</comments>
		<pubDate>Wed, 10 Jun 2009 09:12:20 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=295</guid>
		<description><![CDATA[Nuget of wisdom learned today &#8211; according to Lee Brimelow using Bit Masking to find odd/even numbers is 600% faster than modulus operator! it&#8217;s a pretty common task to need this when working with lists so every other row can have a different style. Bit Masking for &#40;var i:uint=0; i&#60;100; i++&#41; &#123; if&#40;i &#38; 1&#41; [...]]]></description>
			<content:encoded><![CDATA[<p>Nuget of wisdom learned today &#8211; according to <a href="http://www.theflashblog.com/bytearrays/">Lee Brimelow</a> using Bit Masking to find odd/even numbers is 600% faster than modulus operator! it&#8217;s a pretty common task to need this when working with lists so every other row can have a different style.</p>
<p>Bit Masking<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #b1b100;">for</span> <span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">var</span> i:uint=<span style="color: #cc66cc;">0</span>; i<span style="color: #66cc66;">&lt;</span><span style="color: #cc66cc;">100</span>; i++<span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
   <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>i <span style="color: #66cc66;">&amp;</span> <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>
   <span style="color: #66cc66;">&#123;</span>
      row.<span style="color: #0066CC;">color</span> = 0xFF0000; <span style="color: #808080; font-style: italic;">// i is odd</span>
   <span style="color: #66cc66;">&#125;</span>
   <span style="color: #b1b100;">else</span>
   <span style="color: #66cc66;">&#123;</span>
      row.<span style="color: #0066CC;">color</span> = 0x000000; <span style="color: #808080; font-style: italic;">// i is even</span>
   <span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p></code></p>
<p>Modulus Operator:<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #b1b100;">for</span> <span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">var</span> i:uint=<span style="color: #cc66cc;">0</span>; i<span style="color: #66cc66;">&lt;</span><span style="color: #cc66cc;">100</span>; i++<span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
   <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>i <span style="color: #66cc66;">%</span> <span style="color: #cc66cc;">2</span> == <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span>
   <span style="color: #66cc66;">&#123;</span>
      row.<span style="color: #0066CC;">color</span> = 0xFF0000; <span style="color: #808080; font-style: italic;">// i is even</span>
   <span style="color: #66cc66;">&#125;</span>
   <span style="color: #b1b100;">else</span>
   <span style="color: #66cc66;">&#123;</span>
      row.<span style="color: #0066CC;">color</span> = 0x000000; <span style="color: #808080; font-style: italic;">// i is odd</span>
   <span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p></code></p>
<p>Thanks Lee ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=295</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to resist Flex ListBase components scrolling on mouseWheel if html page also scrolls</title>
		<link>http://www.darklump.co.uk/blog/?p=277&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-resist-flex-listbase-components-scrolling-on-mousewheel-if-html-page-also-scrolls</link>
		<comments>http://www.darklump.co.uk/blog/?p=277#comments</comments>
		<pubDate>Thu, 14 May 2009 16:42:30 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=277</guid>
		<description><![CDATA[Senario: A Flex app is part of an html page that has a scrollBar. The Mouse is over a List component and the mouseWheel is used,  browsers (PC firefox) will sometimes scroll both the html page and the List. As far as I know there isn&#8217;t any easy way to disable Flex ListBase Classes interacting [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Senario:</strong></p>
<p>A Flex app is part of an html page that has a scrollBar. The Mouse is over a List component and the mouseWheel is used,  browsers (PC firefox) will sometimes scroll both the html page and the List. As far as I know there isn&#8217;t any easy way to disable Flex ListBase Classes interacting with mouseWheel? I&#8217;ve seen a few posts on forums asking how to overcome this problem.</p>
<p><strong>A Solution:</strong></p>
<p>For anyone that wants a fix here you go (click Button under List to change options):</p>
<p><a href="http://www.darklump.co.uk/examples/flex/3/flash_and_browser_double_scroll/" target="_blank">http://www.darklump.co.uk/examples/flex/3/flash_and_browser_double_scroll/</a></p>
<p>(right click for source)</p>
<p>hope it helps, anyone got a better way?&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=277</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>From Flex app to realworld prototypes with Nokia headset comp</title>
		<link>http://www.darklump.co.uk/blog/?p=265&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=from-flex-app-to-realworld-prototypes-with-nokia-headset-comp</link>
		<comments>http://www.darklump.co.uk/blog/?p=265#comments</comments>
		<pubDate>Tue, 07 Apr 2009 18:26:42 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=265</guid>
		<description><![CDATA[Last year I helped built a flex site for a Nokia headset design competition. It was a great success with 10 times more entrance that forecast (hence the gallery navigation needing a bit of a overhaul). The winning designs where created last month and they look amazing. It&#8217;s wonderful to see designs come to life. [...]]]></description>
			<content:encoded><![CDATA[<p>Last year I helped built a flex site for a <a href="http://www.nokiamaheadsetdesign.com/" target="_blank">Nokia headset design competition</a>. It was a great success with 10 times more entrance that forecast (hence the gallery navigation needing a bit of a overhaul). The winning designs where created last month and they look amazing. It&#8217;s wonderful to see designs come to life. There were some really impressive submissions. more images &amp; details here:</p>
<p><a href="http://www.creativereview.co.uk/crblog/nokia-headset-comp-winners/" target="_blank">http://www.creativereview.co.uk/crblog/nokia-headset-comp-winners/</a></p>
<p>The making of&#8230;</p>
<p><a href="http://www.thrillerheadphones.blogspot.com/" target="_blank">http://www.thrillerheadphones.blogspot.com/</a></p>
<p><img class="alignnone size-thumbnail wp-image-270" title="nokia5-500x333" src="http://www.darklump.co.uk/blog/wp-content/uploads/2009/04/nokia5-500x333-150x150.jpg" alt="nokia5-500x333" width="150" height="150" /><img class="alignnone size-thumbnail wp-image-267" title="johnnylighthands1" src="http://www.darklump.co.uk/blog/wp-content/uploads/2009/04/johnnylighthands1-150x150.jpg" alt="johnnylighthands1" width="150" height="150" /><img class="alignnone size-thumbnail wp-image-266" title="nokia4" src="http://www.darklump.co.uk/blog/wp-content/uploads/2009/04/nokia4-150x150.jpg" alt="nokia4" width="150" height="150" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=265</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Away3D &#8211; Horizontal Spiral navigation (with source)</title>
		<link>http://www.darklump.co.uk/blog/?p=246&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=away3d-horizontal-spiral-navigation-with-source</link>
		<comments>http://www.darklump.co.uk/blog/?p=246#comments</comments>
		<pubDate>Mon, 16 Mar 2009 14:07:09 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=246</guid>
		<description><![CDATA[Last November I had the pleasure of attending a great 2 day course on Away3D. Rob Bateman, who is a great teacher, helped explain tons about 3D development in flash. I&#8217;d highly recommend doing a course if you get the chance! Anyway, after the course I mocked up the below as a test. The codes [...]]]></description>
			<content:encoded><![CDATA[<p>Last November I had the pleasure of attending a great 2 day course on <a href="http://away3d.com/">Away3D</a>. <a href="http://www.infiniteturtles.co.uk/blog/">Rob Bateman</a>, who is a great teacher, helped explain tons about 3D development in flash.  I&#8217;d highly recommend doing a course if you get the chance! Anyway, after the course I mocked up the below as a test. The codes been sitting around gathering dust so without further ado:</p>
<p>Demo:<br />
<a href="http://www.darklump.co.uk/experiments/away3d/spiral-navigation/">http://www.darklump.co.uk/experiments/away3d/spiral-navigation/</a></p>
<p>Source: (you&#8217;ll prob need to compile it in flex builder)<br />
<a href="http://www.darklump.co.uk/experiments/away3d/spiral-navigation/Spiral3D.zip">http://www.darklump.co.uk/experiments/away3d/spiral-navigation/Spiral3D.zip</a></p>
<p><a href="http://www.darklump.co.uk/experiments/away3d/spiral-navigation/"><img src="http://www.darklump.co.uk/blog/wp-content/uploads/2009/03/spiral3d.jpg" alt="spiral3d" title="spiral3d" width="498" height="374" class="alignnone size-full wp-image-250" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=246</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Quest to extradite harmless hacker, Gary McKinnon</title>
		<link>http://www.darklump.co.uk/blog/?p=218&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=quest-to-extradite-harmless-hacker-gary-mckinnon</link>
		<comments>http://www.darklump.co.uk/blog/?p=218#comments</comments>
		<pubDate>Wed, 28 Jan 2009 12:33:27 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=218</guid>
		<description><![CDATA[I&#8217;ve been following this case since the beginning, The London Mayor, &#8216;Blonde Borris&#8217; has a pretty good summation of where it&#8217;s at. I wonder how much news coverage this gets in USA?   http://www.boris-johnson.com/2009/01/27/quest-to-extradite-harmless-hacker-gary-mckinnon/   http://freegary.org.uk/   http://search.bbc.co.uk/search?uri=%2F&#38;scope=all&#38;go=toolbar&#38;q=Gary+McKinnon    ]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 0pt;">I&#8217;ve been following this case since the beginning, The London Mayor, &#8216;Blonde Borris&#8217; has a pretty good summation of where it&#8217;s at. I wonder how much news coverage this gets in USA?</p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> </p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><a href="http://www.boris-johnson.com/2009/01/27/quest-to-extradite-harmless-hacker-gary-mckinnon/">http://www.boris-johnson.com/2009/01/27/quest-to-extradite-harmless-hacker-gary-mckinnon/</a></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> </p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><a href="http://freegary.org.uk/">http://freegary.org.uk/</a></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> </p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><a href="http://search.bbc.co.uk/search?uri=%2F&amp;scope=all&amp;go=toolbar&amp;q=Gary+McKinnon">http://search.bbc.co.uk/search?uri=%2F&amp;scope=all&amp;go=toolbar&amp;q=Gary+McKinnon</a></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> </p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=218</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Skill Matters &#8211; Free evening sessions, London</title>
		<link>http://www.darklump.co.uk/blog/?p=210&#038;utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=skill-matters-free-evening-sessions-london</link>
		<comments>http://www.darklump.co.uk/blog/?p=210#comments</comments>
		<pubDate>Tue, 27 Jan 2009 16:03:11 +0000</pubDate>
		<dc:creator>paddy</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>

		<guid isPermaLink="false">http://www.darklump.co.uk/blog/?p=210</guid>
		<description><![CDATA[if anyones interested, I&#8217;ve just signed up to attend some evening session on; webservices, cloud computing, agile methods&#8230;. there are other free events too. http://skillsmatter.com/event/ajax-ria/yahoo-developer-network-php-oauth-web-services   http://skillsmatter.com/event/cloud-grid/cloud-computing-101-an-intro-to-cloud-computing-281   http://skillsmatter.com/event/agile-scrum/agile-methods]]></description>
			<content:encoded><![CDATA[<p>if anyones interested, I&#8217;ve just signed up to attend some evening session on; webservices, cloud computing, agile methods&#8230;. there are other free events too.</p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'"><a href="http://skillsmatter.com/event/ajax-ria/yahoo-developer-network-php-oauth-web-services">http://skillsmatter.com/event/ajax-ria/yahoo-developer-network-php-oauth-web-services</a></span></p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"> </p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'"><a href="http://skillsmatter.com/event/cloud-grid/cloud-computing-101-an-intro-to-cloud-computing-281">http://skillsmatter.com/event/cloud-grid/cloud-computing-101-an-intro-to-cloud-computing-281</a></span></p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"> </p>
<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'"><a href="http://skillsmatter.com/event/agile-scrum/agile-methods">http://skillsmatter.com/event/agile-scrum/agile-methods</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.darklump.co.uk/blog/?feed=rss2&#038;p=210</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

