<?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>Dan Wolfe &#187; Tools I Like</title>
	<atom:link href="http://www.danwolfe.net/category/game-development/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danwolfe.net</link>
	<description>Just another indie game developer blog</description>
	<lastBuildDate>Fri, 03 Sep 2010 03:21:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How To: Build Android Apps with FlashDevelop</title>
		<link>http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/</link>
		<comments>http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 06:02:27 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=785</guid>
		<description><![CDATA[WARNING!!! THIS IS NOT A FULL STEP-BY-STEP TUTORIAL! I assume that you already know how to compile a swf with Flash Develop, but I&#8217;ll try to go over the basic steps as a quick review. There are quite a few steps along the way to get everything working, so since I don&#8217;t want to reinvent [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WARNING!!! THIS IS NOT A FULL STEP-BY-STEP TUTORIAL!</strong></p>
<p>I assume that you already know how to compile a swf with Flash Develop, but I&#8217;ll try to go over the basic steps as a quick review. There are quite a few steps along the way to get everything working, so since I don&#8217;t want to reinvent the wheel with this how-to so I&#8217;ll instead direct you to the original sources I followed where it makes sense:</p>
<p>What you need:</p>
<ul>
<li><a href="http://www.flashdevelop.org/" target="_blank">FlashDevelop</a></li>
<li><a href="http://www.java.com/en/download/" target="_blank">JRE 1.6</a></li>
<li><a href="http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4" target="_blank">Flex 4 SDK</a></li>
<li><a href="http://labs.adobe.com/technologies/air2/android/" target="_blank">Air for Android SDK and Runtime for Andoid 2.2 Emulator</a></li>
<li><a href="http://developer.android.com/sdk/index.html" target="_blank">Android SDK</a></li>
<li><a href="http://wiki.github.com/AdamAtomic/flixel/" target="_blank">Flixel</a> (optional)</li>
</ul>
<p><a href="http://www.flashdevelop.org/wikidocs/index.php?title=Installation" target="_blank">Install </a>and <a href="http://www.flashdevelop.org/wikidocs/index.php?title=Configuration" target="_blank">configure</a> FlashDevelop if you haven&#8217;t already. FlashGamesDojo also has a nice <a href="http://flashgamedojo.com/wiki/index.php?title=Installing_FlashDevelop" target="_blank">install/configure tutorial</a>.<span id="more-785"></span></p>
<p>Create a new &#8220;AIR Flex 4 Projector&#8221; project from the Project&gt;New Project menu.</p>
<p>At this point you can follow the &#8220;Hello World tutorial for <a href="http://flashgamedojo.com/wiki/index.php?title=Hello_World_-_FlashDevelop%28Flixel%29" target="_blank">Flixel</a> info if you would like. Otherwise create your game/app/whatever. When you&#8217;re done compile your app into a .swf file (press F8 or Project&gt;Build Project from the menu).</p>
<p>Okay, now we have a .swf file! Let&#8217;s turn it into an Air for Android application:</p>
<p>You need two text files named CreateCertificate.bat and  PackageApplication.bat.  If you created an &#8220;AIR Flex 4 projector&#8221; project to start with these files  will be created for you automatically. If you created a different project type you can either create an &#8220;AIR Flex 4 projector&#8221; project now and move your project file over to the new folder or, create these files manually in the main project directory.  You&#8217;ll need to make some changes  to get them working with the 2.5 Beta SDK. Here are mine to use as  examples, please change the password, application names, and path to SDKs as  appropriate:</p>
<p>CreateCertificate.bat:</p>
<pre class="brush:shell">@echo off

:: AIR certificate generator
:: More information:
:: http://livedocs.adobe.com/flex/3/html/help.html?content=CommandLineTools_5.html#1035959
:: http://livedocs.adobe.com/flex/3/html/distributing_apps_4.html#1037515

:: Path to Flex SDK binaries
set PATH=%PATH%;C:\AIR25_win_sdk\bin

:: Certificate information
set NAME=SelfSigned
set PASSWORD=FD
set CERTIFICATE=SelfSigned.pfx

call adt -certificate -cn %NAME% 1024-RSA %CERTIFICATE% %PASSWORD%
if errorlevel 1 goto failed

echo.
echo Certificate created: %CERTIFICATE%
echo With password: %PASSWORD%
echo.
echo Hint: you may have to wait a few minutes before using this certificate to build your AIR application setup.
echo.
goto end

:failed
echo.
echo Certificate creation FAILED.
echo.
echo Troubleshotting: did you configure the Flex SDK path in this Batch file?
echo.

:end
pause</pre>
<p>PackageApplication.bat:</p>
<pre class="brush:shell">@echo off

:: AIR application packaging
:: More information:
:: http://livedocs.adobe.com/flex/3/html/help.html?content=CommandLineTools_5.html#1035959

:: Path to Flex SDK and ANDROID binaries
set PATH=%PATH%;C:\AIR25_win_sdk\bin
set PATH=%PATH%;C:\android-sdk-windows\tools

:: Signature (see 'CreateCertificate.bat')
set CERTIFICATE=SelfSigned.pfx
set SIGNING_OPTIONS=-storetype pkcs12 -keystore %CERTIFICATE%
if not exist %CERTIFICATE% goto certificate

:: Output AIR
if not exist air md air
set AIR_FILE=air/MyApp.air

:: Output APK
if not exist apk md apk
set APK_FILE=apk/MyApp.apk

:: Input
set APP_XML=application.xml
set FILE_OR_DIR=-C bin .

echo Signing AIR setup using certificate %CERTIFICATE%.
call adt -package %SIGNING_OPTIONS% %AIR_FILE% %APP_XML% %FILE_OR_DIR%
if errorlevel 1 goto failed

echo.
echo AIR setup created: %AIR_FILE%
echo.

echo Signing APK setup using certificate %CERTIFICATE%.
call adt -package -target apk %SIGNING_OPTIONS% %APK_FILE% %APP_XML% %FILE_OR_DIR%
if errorlevel 1 goto failed

echo.
echo APK setup created: %APK_FILE%
echo.

:: APK INSTALL
echo Installing package... %APK_FILE%
call adb install %APK_FILE%
if errorlevel 1 goto failed2

echo.
echo Android setup installed: %APK_FILE%
echo.
goto end

:certificate
echo Certificate not found: %CERTIFICATE%
echo.
echo Troubleshotting:
echo A certificate is required, generate one using 'CreateCertificate.bat'
echo.
goto end

:failed
echo AIR setup creation FAILED.
echo.
echo Troubleshotting:
echo did you configure the Air SDK path in this Batch file?
echo %PATH%
echo.

:failed2
echo Android install FAILED.
echo.

:end
pause</pre>
<p>Next, let&#8217;s <a href="http://developer.android.com/sdk/index.html" target="_blank">install the Android SDK</a>. Then create a virtual device following the <a href="http://developer.android.com/resources/tutorials/hello-world.html" target="_blank">&#8220;Create an AVD&#8221; part of this tutorial</a>. Fire up the virtual device you just created. This will take a while&#8230;</p>
<p>Install the Air Runtime on the Android device by opening a Windows terminal window (Windows Start Menu&gt; type &#8220;cmd&#8221;) and entering the command:</p>
<p>adb install pathToRuntime/Runtime.apk</p>
<p>Now you&#8217;ve compiled your SWF, you have the Android emulator up and running with Air installed on it, all you have to do is right click on CreateCertificate.bat and select &#8220;Execute&#8221; from the popup menu. This will generate a certificate that can be used to sign your application.</p>
<p>Next,  right click on PackageApplication.bat and select &#8220;Execute&#8221; from the popup menu. Fill in the password you specified in CreateCertificate.bat file both times when prompted. Two steps happen here: The first one generates an .air file and the second generates an .apk file (and attempts to install it on an attached Android phone or the already running Android emulator).</p>
<p>And that&#8217;s it. If you&#8217;ve compiled your first Adobe Air for Android application! If you get stuck along the way the &#8220;Developing_AIR_Apps_for_Android&#8221; pdf included in the Adobe Air for Android SDK is an invaluable resource &#8211; just follow the the parts for &#8220;command line tools&#8221;.</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/droid_emu.png" title="" class="shutterset_singlepic73" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/73__320x240_droid_emu.png" alt="droid_emu" title="droid_emu" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=How+To%3A+Build+Android+Apps+with+FlashDevelop+http://is.gd/dUeO0" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=How+To%3A+Build+Android+Apps+with+FlashDevelop+http://is.gd/dUeO0" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;t=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;t=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/&amp;title=How+To%3A+Build+Android+Apps+with+FlashDevelop" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/how-to-build-android-apps-with-flashdevelop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tiled</title>
		<link>http://www.danwolfe.net/custom-export-plugin-for-tiled/</link>
		<comments>http://www.danwolfe.net/custom-export-plugin-for-tiled/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 13:42:44 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=780</guid>
		<description><![CDATA[Level design is a pain if you don&#8217;t have a decent tool. I&#8217;ve been using Tiled, a nice little open source tile map editor. One nifty thing you can do is write your own plugin so you can support any map format you need! Twitter Delicious Digg Facebook StumbleUpon]]></description>
			<content:encoded><![CDATA[<p>Level design is a pain if you don&#8217;t have a decent tool. I&#8217;ve been using <a href="http://sourceforge.net/projects/tiled/" target="_blank">Tiled</a>, a nice little open source tile map editor. One nifty thing you can do is <a href="http://sourceforge.net/apps/mediawiki/tiled/index.php?title=Writing_your_own_plugin" target="_blank">write your own plugin</a> so you can support any map format you need!</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/croppercapture9.png" title="" class="shutterset_singlepic78" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/78__320x240_croppercapture9.png" alt="croppercapture9" title="croppercapture9" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Tiled+http://is.gd/dUeO3" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Tiled+http://is.gd/dUeO3" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;t=Tiled" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;t=Tiled" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/custom-export-plugin-for-tiled/&amp;title=Tiled" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/custom-export-plugin-for-tiled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hell Invades Mars for ANDROID Phones Coming Soon</title>
		<link>http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/</link>
		<comments>http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 02:29:25 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=772</guid>
		<description><![CDATA[Adobe and Google have made porting Flash games to the Android platform painfully easy. I&#8217;ve reworked Hell Invades Mars to run on Air for Android. Here are a couple of updated screenshots: UPDATE: I was having problems getting the original version to run on the Android Emulator, so the entire game has been ported to [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe and Google have made porting Flash games to the Android platform painfully easy. I&#8217;ve reworked <em>Hell Invades Mars</em> to run on Air for Android. Here are a couple of updated screenshots:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-15-772">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-74" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/ha1.png" title=" " class="shutterset_set_15" >
								<img title="ha1" alt="ha1" src="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/thumbs/thumbs_ha1.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-75" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/ha2.png" title=" " class="shutterset_set_15" >
								<img title="ha2" alt="ha2" src="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/thumbs/thumbs_ha2.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-76" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/ha3.png" title=" " class="shutterset_set_15" >
								<img title="ha3" alt="ha3" src="http://www.danwolfe.net/wp-content/gallery/hell-invades-mars-android/thumbs/thumbs_ha3.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p><strong>UPDATE:</strong></p>
<p>I was having problems getting the original version to run on the Android Emulator, so the entire game has been ported to <a href="http://www.flixel.org" target="_blank">Flixel</a>!</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/hellan2.png" title="" class="shutterset_singlepic77" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/77__320x240_hellan2.png" alt="hellan2" title="hellan2" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon+http://is.gd/dUeO7" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon+http://is.gd/dUeO7" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;t=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;t=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/&amp;title=Hell+Invades+Mars+for+ANDROID+Phones+Coming+Soon" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/hell-invades-mars-for-android-phones-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flixel + Air + Android = Awesome</title>
		<link>http://www.danwolfe.net/flixel-air-android-awesome/</link>
		<comments>http://www.danwolfe.net/flixel-air-android-awesome/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 01:17:10 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=767</guid>
		<description><![CDATA[Run, Humanoid, Run! running on the Android SDK emulator: Twitter Delicious Digg Facebook StumbleUpon]]></description>
			<content:encoded><![CDATA[<p><em>Run, Humanoid, Run!</em> running on the Android SDK emulator:</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/droid_emu.png" title="" class="shutterset_singlepic73" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/73__320x240_droid_emu.png" alt="droid_emu" title="droid_emu" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Flixel+%2B+Air+%2B+Android+%3D+Awesome+http://is.gd/dUeO9" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Flixel+%2B+Air+%2B+Android+%3D+Awesome+http://is.gd/dUeO9" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/flixel-air-android-awesome/&amp;t=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/flixel-air-android-awesome/&amp;t=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/flixel-air-android-awesome/&amp;title=Flixel+%2B+Air+%2B+Android+%3D+Awesome" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/flixel-air-android-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flixel 2.0 Released</title>
		<link>http://www.danwolfe.net/flixel-2-0-released/</link>
		<comments>http://www.danwolfe.net/flixel-2-0-released/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 14:12:06 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=705</guid>
		<description><![CDATA[Adam Atomic has just released Flixel 2.0! Flixel is an Actionscript 3 library designed to simplify Flash game creation. I&#8217;ve used Flixel on Gunpei Mania and Run, Humanoid, Run! and think that it is really a great tool. The new version breaks backwards compatibility, but it has some exciting new features, a number of bug [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://adamatomic.com/" target="_blank">Adam Atomic</a> has just released <a href="http://www.flixel.org" target="_blank">Flixel</a> 2.0!</p>
<p>Flixel is an Actionscript 3 library designed to simplify Flash game creation. I&#8217;ve used Flixel on <em>Gunpei Mania</em> and <em>Run, Humanoid, Run!</em> and think that it is really a great tool. The new version breaks backwards compatibility, but it has some exciting new features, a number of bug fixes, and many general improvements.</p>
<p>Here are the important links:</p>
<ul>
<li><a href="http://github.com/AdamAtomic/flixel/downloads" target="_blank">Download</a></li>
<li><a href="http://flixel.org/forums/index.php?topic=973.0" target="_blank">Announcement</a></li>
<li><a href="http://bit.ly/4BImtf" target="_blank">Release Notes</a></li>
<li><a href="http://bit.ly/daft75" target="_blank">Porting Guide (1.5 to 2.0)</a></li>
<li><a href="http://bit.ly/cnFWcy" target="_blank">Demos</a></li>
</ul>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Flixel+2.0+Released+http://is.gd/dUopA" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Flixel+2.0+Released+http://is.gd/dUopA" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/flixel-2-0-released/&amp;t=Flixel+2.0+Released" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/flixel-2-0-released/&amp;t=Flixel+2.0+Released" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/flixel-2-0-released/&amp;title=Flixel+2.0+Released" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/flixel-2-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Font &#8211; 8bit</title>
		<link>http://www.danwolfe.net/free-font-8bit/</link>
		<comments>http://www.danwolfe.net/free-font-8bit/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 14:20:48 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=295</guid>
		<description><![CDATA[I designed a simple retro-style font called 8-bit to use on my thesis game. It was created using the online tool FontStruct. It is a normal TrueType font so it should work on pretty much any OS. I&#8217;m releasing it for others to use under a Creative Commons Attribution 3.0 United States License. Happy Christmahanakwanzika. [...]]]></description>
			<content:encoded><![CDATA[<p>I designed a simple retro-style font called 8-bit to use on my thesis game. It was created using the online tool <a href="http://fontstruct.fontshop.com/" target="_blank">FontStruct</a>. It is a normal TrueType font so it should work on pretty much any OS.</p>
<p>I&#8217;m releasing it for others to use under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">Creative Commons Attribution 3.0 United States License</a>. Happy Christmahanakwanzika.</p>
<p><strong><a href="http://www.danwolfe.net/wp-content/uploads/2009/11/8_bit.zip">Download 8-bit Font</a></strong></p>
<p><strong><br />
</strong></p>
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"><img style="border-width: 0;" src="http://creativecommons.org/images/public/somerights20.png" alt="Creative Commons License" /></a><span><br />
</span></p>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Free+Font+%E2%80%93+8bit+http://is.gd/dUoq8" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Free+Font+%E2%80%93+8bit+http://is.gd/dUoq8" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/free-font-8bit/&amp;title=Free+Font+%E2%80%93+8bit" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/free-font-8bit/&amp;title=Free+Font+%E2%80%93+8bit" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/free-font-8bit/&amp;title=Free+Font+%E2%80%93+8bit" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/free-font-8bit/&amp;title=Free+Font+%E2%80%93+8bit" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/free-font-8bit/&amp;t=Free+Font+%E2%80%93+8bit" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/free-font-8bit/&amp;t=Free+Font+%E2%80%93+8bit" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/free-font-8bit/&amp;title=Free+Font+%E2%80%93+8bit" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/free-font-8bit/&amp;title=Free+Font+%E2%80%93+8bit" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/free-font-8bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inspirational Links 3: Chiptune</title>
		<link>http://www.danwolfe.net/inspirational-links-3-chiptune/</link>
		<comments>http://www.danwolfe.net/inspirational-links-3-chiptune/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 07:08:19 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://danwolfe.kicks-ass.net/wordpress/?p=212</guid>
		<description><![CDATA[Chiptune is the art of making music using a microprocessor. If you remember music on any of the retro game systems such as the Commodore 64, Nintendo, Super Nintendo, Gameboy, or Sega Genesis you remember chiptune music. Many indie developers find chiptune music a fitting choice for their games. Here are a few links to [...]]]></description>
			<content:encoded><![CDATA[<p>Chiptune is the art of making music using a microprocessor. If you remember music on any of the retro game systems such as the Commodore 64, Nintendo, Super Nintendo, Gameboy, or Sega Genesis you remember chiptune music. Many indie developers find chiptune music a fitting choice for their games. Here are a few links to help you get started.</p>
<p><strong>Commodore 64</strong></p>
<ul>
<li><a href="http://www.qotile.net/cynthcart.html" target="_blank">Cynthcart</a> – A cartridge that turns your C64 into a keyboard synthesizer.</li>
<li><a href="http://www.8bitventures.com/mssiah/" target="_blank">Mssiah</a> – Another C64 synthesizer cartridge.</li>
<li><a href="http://www.8bitventures.com/sid2sid/" target="_blank">Sid2Sid</a> – Upgrade board to add a second SID sound chip to your C64.</li>
</ul>
<p><strong>Gameboy</strong></p>
<ul>
<li><a href="http://www.littlesounddj.com/" target="_blank">LSDJ</a> – Little Sound DJ is a music sequencer for the Gameboy. It can be used in an emulator or loaded onto a real game cartridge.</li>
<li><a href="http://www.nanoloop.de/" target="_blank">Nanoloop</a> – Another music sequencer for Gameboy.</li>
<li><a href="http://pixelh8.co.uk/software/" target="_blank">Pixelh8</a> – Yet another sequencer.</li>
</ul>
<p><strong>Nintendo Entertainment System</strong></p>
<ul>
<li><a href="http://electrokraft.com/Super_Synth_Drums_NES_Cartridge.html" target="_blank">Super Synth Drum Machine</a> – Turns your NES into a drum machine.</li>
<li><a href="http://www.wayfar.net/0xf00000_overview.php" target="_blank">MidiNes</a> – Play music with a midi instrument on your NES.</li>
</ul>
<p><strong>Atari 2600</strong></p>
<ul>
<li><a href="http://www.qotile.net/synth.html" target="_blank">Synthcart</a> – Created by the same programmer who created the Cynthcart, this is more of a drum machine than a synth, but it has some cool sounds and effects.</li>
</ul>
<p><strong>Communities and Examples</strong></p>
<ul>
<li><a href="http://8bitcollective.com/" target="_blank">8bit collective</a> – A large chiptune community.</li>
<li><a href="http://www.chiptune.com/" target="_blank">Chiptune</a> – A fun Amiga inspired site.</li>
</ul>
<p><strong>Where to Buy</strong></p>
<ul>
<li><a href="http://atariage.com/" target="_blank">Atari Age</a> – On the rare occasion when the store is not down for maintenance, you can purchase both the Cynthcart and the Synthcart</li>
<li><a href="http://nonelectronics.com/catalog/" target="_blank">Non-finite</a> – Stocks modified Gameboys and occasionally you can pick up an LSDJ cartridge.</li>
</ul>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Inspirational+Links+3%3A+Chiptune+http://is.gd/dUopM" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Inspirational+Links+3%3A+Chiptune+http://is.gd/dUopM" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/inspirational-links-3-chiptune/&amp;title=Inspirational+Links+3%3A+Chiptune" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/inspirational-links-3-chiptune/&amp;title=Inspirational+Links+3%3A+Chiptune" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/inspirational-links-3-chiptune/&amp;title=Inspirational+Links+3%3A+Chiptune" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/inspirational-links-3-chiptune/&amp;title=Inspirational+Links+3%3A+Chiptune" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/inspirational-links-3-chiptune/&amp;t=Inspirational+Links+3%3A+Chiptune" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/inspirational-links-3-chiptune/&amp;t=Inspirational+Links+3%3A+Chiptune" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/inspirational-links-3-chiptune/&amp;title=Inspirational+Links+3%3A+Chiptune" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/inspirational-links-3-chiptune/&amp;title=Inspirational+Links+3%3A+Chiptune" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/inspirational-links-3-chiptune/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blender 2.5 Alpha 0 Released</title>
		<link>http://www.danwolfe.net/blender-2-5-alpha-0/</link>
		<comments>http://www.danwolfe.net/blender-2-5-alpha-0/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 19:04:12 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=448</guid>
		<description><![CDATA[This is a few days late since the new alpha version of Blender 2.5 was released back on Nov. 24. I finally had a chance to download and try the new build of Blender 2.5. This is a pretty amazing redesign. I really like the new interface. Here are the important links: Blender 2.5 Alpha [...]]]></description>
			<content:encoded><![CDATA[<p>This is a few days late since the new alpha version of Blender 2.5 was released back on Nov. 24. I finally had a chance to download and try the new build of Blender 2.5. This is a pretty amazing redesign. I really like the new interface. Here are the important links:</p>
<ul>
<li><strong><a href="http://www.blender.org/development/release-logs/blender-250/" target="_blank">Blender 2.5 Alpha 0 Release Notes and Road Map</a></strong></li>
<li><strong><a href="http://wiki.blender.org/index.php/Doc:Manual" target="_blank">Blender 2.5 Manual</a><br />
</strong></li>
<li><a href="http://www.blender.org/download/get-25-alpha/" target="_blank"><strong>Get Blender 2.5 Alpha 0</strong></a></li>
</ul>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Blender+2.5+Alpha+0+Released+http://is.gd/dUoqa" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Blender+2.5+Alpha+0+Released+http://is.gd/dUoqa" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/blender-2-5-alpha-0/&amp;title=Blender+2.5+Alpha+0+Released" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/blender-2-5-alpha-0/&amp;title=Blender+2.5+Alpha+0+Released" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/blender-2-5-alpha-0/&amp;title=Blender+2.5+Alpha+0+Released" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/blender-2-5-alpha-0/&amp;title=Blender+2.5+Alpha+0+Released" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/blender-2-5-alpha-0/&amp;t=Blender+2.5+Alpha+0+Released" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/blender-2-5-alpha-0/&amp;t=Blender+2.5+Alpha+0+Released" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/blender-2-5-alpha-0/&amp;title=Blender+2.5+Alpha+0+Released" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/blender-2-5-alpha-0/&amp;title=Blender+2.5+Alpha+0+Released" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/blender-2-5-alpha-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Setup</title>
		<link>http://www.danwolfe.net/my-setup/</link>
		<comments>http://www.danwolfe.net/my-setup/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 04:03:06 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=382</guid>
		<description><![CDATA[My current setup. Intel Core Duo iMac with Wacom Intuos 3 drawing tablet, Lexicon Lambda USB audio input, microphone, &#8220;Play it Loud&#8221; Gameboy with LSDJ, Commodore 64c with a Cynthcart and paddle controllers, and an Atari 2600 with a Synthcart and keyboard controllers. Twitter Delicious Digg Facebook StumbleUpon]]></description>
			<content:encoded><![CDATA[<p>My current setup. Intel Core Duo iMac with Wacom Intuos 3 drawing tablet, Lexicon Lambda USB audio input, microphone, &#8220;Play it Loud&#8221; Gameboy with LSDJ, Commodore 64c with a Cynthcart and paddle controllers, and an Atari 2600 with a Synthcart and keyboard controllers.</p>

<a href="http://www.danwolfe.net/wp-content/gallery/misc/desk.jpg" title="" class="shutterset_singlepic25" >
	<img class="ngg-singlepic" src="http://www.danwolfe.net/wp-content/gallery/cache/25__576x432_desk.jpg" alt="desk" title="desk" />
</a>

<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=My+Setup+http://is.gd/dUoqd" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=My+Setup+http://is.gd/dUoqd" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/my-setup/&amp;title=My+Setup" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/my-setup/&amp;title=My+Setup" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/my-setup/&amp;title=My+Setup" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/my-setup/&amp;title=My+Setup" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/my-setup/&amp;t=My+Setup" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/my-setup/&amp;t=My+Setup" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/my-setup/&amp;title=My+Setup" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/my-setup/&amp;title=My+Setup" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/my-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inkscape 0.47 Released</title>
		<link>http://www.danwolfe.net/inkscape-0-47-released/</link>
		<comments>http://www.danwolfe.net/inkscape-0-47-released/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 14:46:11 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Tools I Like]]></category>

		<guid isPermaLink="false">http://www.danwolfe.net/?p=370</guid>
		<description><![CDATA[Version 0.47 of Inkscape has just been released. Inkscape is an excellent vector art program, that runs on Windows, Mac OS X, and many flavors of Linux. Don&#8217;t let the version number fool you, 0.47 is a big release with some exciting new features. Posted on inkscape.org by Alexandre Prokoudine: &#8220;After over a year of [...]]]></description>
			<content:encoded><![CDATA[<p>Version 0.47 of Inkscape has just been released. Inkscape is an excellent vector art program, that runs on Windows, Mac OS X, and many flavors of Linux. Don&#8217;t let the version number fool you, 0.47 is a big release with some exciting new features.</p>
<p>Posted on <a href="http://www.inkscape.org" target="_blank">inkscape.org</a> by Alexandre Prokoudine:</p>
<p>&#8220;After over a year of intensive development and refactoring, Inkscape 0.47 is out. This version of the SVG-based vector graphics editor brings improved performance and tons of new features, some of which are as follows: timed autosave, Spiro splines, auto-smooth nodes, Eraser tool, new modes in Tweak tool, snapping options toolbar &amp; greater snapping abilities, new live path effects (including Envelope), over 200 preset SVG filters, new Cairo-based PS and EPS export, spell checker, many new extensions, optimized SVG code options, and much more.</p>
<p>&#8220;Additionally, it would be wrong to not mention the hundreds of bug fixes. Check out the <a href="http://wiki.inkscape.org/wiki/index.php/ReleaseNotes047" target="_blank">full release notes</a> for more information about what has changed, enjoy the <a href="http://inkscape.org/screenshots/index.php?lang=en" target="_blank">screenshots</a>, or just jump right to <a href="http://inkscape.org/download/?lang=en" target="_blank">downloading</a> your package for Windows, Linux or Mac OS X.&#8221;</p>
<p align="left"><a target="_blank" class="tt" href="http://twitter.com/home/?status=Inkscape+0.47+Released+http://is.gd/dUoqf" title="Post to Twitter"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://twitter.com/home/?status=Inkscape+0.47+Released+http://is.gd/dUoqf" title="Post to Twitter">Twitter</a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/inkscape-0-47-released/&amp;title=Inkscape+0.47+Released" title="Post to Delicious"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="Post to Delicious" /></a> <a target="_blank" class="tt" href="http://delicious.com/post?url=http://www.danwolfe.net/inkscape-0-47-released/&amp;title=Inkscape+0.47+Released" title="Post to Delicious">Delicious</a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/inkscape-0-47-released/&amp;title=Inkscape+0.47+Released" title="Post to Digg"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.danwolfe.net/inkscape-0-47-released/&amp;title=Inkscape+0.47+Released" title="Post to Digg">Digg</a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/inkscape-0-47-released/&amp;t=Inkscape+0.47+Released" title="Post to Facebook"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.danwolfe.net/inkscape-0-47-released/&amp;t=Inkscape+0.47+Released" title="Post to Facebook">Facebook</a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/inkscape-0-47-released/&amp;title=Inkscape+0.47+Released" title="Post to StumbleUpon"><img class="nothumb" src="http://www.danwolfe.net/wp-content/plugins/tweet-this/icons/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.danwolfe.net/inkscape-0-47-released/&amp;title=Inkscape+0.47+Released" title="Post to StumbleUpon">StumbleUpon</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.danwolfe.net/inkscape-0-47-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
