<?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>base42.nl</title>
	<atom:link href="http://blog.base42.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.base42.nl</link>
	<description></description>
	<lastBuildDate>Mon, 08 Feb 2010 07:44:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Create a project for FDT fast!!</title>
		<link>http://blog.base42.nl/2010/01/18/create-a-project-for-fdt-fast/</link>
		<comments>http://blog.base42.nl/2010/01/18/create-a-project-for-fdt-fast/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 17:59:49 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Terminal stuff]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=1097</guid>
		<description><![CDATA[I made a terminal script for creating new FDT projects. I use it when I want to test something or create a prototype.

The code can be found on the post detail page.


#!/bin/sh
&#160;
# ------------------------------
# -  FDT stub project creator  - 
# -  Jankees van Woezik, 2010  -
# -   http://blog.base42.nl  [...]]]></description>
			<content:encoded><![CDATA[<p>I made a terminal script for creating new FDT projects. I use it when I want to test something or create a prototype.</p>
<p><a href="http://blog.base42.nl/wp-content/uploads/Screen-shot-2010-01-18-at-18.18.23-.png"><img src="http://blog.base42.nl/wp-content/uploads/Screen-shot-2010-01-18-at-18.18.23--650x321.png" alt="" title="Screenshot of terminal script" width="650" height="321" class="alignnone size-large wp-image-1098" /></a></p>
<p>The code can be found on the post detail page.</p>
<p><span id="more-1097"></span></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># ------------------------------</span>
<span style="color: #666666; font-style: italic;"># -  FDT stub project creator  - </span>
<span style="color: #666666; font-style: italic;"># -  Jankees van Woezik, 2010  -</span>
<span style="color: #666666; font-style: italic;"># -   http://blog.base42.nl    -</span>
<span style="color: #666666; font-style: italic;"># -      januari 11, 2010      -</span>
<span style="color: #666666; font-style: italic;"># ------------------------------</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$#</span> <span style="color: #660033;">-ne</span> <span style="color: #000000;">1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&quot;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Problem, missing path&quot;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage: ./create_project.sh &lt;path&gt; &quot;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&quot;</span>
<span style="color: #000000; font-weight: bold;">else</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&quot;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;What's the name of the project:&quot;</span>
	<span style="color: #c20cb9; font-weight: bold;">read</span> project_name
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&quot;</span>	
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating folder: $1&quot;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#####</span>
	<span style="color: #666666; font-style: italic;"># Create project folder</span>
	<span style="color: #666666; font-style: italic;">#####</span>
&nbsp;
	<span style="color: #c20cb9; font-weight: bold;">mkdir</span> $<span style="color: #000000;">1</span>	
&nbsp;
	<span style="color: #666666; font-style: italic;">#####</span>
	<span style="color: #666666; font-style: italic;"># Create AS3_ClassPath</span>
	<span style="color: #666666; font-style: italic;">#####</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating file: $1/.as3_classpath&quot;</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&lt;?xml version=<span style="color: #000099; font-weight: bold;">\&quot;</span>1.0<span style="color: #000099; font-weight: bold;">\&quot;</span> encoding=<span style="color: #000099; font-weight: bold;">\&quot;</span>UTF-8<span style="color: #000099; font-weight: bold;">\&quot;</span> standalone=<span style="color: #000099; font-weight: bold;">\&quot;</span>no<span style="color: #000099; font-weight: bold;">\&quot;</span>?&gt;
&lt;AS3Classpath&gt;
    &lt;AS3Classpath generateProblems=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span> type=<span style="color: #000099; font-weight: bold;">\&quot;</span>lib<span style="color: #000099; font-weight: bold;">\&quot;</span> useAsSharedCode=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;playerglobal.swc&lt;/AS3Classpath&gt;
    &lt;AS3Classpath generateProblems=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span> type=<span style="color: #000099; font-weight: bold;">\&quot;</span>lib<span style="color: #000099; font-weight: bold;">\&quot;</span> useAsSharedCode=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;flex.swc&lt;/AS3Classpath&gt;
    &lt;AS3Classpath generateProblems=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span> type=<span style="color: #000099; font-weight: bold;">\&quot;</span>lib<span style="color: #000099; font-weight: bold;">\&quot;</span> useAsSharedCode=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;framework.swc&lt;/AS3Classpath&gt;
    &lt;AS3Classpath generateProblems=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span> type=<span style="color: #000099; font-weight: bold;">\&quot;</span>lib<span style="color: #000099; font-weight: bold;">\&quot;</span> useAsSharedCode=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;rpc.swc&lt;/AS3Classpath&gt;
    &lt;AS3Classpath generateProblems=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span> type=<span style="color: #000099; font-weight: bold;">\&quot;</span>lib<span style="color: #000099; font-weight: bold;">\&quot;</span> useAsSharedCode=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;utilities.swc&lt;/AS3Classpath&gt;
    &lt;AS3Classpath generateProblems=<span style="color: #000099; font-weight: bold;">\&quot;</span>true<span style="color: #000099; font-weight: bold;">\&quot;</span> type=<span style="color: #000099; font-weight: bold;">\&quot;</span>source<span style="color: #000099; font-weight: bold;">\&quot;</span> useAsSharedCode=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;source&lt;/AS3Classpath&gt;
    &lt;AS3Classpath generateProblems=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span> type=<span style="color: #000099; font-weight: bold;">\&quot;</span>source<span style="color: #000099; font-weight: bold;">\&quot;</span> useAsSharedCode=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;inlet42&lt;/AS3Classpath&gt;
&lt;/AS3Classpath&gt;&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>.as3_classpath
&nbsp;
	<span style="color: #666666; font-style: italic;">#####</span>
	<span style="color: #666666; font-style: italic;"># Create .project</span>
	<span style="color: #666666; font-style: italic;">#####</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating file: $1/.project&quot;</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&lt;?xml version=<span style="color: #000099; font-weight: bold;">\&quot;</span>1.0<span style="color: #000099; font-weight: bold;">\&quot;</span> encoding=<span style="color: #000099; font-weight: bold;">\&quot;</span>UTF-8<span style="color: #000099; font-weight: bold;">\&quot;</span>?&gt;
&lt;projectDescription&gt;
	&lt;name&gt;<span style="color: #007800;">$project_name</span>&lt;/name&gt;
	&lt;comment&gt;&lt;/comment&gt;
	&lt;projects&gt;
	&lt;/projects&gt;
	&lt;buildSpec&gt;
		&lt;buildCommand&gt;
			&lt;name&gt;com.powerflasher.fdt.core.FlashBuilder&lt;/name&gt;
			&lt;arguments&gt;
			&lt;/arguments&gt;
		&lt;/buildCommand&gt;
	&lt;/buildSpec&gt;
	&lt;natures&gt;
		&lt;nature&gt;com.powerflasher.fdt.core.FlashNature&lt;/nature&gt;
	&lt;/natures&gt;
	&lt;linkedResources&gt;
		&lt;link&gt;
			&lt;name&gt;flex.swc&lt;/name&gt;
			&lt;type&gt;1&lt;/type&gt;
			&lt;locationURI&gt;Flex_3_SDK_0/frameworks/libs/flex.swc&lt;/locationURI&gt;
		&lt;/link&gt;
		&lt;link&gt;
			&lt;name&gt;framework.swc&lt;/name&gt;
			&lt;type&gt;1&lt;/type&gt;
			&lt;locationURI&gt;Flex_3_SDK_0/frameworks/libs/framework.swc&lt;/locationURI&gt;
		&lt;/link&gt;
		&lt;link&gt;
			&lt;name&gt;playerglobal.swc&lt;/name&gt;
			&lt;type&gt;1&lt;/type&gt;
			&lt;locationURI&gt;Flex_3_SDK_0/frameworks/libs/player/9/playerglobal.swc&lt;/locationURI&gt;
		&lt;/link&gt;
		&lt;link&gt;
			&lt;name&gt;rpc.swc&lt;/name&gt;
			&lt;type&gt;1&lt;/type&gt;
			&lt;locationURI&gt;Flex_3_SDK_0/frameworks/libs/rpc.swc&lt;/locationURI&gt;
		&lt;/link&gt;
		&lt;link&gt;
			&lt;name&gt;utilities.swc&lt;/name&gt;
			&lt;type&gt;1&lt;/type&gt;
			&lt;locationURI&gt;Flex_3_SDK_0/frameworks/libs/utilities.swc&lt;/locationURI&gt;
		&lt;/link&gt;
	&lt;/linkedResources&gt;
&lt;/projectDescription&gt;&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>.project
&nbsp;
	<span style="color: #666666; font-style: italic;">#####</span>
	<span style="color: #666666; font-style: italic;"># Create .settings folder</span>
	<span style="color: #666666; font-style: italic;">#####</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating folder: $1/.settings&quot;</span>
&nbsp;
	<span style="color: #c20cb9; font-weight: bold;">mkdir</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>.settings
&nbsp;
	<span style="color: #666666; font-style: italic;">#####</span>
	<span style="color: #666666; font-style: italic;"># Create settings files</span>
	<span style="color: #666666; font-style: italic;">#####</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating file: $1/.settings/com.powerflasher.fdt.core.prefs&quot;</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;#Sun Jan 10 22:13:28 CET 2010
com.powerflasher.fdt.core.Language=AS3
com.powerflasher.fdt.core.LanguageType=Flex_3_SDK_0
eclipse.preferences.version=1&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>.settings<span style="color: #000000; font-weight: bold;">/</span>com.powerflasher.fdt.core.prefs
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating file: $1/.settings/org.eclipse.core.resources.prefs&quot;</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;#Sun Jan 10 22:13:28 CET 2010
eclipse.preferences.version=1
encoding/&lt;project&gt;=UTF-8&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>.settings<span style="color: #000000; font-weight: bold;">/</span>org.eclipse.core.resources.prefs
&nbsp;
	<span style="color: #666666; font-style: italic;">#####</span>
	<span style="color: #666666; font-style: italic;"># Create source folder</span>
	<span style="color: #666666; font-style: italic;">#####</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating folder: $1/source&quot;</span>	
&nbsp;
	<span style="color: #c20cb9; font-weight: bold;">mkdir</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">source</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">#####</span>
	<span style="color: #666666; font-style: italic;"># Create Main.as</span>
	<span style="color: #666666; font-style: italic;">#####</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating file: $1/source/Main.as&quot;</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;package {
	import flash.display.Sprite;
&nbsp;
	/**
	 *	@author Jankees.van.Woezik [jankees at base42 dot nl] 
	 */
	public class Main extends Sprite {
&nbsp;
		public function Main() {
		}
	}
}&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>source<span style="color: #000000; font-weight: bold;">/</span>Main.as
&nbsp;
	<span style="color: #666666; font-style: italic;">#####</span>
	<span style="color: #666666; font-style: italic;"># Create builders folder</span>
	<span style="color: #666666; font-style: italic;">#####</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating folder: $1/builders&quot;</span>
&nbsp;
	<span style="color: #c20cb9; font-weight: bold;">mkdir</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>builders
&nbsp;
	<span style="color: #666666; font-style: italic;">#####</span>
	<span style="color: #666666; font-style: italic;"># Create builder for Main.as</span>
	<span style="color: #666666; font-style: italic;">#####</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;creating file: $1/builders/Main.launch&quot;</span>
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&lt;?xml version=<span style="color: #000099; font-weight: bold;">\&quot;</span>1.0<span style="color: #000099; font-weight: bold;">\&quot;</span> encoding=<span style="color: #000099; font-weight: bold;">\&quot;</span>UTF-8<span style="color: #000099; font-weight: bold;">\&quot;</span> standalone=<span style="color: #000099; font-weight: bold;">\&quot;</span>no<span style="color: #000099; font-weight: bold;">\&quot;</span>?&gt;
&lt;launchConfiguration type=<span style="color: #000099; font-weight: bold;">\&quot;</span>com.powerflasher.fdt.ui.MxmlcGroup<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>APP_ARGUMENTS<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>ARGUMENTS<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>-default-size 800 600 -default-frame-rate 31 -default-background-color 0xFFFFFF -library-path {flexSDK}/frameworks/locale/en_US<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>FLEX_SDK_NAME<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>Flex_3_SDK_0<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;booleanAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>KILL_PREVIUOS_VIEWER<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>false<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>MAIN_CLASS<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>source/Main.as<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>OUTPUT<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>bin/main.swf<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;booleanAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>PASS_CP<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>true<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;booleanAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>PASS_MAIN_CLASS<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>true<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;booleanAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>PASS_SWCS<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>true<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;intAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>PLAYER_HEIGHT<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>600<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;intAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>PLAYER_WIDTH<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>800<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>POST_COMPILE_ANT<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>PRE_COMPILE_ANT<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>PROJECT_NAME<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #007800;">$project_name</span><span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>PUBLISHER_ID<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;booleanAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>START_SWF_ENABLED<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>true<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>START_SWF_LOCATION<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>bin/main.swf<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>START_SWF_WITH<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>External SWF Viewer<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;booleanAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>USE_GLOBAL_FCSH_LOCATION<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>true<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;listAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>org.eclipse.debug.core.MAPPED_RESOURCE_PATHS<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;
&lt;listEntry value=<span style="color: #000099; font-weight: bold;">\&quot;</span>/<span style="color: #007800;">$project_name</span><span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;/listAttribute&gt;
&lt;listAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>org.eclipse.debug.core.MAPPED_RESOURCE_TYPES<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;
&lt;listEntry value=<span style="color: #000099; font-weight: bold;">\&quot;</span>4<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;/listAttribute&gt;
&lt;listAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>org.eclipse.debug.ui.favoriteGroups<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;
&lt;listEntry value=<span style="color: #000099; font-weight: bold;">\&quot;</span>org.eclipse.debug.ui.launchGroup.debug<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;listEntry value=<span style="color: #000099; font-weight: bold;">\&quot;</span>org.eclipse.debug.ui.launchGroup.run<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;/listAttribute&gt;
&lt;stringAttribute key=<span style="color: #000099; font-weight: bold;">\&quot;</span>process_factory_id<span style="color: #000099; font-weight: bold;">\&quot;</span> value=<span style="color: #000099; font-weight: bold;">\&quot;</span>com.powerflasher.fdt.ui.launch.fcsh.ProcessFactory<span style="color: #000099; font-weight: bold;">\&quot;</span>/&gt;
&lt;/launchConfiguration&gt;&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">/</span>builders<span style="color: #000000; font-weight: bold;">/</span>Main.launch
&nbsp;
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&quot;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;All done, the project is created and ready to be imported in FDT&quot;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&quot;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">fi</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2010/01/18/create-a-project-for-fdt-fast/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Profiling a FDT project with Flash Builder</title>
		<link>http://blog.base42.nl/2010/01/10/profiling-a-fdt-project-with-flash-builder/</link>
		<comments>http://blog.base42.nl/2010/01/10/profiling-a-fdt-project-with-flash-builder/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 13:30:18 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[My work]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=1090</guid>
		<description><![CDATA[I made a screencast on how I profile my FDT applications using the Flash Builder profiler. With this profiler you can easily find memory leaks in your application.

All the files I used in the video can be downloaded here:

]]></description>
			<content:encoded><![CDATA[<p>I made a screencast on how I profile my FDT applications using the Flash Builder profiler. With this profiler you can easily find memory leaks in your application.</p>
<p><object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/3D4zsEII4yQ&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/3D4zsEII4yQ&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
<p>All the files I used in the video can be downloaded here:</p>
<p><a href='http://blog.base42.nl/wp-content/uploads/Profiler.zip'><img src="http://blog.base42.nl/wp-content/uploads/Screen-shot-2009-12-11-at-21.46.37.png" alt="" title="" width="89" class="alignnone size-full wp-image-1060" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2010/01/10/profiling-a-fdt-project-with-flash-builder/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Actionscript snowflakes</title>
		<link>http://blog.base42.nl/2010/01/09/actionscript-snowflakes/</link>
		<comments>http://blog.base42.nl/2010/01/09/actionscript-snowflakes/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 21:13:40 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[My work]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=1085</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="600" height="450"><param name="movie" value="http://projects.base42.nl/base42/Snowflakes/Snowflakes.swf"><embed src="http://projects.base42.nl/base42/Snowflakes/Snowflakes.swf" width="600" height="450"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2010/01/09/actionscript-snowflakes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My workflow with ANT and FDT</title>
		<link>http://blog.base42.nl/2009/12/11/my-workflow-with-ant-and-fdt/</link>
		<comments>http://blog.base42.nl/2009/12/11/my-workflow-with-ant-and-fdt/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 21:30:15 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Workflow]]></category>
		<category><![CDATA[ANT]]></category>
		<category><![CDATA[FDT]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=1041</guid>
		<description><![CDATA[I am a big fan of things that speed up my workflow. One of the things that I have been using a lot lately is ANT. ANT is a scripting language you can use from within Eclipse (and FDT). ANT is quite powerful. You can use it to show input dialogs, manipulate files, create files, [...]]]></description>
			<content:encoded><![CDATA[<p>I am a big fan of things that speed up my workflow. One of the things that I have been using a lot lately is <a href="http://en.wikipedia.org/wiki/Apache_Ant">ANT</a>. ANT is a scripting language you can use from within Eclipse (and FDT). ANT is quite powerful. You can use it to show input dialogs, manipulate files, create files, compile an application, FTP, SVN and much much more!</p>
<p>In my last three projects I have been using the same ANT file and I think it is pretty useful for other Flash developers too. That&#8217;s why I want to share it with you.</p>
<p>My ANT file has four targets (functions).</p>
<ol>
<li>Debug in Firefox</li>
<li>Create deployable swf</li>
<li>Deploy to FTP server</li>
<li>Clean debug in Firefox</li>
</ol>
<p>The most important target is the first one, that&#8217;s the target I use the most. It compiles the actionscript into a SWF and then gives Firefox focus. If you want to know how this works see <a href="http://epologee.com/blog/2009/focus-and-reload-pages-in-firefox-with-ant/">epologee.com/blog</a>. I know a lot of people use the external player in FDT, I switched to Firefox because it is much faster and as a bonus you can use SWFAdress and other HTML stuff. In my opinion it&#8217;s much better to test from within the browser because it it behaves a bit different then external player in some occasions. </p>
<p>The second target (Create deployable SWF) creates a SWF which is smaller that the debug version; this is because I excluded the &#8216;verbose stacktraces&#8217; on a large project this somethings takes 200kb of a SWF file. </p>
<p>Another thing I added to my ANT task is a <a href="http://wiki.joa-ebert.com/index.php/Conditional_Compilation_With_FDT">conditional compilation arguments</a> to the compiler. With these arguments it&#8217;s really easy to create a code block which only works for deployment, or a piece of code which only works for testing. </p>
<p>The code to do this looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">CONFIG::Debug
{
	// code for debugging
}
&nbsp;
CONFIG::Release
{
	// code for release version
}</pre></div></div>

<p>Another interesting thing I added was FTP, the only problem is it isn&#8217;t supported by FDT by default. You need to install a external script (pretty easy). All about FTP and ANT is on the <a href="http://www.rumblingskies.com/blog/?p=75">blog</a> of Erik van Nieuwburg. </p>
<p>Every time you compile using my script ANT creates a build.txt with some information about the build (deploment or development, time of compilation, filesize, user, etc) I store this information in Subversion to keep track of all the builds. I copy this to a folder on the webserver too. In another project I used a modified version of this code to update a Version.as file before compiling&#8230;.</p>
<h2>Video</h2>
<p>I created a video of my workflow to show you how it works.</p>
<p><object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/DBS93_MRwWg&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/DBS93_MRwWg&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
<p>If you have any feedback or suggestions please let me know. I created a zip file with all the files used in the video;</p>
<p><a href='http://blog.base42.nl/wp-content/uploads/AntBuildFileExample.zip'><img src="http://blog.base42.nl/wp-content/uploads/Screen-shot-2009-12-11-at-21.46.37.png" alt="" title="" width="89" class="alignnone size-full wp-image-1060" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2009/12/11/my-workflow-with-ant-and-fdt/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Video of VoicePong in Denmark</title>
		<link>http://blog.base42.nl/2009/11/23/video-of-voicepong-in-denmark/</link>
		<comments>http://blog.base42.nl/2009/11/23/video-of-voicepong-in-denmark/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 21:20:36 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[My work]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=1038</guid>
		<description><![CDATA[This is a video I got from James Howard Young, he used VoicePong to show students how to create interactive music.
VoicePong is created by Patrick Brouwer and me.

]]></description>
			<content:encoded><![CDATA[<p>This is a video I got from James Howard Young, he used <a href="http://code.google.com/p/flashliveaudiocontroller/" target="_blank">VoicePong</a> to show students how to create interactive music.</p>
<p>VoicePong is created by Patrick Brouwer and me.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Frdn6ICm-Xw&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/Frdn6ICm-Xw&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2009/11/23/video-of-voicepong-in-denmark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interactive music for the Recorder</title>
		<link>http://blog.base42.nl/2009/11/22/interactive-music-for-the-recorder/</link>
		<comments>http://blog.base42.nl/2009/11/22/interactive-music-for-the-recorder/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 11:05:10 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[My work]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=1031</guid>
		<description><![CDATA[James Howard Young is giving a workshop &#8216;Interactive music for the Recorder&#8217;, in this workshop he uses VoicePong to show his students what&#8217;s possible!!
Denmark premiere of the results of a collaboration between Jnote.org and Base42.nl where performers of acoustic instruments control onscreen objects in a game-type environment


]]></description>
			<content:encoded><![CDATA[<p><a href="http://jnote.org/2535">James Howard Young</a> is giving a workshop &#8216;Interactive music for the Recorder&#8217;, in this workshop he uses <a href="http://www.youtube.com/watch?v=uo2FXTvMvRE" target="_blank">VoicePong</a> to show his students what&#8217;s possible!!</p>
<blockquote><p>Denmark premiere of the results of a collaboration between Jnote.org and Base42.nl where performers of acoustic instruments control onscreen objects in a game-type environment</p></blockquote>
<p><img class="alignnone size-full wp-image-1032" title="Denmark premiere of the results of a collaboration between Jnote.org and Base42.nl where performers of acoustic instruments control onscreen objects in a game-type environment" src="http://blog.base42.nl/wp-content/uploads/11833_1275494573472_1413182025_794580_852382_n.jpg" alt="Denmark premiere of the results of a collaboration between Jnote.org and Base42.nl where performers of acoustic instruments control onscreen objects in a game-type environment" width="604" height="453" /></p>
<p><img class="alignnone size-full wp-image-1033" title="Denmark premiere of the results of a collaboration between Jnote.org and Base42.nl where performers of acoustic instruments control onscreen objects in a game-type environment" src="http://blog.base42.nl/wp-content/uploads/14437_1272824506722_1413182025_789102_7233085_n.jpg" alt="Denmark premiere of the results of a collaboration between Jnote.org and Base42.nl where performers of acoustic instruments control onscreen objects in a game-type environment" width="604" height="426" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2009/11/22/interactive-music-for-the-recorder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Read it later!</title>
		<link>http://blog.base42.nl/2009/10/25/read-it-later/</link>
		<comments>http://blog.base42.nl/2009/10/25/read-it-later/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 18:31:22 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=1023</guid>
		<description><![CDATA[When browsing the internet I see a lot of cool stuff that I want to read, but how do you store these items. What I used to do was store it to my Delicious account but I hardly ever look back to my bookmarks (I only use them to search for stored pages)&#8230; Today I [...]]]></description>
			<content:encoded><![CDATA[<p>When browsing the internet I see a lot of cool stuff that I want to read, but how do you store these items. What I used to do was store it to my <a href="http://delicious.com/network/jankeesvw">Delicious</a> account but I hardly ever look back to my bookmarks (I only use them to search for stored pages)&#8230; Today I accidentally came across the Firefox plugin &#8216;<a href="https://addons.mozilla.org/en-US/firefox/addon/7661">Read it later</a>&#8216;. It is a quick way to save those interesting pages! It has some really cool features:</p>
<blockquote><p>• Save pages to a reading list to read when you have time<br />
• Offline Reading Mode &#8211; Read the items you’ve saved for later on the plane, train, or anywhere<br />
• RSS Feeds &#8211; View your list from anywhere with automatic rss feeds of your items<br />
• Sync Between Computers &#8211; Sync your reading list with any number of computers, work or home<br />
• After reading, bookmark pages on your preferred bookmarking service<br />
• Click to Save Mode &#8211; Quickly batch a reading list just by clicking on interesting links
</p></blockquote>
<p><img src="http://blog.base42.nl/wp-content/uploads/Screen-shot-2009-10-25-at-19.07.10.png" alt="Read it later" title="Read it later" width="399" height="327" class="alignnone size-full wp-image-1024" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2009/10/25/read-it-later/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sheets les 3 Visualizing information in Flash</title>
		<link>http://blog.base42.nl/2009/10/15/sheets-les-3-visualizing-information-in-flash/</link>
		<comments>http://blog.base42.nl/2009/10/15/sheets-les-3-visualizing-information-in-flash/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 12:36:58 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[My work]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=1019</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href='http://blog.base42.nl/wp-content/uploads/Les3.pdf'><img style="border: 1px; border-color: #000000; border-style: solid"  src="http://blog.base42.nl/wp-content/uploads/Screen-shot-2009-10-15-at-14.24.59-650x487.png" alt="Screen shot 2009-10-15 at 14.24.59" title="Screen shot 2009-10-15 at 14.24.59" width="650" height="487" class="alignnone size-large wp-image-1018" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2009/10/15/sheets-les-3-visualizing-information-in-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash VoiceArkanoid</title>
		<link>http://blog.base42.nl/2009/10/11/flash-voicearkanoid/</link>
		<comments>http://blog.base42.nl/2009/10/11/flash-voicearkanoid/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 22:35:44 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[My work]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=1003</guid>
		<description><![CDATA[Today I have been working with Patrick Brouwer on a new voice controlled game. We wired up a version of Arkanoid with our  open source audio framework in a few hours. Below is a video of the result.
(It&#8217;s work in progress&#8230; the final version will be presented on the Dutch Design Week next week)

ps. [...]]]></description>
			<content:encoded><![CDATA[<p>Today I have been working with <a href="http://www.inlet.nl">Patrick Brouwer</a> on a new voice controlled game. We wired up a version of Arkanoid with our  <a href="http://code.google.com/p/flashliveaudiocontroller/">open source audio framework</a> in a few hours. Below is a video of the result.</p>
<p>(It&#8217;s work in progress&#8230; the final version will be presented on <a href="http://www.dutchdesignweek.nl/event2.php?id=1174">the Dutch Design Week</a> next week)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="650" height="530" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/zaU8UHojKhc&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="650" height="530" src="http://www.youtube.com/v/zaU8UHojKhc&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>ps. the source can be found on <a href="http://code.google.com/p/flashliveaudiocontroller/">Google Code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2009/10/11/flash-voicearkanoid/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Anne Frank</title>
		<link>http://blog.base42.nl/2009/10/11/anne-frank/</link>
		<comments>http://blog.base42.nl/2009/10/11/anne-frank/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 10:24:35 +0000</pubDate>
		<dc:creator>jankees</dc:creator>
				<category><![CDATA[My work]]></category>

		<guid isPermaLink="false">http://blog.base42.nl/?p=991</guid>
		<description><![CDATA[I am currently working for Lost Boys on one of the biggest projects I have ever taken part in, the Virtual Anne Frank House. It is a Papervision3D environment where you can click through all information about Anne Frank. Many great Flashers have been involved on the project (Eric-Paul Lecluse, Arie de Bonth, Antoine Lubach, [...]]]></description>
			<content:encoded><![CDATA[<p>I am currently working for <a href="http://www.lostboys.nl">Lost Boys</a> on one of the biggest projects I have ever taken part in, the Virtual Anne Frank House. It is a Papervision3D environment where you can click through all information about Anne Frank. Many great Flashers have been involved on the project (<a href="http://twitter.com/epologee">Eric-Paul Lecluse</a>, <a href="http://twitter.com/redhotbeani">Arie de Bonth</a>, <a href="http://www.m2media.biz/v3/html/#about">Antoine Lubach</a>, <a href="https://twitter.com/acidcats">Stephan Bezoen</a> and last but not least <a href="https://twitter.com/unitzeroone">Ralph Hauwert</a>.</p>
<p>The Anne Frank foundation posted a making of video on Youtube last week. Really cool!</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/caVZeqEcrg4&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/caVZeqEcrg4&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.base42.nl/2009/10/11/anne-frank/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
