<?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>Go</title>
	<atom:link href="http://go.mosessupposes.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://go.mosessupposes.com</link>
	<description>Toward a shared open standard platform for Adobe animation systems (beta)</description>
	<lastBuildDate>Thu, 21 Aug 2008 14:27:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>GoASAP &amp; Fuse featured in Open Source Flash book</title>
		<link>http://go.mosessupposes.com/?p=41</link>
		<comments>http://go.mosessupposes.com/?p=41#comments</comments>
		<pubDate>Thu, 21 Aug 2008 14:27:46 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[Go]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=41</guid>
		<description><![CDATA[Because Flash is a proprietary plug-in technology and its coding language evolved gradually over about a decade, it took a while before the words Open Source meant anything to its developer pool. But when it hit, it hit hard: Aral Balkan&#8217;s seminal site OSFlash introduced an already-thriving community to a whole new world of licensing [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/Essential-Guide-Source-Flash-Development/dp/1430209933"><img src="http://www.friendsofed.com/img/cover/9781430209935.jpg" align="left"/></a>Because Flash is a proprietary plug-in technology and its coding language evolved gradually over about a decade, it took a while before the words Open Source meant anything to its developer pool. But when it hit, it hit hard: Aral Balkan&#8217;s seminal site <a href="http://www.osflash.org/">OSFlash</a> introduced an already-thriving community to a whole new world of licensing code for the purpose of free and easy sharing, modification and reuse. Open Source took off in the Flash world and some of the most powerful software ever produced for the Flash Player is available for free, such as the incredible Red5 media server and the mighty PaperVision3D.</p>
<p>Friends of Ed is now giving you the chance to catch up on this little revolution with their new book, <a href="http://www.friendsofed.com/book.html?isbn=1430209933">The Essential Guide to Open Source Flash Development</a>, and I&#8217;m proud to say that I&#8217;m one of the contributing authors! My chapter covers several Open Source animation tools that I&#8217;ve released for ActionScript 2.0 and 3.0.</p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=41</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Updated benchmark</title>
		<link>http://go.mosessupposes.com/?p=39</link>
		<comments>http://go.mosessupposes.com/?p=39#comments</comments>
		<pubDate>Tue, 22 Jul 2008 06:53:35 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[Go]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=39</guid>
		<description><![CDATA[This more recent benchmark shows that GoASAP is staying efficient despite having some great features added recently. A few other systems are shown for comparison but keep in mind that Go is a complimentary, not a competitive animation library. More info here.
]]></description>
			<content:encoded><![CDATA[<p><a href='http://go.mosessupposes.com/wp-content/uploads/2008/07/as3tween-fps3-sm.jpg' title='as3tween-fps3-sm.jpg'><img src='http://go.mosessupposes.com/wp-content/uploads/2008/07/as3tween-fps3-sm.thumbnail.jpg' alt='as3tween-fps3-sm.jpg' align="left" /></a>This more recent benchmark shows that GoASAP is staying efficient despite having some great features added recently. A few other systems are shown for comparison but keep in mind that Go is a complimentary, not a competitive animation library. <a href="http://www.goasap.org/benchmarks.html">More info here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=39</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Player feature idea: SyncTimer</title>
		<link>http://go.mosessupposes.com/?p=38</link>
		<comments>http://go.mosessupposes.com/?p=38#comments</comments>
		<pubDate>Tue, 08 Jul 2008 04:24:07 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[Go]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=38</guid>
		<description><![CDATA[It&#8217;s no secret that Timer (even setInterval) is not accurate. It drifts quickly as event-handling lags get compounded with each cycle. This might come up when say, building a video-sequencing app or something similar.
It&#8217;s also no secret that part of GoASAP&#8217;s mission is to promote the idea of various animation systems being able to combine [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s no secret that Timer (even setInterval) is not accurate. It drifts quickly as event-handling lags get compounded with each cycle. This might come up when say, building a video-sequencing app or something similar.</p>
<p>It&#8217;s also no secret that part of GoASAP&#8217;s mission is to promote the idea of various animation systems being able to combine their processing. Large numbers of animations process the fastest when they&#8217;re all kept in a single list, and that list is updated &#8220;on the beat&#8221; all at once.</p>
<p>Adobe could address these issues with an additional player-level timer class:</p>
<pre lang="actionscript">package flash.animation {
public final class SyncTimer {
  public static function addCallback(closure:Function,
                                   interval:Object="enterFrame",
                                   priority:int=0):void;
  public static function removeCallback(closure:Function):Boolean;
  public static function pause(interval:Object=null):void;
  public static function resume(interval:Object=null):void;
}}</pre>
<p>This hypothetical class might use callbacks instead of events for speed. It would always use weak references to avoid trapping object references. Intervals other than ENTER_FRAME would ideally be corrected for lag, so they stay as close to accurate as possible.</p>
<p>This might provide a real performance boost for larger numbers of animations. And importantly, all animation systems could be synced very tightly from one centralized update list, making them work much better together.</p>
<p>This feature would lay the groundwork for Adobe to provide a base animation package in AS3, a set of core classes that both their own and also 3rd-party systems could be built on, eliminating a lot of the redundancies between these overlapping systems. (Currently Flash and Flex don&#8217;t even share an easing package!)</p>
<pre lang="actionscript">import flash.animation.easing.*;
import flash.animation.SyncTimer;
import flash.animation.AnimationEngine;
import flash.animation.AnimationEvent;
import flash.animation.IPlayable;
import flash.animation.PlayStates;
import flash.animation.BaseTween;</pre>
<p>Sure, that&#8217;s basically a suggestion that Adobe adopt the concepts behind GoASAP, why not? If they wanted to go all the way and make a statement in a Silverlight-tinged world, they would consider the creation of a standardized ECMA animation library that could be ported to AS3, JavaScript, and After Effects; however that&#8217;s a different and much bigger proposal and one I&#8217;ve already made (see earlier posts at this blog). For now, simply by adding a centralized SyncTimer feature to the player and a few slim base classes, at least AS3 animation systems would share a common core instead of all having to reinvent the wheel.</p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=38</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FlashBelt guests from Scifi.com, ZAAZ</title>
		<link>http://go.mosessupposes.com/?p=37</link>
		<comments>http://go.mosessupposes.com/?p=37#comments</comments>
		<pubDate>Tue, 03 Jun 2008 02:29:45 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[Go]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=37</guid>
		<description><![CDATA[Some exciting news:
I will be joined on stage at FlashBelt by Donovan Adams of Scifi.com and Jud Holliday of ZAAZ!
Donovan has been doing great work on HydroTween. It has a Tweener-like syntax plus sequencing, it&#8217;s compact (one extension class), very fast and does a load of fancy tricks: color &#038; HSB tweening, filter tweening, 3D [...]]]></description>
			<content:encoded><![CDATA[<p>Some exciting news:</p>
<p>I will be joined on stage at FlashBelt by <strong>Donovan Adams of Scifi.com and Jud Holliday of ZAAZ!</strong></p>
<p>Donovan has been doing great work on <strong>HydroTween</strong>. It has a Tweener-like syntax plus sequencing, it&#8217;s compact (one extension class), very fast and does a load of fancy tricks: color &#038; HSB tweening, filter tweening, 3D tweening with automatic scene updating, start properties and more. Tween groups and sequences as quick as you can say &#8220;Fuse.&#8221; <img src='http://go.mosessupposes.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Jud and Graeme have been taking a nearly opposite approach at ZAAZ, with <strong>a fully OO strictly-typed tween library</strong> (and sequence extensions), but no syntax parsers so far. Graeme&#8217;s also been working with John Grden on expanding his Go3D library. When this library lands it&#8217;s gonna be with a thud, and my guess is that it will become a standard in the Go community.</p>
<p>Why I&#8217;m excited and honored to have these guys co-present with me is that their different approaches really illustrate the wide range of possibilities with Go. There is no wrong answer!</p>
<p>I hope to get a chance to talk a bit more about Go&#8217;s decoupled management architecture. This is one feature that makes Go unique and so sexily flexible. While other kits &#8220;bake in&#8221; management features and lock you to them, this is a way to be able to infinitely expand the automated side of your animation tools, while leaving them entirely optional for the end user. &#8216;Managers&#8217; – it sounds dry&#8230; but in fact it&#8217;s a richly creative opportunity. For example I made an <em>AutoBlurrer</em> manager that adds horizontal and vertical blur to any moving object based on its velocity.</p>
<p>The other point of excitement around FlashBelt 2008 is just the killer lineup of speakers, one of the best I&#8217;ve seen at any conference.<br />
<a href="http://www.flashbelt.com/">http://www.flashbelt.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=37</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GoASAP &amp; PaperVision3D: Go3D, Timeline3D</title>
		<link>http://go.mosessupposes.com/?p=35</link>
		<comments>http://go.mosessupposes.com/?p=35#comments</comments>
		<pubDate>Wed, 07 May 2008 19:06:41 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[3D]]></category>
		<category><![CDATA[Go]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=35</guid>
		<description><![CDATA[The great thing about Go is that it&#8217;s small and versatile. You can do just about anything animation-related with it, or should be able to figure out a way!
Tim Knip and John Grden from the PaperVision3D team are getting into the groove.
Tim and I are creating a Go-based system for animating the data exported from [...]]]></description>
			<content:encoded><![CDATA[<p>The great thing about Go is that it&#8217;s small and versatile. You can do just about anything animation-related with it, or should be able to figure out a way!</p>
<p>Tim Knip and John Grden from the PaperVision3D team are getting into the groove.</p>
<p>Tim and I are creating a Go-based system for animating the data exported from 3D programs called Timeline3D. John has started coming up with his own strict-typed syntax for tweening DisplayObject3D&#8217;s and Go community member Graeme Asher is planning on contributing some classes of his own for animating cameras and other 3D objects.</p>
<p><a href="http://www.rockonflash.com/blog/?p=116">John&#8217;s latest blog post on his Go3D system</a><br />
<a href="http://www.rockonflash.com/blog/">John&#8217;s blog</a></p>
<p>Be sure to join the <a href="http://www.goasap.org/developers/">Go mailing list</a> to keep up on all of this fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=35</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fuse+Go book chapter</title>
		<link>http://go.mosessupposes.com/?p=34</link>
		<comments>http://go.mosessupposes.com/?p=34#comments</comments>
		<pubDate>Thu, 10 Apr 2008 22:42:53 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[Go]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=34</guid>
		<description><![CDATA[I&#8217;ve been asked to contribute a chapter on Fuse and the Go Platform for Friends of Ed&#8217;s upcoming book, The Essential Guide to Open Source Flash Development. The book will also feature articles from the likes of John Grden, Carlos Ulloa, Chris Allen, Wade Arnold, Nicolas Cannasse, Aral Balkan, and others. It&#8217;s an honor!
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been asked to contribute a chapter on Fuse and the Go Platform for <a href="http://www.friendsofed.com/">Friends of Ed</a>&#8217;s upcoming book, <em>The Essential Guide to Open Source Flash Development</em>. The book will also feature articles from the likes of John Grden, Carlos Ulloa, Chris Allen, Wade Arnold, Nicolas Cannasse, Aral Balkan, and others. It&#8217;s an honor!</p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=34</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Go 0.4.7 Drops!</title>
		<link>http://go.mosessupposes.com/?p=33</link>
		<comments>http://go.mosessupposes.com/?p=33#comments</comments>
		<pubDate>Thu, 10 Apr 2008 22:35:28 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[Go]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=33</guid>
		<description><![CDATA[So far, GoASAP has grown into being a solid Animation Platform with a coherent Core Compatibility layer and a highly evolved animation engine and linear-tweening base system. No physics classes yet, but the architecture leaves plenty of room for that to grow.
The latest drop, GoASAP 0.4.7 is a major improvement in the tweening arena, adding [...]]]></description>
			<content:encoded><![CDATA[<p>So far, GoASAP has grown into being a solid Animation Platform with a coherent Core Compatibility layer and a highly evolved animation engine and linear-tweening base system. No physics classes yet, but the architecture leaves plenty of room for that to grow.</p>
<p>The latest drop, GoASAP 0.4.7 is a major improvement in the tweening arena, adding a &#8220;useFrames&#8221; alternative to time-synced updates and more cycling options. Looping has also been added to group &#038; sequence utilities. This update also affects any LinearGo extensions you&#8217;ve already written so be sure to read this article!<br />
<span id="more-33"></span><br />
<strong>New Event Types</strong></p>
<p>GoEvent has some new types: PAUSE, RESUME, and CYCLE (cycle is between loops or back-and-forth cycling animations). These events are now dispatched from LinearGo, PlayableGroup and all Go Sequence utils.</p>
<p><strong>Repeater Repeater</strong></p>
<p>To handle looping and cycling, LinearGo, PlayableGroup and all Sequence classes now contain a property called <code>repeater</code>. The property holds an instance of an iterator object – for groups and sequences this is simply a <code>Repeater</code>, and for LinearGo it is a <code>LinearGoRepeater</code>. You can set the repeater&#8217;s <code>cycles</code> property to any uint higher than 1 to make these &#8220;playables&#8221; repeat their play. For example:</p>
<pre lang="ActionScript">myGroup.repeater.cycles = 2;
mySequence.repeater.cycles = Repeater.INFINITE;</pre>
<p>LinearGo&#8217;s special repeater has more options. Its property <code>reverseOnCycle</code> is true by default, which means that a tween will cycle back and forth in a &#8216;yoyo&#8217; motion. If you set that property to false the tween will loop forwards. One problem with back-and-forth tweens is that easing tends to look bad one way or the other. So LinearGoRepeater also lets you set <code>easingOnCycle</code>. (It also has an <code>extraEaseParams</code> parameter like LinearGo does, for easing functions like Elastic and Back that take more than 4 inputs.) So to make a tween play forward then back in a smooth arc you could set the tween&#8217;s easing to a strong ease-out, then set <code>myTween.repeater.easingOnCycle</code> to a similar ease-in.</p>
<p>Like everything else in GoASAP, repeaters are made to be universal and extensible. As you create your own Go utilities, you can make use of this simple iterator object to help you implement complex functionality. For example, Repeater&#8217;s <code>skipTo()</code> method will calculate jumps across cycles and return a new position value for you.</p>
<p><strong>&#8220;Frames&#8221; Support for Tweens</strong></p>
<p>The ability to tween in frames instead of seconds was the last big one to fall. It&#8217;s not a recommended feature, since normally tweens sync to realtime which is a lot more accurate and intuitive. Frames work like the timeline, they will slow down your animation if the player is lagging.. but in special cases such as syncing to a timeline animation you might need to use it.</p>
<p>Surprisingly enough, it didn&#8217;t add too much complexity or slow LinearGo down. &#8220;Frames&#8221; are actually update-counts, so when you set:</p>
<pre lang="ActionScript">mytween.useFrames = true;</pre>
<p>&#8230; you&#8217;re really stating that you want delay and duration to be treated as the number of times the tween is updated on its pulse. </p>
<p>Normally you want the pulse to be synced to the player, which you can do by setting:</p>
<pre lang="ActionScript">GoItem.defaultPulseInterval = GoEngine.ENTER_FRAME;</pre>
<p>Or by setting your tween&#8217;s <code>pulseInterval</code> individually. But this can be a hassle if you simply want to work in a frames metaphor for a whole project. If that&#8217;s the case, simply call this setup command once at the beginning of your program:</p>
<pre lang="ActionScript">LinearGo.setupUseFramesMode();</pre>
<p>This changes the default pulse to ENTER_FRAME and makes all new LinearGo instances default to useFrames. This method also provides the option to switch to a zero-based index, instead of using a 1-based frame index like the Flash timeline.</p>
<p>The new <code>currentFrame</code> getter always steps forward through delay, duration, and all cycles (as if cycled tweens were back-to-back tweens in a timeine), </p>
<p>The <code>timePosition</code> getter also works in frames mode – works the same as in time mode. That property&#8217;s values always range between negative-delay and zero during the delay; then zero to duration during all cycles. So during cycles this property acts more like a timeline playhead that loops in a single tween.</p>
<p><strong>Critical Update Warning!</strong></p>
<p>Sorry to sound like the Window OS there but, you need to know that if you&#8217;ve been writing subclasses of LinearGo this update will force you to tweak them just a tiny bit, because LinearGo&#8217;s constructor inputs have changed. It is also now mandatory that your subclasses make a <code>super()</code> call, since LinearGo&#8217;s constructor instantiates the repeater instance and adjusts class defaults.</p>
<p>Other non-critical items in this version include a new EasingFormatError for use with malformed easing functions, and a few minor improvements to PlayableGroup&#8217;s internals.</p>
<p>Enjoy! </p>
<p>All classes and documentation available from <a href="http://www.goasap.org/">the GoASAP website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=33</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Go Video Tutorial #2: Write a Fuse-like Sequence parser in minutes</title>
		<link>http://go.mosessupposes.com/?p=32</link>
		<comments>http://go.mosessupposes.com/?p=32#comments</comments>
		<pubDate>Sat, 08 Mar 2008 20:25:52 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[Go]]></category>
		<category><![CDATA[VideoTutorials]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=32</guid>
		<description><![CDATA[Now that you can build a tween over Go (outlined in the 1st video tutorial), find out how with just a few lines of code you can parse a generic object into a tween, then build a sequence parser that supports parallel-tween action Arrays just like in Fuse Kit! At the end of this video [...]]]></description>
			<content:encoded><![CDATA[<p>Now that you can build a tween over Go (outlined in the <a href="http://go.mosessupposes.com/?p=29">1st video tutorial</a>), find out how with just a few lines of code you can parse a generic object into a tween, then build a sequence parser that supports parallel-tween action Arrays just like in Fuse Kit! At the end of this video we&#8217;ll add sophisticated custom-advance features that let you specify exactly when a sequence advances forward. <em>(Fuse had a couple custom-advance options; Go ships with 4 plus makes it easy for you to create new ones, so in some ways this basic parser is already ahead of Fuse!)</em></p>
<p>Having written Fuse myself I have to say that the simplicity of this system is pretty shocking. I can&#8217;t tell you how happy I am to open up this kind of functionality for you to be able to work with directly instead of just being stuck with the API&#8217;s others create for you.</p>
<p><strong><a href="http://www.goasap.org/files/go-tutorial2.html">Tutorial: Creating a simple parser with Go</a></strong></p>
<p>Accompanying video tutorials are available at <a href="http://go.mosessupposes.com/?p=31">GoPlayground</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=32</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Introducing GoPlayground!</title>
		<link>http://go.mosessupposes.com/?p=31</link>
		<comments>http://go.mosessupposes.com/?p=31#comments</comments>
		<pubDate>Sat, 08 Mar 2008 20:05:24 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[Go]]></category>
		<category><![CDATA[VideoTutorials]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=31</guid>
		<description><![CDATA[The Go Playground is a shared repository where members of the Go community can post their utilities to share with others. Accompanying source files for the Video Tutorials are also available here for download.
Want to get involved with Go? First get the Go source files, check out the official website and online documentation. Browse the [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://code.google.com/p/goplayground/">Go Playground</a> is a shared repository where members of the Go community can post their utilities to share with others. Accompanying source files for the Video Tutorials are also available here for download.</p>
<p><em>Want to get involved with Go?</em> First get the <a href="http://code.google.com/p/goasap/">Go source files</a>, check out <a href="http://www.goasap.org/">the official website</a> and <a href="http://www.goasap.org/docs/index.html">online documentation</a>. Browse <a href="http://code.google.com/p/goplayground/">the Playground</a> to see what the community is up to, join the <a href="http://goasap.org/mailman/listinfo/golist_goasap.org">mailing list</a> so you can get involved, then join up when you&#8217;ve started to make your own tools with Go and wanna share the love!</p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Official GoASAP Website Launch</title>
		<link>http://go.mosessupposes.com/?p=30</link>
		<comments>http://go.mosessupposes.com/?p=30#comments</comments>
		<pubDate>Wed, 27 Feb 2008 21:20:38 +0000</pubDate>
		<dc:creator>mosesoak</dc:creator>
				<category><![CDATA[Go]]></category>

		<guid isPermaLink="false">http://go.mosessupposes.com/?p=30</guid>
		<description><![CDATA[Our membership is growing and we&#8217;re proud to present our new website! This should clear up a lot of questions about what GoASAP is all about.
http://www.goasap.org/


What do you think?
]]></description>
			<content:encoded><![CDATA[<p>Our membership is growing and we&#8217;re proud to present our new website! This should clear up a lot of questions about what GoASAP is all about.</p>
<p><a href="http://www.goasap.org/">http://www.goasap.org/</p>
<p><img src="http://www.goasap.org/images/goasap-website.jpg" border="1" /><br />
</a></p>
<p>What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://go.mosessupposes.com/?feed=rss2&amp;p=30</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
