<?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>Architect, Engineer, Tech Enthusiast - Hasan Otuome</title>
	<atom:link href="http://technophi.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://technophi.com</link>
	<description>personal weblog of a tech addict</description>
	<lastBuildDate>Wed, 18 Aug 2010 17:59:15 +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>Flex 4 &#8211; Base64 Image Decompression and Decoding</title>
		<link>http://technophi.com/2010/08/18/flex-4-base64-image-decompression-and-decoding/</link>
		<comments>http://technophi.com/2010/08/18/flex-4-base64-image-decompression-and-decoding/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 12:04:11 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=536</guid>
		<description><![CDATA[If you ever run into a situation where you need/want to work with Base64-encoded images using AMF, here&#8217;s an example of the process involved in retrieving the encoded data packed with GZip compression from the backend. Source view is enabled on the SWF and the AMFPHP service used are included as well. To view the [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever run into a situation where you need/want to work with Base64-encoded images using AMF, here&#8217;s an example of the process involved in retrieving the encoded data packed with GZip compression from the backend. Source view is enabled on the SWF and the AMFPHP service used are included as well. </p>
<p>To view the demo in its own window, click <a href="http://technophi.com/examples/base64/Base64Decompressor.html">here</a>.<br />
<br/></p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Base64Decompressor_1590897123"
			class="flashmovie"
			width="955"
			height="600">
	<param name="movie" value="/examples/base64/Base64Decompressor.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="/examples/base64/Base64Decompressor.swf"
			name="fm_Base64Decompressor_1590897123"
			width="955"
			height="600">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/08/18/flex-4-base64-image-decompression-and-decoding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Builder 4 &#8211; Java Heap Space Issues</title>
		<link>http://technophi.com/2010/08/12/flash-builder-4-java-heap-space-issues/</link>
		<comments>http://technophi.com/2010/08/12/flash-builder-4-java-heap-space-issues/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 01:10:51 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=528</guid>
		<description><![CDATA[If you ever experience a message like &#8220;Error: Java Heap Space&#8221; when building, cleaning or generating a bin-release for a project in Flash Builder 4, try the following as a remedy: 1. Open the following files: a) /install_dir/sdks/3.5.0/bin/jvm.config b) /install_dir/sdks/4.0.0/bin/jvm.config 2. Locate the following line found under # Arguments to VM: java.args=-Xmx384m -Dsun.io.useCanonCaches=false 3. Increase [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever experience a message like &#8220;Error: Java Heap Space&#8221; when building, cleaning or generating a bin-release for a project in Flash Builder 4, try the following as a remedy:</p>
<p>1. Open the following files:<br />
	a) /install_dir/sdks/3.5.0/bin/jvm.config<br />
	b) /install_dir/sdks/4.0.0/bin/jvm.config</p>
<p>2. Locate the following line found under # Arguments to VM:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">java.args=-Xmx384m -Dsun.io.useCanonCaches=<span style="color: #c20cb9; font-weight: bold;">false</span></pre></div></div>

<p>3. Increase the memory size to a larger value like the following example:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">java.args=-Xmx512m -Dsun.io.useCanonCaches=<span style="color: #c20cb9; font-weight: bold;">false</span></pre></div></div>

<p>The max you set this value to is determined by your available memory along with some workflow considerations but this should alleviate your heap issues and smooth out Flash Builder compilations considerably&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/08/12/flash-builder-4-java-heap-space-issues/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP Documentation Tips</title>
		<link>http://technophi.com/2010/07/06/php-documentation-tips/</link>
		<comments>http://technophi.com/2010/07/06/php-documentation-tips/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 01:08:29 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=509</guid>
		<description><![CDATA[Recently had to run PhpDocumentor on a project only to be faced with broken documentation after bringing all class files into compliance with proper comments. At first I thought I was missing a config flag for the command-line but, it turns out that the PhpDocumentor-1.4.3 ZIP download contains broken template elements. In the following screenshot, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently had to run <a href="http://www.phpdoc.org/">PhpDocumentor</a> on a project only to be faced with broken documentation after bringing all class files into compliance with proper comments. At first I thought I was missing a config flag for the command-line but, it turns out that the PhpDocumentor-1.4.3 ZIP download contains broken template elements. In the following screenshot, notice how some CSS files have a .cs extenstion and some TPL files have a .tp extension. </p>
<p><a href="http://technophi.com/wp-content/uploads/ol_phpdoc_broken_download_20100706.png"><img src="http://technophi.com/wp-content/uploads/ol_phpdoc_broken_download_20100706-300x199.png" alt="" title="PHPDoc Broken Download" width="300" height="199" class="aligncenter size-medium wp-image-510" /></a></p>
<p>Some GIF, JS and PNG files also had the wrong extension. Once I realized that was the issue, I made use of this handy little tool, <a href="http://www.renamer.com">Renamer</a>, to allow me to run a batch rename on the contents of the HTML folder which holds all the template files. </p>
<p><a href="http://renamer.com/images/screenshot_main_window.jpg"><img src="http://renamer.com/images/screenshot_main_window.jpg"  class="aligncenter size-medium wp-image-510" alt="Renamer for OSX" width="300" height="199" /></a></p>
<p>After the file names were fixed, it was just a matter of adding the images that were missing from the default theme and the generated docs were finally legible. Next step, create a custom theme using the default as a base and make these docs a little prettier <img src='http://technophi.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/07/06/php-documentation-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for a Software Architect</title>
		<link>http://technophi.com/2010/06/22/looking-for-a-software-architect/</link>
		<comments>http://technophi.com/2010/06/22/looking-for-a-software-architect/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 01:19:38 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=504</guid>
		<description><![CDATA[There&#8217;s an opening for a Software Architect at Almer/Blank, the interactive media agency where I work. If you think your skills are up to it, I personally invite you to check out this position. We work on a lot of cool and interesting projects and our office is located in one of the best places [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s an opening for a Software Architect at <a href="http://almerblank.com">Almer/Blank</a>, the interactive media agency where I work. If you think your skills are up to it, I personally invite you to check out this position.</p>
<p>We work on a lot of cool and interesting projects and our office is located in one of the best places in the world, Venice Beach. If you want to learn more about the job offering, click <a href="http://labs.almerblank.com/2010/04/ab-is-hiring-software-architect/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/06/22/looking-for-a-software-architect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running Android on an iPhone 3G</title>
		<link>http://technophi.com/2010/06/13/running-android-on-an-iphone-3g/</link>
		<comments>http://technophi.com/2010/06/13/running-android-on-an-iphone-3g/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 08:49:22 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Platform]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=500</guid>
		<description><![CDATA[Ran across this video from the iDroid team @ linuxoniphone.blogspot.com that demonstrates an iPhone 3G dual-booting iOS and Android. The demo covers several typical usage scenarios like web browsing, music playback, SMS and making phone calls. Looks stable enough for me to turn my 3Gs into a pimped out iOS/Android test device in a couple [...]]]></description>
			<content:encoded><![CDATA[<p>Ran across this video from the iDroid team @ <a href="http://linuxoniphone.blogspot.com/">linuxoniphone.blogspot.com</a> that demonstrates an iPhone 3G dual-booting iOS and Android. The demo covers several typical usage scenarios like web browsing, music playback, SMS and making phone calls. Looks stable enough for me to turn my 3Gs into a pimped out iOS/Android test device in a couple of weeks. Enjoy!</p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/5yO2KQHkt4A&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=fr_FR&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/5yO2KQHkt4A&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=fr_FR&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/06/13/running-android-on-an-iphone-3g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading Memory on a Macbook Pro 15-inch 2.66 GHz Intel Core i7</title>
		<link>http://technophi.com/2010/05/27/upgrading-memory-on-a-macbook-pro-15-inch-2-66-ghz-intel-core-i7/</link>
		<comments>http://technophi.com/2010/05/27/upgrading-memory-on-a-macbook-pro-15-inch-2-66-ghz-intel-core-i7/#comments</comments>
		<pubDate>Thu, 27 May 2010 23:49:12 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=465</guid>
		<description><![CDATA[This happens to be pretty straight-forward even though Apple recommends you let an Apple Certified Technician (ACT) perform the upgrade. If you happen to do it yourself, you&#8217;ll need the following: an 8GB memory upgrade kit Official D-I-Y Instructions Open work area Screwdriver (the Husky HD-74501 works perfectly) With all the necessities acquired, you can [...]]]></description>
			<content:encoded><![CDATA[<p>This happens to be pretty straight-forward even though Apple recommends you let an Apple Certified Technician (ACT) perform the upgrade. If you happen to do it yourself, you&#8217;ll need the following:</p>
<ol>
<li>an <a href="http://store.apple.com/us/memorymodel/ME_15_266_MBP_ICI7">8GB memory upgrade kit</a></li>
<li><a href="http://support.apple.com/kb/ht1270">Official D-I-Y Instructions</a></li>
<li>Open work area</li>
<li>Screwdriver (the <a href="http://bit.ly/cjbbB7">Husky HD-74501</a> works perfectly)</li>
</ol>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0439.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0439-225x300.jpg" alt="" title="IMG_0439" width="225" height="300"/></a> <a href="http://technophi.com/wp-content/uploads/IMG_0438.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0438-225x300.jpg" alt="" title="IMG_0438" width="225" height="300"/></a></p>
<p>With all the necessities acquired, you can prep your MBP for surgery&#8230;</p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0441.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0441-225x300.jpg" alt="" title="IMG_0441" width="225" height="300" class="aligncenter size-medium wp-image-485" /></a></p>
<p>Once the bottom lid is removed, it&#8217;s time to remove the old memory&#8230;</p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0443.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0443-225x300.jpg" alt="" title="IMG_0443" width="225" height="300" class="aligncenter size-medium wp-image-488" /></a></p>
<p>With the memory slots clear, there&#8217;s nothing left standing in the way of the max out. Installation is super easy and should go without a hitch. But, if like me, your hand slips on insertion of the final upgrade chip (top) and you push the chip too quickly and it becomes wedged, don&#8217;t panic. </p>
<p>Just remove the little black pressure stabilization post which is likely what the chip is wedged against. Once you&#8217;ve done that, the chip should be easily removable. Click the thumbnail for a closeup view.</p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0445.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0445-225x300.jpg" alt="" title="IMG_0445" width="225" height="300" class="aligncenter size-medium wp-image-491" /></a></p>
<p>Once you have both chips firmly seated, you can replace the cover and reconnect all your cabling. Reboot and you should be greeted with the following after selecting <b>About This Mac</b></p>
<p><a href="http://technophi.com/wp-content/uploads/ol_mbp_mem_upgrade_20100527.png"><img src="http://technophi.com/wp-content/uploads/ol_mbp_mem_upgrade_20100527-264x300.png" alt="" title="ol_mbp_mem_upgrade_20100527" width="264" height="300" class="aligncenter size-medium wp-image-470" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/05/27/upgrading-memory-on-a-macbook-pro-15-inch-2-66-ghz-intel-core-i7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot load 32-bit SWT libraries on 64-bit JVM</title>
		<link>http://technophi.com/2010/03/22/cannot-load-32-bit-swt-libraries-on-64-bit-jvm/</link>
		<comments>http://technophi.com/2010/03/22/cannot-load-32-bit-swt-libraries-on-64-bit-jvm/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 05:52:40 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=460</guid>
		<description><![CDATA[If you get this error running Flash Builder or Eclipse on OSX Snow Leopard, it&#8217;s because there&#8217;s a mismatch between the libraries bundled with the plugin involved and the JVM of the OS. To fix, do one of the following: 1. For Eclipse, go to Eclipse -> Preferences -> Java -> Installed JRE 2. For [...]]]></description>
			<content:encoded><![CDATA[<p>If you get this error running Flash Builder or Eclipse on OSX Snow Leopard, it&#8217;s because there&#8217;s a mismatch between the libraries bundled with the plugin involved and the JVM of the OS. To fix, do one of the following:</p>
<p>1. For Eclipse, go to Eclipse -> Preferences -> Java -> Installed JRE<br />
2. For Flash Builder, go to Flash Builder -> Preferences -> Java -> Installed JREs </p>
<p>Then, edit the selected Java VM, adding the following value for the <strong>Default VM Arguments</strong> field<br />
 -d32</p>
<p><a href="http://technophi.com/wp-content/uploads/edit_jre_32bit.jpg"><img src="http://technophi.com/wp-content/uploads/edit_jre_32bit-300x296.jpg" alt="" title="edit_jre_32bit" width="300" height="296" class="aligncenter size-medium wp-image-461" /></a></p>
<p>This just forces the JVM to default to the 32-bit version. Once that&#8217;s been done, that error message should be no more&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/03/22/cannot-load-32-bit-swt-libraries-on-64-bit-jvm/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Squeeze the Most Out of Your Mac with Automator Workflows</title>
		<link>http://technophi.com/2010/03/21/squeeze-the-most-out-of-your-mac-with-automator-workflows/</link>
		<comments>http://technophi.com/2010/03/21/squeeze-the-most-out-of-your-mac-with-automator-workflows/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 17:29:27 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=452</guid>
		<description><![CDATA[One of the cool things I enjoy about developing on a Mac is the amount of usefulness I can eek out of my machine. And, with Automator, I can do just that. The name alone indicates its purpose so all one has to do is figure out what it is he/she would like to automate. [...]]]></description>
			<content:encoded><![CDATA[<p>One of the cool things I enjoy about developing on a Mac is the amount of usefulness I can eek out of my machine. And, with Automator, I can do just that. The name alone indicates its purpose so all one has to do is figure out what it is he/she would like to automate. </p>
<p>The interface is dead simple. You basically have a split view. On the left is your library, filled with a variety of different actions that can be performed. On the right, is your workflow designer. You drag your desired actions from left to right to add them to your workflow. Drag/drop allows you to reorganize them in whatever order you choose. You can test the workflow via automator or you can compile an executable application.</p>
<p><a href="http://technophi.com/wp-content/uploads/ol_automator_library.png"><img src="http://technophi.com/wp-content/uploads/ol_automator_library-132x300.png" alt="" title="ol_automator_library" width="132" height="300" class="aligncenter size-medium wp-image-453" /></a></p>
<p>Here&#8217;s the workflow I use to backup my the content from my trusty friend, <a href="http://journler.com">Journler</a>. Journler is a great application and although it&#8217;s no longer in production, the latest version is still downloadable and will continue to be supported.</p>
<p><a href="http://technophi.com/wp-content/uploads/ol_journler_bakup_automator_workflow_20100321.png"><img src="http://technophi.com/wp-content/uploads/ol_journler_bakup_automator_workflow_20100321-279x300.png" alt="" title="ol_journler_bakup_automator_workflow_20100321" width="279" height="300" class="aligncenter size-medium wp-image-454" /></a></p>
<p>If you want to customize the icon of your compiled application, do the following:<br />
1. Right-click the application in Finder and choose Show Package Contents<br />
2. Navigate to Content/Resources in the Finder window that pops up<br />
3. If you don&#8217;t already have a *.icns version of your icon, use a free service like <a href="http://iconverticons.com/">iConvert</a> to create one.<br />
4. Rename your desired icon to AutomatorApplet.icns<br />
5. Replace the AutomatorApplet.icns in Content/Resources with your custom version</p>
<p><em>NOTE: If you ever need to make changes to your workflow, you&#8217;ll have to repeat the icon replacement process since your custom icon will be overwritten.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/03/21/squeeze-the-most-out-of-your-mac-with-automator-workflows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading Flash Builder</title>
		<link>http://technophi.com/2010/03/01/upgrading-flash-builder/</link>
		<comments>http://technophi.com/2010/03/01/upgrading-flash-builder/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 04:46:56 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=438</guid>
		<description><![CDATA[Whether you&#8217;re upgrading because you&#8217;re using BETA versions that change rather frequently or upgrading to the next major release, you don&#8217;t want to lose all your hard work invested in configuring your setup. Here&#8217;s how I handle it and hopefully it&#8217;s useful to you. If you have other cool ways to persist workflows between upgrades, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://technophi.com/wp-content/uploads/ol_upgrade_flashbuilder.png"><img src="http://technophi.com/wp-content/uploads/ol_upgrade_flashbuilder.png" alt="" title="upgrading flashbuilder" width="603" height="351" class="aligncenter size-full wp-image-440" /></a></p>
<p>Whether you&#8217;re upgrading because you&#8217;re using BETA versions that change rather frequently or upgrading to the next major release, you don&#8217;t want to lose all your hard work invested in configuring your setup. Here&#8217;s how I handle it and hopefully it&#8217;s useful to you. If you have other cool ways to persist workflows between upgrades, please share them.</p>
<h4>Workspaces</h4>
<p>I&#8217;ve created a <strong>workspaces</strong> folder in a custom directory on my HD where I store all the workspaces I like to use with Eclipse-based IDEs. I separate them by IDE and then by purpose. So for Flash Builder, my workspace hierarchy is like this:</p>
<pre>
/workspaces
  /_fb4
    /air
    /as
    /flash
    /flex
</pre>
<p>This is where all of my IDE preferences and workbench layout settings are stored. Centralizing them here allows me greater flexibility when upgrading since I never have to worry about any changes to installation procedures overwriting my custom settings. Nevertheless, I backup my workspaces prior to upgrading and since their small text files it only takes a second to archive.</p>
<h4>Documents Directory</h4>
<p>On OSX, the Flash Builder installer creates an <strong>Adobe Flash Builder 4</strong> directory in your Documents directory. The installation instructions advise you to uninstall any previous versions of Flash Builder before installing the new version. Following this advice will delete this folder if it already exists. So, be sure to back this up prior to uninstalling your current version. That way you can cherry pick anything you need after installing the new version.</p>
<h4>Applications Directory</h4>
<p>You should also backup up your program installation in your Applications directory for the same reasons as with the folder in your Documents directory. If you&#8217;ve heavily modified your install with additional plugins, etc., this is vital!</p>
<h4>Plugin Restoration</h4>
<p>Where are all my cool plugins? They got wiped during the upgrade process but if you followed my advice and backed everything up, you&#8217;ll be back up and running in a minute or two. There are generally (2) locations where plugin info is stored for Flash Builder. If you pull the data from your backups and place them in the following locations, you should have full access to all your plugins post-upgrade (provided they still work with the latest release) </p>
<p>#1 &#8211; /Documents/Adobe Flash Builder 4/.metadata/.plugins<br />
#2 &#8211; /Applications/Adobe Flash Builder 4/plugins</p>
<p>Although this post is slanted more towards upgrading on OSX, it should be similar for other operating systems. Any issues, let me know&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/03/01/upgrading-flash-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FITC Amsterdam 2010 Recap</title>
		<link>http://technophi.com/2010/02/24/fitc-amsterdam-2010-recap/</link>
		<comments>http://technophi.com/2010/02/24/fitc-amsterdam-2010-recap/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 01:27:08 +0000</pubDate>
		<dc:creator>Hasan Otuome</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[FITC]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[LAFO]]></category>

		<guid isPermaLink="false">http://technophi.com/?p=392</guid>
		<description><![CDATA[First, this will be a rather lengthy pictorial of the last few days here in Amsterdam. For those that have never been, I&#8217;ll also share my insights and tips on visiting the city since I&#8217;m a seasoned pro now, LOL (4th time). The City Amsterdam is a really cool city. It hasn&#8217;t changed that much [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://technophi.com/wp-content/uploads/amsterdam_header.png"><img src="http://technophi.com/wp-content/uploads/amsterdam_header.png" alt="" title="amsterdam skyline" width="660" height="160" class="aligncenter size-full wp-image-394" /></a></p>
<p>First, this will be a rather lengthy pictorial of the last few days here in Amsterdam. For those that have never been, I&#8217;ll also share my insights and tips on visiting the city since I&#8217;m a seasoned pro now, LOL (4th time).</p>
<h3>The City</h3>
<p>Amsterdam is a really cool city. It hasn&#8217;t changed that much since my last visit about a decade ago. It has a good mixture of rustic Old European charm and 20th century modernism. It&#8217;s almost as vibrant as New York City but tends to slow down during the week around 2am <img src='http://technophi.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0325.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0325-225x300.jpg" alt="" title="jodenbreestraat" width="225" height="300" class="aligncenter size-medium wp-image-409" /></a></p>
<p>The locals are generally friendly and often find amusement in the confused faces of the American tourists. This is also definitely a bike-friendly city with a lot of the population opting for beach cruisers and mopeds over cars.</p>
<p>The city is filled with quaint little coffee shops, bars and restaurants where one can enjoy an evening of good conversation and more with friends.</p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0343.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0343-225x300.jpg" alt="" title="waterlooplein" width="225" height="300" class="aligncenter size-medium wp-image-412" /></a></p>
<p>Having traveled abroad during an era when technology wasn&#8217;t as prevalent, it&#8217;s always amazing to see how it has become so deeply integrated into the fabric of life. On that note, if you have an iPhone, (2) useful apps to have are ATM Hunter and Amsterdam GPS Guide. Both are free and can save you a considerable amount of time. ATM Hunter helps you to locate the nearest Geldautomaat so you can gain access to some local currency. Amsterdam GPS Guide provides offline maps for you to use to scour the city. These free apps will have you motoring about like a local in no time.</p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0344.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0344-225x300.jpg" alt="" title="coffe shop reefer" width="225" height="300" class="aligncenter size-medium wp-image-415" /></a></p>
<p>Here&#8217;s a list of some places, in no particular order, worth checking out when in Amsterdam:<br />
- Kadinsky&#8217;s (several locations)<br />
- Abraxas<br />
- Supper Club<br />
- Chipsy King<br />
- Renee&#8217;s Croissants<br />
- The Greenhouse<br />
- Coffee Shop Reefer</p>
<p>Amsterdam also has its dark side so enjoy but be wary of your surroundings always. While you&#8217;re busy watching the sites, someone is always watching you. Should you feel drawn to de Wallen (RLD), try visiting first during the day then return after 10p when it comes to life. DO NOT take pictures of the girls in the windows and if a local approaches you talking about a &#8220;party&#8221;, politely tell him no thanks and keep moving (either dealer or thief).</p>
<p>Now, these are just a few of the things I&#8217;ve come to learn about the city over the past 2 decades of visits. Hopefully they&#8217;ll be helpful to 1st timers or those who have visited previously but a lot of time has passed since their last visit. If you think I&#8217;ve got it twisted, let me know.</p>
<h3>The Conference</h3>
<p>FITC was filled with many amazing presentations and workshops. Everything from audio to video to 3d to <a href="http://music.almerblank.com/">converting images into sound</a> and even workflows for building iPhone apps with the forthcoming Flash CS5. While the general consensus was that the entire conference was outstanding, the talks by Mario Klingermann, Jared Tarbell and Ralph Hauwert seemed to rank high as the crowd favorites. Additional talks that peeked my interest were Joa Ebart&#8217;s overview of his <a href="http://apparat.googlecode.com">open source project</a> and Sam Agesilas&#8217; preview of the forthcoming Orchid open source framework.</p>
<h3>The Fellowship</h3>
<p>This alone is worth the price of admission + trip. Being able to hang out with industry geniuses after all the tension of putting on a successful conference has passed is priceless. The post-conference wind down is often just a continuation of the past days&#8217; events but in a much more relaxed and social environment.</p>
<p>Here we&#8217;re at the Hotel Ambasade participating in a linkup w/Flash Brighton hosted by Seb Lee-Delisle (a/k/a &#8220;Awesome&#8221;). Pictured from left to right are Jim Corbett, Grant Skinner and Sam Agesilas discussing the mobile platform. </p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0349.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0349-225x300.jpg" alt="" title="hotel ambasade flash giants 1" width="225" height="300" class="aligncenter size-medium wp-image-419" /></a></p>
<p>Later on, Ralph Hauwert chimes in on a response to a question from the Flash Brighton group. </p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0351.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0351-225x300.jpg" alt="" title="hotel ambasade flash giants 2" width="225" height="300" class="aligncenter size-medium wp-image-422" /></a></p>
<p>Stacy Mulcahy and Masakazu (Mash) Ohtsuka patiently awaiting their turns to share in the discussion.</p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0352.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0352-225x300.jpg" alt="" title="hotel ambasade - flash giants 3" width="225" height="300" class="aligncenter size-medium wp-image-425" /></a></p>
<p>Influxis co-founder, Richard Blakely, and Seb discussing Rich Media.</p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0350.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0350-225x300.jpg" alt="" title="hotel ambasade - flash giants 4" width="225" height="300" class="aligncenter size-medium wp-image-426" /></a></p>
<p>Adobe&#8217;s Lee Brimelow and Mike Chambers arrive on the scene to share in the festivities.</p>
<p><a href="http://technophi.com/wp-content/uploads/IMG_0353.jpg"><img src="http://technophi.com/wp-content/uploads/IMG_0353-225x300.jpg" alt="" title="hotel ambasade - flash giants 5" width="225" height="300" class="aligncenter size-medium wp-image-427" /></a></p>
<p>The evening was definitely off to a good start. Later that night, in a dark, subterranean and smoke filled room, the leaders of the Flash community gathered to pontificate further on the future of the Flash platform. Sorry, can&#8217;t show those pictures as I&#8217;m under an NSTPA&#8230;;)</p>
]]></content:encoded>
			<wfw:commentRss>http://technophi.com/2010/02/24/fitc-amsterdam-2010-recap/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
