<?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>Daniel&#039;s Tech Ramblings &#187; as3</title>
	<atom:link href="http://blog.sitedaniel.com/tag/as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sitedaniel.com</link>
	<description>Personal ramblings on technology and the web</description>
	<lastBuildDate>Fri, 11 May 2012 12:23:31 +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>Site Launch: How Much Carbon&#8230;?</title>
		<link>http://blog.sitedaniel.com/2011/01/site-launch-how-much-carbon/</link>
		<comments>http://blog.sitedaniel.com/2011/01/site-launch-how-much-carbon/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 22:40:07 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[data-vis]]></category>
		<category><![CDATA[GoogleDocs]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[puremvc]]></category>
		<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=665</guid>
		<description><![CDATA[This project was another fantastic visualisation for David McCandless of informationisbeautiful. http://www.informationisbeautiful.net/ It is the second visualisation we have worked on, and it was even more fun than the first. The data is coming in live (as a CSV) from a Google Docs Spreadsheet http://bit.ly/tonsofcarbon. The application is built in Flash using ActionScript 3.0 and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://visualization.geblogs.com/visualization/co2"><img src="http://blog.sitedaniel.com/wp-content/uploads/2011/01/ge_carbon.png" alt="" title="ge_carbon" width="400" height="267" class="alignnone size-full wp-image-666" /></a></p>
<p>This project was another fantastic visualisation for David McCandless of informationisbeautiful.<br />
<a href="http://www.informationisbeautiful.net/">http://www.informationisbeautiful.net/</a></p>
<p>It is the second visualisation we have worked on, and it was even more fun than the first.<br />
The data is coming in live (as a CSV) from a Google Docs Spreadsheet <a href="http://bit.ly/tonsofcarbon">http://bit.ly/tonsofcarbon</a>.<br />
The application is built in Flash using ActionScript 3.0 and the <a href="http://puremvc.org/">PureMVC framework</a>, with <a href="http://www.asual.com/swfaddress/">SWFAddress</a> and a small amount of XML.</p>
<p>You can read more about this project on David's great blog here:<br />
<a href="http://www.informationisbeautiful.net/2011/how-much-carbon/">http://www.informationisbeautiful.net/2011/how-much-carbon/</a></p>
<p><a href="http://visualization.geblogs.com/visualization/co2">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2011/01/site-launch-how-much-carbon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arranging objects in a grid</title>
		<link>http://blog.sitedaniel.com/2010/08/arranging-objects-in-a-grid/</link>
		<comments>http://blog.sitedaniel.com/2010/08/arranging-objects-in-a-grid/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 16:03:17 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[align]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[modulo]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=622</guid>
		<description><![CDATA[There are many ways to arrange objects in a grid using ActionScript and some ways of doing this are easier than others. The following way I have found is the easiest. If you loop through all of your objects using a for(var i...) loop or something similar, you can set the x and y position [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.sitedaniel.com/wp-content/uploads/2010/08/Screen-shot-2010-08-23-at-16.57.56.png" alt="" title="grid" width="166" height="87" class="alignright size-full wp-image-633" />There are many ways to arrange objects in a grid using ActionScript and some ways of doing this are easier than others. The following way I have found is the easiest.<br />
If you loop through all of your objects using a for(var i...) loop or something similar, you can set the x and y position of each one using only one line of code:</p>
<p><code>
<pre class="actionscript"><span style="color: #808080; font-style: italic;">// inside a for(var i:int...) loop</span>
gridObj.<span style="color: #006600;">x</span> = START_X + <span style="color: #66cc66;">&#40;</span>i % COLUMNS<span style="color: #66cc66;">&#41;</span> * <span style="color: #66cc66;">&#40;</span>PAD_X + gridObj.<span style="color: #0066CC;">width</span><span style="color: #66cc66;">&#41;</span>;
gridObj.<span style="color: #006600;">y</span> = START_Y + <span style="color: #0066CC;">Math</span>.<span style="color: #0066CC;">floor</span><span style="color: #66cc66;">&#40;</span>i / COLUMNS<span style="color: #66cc66;">&#41;</span> * <span style="color: #66cc66;">&#40;</span>PAD_Y + gridObj.<span style="color: #0066CC;">height</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;</pre>
<p></code></p>
<p>(COLUMNS is the number of required columns, PAD_X and PAD_Y are padding between objects along each axis.)<br />
This uses the <em><a href="http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/operators.html#modulo">modulo</a></em> (%) operator to determine the remainder of the division of the iterator and the number of columns. This is used for the X position of each object. The y position is calculated the other way, using Math.floor to get the highest exact number of divisions these two numbers will produce.<br />
Note: <em>int()</em> can also be used instead of <em>Math.floor()</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2010/08/arranging-objects-in-a-grid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating a simple Load Indicator / preloader</title>
		<link>http://blog.sitedaniel.com/2010/08/creating-a-simple-load-indicator/</link>
		<comments>http://blog.sitedaniel.com/2010/08/creating-a-simple-load-indicator/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 16:56:41 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[loadindicator]]></category>
		<category><![CDATA[preloader]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[util]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=604</guid>
		<description><![CDATA[Here is a handy class to display a simple spinning load indicator / preload animation while your content is loading or transitioning. This demo uses the bit101 minimalcomps to show how flexible and configurable this class is. Use this demo to set up the style for your project, then hit the "copy" button to copy [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a handy class to display a simple spinning load indicator / preload animation while your content is loading or transitioning. This demo uses the bit101 <a href="http://www.minimalcomps.com/">minimalcomps</a> to show how flexible and configurable this class is.</p>
<p><a href="http://blog.sitedaniel.com/demo/loadindicator/LoadIndicatorGenerator.swf" rel="shadowbox;height=200;width=400"><img src="http://blog.sitedaniel.com/demo/loadindicator/loadindicator.png" alt="loadindicator" title="loadindicator" width="400" height="200" class="alignnone size-full wp-image-563" /></a></p>
<p>Use this demo to set up the style for your project, then hit the "copy" button to copy the configuration to your clipboard.</p>
<p><a href="http://blog.sitedaniel.com/demo/loadindicator/LoadIndicatorGenerator.swf" rel="shadowbox;height=200;width=400">click to launch</a></p>
<p>Usage:</p>
<pre>
// create
_loadInd = new LoadIndicator(this, 75, 75);

// remove
_loadInd.destroy();
</pre>
<p>download <a href="http://blog.sitedaniel.com/demo/loadindicator/LoadIndicator.as">LoadIndicator.as</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2010/08/creating-a-simple-load-indicator/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Site launch: The Megané Experiment</title>
		<link>http://blog.sitedaniel.com/2010/07/site-launch-the-megane-experiment/</link>
		<comments>http://blog.sitedaniel.com/2010/07/site-launch-the-megane-experiment/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 11:15:35 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[puremvc]]></category>
		<category><![CDATA[renault]]></category>
		<category><![CDATA[web services]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=600</guid>
		<description><![CDATA[This was a very quick build and a steep learning curve with the Facebook Graph API integration. The site is PureMVC, AS3 and XML driven. Also it integrates with a Renault server for saving information about each user and their betting scores for the competition. An interesting campaign with some great prizes available, but be [...]]]></description>
			<content:encoded><![CDATA[<p>This was a very quick build and a steep learning curve with the Facebook Graph API integration. The site is PureMVC, AS3 and XML driven. Also it integrates with a Renault server for saving information about each user and their betting scores for the competition.<br />
An interesting campaign with some great prizes available, but be quick as this is only for 9 more days.</p>
<p><a href="http://www.themeganeexperiment.com/"><img src="http://blog.sitedaniel.com/wp-content/uploads/2010/07/renault_megane.jpg" alt="" title="renault_megane" width="400" height="224" class="alignnone size-full wp-image-601" /></a></p>
<p><a href="http://www.themeganeexperiment.com/">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2010/07/site-launch-the-megane-experiment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Launch: Nissan Qashqai differentiation</title>
		<link>http://blog.sitedaniel.com/2010/06/site-launch-nissan-qashqai-differentiation/</link>
		<comments>http://blog.sitedaniel.com/2010/06/site-launch-nissan-qashqai-differentiation/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 21:10:34 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[nissan]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[puremvc]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=578</guid>
		<description><![CDATA[This site for Nissan finally launched last week almost 4 months after I completed the build. It is AS3 and uses the PureMVC framework. It is to help customers compare the two different Qashqai models and their respective features. I really like the way the paint splashes around in this campaign. link]]></description>
			<content:encoded><![CDATA[<p>This site for Nissan finally launched last week almost 4 months after I completed the build. It is AS3 and uses the <a href="http://puremvc.org/">PureMVC</a> framework. It is to help customers compare the two different Qashqai models and their respective features. I really like the way the paint splashes around in this campaign.</p>
<p><a href="http://www.nissan.co.uk/#vehicles/crossovers/qashqai-differentiation"><img src="http://blog.sitedaniel.com/wp-content/uploads/2010/06/nissan_qq.jpg" alt="" title="nissan_qq" width="400" height="201" class="alignnone size-full wp-image-579" /></a></p>
<p><a href="http://www.nissan.co.uk/#vehicles/crossovers/qashqai-differentiation">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2010/06/site-launch-nissan-qashqai-differentiation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Text around an Ellipse</title>
		<link>http://blog.sitedaniel.com/2010/06/dynamic-text-around-an-ellipse/</link>
		<comments>http://blog.sitedaniel.com/2010/06/dynamic-text-around-an-ellipse/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 22:06:34 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[CS5]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[dynamic text]]></category>
		<category><![CDATA[ellipse]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[textfield]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=562</guid>
		<description><![CDATA[Recently I had to create a dynamic menu that required some text to wrap around an ellipse. Getting the rotation correct involved calculating the angle of the tangent around the ellipse which was a challenge. Also the letter spacing was tricky and I don't think I have the best solution for this but it seems [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had to create a dynamic menu that required some text to wrap around an ellipse. Getting the rotation correct involved calculating the angle of the tangent around the ellipse which was a challenge. Also the letter spacing was tricky and I don't think I have the best solution for this but it seems to work quite well.</p>
<p>Here is a quick demo I put together tonight of it in action</p>
<p><a href="http://blog.sitedaniel.com/demo/ellipticaltext/ellipticaltext.swf" rel="shadowbox;height=350;width=400"><img src="http://blog.sitedaniel.com/wp-content/uploads/2010/06/elliptical_text.png" alt="ellipticaltext" title="ellipticaltext" width="400" height="350" class="alignnone size-full wp-image-563" /></a></p>
<p><a href="http://blog.sitedaniel.com/demo/ellipticaltext/ellipticaltext.swf" rel="shadowbox;height=350;width=400">click to launch</a><br />
<a href="http://blog.sitedaniel.com/demo/ellipticaltext/ellipticaltext_src.zip">download source CS5</a> (also requires <a href="http://www.minimalcomps.com/">minimalcomps</a> Slider source)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2010/06/dynamic-text-around-an-ellipse/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Expenditure Map &#8211; Rewired State</title>
		<link>http://blog.sitedaniel.com/2010/03/expenditure-map-rewired-state/</link>
		<comments>http://blog.sitedaniel.com/2010/03/expenditure-map-rewired-state/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 11:05:50 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[data-vis]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rewiredstate]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=497</guid>
		<description><![CDATA[On the weekend I went to "National Hack the Government Day" here in London, organised by Rewired State. (Rewired State runs hackdays where developers show government what is possible, and government shows developers what is needed.) It was a great day and a chance to collaborate with other developers on a project of our choosing. [...]]]></description>
			<content:encoded><![CDATA[<p>On the weekend I went to "National Hack the Government Day" here in London, organised by <a href="http://rewiredstate.org/">Rewired State.</a> (<em>Rewired State runs hackdays where developers show government what is possible, and government shows developers what is needed.</em>)</p>
<p>It was a great day and a chance to collaborate with other developers on a project of our choosing. I have been meaning to get into data-visualisation for a long time, but hadn't managed to actually get around to building anything, so this day was a great opportunity to finally put something together.</p>
<p>I teamed up with<a href="http://www.garethshapiro.com/"> Gareth Shapiro</a>, flash/flex developer I have worked with before, and <a href="http://ishortman.com/">Ian Shortman</a>, who found the data and managed most of the back-end.</p>
<p><img src="http://blog.sitedaniel.com/wp-content/uploads/2010/03/expmap_zoom-150x150.png" alt="Expenditure Map " title="expmap_zoom" width="150" height="150" class="alignleft size-thumbnail wp-image-498" />We settled on an animated map showing the relative spending by different regions across the UK, using a set of circles that scale and change colour according to the relative values in the data.</p>
<p>It was an intense build as we only had a day to get a demo working, but it was very rewarding and I enjoyed the experience. </p>
<p>The end product is by no means polished and ready to go, but it shows what 3 developers can achieve in a day, and is a good starting point for more data-visualisation projects.</p>
<p>There are two colour pickers that let you choose the colour gradient of the regions, so you can quickly customise the way this looks, and radio buttons to choose the data sets to display. Thanks to Keith Peters (BIT-101) for the easily integrated components from <a href="http://minimalcomps.com/">minimalcomps</a>. The project is Flash (AS3.0) with a MySQL and PHP back-end. </p>
<p>The project demonstration at the end of the day went well and the Expenditure Map was awarded one of the two Vodaphone-sponsored prizes which was unexpected but a nice surprise. </p>
<p>The project page at Rewired State is: <a href="http://rewiredstate.org/projects/expendituremap">http://rewiredstate.org/projects/expendituremap</a><br />
and it can be viewed here: <a href="http://ishortman.com/projects/expendituremap">http://ishortman.com/projects/expendituremap</a></p>
<p><a href="http://ishortman.com/projects/expendituremap/"><img src="http://blog.sitedaniel.com/wp-content/uploads/2010/03/expmap.png" alt="Expenditure Map" title="expmap" width="400" height="348" class="size-full wp-image-514" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2010/03/expenditure-map-rewired-state/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zooming using transform Matrix</title>
		<link>http://blog.sitedaniel.com/2010/01/zooming-using-transform-matrix/</link>
		<comments>http://blog.sitedaniel.com/2010/01/zooming-using-transform-matrix/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 18:46:04 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[matrix]]></category>
		<category><![CDATA[transform]]></category>
		<category><![CDATA[zoom]]></category>
		<category><![CDATA[zooming]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=468</guid>
		<description><![CDATA[Here is a brilliant post 'Zooming in Flash &#038; Flex' on how to use the transform Matrix to zoom and rotate DisplayObjects. Daniel Gasienica writes well and has some great examples demonstrating to correct way to apply these transformations to your clips. Using this method saves you messing around with the Point class and localToGlobal [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a brilliant post <a href="http://gasi.ch/blog/zooming-in-flash-flex/">'Zooming in Flash & Flex'</a> on how to use the transform Matrix to zoom and rotate DisplayObjects. Daniel Gasienica writes well and has some great examples demonstrating to correct way to apply these transformations to your clips.<br />
Using this method saves you messing around with the Point class and localToGlobal / globalToLocal methods. This solution is elegant and efficient.</p>
<p><a href="http://gasi.ch/blog/zooming-in-flash-flex/">http://gasi.ch/blog/zooming-in-flash-flex/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2010/01/zooming-using-transform-matrix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site launch &#8211; portfolio site v3</title>
		<link>http://blog.sitedaniel.com/2010/01/site-launch-portfolio-site-v3/</link>
		<comments>http://blog.sitedaniel.com/2010/01/site-launch-portfolio-site-v3/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 12:47:43 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[bitmapdata]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=463</guid>
		<description><![CDATA[I've just launched my new portfolio site. This is v3.0 of sitedaniel.com, and takes a more minimalist approach to the design than the previous versions. This site is powered by ActionScript3.0 and XML, and uses some fun BitmapData effects. link]]></description>
			<content:encoded><![CDATA[<p>I've just launched my new portfolio site. This is v3.0 of sitedaniel.com, and takes a more minimalist approach to the design than the previous versions. This site is powered by ActionScript3.0 and XML, and uses some fun BitmapData effects.</p>
<p><a href="http://www.sitedaniel.com"><img src="http://blog.sitedaniel.com/wp-content/uploads/2010/01/site_portfolio_v3.jpg" alt="site_portfolio_v3" title="site_portfolio_v3" width="400" height="236" class="alignnone size-full wp-image-464" /></a></p>
<p><a href="http://www.sitedaniel.com">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2010/01/site-launch-portfolio-site-v3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site launch: Adam&amp;Eve Xmas Countdown</title>
		<link>http://blog.sitedaniel.com/2009/12/site-launch-adameve-xmas-countdown/</link>
		<comments>http://blog.sitedaniel.com/2009/12/site-launch-adameve-xmas-countdown/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 11:15:24 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[as3.0]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[xmas]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.sitedaniel.com/?p=455</guid>
		<description><![CDATA[This is a fun 'Flip' Clock that is counting down the days until Xmas. It is AS3.0 and chooses images randomly from a large set. Online for a short time only!]]></description>
			<content:encoded><![CDATA[<p>This is a fun 'Flip' Clock that is counting down the days until Xmas.<br />
It is AS3.0 and chooses images randomly from a large set.<br />
Online for a short time only!</p>
<p><img src="http://blog.sitedaniel.com/wp-content/uploads/2009/12/site_xmas.jpg" alt="Adam&amp;Eve Xmas Countdown" title="site_xmas" width="400" height="339" class="size-full wp-image-456" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sitedaniel.com/2009/12/site-launch-adameve-xmas-countdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

