<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Bryan Bartow</title>
	
	<link>http://www.bryanbartow.com</link>
	<description>My Digital Brain Dump</description>
	<lastBuildDate>Wed, 10 Feb 2010 18:09:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<cloud domain="www.bryanbartow.com" port="80" path="/?rsscloud=notify" registerProcedure="" protocol="http-post" />
	<script type="text/javascript">

Meebo=function(){(Meebo._=Meebo._||[]).push(arguments)};
(function(q){

	var args = arguments;
	if (!document.body) { return setTimeout(function(){ args.callee.apply(this, args) }, 100); }
	var d=document, b=d.body, m=b.insertBefore(d.createElement('div'), b.firstChild); s=d.createElement('script');
	m.id='meebo'; m.style.display='none'; m.innerHTML='<iframe id="meebo-iframe" />';
	s.src='http'+(q.https?'s':'')+'://'+(q.stage?'stage-':'')+'cim.meebo.com/cim/cim.php?network='+q.network;
	b.insertBefore(s, b.firstChild);

})({network:'myblog_ya71ze'});	</script>	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/bryanbartow" /><feedburner:info uri="bryanbartow" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://superfeedr.com/hubbub" /><item>
		<title>Small Gotcha With As3localelib</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/bahG9HaI-T8/</link>
		<comments>http://www.bryanbartow.com/2010/02/10/small-gotcha-with-as3localelib/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 18:08:08 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[as3localelib]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/?p=536</guid>
		<description><![CDATA[I just started messing around with the as3localelib library in a project I'm working on which needs to be localized to several languages.  I found a few code samples around the web and both use the following two lines of code to implement the library: var sortedLocales:Array = LocaleUtil.sortLanguagesByPreference(['en_US', 'zh_CN', 'zh_TW'], flash.system.Capabilities.languages, "en_US"); ResourceManager.getInstance().localeChain = [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2010%2F02%2F10%2Fsmall-gotcha-with-as3localelib%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2010%2F02%2F10%2Fsmall-gotcha-with-as3localelib%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I just started messing around with the <a href="http://code.google.com/p/as3localelib/" target="_blank">as3localelib</a> library in a project I'm working on which needs to be localized to several languages.  I found a few <a href="http://www.adobe.com/devnet/air/flex/articles/localizing_flex_air_apps.html" target="_blank">code</a> <a href="http://www.webkitchen.be/2008/12/09/how-to-localize-your-flexair-applications/" target="_blank">samples</a> around the web and both use the following two lines of code to implement the library:</p>
<p><code>var sortedLocales:Array = LocaleUtil.sortLanguagesByPreference(['en_US', 'zh_CN', 'zh_TW'], flash.system.Capabilities.languages, "en_US");<br />
ResourceManager.getInstance().localeChain = sortedLocales;</code></p>
<p>In AIR, this produced the desired result.  However, running this code in a normal Flex app will bomb out.  One quick look at the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/Capabilities.html" target="_blank">ActionScript 3 documentation</a> reveals the issue:  The languages property is available only in AIR.  The language property is available in Flex and AIR.  I ended up modifying my code to look like this:</p>
<p><code>if(Capabilities.playerType == "Desktop")<br />
{<br />
var sortedLocales:Array = LocaleUtil.sortLanguagesByPreference(['en_US', 'zh_CN', 'zh_TW'], flash.system.Capabilities.languages, "en_US");<br />
ResourceManager.getInstance().localeChain = sortedLocales;<br />
}<br />
else<br />
{<br />
sortedLocales = LocaleUtil.sortLanguagesByPreference(['en_US', 'zh_CN', 'zh_TW'], [flash.system.Capabilities.language], "en_US");<br />
ResourceManager.getInstance().localeChain = sortedLocales;<br />
}</code></p>
<p>Now, it works as expected.  Damn those AIR only properties <img src='http://www.bryanbartow.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<img style='display:none' id="post-536-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2010/02/10/small-gotcha-with-as3localelib/',title:'Small Gotcha With As3localelib',tweet:' 			 				 			 		 I just started messing around with the as3localelib library in a project I\'m workin',description:' 			 				 			 		 I just started messing around with the as3localelib library in a project I\'m workin'})"><script type='text/javascript'>document.getElementById("post-536-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=bahG9HaI-T8:xONozIZwbqU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=bahG9HaI-T8:xONozIZwbqU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=bahG9HaI-T8:xONozIZwbqU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=bahG9HaI-T8:xONozIZwbqU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/bahG9HaI-T8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2010/02/10/small-gotcha-with-as3localelib/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2010/02/10/small-gotcha-with-as3localelib/</feedburner:origLink></item>
		<item>
		<title>A Few Questions on HTML 5</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/lNYfv_rt5g0/</link>
		<comments>http://www.bryanbartow.com/2010/02/08/a-few-questions-on-html-5/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 06:30:25 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/?p=530</guid>
		<description><![CDATA[Share It seems lately that the cool thing to do on teh internets is proclaim the death of Flash and the rise of HTML 5 like a phoenix from Adobe's plugin's ashes.  Before I buy into the hype, I want someone to answer these questions for me. Where are all of the bad ass sites [...]]]></description>
			<content:encoded><![CDATA[<a name="fb_share" type="box_count" share_url="http://www.bryanbartow.com/2010/02/08/a-few-questions-on-html-5/">Share</a><div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2010%2F02%2F08%2Fa-few-questions-on-html-5%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2010%2F02%2F08%2Fa-few-questions-on-html-5%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>It seems lately that the cool thing to do on teh internets is proclaim the death of Flash and the rise of HTML 5 like a phoenix from Adobe's plugin's ashes.  Before I buy into the hype, I want someone to answer these questions for me.</p>
<ol>
<li>Where are all of the bad ass sites built in HTML 5 taking advantage of Flash-crushing awesomeness?  YouTube is not a valid answer.  I want to see something showing the full mind numbing array of HTML 5's glorious capabilities.</li>
<li>Where are the development tools for me to create said bad ass sites / experiences / apps?  TextMate doesn't count.  Nor does Notepad, or any other app that has the words text, note or word in its name.</li>
<li>Ogg Vorbis?</li>
</ol>
<p>I'm honestly looking for answers.  The cool kids on teh internets are telling me Flash is dead and I need to move on.  If I'm going to start building a kick ass RIA for my client next week, how will I build it?  I don't want to be out of a job and I don't want to be uncool.  Should I tell my clients Flash died?  Please help.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=2e33b70a-5c5a-45ce-8182-4cb8cccc59f1" alt="" /><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<img style='display:none' id="post-530-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2010/02/08/a-few-questions-on-html-5/',title:'A Few Questions on HTML 5',tweet:' 			 				 			 		 It seems lately that the cool thing to do on teh internets is proclaim the death of',description:' 			 				 			 		 It seems lately that the cool thing to do on teh internets is proclaim the death of'})"><script type='text/javascript'>document.getElementById("post-530-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=lNYfv_rt5g0:gAi9QMYc6HI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=lNYfv_rt5g0:gAi9QMYc6HI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=lNYfv_rt5g0:gAi9QMYc6HI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=lNYfv_rt5g0:gAi9QMYc6HI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/lNYfv_rt5g0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2010/02/08/a-few-questions-on-html-5/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2010/02/08/a-few-questions-on-html-5/</feedburner:origLink></item>
		<item>
		<title>Love Letter to Flex 4 and Flash Builder</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/VisLoT2qzKk/</link>
		<comments>http://www.bryanbartow.com/2010/01/27/love-letter-to-flex-4-and-flash-builder/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 07:00:59 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash Builder]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/?p=526</guid>
		<description><![CDATA[Dear Flex 4 / Flash Builder, I just wanted to tell you that I think you're amazing.  I know we just recently met, but I can't stop thinking about you.  You're not like the others (Flex 2 and Flex 3).  There's something different about you.  Your component model is brilliant.  Your implementation of declarative drawing [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2010%2F01%2F27%2Flove-letter-to-flex-4-and-flash-builder%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2010%2F01%2F27%2Flove-letter-to-flex-4-and-flash-builder%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bryanbartow.com/wp-content/uploads/2010/01/flash_builder_love.png"><img class="alignright size-full wp-image-527" title="flash_builder_love" src="http://www.bryanbartow.com/wp-content/uploads/2010/01/flash_builder_love.png" alt="" width="330" height="299" /></a>Dear Flex 4 / Flash Builder,</p>
<p>I just wanted to tell you that I think you're amazing.  I know we just recently met, but I can't stop thinking about you.  You're not like the others (Flex 2 and Flex 3).  There's something different about you.  Your component model is brilliant.  Your implementation of declarative drawing is beautiful.  Your data service wizards are exquisite.  Your inline documentation is ingenious.  I could go on and on, but it suffices me to say I LOVE YOU.  I can't imagine my (work) life without you.  I would be lost without you.  Please be mine forever.</p>
<p>Sincerely,</p>
<p>Bryan</p>
<img style='display:none' id="post-526-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2010/01/27/love-letter-to-flex-4-and-flash-builder/',title:'Love Letter to Flex 4 and Flash Builder',tweet:' 			 				 			 		 Dear Flex 4 / Flash Builder, I just wanted to tell you that I think you\'re amazing.',description:' 			 				 			 		 Dear Flex 4 / Flash Builder, I just wanted to tell you that I think you\'re amazing.'})"><script type='text/javascript'>document.getElementById("post-526-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=VisLoT2qzKk:UkDz0tfkgOE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=VisLoT2qzKk:UkDz0tfkgOE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=VisLoT2qzKk:UkDz0tfkgOE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=VisLoT2qzKk:UkDz0tfkgOE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/VisLoT2qzKk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2010/01/27/love-letter-to-flex-4-and-flash-builder/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2010/01/27/love-letter-to-flex-4-and-flash-builder/</feedburner:origLink></item>
		<item>
		<title>Easy Spell Checking for AS3</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/mT9_D_sYyoc/</link>
		<comments>http://www.bryanbartow.com/2009/10/18/easy-spell-checking-for-as3/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 01:11:31 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Squiggly]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/2009/10/18/easy-spell-checking-for-as3/</guid>
		<description><![CDATA[I just downloaded and implemented Squiggly, Adobe's new(ish) spell checking library, in one of my apps and it couldn't have been any easier to implement. Be sure to check it out at http://ping.fm/7QDcN document.getElementById("post-515-blankimage").onload();]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F10%2F18%2Feasy-spell-checking-for-as3%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F10%2F18%2Feasy-spell-checking-for-as3%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I just downloaded and implemented Squiggly, Adobe's new(ish) spell checking library, in one of my apps and it couldn't have been any easier to implement.  Be sure to check it out at http://ping.fm/7QDcN</p>
<img style='display:none' id="post-515-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2009/10/18/easy-spell-checking-for-as3/',title:'Easy Spell Checking for AS3',tweet:' 			 				 			 		 I just downloaded and implemented Squiggly, Adobe\'s new(ish) spell checking library',description:' 			 				 			 		 I just downloaded and implemented Squiggly, Adobe\'s new(ish) spell checking library'})"><script type='text/javascript'>document.getElementById("post-515-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=mT9_D_sYyoc:b3RVWtuwAe8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=mT9_D_sYyoc:b3RVWtuwAe8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=mT9_D_sYyoc:b3RVWtuwAe8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=mT9_D_sYyoc:b3RVWtuwAe8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/mT9_D_sYyoc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2009/10/18/easy-spell-checking-for-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2009/10/18/easy-spell-checking-for-as3/</feedburner:origLink></item>
		<item>
		<title>Make Snow Leopard and Microsoft Remote Desktop Connection Play Nice</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/VbP1UDTCAAM/</link>
		<comments>http://www.bryanbartow.com/2009/09/15/make-snow-leopard-and-microsoft-remote-desktop-connection-play-nice/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 17:18:08 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Snow Leopard]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/?p=502</guid>
		<description><![CDATA[After upgrading my MacBook Pro to Snow Leopard I noticed that Microsoft Remote Desktop Connection would no longer allow me to connect to my machine running Windows Vista.  My first reaction was to do what every self-respecting interweb guru does when something goes awry—hit up Google.  After spending about 5 hours trying every potential solution [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F09%2F15%2Fmake-snow-leopard-and-microsoft-remote-desktop-connection-play-nice%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F09%2F15%2Fmake-snow-leopard-and-microsoft-remote-desktop-connection-play-nice%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bryanbartow.com/wp-content/uploads/2009/09/Screen-shot-2009-09-15-at-12.06.36-PM.png"><img class="size-full wp-image-503 alignright" title="Screen shot 2009-09-15 at 12.06.36 PM" src="http://www.bryanbartow.com/wp-content/uploads/2009/09/Screen-shot-2009-09-15-at-12.06.36-PM.png" alt="Screen shot 2009-09-15 at 12.06.36 PM" width="382" height="264" /></a>After upgrading my MacBook Pro to Snow Leopard I noticed that Microsoft Remote Desktop Connection would no longer allow me to connect to my machine running Windows Vista.  My first reaction was to do what every self-respecting interweb guru does when something goes awry—hit up Google.  After spending about 5 hours trying every potential solution I could find and still having issues, I was ready to throw in the towel.  On a whim, I decided I would make one last ditch effort before considering wiping both machines clean and starting over.  I decided that I would clear the domain field on the login dialog when trying to connect.  Surprisingly enough, that did the trick.  I had always been able to connect to the machine in Leopard with the domain field filled in, but it seems Snow Leopard likes it to be blank.  Hopefully this will benefit any others running into the same issue.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<img style='display:none' id="post-502-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2009/09/15/make-snow-leopard-and-microsoft-remote-desktop-connection-play-nice/',title:'Make Snow Leopard and Microsoft Remote Desktop Connection Play Nice',tweet:' 			 				 			 		 After upgrading my MacBook Pro to Snow Leopard I noticed that Microsoft Remote Desk',description:' 			 				 			 		 After upgrading my MacBook Pro to Snow Leopard I noticed that Microsoft Remote Desk'})"><script type='text/javascript'>document.getElementById("post-502-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=VbP1UDTCAAM:Z3BhzH-UI4Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=VbP1UDTCAAM:Z3BhzH-UI4Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=VbP1UDTCAAM:Z3BhzH-UI4Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=VbP1UDTCAAM:Z3BhzH-UI4Q:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/VbP1UDTCAAM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2009/09/15/make-snow-leopard-and-microsoft-remote-desktop-connection-play-nice/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2009/09/15/make-snow-leopard-and-microsoft-remote-desktop-connection-play-nice/</feedburner:origLink></item>
		<item>
		<title>Inferno is Live on iTunes</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/2PS5d4-TMsQ/</link>
		<comments>http://www.bryanbartow.com/2009/03/21/inferno-is-live-on-itunes/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 21:08:24 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[Inferno]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iTunes]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/?p=488</guid>
		<description><![CDATA[The result of my recent 24 hour iPhone app challenge is now live on iTunes. It's free, so check it out and let me know what you think. document.getElementById("post-488-blankimage").onload();]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F03%2F21%2Finferno-is-live-on-itunes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F03%2F21%2Finferno-is-live-on-itunes%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The result of my recent 24 hour iPhone app challenge is now <a href="http://www.clarusmobile.com/inferno/buy">live on iTunes</a>.  It's free, so check it out and let me know what you think.</p>
<img style='display:none' id="post-488-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2009/03/21/inferno-is-live-on-itunes/',title:'Inferno is Live on iTunes',tweet:' 			 				 			 		 The result of my recent 24 hour iPhone app challenge is now live on iTunes.  It\'s f',description:' 			 				 			 		 The result of my recent 24 hour iPhone app challenge is now live on iTunes.  It\'s f'})"><script type='text/javascript'>document.getElementById("post-488-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=2PS5d4-TMsQ:AIvOktsorPE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=2PS5d4-TMsQ:AIvOktsorPE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=2PS5d4-TMsQ:AIvOktsorPE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=2PS5d4-TMsQ:AIvOktsorPE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/2PS5d4-TMsQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2009/03/21/inferno-is-live-on-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2009/03/21/inferno-is-live-on-itunes/</feedburner:origLink></item>
		<item>
		<title>24 Hour iPhone App Challenge</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/P4XX8X25fMY/</link>
		<comments>http://www.bryanbartow.com/2009/03/13/24-hour-iphone-app-challenge/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 00:49:22 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[App Store]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[debt]]></category>
		<category><![CDATA[Inferno]]></category>
		<category><![CDATA[Interface Builder]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[MGTwitterEngine]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/?p=483</guid>
		<description><![CDATA[After getting my feet wet with iPhone and Objective-C development, I decided early Tuesday morning to issue myself the following challenge: Create an iPhone application and submit it to Apple in 24 hours or less. The result of this challenge is Inferno. The screen should be self explanatory. I thought I'd layout a general timeline [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F03%2F13%2F24-hour-iphone-app-challenge%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F03%2F13%2F24-hour-iphone-app-challenge%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>After getting my feet wet with iPhone and Objective-C development, I decided early Tuesday morning to issue myself the following challenge:  Create an iPhone application and submit it to Apple in 24 hours or less.  The result of this challenge is Inferno.</p>
<div id="attachment_485" class="wp-caption alignright" style="width: 218px"><a href="http://www.bryanbartow.com/wp-content/uploads/2009/03/inferno.jpg"><img class="size-medium wp-image-485" title="inferno" src="http://www.bryanbartow.com/wp-content/uploads/2009/03/inferno-208x300.jpg" alt="Inferno" width="208" height="300" /></a><p class="wp-caption-text">Inferno</p></div>
<p>The screen should be self explanatory.  I thought I'd layout a general timeline of the process in case anyone is interested.</p>
<p>Tuesday 12:30 a.m. - I decide to put myself to the test.  I need an idea.  It comes to me after doing my daily Bloomberg update.</p>
<p>Tuesday 1:00 a.m. - I've created my project in Xcode and done a simple UI mockup in Photoshop.  Drop mockup into Interface Builder and drop my UI components over the mockup.  Now I need live data.</p>
<p>Tuesday 1:30 a.m. - After searching around for live GDP data, I resign myself to the fact that I'll only be able to get quarterly update from the US Government at bea.gov and will have to manually update the data.  Not ideal, but at least I'll have an excuse to update the app at least once a quarter.</p>
<p>Tuesday 2:00 a.m. - After almost giving up on finding a "real-time" data source for the US National debt, I remember the very cool NationalDebt Twitter account that I follow gives me daily updates.  Obvious question is, "How am I going to get that data without having to port the Twitter API over to Objective-C?", which surely would cause me to miss my deadline.</p>
<p>Tuesday 2:05 a.m. - Decide to go to bed and at least get some sleep.</p>
<p>Wednesday 11:00 a.m. - After getting seriously derailed by Subversion issues, I'm back on the Bottom Line (as it was called at that point in time) grind.  After a bit of searching I find the very awesome <a href="http://mattgemmell.com/2008/02/22/mgtwitterengine-twitter-from-cocoa">MGTwitterEngine</a> by Matt Gemmell.  It's an Objective-C port of the Twitter API and would turn out to be exactly what I needed.</p>
<p>Wednesday 3:00 p.m. - Have a few troubles with getting MGTwitterEngine up and running, but once I do, it's smooth sailing.  Have to learn how to parse strings and convert back and forth between date objects in Objective-C.  A little bit of reading of the ol' documentation has me on my way.</p>
<p>Wednesday 5:00 p.m. - I've got my application displaying updated debt data and now I need to read and write plist files so I can save the new data to a file and open and display it on the next run.  Luckily, my buddy has exactly what I need.  With a few minor modifications to his code, I'm reading and writing plists like there's no tomorrow.</p>
<p>Wednesday 5:30 p.m. - Get stopped cold in my development tracks by some other work and personal stuff I have to take care of.</p>
<p>Wednesday 6:00 p.m. - I have to go home to watch my kids because my wife has a meeting.  This means I'm done for the night and will miss by deadline.  Damn!</p>
<p>Thursday 1:00 p.m. - I pick up where I left off on Wednesday and put the finishing touches on Bottom Line.  I've now decided that I want a different name.  After kicking a few names around I settle on Inferno.  Now I need to update the UI to make it reflective of the name.</p>
<p>Thursday 3:00 p.m. - Inferno is finished and ready for submission to the App Store.  Now I just need to write some copy and create the screen shots for inclusion on the app's download page.</p>
<p>Thursday 3:30 p.m. - Inferno has been submitted to the App Store for approval!</p>
<p>I missed my self-imposed deadline of 24 hours with the project spanning about 39 hours.  However, total time spend working on the project was about 12 hours, which was right in line with what I was hoping when I originally started the challenge.  The fact that I was able to create an application that will be exposed to tens of millions of people in a day and a half underscores, in my mind, the awesomeness that is the App Store.  Apple has given developers a very approachable platform and coupled it with a ground-breaking model of distribution, which ends up making a very compelling proposition for people like me.</p>
<p>I really enjoyed making Inferno and I'll probably do this again, maybe even with some regularity.  I'd also be interested in potentially joining forces with other developers physically or virtually to see what we can bash out in a day.  If you'd be interested, let me know.</p>
<img style='display:none' id="post-483-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2009/03/13/24-hour-iphone-app-challenge/',title:'24 Hour iPhone App Challenge',tweet:' 			 				 			 		 After getting my feet wet with iPhone and Objective-C development, I decided early ',description:' 			 				 			 		 After getting my feet wet with iPhone and Objective-C development, I decided early '})"><script type='text/javascript'>document.getElementById("post-483-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=P4XX8X25fMY:w3hN9FdXbc8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=P4XX8X25fMY:w3hN9FdXbc8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=P4XX8X25fMY:w3hN9FdXbc8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=P4XX8X25fMY:w3hN9FdXbc8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/P4XX8X25fMY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2009/03/13/24-hour-iphone-app-challenge/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2009/03/13/24-hour-iphone-app-challenge/</feedburner:origLink></item>
		<item>
		<title>Rusty Trombone: My First iPhone App</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/DMtHcQH4FYQ/</link>
		<comments>http://www.bryanbartow.com/2009/03/03/rusty-trombone-my-first-iphone-app/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 17:20:35 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Rusty Trombone]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/?p=469</guid>
		<description><![CDATA[Yesterday marked the release of my first iPhone application—Rusty Trombone.  Although I've kept the application and my experience on the platform mostly under wraps, I plan to write about my experiences now that the app is public.  More posts to follow soon.  In the mean time, check out the Rusty Trombone home page or get [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F03%2F03%2Frusty-trombone-my-first-iphone-app%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F03%2F03%2Frusty-trombone-my-first-iphone-app%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Yesterday marked the release of my first iPhone application—Rusty Trombone.  Although I've kept the application and my experience on the platform mostly under wraps, I plan to write about my experiences now that the app is public.  More posts to follow soon.  In the mean time, check out the <a href="http://www.rustytromboneapp.com">Rusty Trombone home page</a> or get it at the <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=306411153&amp;mt=8">App Store</a>.</p>
<div id="attachment_471" class="wp-caption aligncenter" style="width: 400px"><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=306411153&mt=8"><img class="size-full wp-image-471" title="Get Rusty Trombone" src="http://www.bryanbartow.com/wp-content/uploads/2009/03/rt_screen_1.png" alt="Rusty Trombone" width="390" height="250" /></a><p class="wp-caption-text">Rusty Trombone</p></div>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<img style='display:none' id="post-469-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2009/03/03/rusty-trombone-my-first-iphone-app/',title:'Rusty Trombone: My First iPhone App',tweet:' 			 				 			 		 Yesterday marked the release of my first iPhone application—Rusty Trombone.  Alt',description:' 			 				 			 		 Yesterday marked the release of my first iPhone application—Rusty Trombone.  Alt'})"><script type='text/javascript'>document.getElementById("post-469-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=DMtHcQH4FYQ:mWBI-7OZfLU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=DMtHcQH4FYQ:mWBI-7OZfLU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=DMtHcQH4FYQ:mWBI-7OZfLU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=DMtHcQH4FYQ:mWBI-7OZfLU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/DMtHcQH4FYQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2009/03/03/rusty-trombone-my-first-iphone-app/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2009/03/03/rusty-trombone-my-first-iphone-app/</feedburner:origLink></item>
		<item>
		<title>Using Google Analytics with AIR Applications?</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/5FeihLi9Rs8/</link>
		<comments>http://www.bryanbartow.com/2009/02/25/using-google-analytics-with-air-applications/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 22:32:00 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[gaforflash]]></category>
		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/?p=460</guid>
		<description><![CDATA[I was really excited when I first heard about gaforflash, becuase I thought I'd be able to track events within my AIR applications.  Sadly, this is not the case...yet (the team has AIR integration on the roadmap).  The obvious question, then, is are there any solutions out there for using Google Analytics with AIR applications? [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F02%2F25%2Fusing-google-analytics-with-air-applications%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F02%2F25%2Fusing-google-analytics-with-air-applications%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I was really excited when I first heard about <a href="http://code.google.com/p/gaforflash/">gaforflash</a>, becuase I thought I'd be able to track events within my <a class="zem_slink" title="Adobe Integrated Runtime" rel="homepage" href="http://www.adobe.com/products/air/">AIR</a> applications.  Sadly, this is not the case...yet (the team has AIR integration on the roadmap).  The obvious question, then, is are there any solutions out there for using <a class="zem_slink" title="Google Analytics" rel="homepage" href="http://www.google.com/analytics">Google Analytics</a> with AIR applications?  Please leave a comment if you know of one.</p>
<img style='display:none' id="post-460-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2009/02/25/using-google-analytics-with-air-applications/',title:'Using Google Analytics with AIR Applications?',tweet:' 			 				 			 		 I was really excited when I first heard about gaforflash, becuase I thought I\'d be ',description:' 			 				 			 		 I was really excited when I first heard about gaforflash, becuase I thought I\'d be '})"><script type='text/javascript'>document.getElementById("post-460-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=5FeihLi9Rs8:gN02rYZGLPg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=5FeihLi9Rs8:gN02rYZGLPg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=5FeihLi9Rs8:gN02rYZGLPg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=5FeihLi9Rs8:gN02rYZGLPg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/5FeihLi9Rs8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2009/02/25/using-google-analytics-with-air-applications/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2009/02/25/using-google-analytics-with-air-applications/</feedburner:origLink></item>
		<item>
		<title>Release: JawJack – Rejaw Client Built on Adobe AIR</title>
		<link>http://feedproxy.google.com/~r/bryanbartow/~3/qGjQlgsCYrg/</link>
		<comments>http://www.bryanbartow.com/2009/02/12/release-jawjack-rejaw-client-built-on-adobe-air/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 06:58:43 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[JawJack]]></category>
		<category><![CDATA[Ping.fm]]></category>
		<category><![CDATA[Rejaw]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.bryanbartow.com/?p=432</guid>
		<description><![CDATA[Today I'm releasing a public beta of JawJack, a desktop client for the Rejaw social communication service built on Adobe AIR.  Although it's still got a ways to go, I feel comfortable enough with its progress to open it up the public.  One of the best things about JawJack is that is uses the awesome [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F02%2F12%2Frelease-jawjack-rejaw-client-built-on-adobe-air%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bryanbartow.com%2F2009%2F02%2F12%2Frelease-jawjack-rejaw-client-built-on-adobe-air%2F&amp;source=bryanbartow&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Today I'm releasing a public beta of <a title="JawJack" href="http://www.bryanbartow.com/apps/jawjack" target="_blank">JawJack</a>, a desktop client for the <a class="zem_slink" title="Rejaw" rel="homepage" href="http://rejaw.com/">Rejaw</a> social communication service built on <a class="zem_slink" title="Adobe Integrated Runtime" rel="homepage" href="http://www.adobe.com/products/air/">Adobe AIR</a>.  Although it's still got a ways to go, I feel comfortable enough with its progress to open it up the public.  One of the best things about JawJack is that is uses the awesome as3pingfm API to optionally send shouts (Rejaw's term for public post; think Tweet on <a class="zem_slink" title="Twitter" rel="homepage" href="http://twitter.com">Twitter</a>) to <a class="zem_slink" title="Ping.fm" rel="homepage" href="http://www.ping.fm">Ping.fm</a> so your updated can be sent to all of your social networks.  If you haven't already, head on over to Rejaw and sign up for an account and start using <a title="JawJack" href="http://www.bryanbartow.com/apps/jawjack" target="_blank">JawJack</a>.  As always, feedback is welcome.</p>
<img style='display:none' id="post-432-blankimage" onload="Meebo('discoverSharable', {element: this.parentNode,url:'http://www.bryanbartow.com/2009/02/12/release-jawjack-rejaw-client-built-on-adobe-air/',title:'Release: JawJack &#8211; Rejaw Client Built on Adobe AIR',tweet:' 			 				 			 		 Today I\'m releasing a public beta of JawJack, a desktop client for the Rejaw social',description:' 			 				 			 		 Today I\'m releasing a public beta of JawJack, a desktop client for the Rejaw social'})"><script type='text/javascript'>document.getElementById("post-432-blankimage").onload();</script><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/bryanbartow?a=qGjQlgsCYrg:hLInnx16mh4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=qGjQlgsCYrg:hLInnx16mh4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/bryanbartow?i=qGjQlgsCYrg:hLInnx16mh4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/bryanbartow?a=qGjQlgsCYrg:hLInnx16mh4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/bryanbartow?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bryanbartow/~4/qGjQlgsCYrg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bryanbartow.com/2009/02/12/release-jawjack-rejaw-client-built-on-adobe-air/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.bryanbartow.com/2009/02/12/release-jawjack-rejaw-client-built-on-adobe-air/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 1.575 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-24 03:39:00 --><!-- Compression = gzip -->
