<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jaxtrx's Weblog Flex 'ing</title>
	<atom:link href="http://jaxtrx.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaxtrx.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<pubDate>Thu, 24 Apr 2008 14:32:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Yahoo Pipes</title>
		<link>http://jaxtrx.wordpress.com/2008/04/24/yahoo-pipes/</link>
		<comments>http://jaxtrx.wordpress.com/2008/04/24/yahoo-pipes/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 14:32:43 +0000</pubDate>
		<dc:creator>jaxtrx</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[mashup]]></category>

		<category><![CDATA[Yahoo Pipes]]></category>

		<guid isPermaLink="false">http://jaxtrx.wordpress.com/?p=7</guid>
		<description><![CDATA[While preparing for a here&#8217;s what&#8217;s neat in development type presentation for bring your child to work day I ran into yahoo pipes which has been evolving nicely.  I quickly found and modified a script to automatically search cleveland craigslist for ATV&#8217;s and have new results sent to my phone.
here&#8217;s some of the goodies [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>While preparing for a here&#8217;s what&#8217;s neat in development type presentation for bring your child to work day I ran into yahoo pipes which has been evolving nicely.  I quickly found and modified a script to automatically search cleveland craigslist for ATV&#8217;s and have new results sent to my phone.</p>
<p>here&#8217;s some of the goodies I made in a few minutes:</p>
<p><a href="http://pipes.yahoo.com/pipes/pipe.info?_id=11e95f4cce8e5773b60132bf88644a77" target="_blank">Cleveland Craiglist ATV Search</a></p>
<p><a href="http://pipes.yahoo.com/pipes/pipe.info?_id=b991335880bd861ff1feed5424999d9b" target="_blank">ATV Parts</a></p>
<p><a href="http://pipes.yahoo.com/pipes/pipe.info?_id=QvxEHgkS3RGMmLSAy6ky6g" target="_blank">Jewelry making supplies</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jaxtrx.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jaxtrx.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jaxtrx.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jaxtrx.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jaxtrx.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jaxtrx.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jaxtrx.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jaxtrx.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jaxtrx.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jaxtrx.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jaxtrx.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jaxtrx.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jaxtrx.wordpress.com&blog=3448678&post=7&subd=jaxtrx&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jaxtrx.wordpress.com/2008/04/24/yahoo-pipes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Persisting complex objects in Flex with SharedObject</title>
		<link>http://jaxtrx.wordpress.com/2008/04/13/persisting-complex-objects-in-flex-with-sharedobject/</link>
		<comments>http://jaxtrx.wordpress.com/2008/04/13/persisting-complex-objects-in-flex-with-sharedobject/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 00:17:48 +0000</pubDate>
		<dc:creator>jaxtrx</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[as2]]></category>

		<category><![CDATA[as3]]></category>

		<category><![CDATA[deep cloning]]></category>

		<guid isPermaLink="false">http://jaxtrx.wordpress.com/?p=5</guid>
		<description><![CDATA[/**
* Quick and dirty, convert the object into a byte stream, save it off.
* For object with depth, be sure to cast them back before using.
*         public function saveCart():void{
*            ClientSettings.write(&#8221;cart&#8221;,_cartItems); //cartitems is an ArrayCollection containing many cart item objects.
*       }
*
* Read the object back in with:
*             var tmpAL:ArrayCollection=obj as ArrayCollection;
*        [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>/**<br />
* Quick and dirty, convert the object into a byte stream, save it off.<br />
* For object with depth, be sure to cast them back before using.<br />
*         public function saveCart():void{<br />
*            ClientSettings.write(&#8221;cart&#8221;,_cartItems); //cartitems is an ArrayCollection containing many cart item objects.<br />
*       }<br />
*<br />
* Read the object back in with:<br />
*             var tmpAL:ArrayCollection=obj as ArrayCollection;<br />
*            if(_cartItems==null){<br />
*               _cartItems=new ArrayCollection();<br />
*           }else{<br />
*               for each (var item:Object in tmpAL ){<br />
*                   var cItem:CartItem=new CartItem(item);<br />
*                   _cartItems.addItem(cItem);<br />
*               }<br />
*           }<br />
*<br />
*/<br />
package com.ackdev.utils.Serialize<br />
{<br />
public class ClientSettings<br />
{<br />
import flash.net.SharedObject;<br />
import flash.net.SharedObjectFlushStatus;<br />
import flash.utils.ByteArray;<br />
private static var mySo:SharedObject = SharedObject.getLocal(&#8221;application-name&#8221;);</p>
<p>public function ClientSettings()<br />
{<br />
}<br />
public static function write(name:String,obj:Object):void{<br />
//create a bytearray<br />
var bytes:ByteArray = new ByteArray();<br />
//write an object into the bytearray<br />
bytes.writeObject(obj);<br />
mySo.data[name]=bytes;<br />
var flushStatus:String = null;<br />
try {<br />
flushStatus = mySo.flush(10000);<br />
} catch (error:Error) {<br />
trace(error.message);<br />
}</p>
<p>if (flushStatus != null) {<br />
switch (flushStatus) {<br />
case SharedObjectFlushStatus.PENDING:<br />
break;<br />
case SharedObjectFlushStatus.FLUSHED:<br />
break;<br />
}<br />
}<br />
}<br />
public static function read(name:String):Object{<br />
//create an object and deserialize an object from a bytearray<br />
var myObject:Object =null;<br />
var bytes:ByteArray = mySo.data[name] as ByteArray;<br />
if(bytes!=null &amp;&amp; bytes.length!=0)<br />
myObject= bytes.readObject();<br />
return myObject;<br />
}<br />
public static function clear(name:String):void{<br />
delete mySo.data[name];<br />
mySo.flush(10000);<br />
}<br />
}<br />
}</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jaxtrx.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jaxtrx.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jaxtrx.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jaxtrx.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jaxtrx.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jaxtrx.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jaxtrx.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jaxtrx.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jaxtrx.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jaxtrx.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jaxtrx.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jaxtrx.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jaxtrx.wordpress.com&blog=3448678&post=5&subd=jaxtrx&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jaxtrx.wordpress.com/2008/04/13/persisting-complex-objects-in-flex-with-sharedobject/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex based Shopping Cart</title>
		<link>http://jaxtrx.wordpress.com/2008/04/11/flex-based-shopping-cart/</link>
		<comments>http://jaxtrx.wordpress.com/2008/04/11/flex-based-shopping-cart/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 10:11:08 +0000</pubDate>
		<dc:creator>jaxtrx</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[actionscript]]></category>

		<category><![CDATA[ecommerce]]></category>

		<category><![CDATA[ria]]></category>

		<category><![CDATA[rie]]></category>

		<category><![CDATA[store]]></category>

		<guid isPermaLink="false">http://jaxtrx.wordpress.com/?p=3</guid>
		<description><![CDATA[Uses openedit CMS for the persistence layer:
http://trinketssales.com/flexstore/index.html
Released on sourceforge:
http://sourceforge.net/projects/riastore/

       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Uses openedit CMS for the persistence layer:</p>
<p><a href="http://trinketssales.com/flexstore/index.html">http://trinketssales.com/flexstore/index.html</a></p>
<p>Released on sourceforge:</p>
<p><a href="http://sourceforge.net/projects/riastore/">http://sourceforge.net/projects/riastore/</a></p>
<p><img src="http://jaxtrx.files.wordpress.com/2008/04/flexstore.jpg?w=640&h=333" alt="Flex ActionScript RIA Ecommerce Store" width="640" height="333" /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jaxtrx.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jaxtrx.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jaxtrx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jaxtrx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jaxtrx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jaxtrx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jaxtrx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jaxtrx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jaxtrx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jaxtrx.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jaxtrx.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jaxtrx.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jaxtrx.wordpress.com&blog=3448678&post=3&subd=jaxtrx&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jaxtrx.wordpress.com/2008/04/11/flex-based-shopping-cart/feed/</wfw:commentRss>
	
		<media:content url="http://jaxtrx.files.wordpress.com/2008/04/flexstore.jpg" medium="image">
			<media:title type="html">Flex ActionScript RIA Ecommerce Store</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://jaxtrx.wordpress.com/2008/04/11/hello-world/</link>
		<comments>http://jaxtrx.wordpress.com/2008/04/11/hello-world/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 09:58:58 +0000</pubDate>
		<dc:creator>jaxtrx</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[What an appropriate title!
This blog is intended as a shameless plug for the little bits of geekdom I play with.
Bit about myself, currently I&#8217;m 38, married with 3 children; 2 boys 1 girl, employed as a software developer, fortunately/unfortunately my areas of responsibility are changing so I don&#8217;t get to code as much any more [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What an appropriate title!</p>
<p>This blog is intended as a shameless plug for the little bits of geekdom I play with.</p>
<p>Bit about myself, currently I&#8217;m 38, married with 3 children; 2 boys 1 girl, employed as a software developer, fortunately/unfortunately my areas of responsibility are changing so I don&#8217;t get to code as much any more professionally.  Bright side is coding is a hobby I&#8217;ve enjoyed since I was 12 starting out on C-64&#8217;s and Atari 400 (Okay I&#8217;ll really date myself - my first lines of code were on an Atari 2600 using a telephone style membrane pad cycling through a BASIC like language)</p>
<p>In general I enjoy building and fixing things.  Could care less about sports, most TV.</p>
<p>My main driver is a 1983 Mercedes 300sd which I converted to run on grease back when gas was approaching $1.50.  My summer project includes fully converting a Silverado 2500HD (400 cubic inch  (6.6liter) turbo diesel.. talk about torque! 500lbs) to run on grease and then I&#8217;ll probably tackle my wifes VW Jetta.</p>
<p>Work on my eldest sons fort some more, needs a better roof and maybe a window or 2.  Need to weld up the homemade ladder he made.  Oh ya, cut a bigger hold in the floor so dad doesn&#8217;t lose his pants climbing into there.</p>
<p>Pretty much workaholic, but do my best to balance with my children and try to teach them as much as possible but make it fun for them.</p>
<div style="width:176px;text-align:center;"><a href="http://twitter.com/jaxtrx">follow jaxtrx at http://twitter.com</a></div>
<p>That&#8217;s all folks!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jaxtrx.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jaxtrx.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jaxtrx.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jaxtrx.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jaxtrx.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jaxtrx.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jaxtrx.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jaxtrx.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jaxtrx.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jaxtrx.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jaxtrx.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jaxtrx.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jaxtrx.wordpress.com&blog=3448678&post=1&subd=jaxtrx&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jaxtrx.wordpress.com/2008/04/11/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>