<?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>Confessions of a Flash Addict &#187; A Fresh Breath of AIR</title>
	<atom:link href="http://www.funky-monkey.nl/blog/category/fresh-breath/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.funky-monkey.nl/blog</link>
	<description>&#34;forgive me father for I have flashed&#34;</description>
	<lastBuildDate>Sat, 14 Jan 2012 15:47:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>A breath of fresh AIR #3: User Idle time</title>
		<link>http://www.funky-monkey.nl/blog/2008/12/08/a-breath-of-fresh-air-3-user-idle-time/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-breath-of-fresh-air-3-user-idle-time</link>
		<comments>http://www.funky-monkey.nl/blog/2008/12/08/a-breath-of-fresh-air-3-user-idle-time/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 11:00:44 +0000</pubDate>
		<dc:creator>Sidney de Koning</dc:creator>
				<category><![CDATA[A Fresh Breath of AIR]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[AIR]]></category>

		<guid isPermaLink="false">http://www.funky-monkey.nl/blog/?p=91</guid>
		<description><![CDATA[In AIR you can check the users idle time, meaning that your application can behave differently when the user is not actively using it. On the other side you can also track the time that the user is actively using your application. But what you ask? Let me give you a couple of examples: - [...]]]></description>
			<content:encoded><![CDATA[<p>In AIR you can check the users idle time, meaning that your application can behave differently when the user is not actively using it. On the other side you can also track the time that the user is actively using your application. But what you ask? Let me give you a couple of examples:</p>
<p>- When you are not idle for a period of time, the application syncs with and online database.<br />
- Complex Screensavers &#8211; Show full screen for how long the user has been away from its desk <img src='http://www.funky-monkey.nl/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
- An Application that warns you when to take breaks because you been sitting way too long behind your computer. The possibilities are endless!</p>
<p>Other fun functions you can use with this is:</p>
<p><strong>timeSinceLastUserInput</strong> &#8212; The time, in seconds, since the last mouse or keyboard input.<br />
and</p>
<p><strong>idleThreshold </strong>&#8211; The number of seconds that must elapse without keyboard or mouse input     before a presenceChange event is dispatched. By default, the idle threshold is 300 seconds (5 minutes).</p>
<pre class="brush: javascript;">
import flash.desktop.NativeApplication;
import nl.funkymonkey.firelog.core.*;
var IDLETIME:int = 5;//Yes that is seconds.

initIdleExampleApp();

function initIdleExampleApp():void
{
	NativeApplication.nativeApplication.idleThreshold = IDLETIME;
	NativeApplication.nativeApplication.addEventListener(Event.USER_IDLE, onUserIdle);
	NativeApplication.nativeApplication.addEventListener(Event.USER_PRESENT, onUserPresence);
	Logger.info("Status: Active - status will change if idle for more than " + IDLETIME + " seconds");
}

function onUserIdle(event:Event):void
{
	Logger.info("User has been Idle for at least " + IDLETIME + " seconds".);
	Logger.info("Here you can do what you want.");
}

function onUserPresence(event:Event):void
{
	Logger.info("User is active again, after being idle for " + IDLETIME + " seconds.");
	Logger.info("Now you can make your app get back to its normal state.");
}
</pre>
<p>What I have noticed with idle time is that the time is an indication and not a real value, it can be a second or two off (this can be caused by the Timer class, as <a href="http://www.bit-101.com/blog/?p=910" target="_blank">Keith Peters describes here</a>). So keep that in mind.</p>
<p>In my code I trace with <a href="http://www.funky-monkey.nl/blog/2008/05/13/air-logger-v100/" target="_self">FireLog</a>, a simple logger for AIR, and you can <a href="http://www.funky-monkey.nl/blog/2008/05/13/air-logger-v100/" target="_self">find that here</a>.</p>
<p>Here is an example AIR file:<br />
[airbadge]Idle User,http://www.funky-monkey.nl/air/example/idle_screensaver.air,1.0.2[/airbadge]<br />
Have fun coding you own little play things! <img src='http://www.funky-monkey.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sidney@funky-monkey.nl" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Have my posts helped (or at least entertained) you in some way? Please consider to buying me a coffee. for A breath of fresh AIR #3: User Idle time" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="5" /><input type="image" src="http://www.funky-monkey.nl/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="Coffee!" title="Coffee!" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sidney@funky-monkey.nl&amp;currency_code=EUR&amp;amount=5&amp;return=&amp;item_name=Have+my+posts+helped+(or+at+least+entertained)+you+in+some+way?+Please+consider+to+buying+me+a+coffee.+for+A+breath+of+fresh+AIR+#3:+User+Idle+time" target="paypal">Please consider to buying me a coffee.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.funky-monkey.nl/blog/2008/12/08/a-breath-of-fresh-air-3-user-idle-time/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Aggregated by the MXNA</title>
		<link>http://www.funky-monkey.nl/blog/2008/04/07/aggregated-by-the-mxna/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=aggregated-by-the-mxna</link>
		<comments>http://www.funky-monkey.nl/blog/2008/04/07/aggregated-by-the-mxna/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 20:37:21 +0000</pubDate>
		<dc:creator>Sidney de Koning</dc:creator>
				<category><![CDATA[A Fresh Breath of AIR]]></category>
		<category><![CDATA[Actionscript 2]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[AIR]]></category>

		<guid isPermaLink="false">http://www.funky-monkey.nl/blog/2008/04/07/aggregated-by-the-mxna/</guid>
		<description><![CDATA[This morning when i stepped in the office and opened up my mail something happend. I got a mail saying i am now being aggregated by the Macromedia XML News Aggregator. That another thing i can tick off my list (Other things i&#8217;d still love to do are writing a book and writing for the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.funky-monkey.nl/blog/wp-content/uploads/2008/04/mxna88x31_grey.gif" alt="MXNA" align="left" hspace="4" />This morning when i stepped in the office and opened up my mail something happend. I got a mail saying i am now being aggregated by the Macromedia XML News Aggregator. That another thing i can tick off my list <img src='http://www.funky-monkey.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (Other things i&#8217;d still love to do are writing a book and writing for the <a href="http://www.insideria.com/" target="_blank">Inside RIA</a> website, preferably about AIR. So if anybody from <a href="http://www.insideria.com/" target="_blank">InsideRIA</a> is reading this &#8230;. <img src='http://www.funky-monkey.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sidney@funky-monkey.nl" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Have my posts helped (or at least entertained) you in some way? Please consider to buying me a coffee. for Aggregated by the MXNA" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="5" /><input type="image" src="http://www.funky-monkey.nl/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="Coffee!" title="Coffee!" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sidney@funky-monkey.nl&amp;currency_code=EUR&amp;amount=5&amp;return=&amp;item_name=Have+my+posts+helped+(or+at+least+entertained)+you+in+some+way?+Please+consider+to+buying+me+a+coffee.+for+Aggregated+by+the+MXNA" target="paypal">Please consider to buying me a coffee.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.funky-monkey.nl/blog/2008/04/07/aggregated-by-the-mxna/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A breath fresh of AIR #2: Animated Video Dock Icon</title>
		<link>http://www.funky-monkey.nl/blog/2008/02/28/fresh-breath-of-air-2-animated-video-dock-icon/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fresh-breath-of-air-2-animated-video-dock-icon</link>
		<comments>http://www.funky-monkey.nl/blog/2008/02/28/fresh-breath-of-air-2-animated-video-dock-icon/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 17:27:26 +0000</pubDate>
		<dc:creator>Sidney de Koning</dc:creator>
				<category><![CDATA[A Fresh Breath of AIR]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[AIR]]></category>

		<guid isPermaLink="false">http://www.funky-monkey.nl/blog/2008/03/21/fresh-breath-of-air-2-animated-video-dock-icon/</guid>
		<description><![CDATA[At the FITC, a couple of days back, Lee Brimlow was talking about the capabilities of AIR and my question was if you can have animated dock icons, answer is yo can It works like this; To animate or draw an icon, you take an item loaded externally or that is in your DisplayList or [...]]]></description>
			<content:encoded><![CDATA[<p>At the <a href="http://www.fitc.ca/amsterdam/" target="_blank">FITC</a>, a couple of days back, <a href="http://www.theflashblog.com" target="_blank">Lee Brimlow</a> was talking about the capabilities of AIR and my question was if you can have animated dock icons, answer is yo can <img src='http://www.funky-monkey.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
It works like this; To animate or draw an icon, you take an item loaded externally or that is in your DisplayList or even in the library. You then draw that item with the BitmapData Object to the icons array for the system icon. like this:</p>
<pre class="brush: javascript;">var libraryObject = new ClipInLibrary();
var iconBM:BitmapData = new BitmapData(128, 128, true, 0x00000000);
iconBM.draw(libraryObject);
NativeApplication.nativeApplication.icon.bitmaps = [iconBM];</pre>
<p>I wanted to take that to the extreme and see if it was possible to add video to this, so below is the very simple code to draw every frame of a playing video file to a BitmapData Object. I specifically create the bitmap data within the ENTER_FRAME event, so i can dispose of it, and in the next loop create it again. So basicly i draw and clear, draw and clear etc.<br />
The reason why i do this, is that this way you can also have alpha video in your dock <img src='http://www.funky-monkey.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (the example video below uses alpha channels in the video so you can test it!)</p>
<p>Enjoy!</p>
<p>PS. This example is only for Mac, you can do it with Windows, however this icon only supports 16&#215;16 pixels, so the video would be a bit small <img src='http://www.funky-monkey.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre class="brush: javascript;">
import flash.desktop.*;
import flash.events.*;

var videoURL:String = "http://samples.mplayerhq.hu/FLV/flash_with_alpha/300x180-Scr-f8-056alpha.flv";

var con = new NetConnection();
con.connect(null);

var stream:NetStream = new NetStream(con);

var video:Video = new Video();
video.attachNetStream(stream);
stream.play(videoURL);
stream.client = this;
addChild(video);

function createDockIcon(e:Event):void
{
var iconBM:BitmapData = new BitmapData(128, 128, true, 0x00000000);
iconBM.draw(video);
NativeApplication.nativeApplication.icon.bitmaps = [iconBM];
iconData.dispose();
}

this.addEventListener(Event.ENTER_FRAME, createDockIcon);</pre>
<p>Thats all there is to it <img src='http://www.funky-monkey.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sidney@funky-monkey.nl" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Have my posts helped (or at least entertained) you in some way? Please consider to buying me a coffee. for A breath fresh of AIR #2: Animated Video Dock Icon" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="5" /><input type="image" src="http://www.funky-monkey.nl/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="Coffee!" title="Coffee!" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sidney@funky-monkey.nl&amp;currency_code=EUR&amp;amount=5&amp;return=&amp;item_name=Have+my+posts+helped+(or+at+least+entertained)+you+in+some+way?+Please+consider+to+buying+me+a+coffee.+for+A+breath+fresh+of+AIR+#2:+Animated+Video+Dock+Icon" target="paypal">Please consider to buying me a coffee.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.funky-monkey.nl/blog/2008/02/28/fresh-breath-of-air-2-animated-video-dock-icon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://samples.mplayerhq.hu/FLV/flash_with_alpha/300x180-Scr-f8-056alpha.flv" length="148889" type="video/x-flv" />
		</item>
		<item>
		<title>A breath of fresh AIR #1: What is AIR?</title>
		<link>http://www.funky-monkey.nl/blog/2008/02/27/fresh-breath-1-what-is-air/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fresh-breath-1-what-is-air</link>
		<comments>http://www.funky-monkey.nl/blog/2008/02/27/fresh-breath-1-what-is-air/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 19:51:02 +0000</pubDate>
		<dc:creator>Sidney de Koning</dc:creator>
				<category><![CDATA[A Fresh Breath of AIR]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[AIR]]></category>

		<guid isPermaLink="false">http://www.funky-monkey.nl/blog/2008/03/21/fresh-breath-1-what-is-air/</guid>
		<description><![CDATA[What is AIR? AIR is a new technology that Adobe created, using exsisting and new technology. The name stems from Adobe Integrated Runtime. You probably already saw this in the wild either on AOL, eBay&#8217;s Desktop, the FineTune Player or the SearchCoders Dashboard. The sole purpose of these apps is to bring the brand closer [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.funky-monkey.nl/blog/wp-content/uploads/2008/03/airgif.jpg" alt="AIR" align="left" border="0" />What is AIR? AIR is a new technology that Adobe created, using exsisting and new technology. The name stems from Adobe Integrated Runtime. You probably already saw this in the wild either on <a href="http://music.aol.com/help/syndication/desktop-widgets" title="AOL Top100 player" target="_blank">AOL</a>, <a href="http://desktop.ebay.com/" title="eBay's Desktop" target="_blank">eBay&#8217;s Desktop</a>, the <a href="http://www.finetune.com/desktop/" target="_blank">FineTune Player</a> or the <a href="http://www.searchcoders.com/" title="Search Coders" target="_blank">SearchCoders Dashboard</a>. The sole purpose of these apps is to bring the brand closer to the end-user.</p>
<p>Lets take a close look at these apps, first off is the eBay app; this allows users to keep a eye on their auctions and lets them know if they have been outbid, instantly. The AOL Music application lets users watch the hottest and latest top 100 videos strait to their desktop and the last one, the SearchCoders app lets users search the flexcoders mailing list archives, read blogs and chat with other users. They bring the user to the brand, so the audience you reach is much broader.</p>
<p>This opens up whole new possibilities for branded content and a complete new advertising model (which in my opinion has not been completely been discovered). Consider this; You have created an application and evertime you have new content, which you normally send out in a newsletter, the user gets notified by the application. Push instead of pull. Pretty nifty. When you are confined to the browser this simply isn&#8217;t possible. So now the content on the web can be truly interactive.</p>
<p>Adobe has done some pretty radical promoting to make this possible; They created the <a href="http://onair.adobe.com/" target="_blank">onAIR Bus Tour</a> for their new product, with renowned speakers, people from Adobe giving lectures and hands-on sessions, industry guru&#8217;s talk about AIR, give away swag and if that wasn&#8217;t enough they even let <a href="http://www.moock.org" target="_blank">Colin Moock</a> (the one and only Flash GOD) do  a free day of <a href="http://http://www.funky-monkey.nl/blog/2007/10/02/adobe-actionscript-3-tour/" target="_blank">Actionscript3 coding, 9 hours of it!</a> So they must be pretty serious about it. (to spend so much marketing budget on it).</p>
<p>This is what  Adobe had to say about their new technology: <em>&#8220;Adobe AIR is a cross-operating system runtime that enables web developers to use their existing web development skills, code and tools to build and deploy rich web applications and content to the desktop. Adobe AIR has a rich set of features, with support for building applications using HTML, JavaScript, Flex and Flash.&#8221;</em></p>
<p>And this is how i see it: &#8220;AIR lets you create cross-platform desktop applications, that enhance the users experience, using skills that you already know. and this can be HTML, JavaScript, Flex and Flash.&#8221;</p>
<p>Now this means a couple of things for developers like yourself. First, it is just an API that has the same syntax as Actionscript3, so there is no new major thing to learn and secondly you have (almost) complete access to your OS, which is really fukkin&#8217; cool <img src='http://www.funky-monkey.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Some of the API&#8217;s you have at your disposal are:</p>
<p>■ <a href="http://livedocs.adobe.com/air/1/devappsflash/WorkingWithWindows_1.html" target="_blank">Windowing API</a><br />
■ <a href="http://livedocs.adobe.com/air/1/devappsflash/Filesystem_01.html" target="_blank">FileSystem Class</a><br />
■ <a href="http://livedocs.adobe.com/air/1/devappsflash/CopyAndPaste_1.html" target="_blank">Clipboard Class</a><br />
■ SQLite database<br />
■ Drag ‘n drop support<br />
■ Update API</p>
<p>Over the next couple of weeks I&#8217;ll be talking more on AIR, write tutorials about the wicked stuff you can do, look at some security aspects and present my own cool project i&#8217;ve been working on for a while now.</p>
<p>If you subscribe to my RSS feed you&#8217;ll be notified of any new articles.</p>
<p>Stay tuned!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sidney@funky-monkey.nl" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Have my posts helped (or at least entertained) you in some way? Please consider to buying me a coffee. for A breath of fresh AIR #1: What is AIR?" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="5" /><input type="image" src="http://www.funky-monkey.nl/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="Coffee!" title="Coffee!" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sidney@funky-monkey.nl&amp;currency_code=EUR&amp;amount=5&amp;return=&amp;item_name=Have+my+posts+helped+(or+at+least+entertained)+you+in+some+way?+Please+consider+to+buying+me+a+coffee.+for+A+breath+of+fresh+AIR+#1:+What+is+AIR?" target="paypal">Please consider to buying me a coffee.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.funky-monkey.nl/blog/2008/02/27/fresh-breath-1-what-is-air/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Fresh Breath</title>
		<link>http://www.funky-monkey.nl/blog/2008/02/24/fresh-breath/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fresh-breath</link>
		<comments>http://www.funky-monkey.nl/blog/2008/02/24/fresh-breath/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 14:02:45 +0000</pubDate>
		<dc:creator>Sidney de Koning</dc:creator>
				<category><![CDATA[A Fresh Breath of AIR]]></category>
		<category><![CDATA[AIR]]></category>

		<guid isPermaLink="false">http://www.funky-monkey.nl/blog/2008/03/07/fresh-breath/</guid>
		<description><![CDATA[Since i&#8217;ve been playing with AIR lately, I decided to write little articles on Adobe AIR, called &#8216;Fresh Breath&#8217;. and will have their own category. In the first article in this series I will explain what Adobe AIR is, new possibilities it has and a little bit about security considerations. Hope you enjoy! Please consider [...]]]></description>
			<content:encoded><![CDATA[<p>Since i&#8217;ve been playing with AIR lately, I decided to write little articles on Adobe AIR, called <strong>&#8216;Fresh Breath&#8217;.</strong> and will have their own category. In the first article in this series I will explain what Adobe AIR is, new possibilities it has and a little bit about security considerations. Hope you enjoy!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sidney@funky-monkey.nl" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Have my posts helped (or at least entertained) you in some way? Please consider to buying me a coffee. for Fresh Breath" /><input type="hidden" name="currency_code" value="EUR" /><input type="hidden" name="amount" value="5" /><input type="image" src="http://www.funky-monkey.nl/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="Coffee!" title="Coffee!" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sidney@funky-monkey.nl&amp;currency_code=EUR&amp;amount=5&amp;return=&amp;item_name=Have+my+posts+helped+(or+at+least+entertained)+you+in+some+way?+Please+consider+to+buying+me+a+coffee.+for+Fresh+Breath" target="paypal">Please consider to buying me a coffee.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.funky-monkey.nl/blog/2008/02/24/fresh-breath/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

