<?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>Inside RogueSheep</title>
	<atom:link href="http://blog.roguesheep.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.roguesheep.com</link>
	<description>Behind the scenes with the sheep</description>
	<lastBuildDate>Fri, 19 Feb 2010 19:30:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>An enhancement for UIAlertView</title>
		<link>http://blog.roguesheep.com/2010/02/19/an-enhancement-for-uialertview/</link>
		<comments>http://blog.roguesheep.com/2010/02/19/an-enhancement-for-uialertview/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 19:29:53 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/?p=288</guid>
		<description><![CDATA[I like objective-c protocols, and I am a fan of the interface oriented designs that it allows for. But, sometimes the indirection of using a selector with a defined signature just works better, and the problem is that UIAlertView does not take a selector. Instead, UIAlertView defines a protocol, UIAlertViewDelegate, that the alert&#8217;s delegate adopts [...]]]></description>
			<content:encoded><![CDATA[<p>I like objective-c protocols, and I am a fan of the interface oriented designs that it allows for. But, sometimes the indirection of using a selector with a defined signature just works better, and the problem is that UIAlertView does not take a selector. Instead, UIAlertView defines a protocol, UIAlertViewDelegate, that the alert&#8217;s delegate adopts to receive notification of the user intent. To be fair, UIAlertView communicates a bit more information back to it&#8217;s delegate than the target of an NSAlert, and the UIAlertViewDelegate protocol does a fine job achieving that goal. 99% of the time, however, I want to show an alert and have it call my named selector when it is done. To that end, I finally busted out the admittedly tiny class that does the job.</p>

<p>Now in my client code I show an alert like this:</p>

<pre><code>
    RSAlert* alert = [[RSAlert alloc] initWithTitle: @"Title" 
                                            message: @"Message!" 
                                             target: self 
                                           selector: @selector(dismissedAlert:buttonIndex:)
                                  cancelButtonTitle: @"OK" 
                                  otherButtonTitles: nil];
</code></pre>

<p>and handle the result with a selector,  similar to NSAlert:</p>

<pre><code>
- (void) dismissedAlert: (RSAlert*) alert buttonIndex: (NSInteger) buttonIndex
{
    NSLog(@"dismissedStartupAlert with buttonIndex: %d", buttonIndex);
    
    [alert autorelease];
}
</code></pre>

<p>I realize this is an infinitesimally small annoyance, but sometimes it&#8217;s the little things that keep us happy.</p>

<h3>RSAlert.h</h3>

<pre><code>
#import 

@interface RSAlert : NSObject 
{
    UIAlertView*    alertView_;
    id              target_;
    SEL             selector_;
}

- (id)initWithTitle: (NSString*) title 
            message: (NSString*) message 
             target: (id) target 
           selector: (SEL) selector
  cancelButtonTitle: (NSString*) cancelButtonTitle 
  otherButtonTitles: (NSString*) otherButtonTitles, ...;

- (void) show;

@end
</code></pre>

<h3>RSAlert.m</h3>

<pre><code>
#import "RSAlert.h"

@implementation RSAlert

- (id)initWithTitle: (NSString*) title 
            message: (NSString*) message 
             target: (id) target 
           selector: (SEL) selector
  cancelButtonTitle: (NSString*) cancelButtonTitle 
  otherButtonTitles: (NSString*) otherButtonTitles, ...;
{
    self = [super init];
    
    if ( self )
    {
        target_     = [target retain];
        selector_   = selector;
        alertView_  = [[UIAlertView alloc] initWithTitle: title
                                                 message: message
                                                delegate: self
                                       cancelButtonTitle: cancelButtonTitle
                                       otherButtonTitles: nil];
    
        if ( otherButtonTitles )
        {
            va_list argList;
            id anArg;
            
            [alertView_ addButtonWithTitle: otherButtonTitles];
            
            va_start(argList, otherButtonTitles);
            
            while ( anArg = va_arg(argList, id) )
            {
                [alertView_ addButtonWithTitle: anArg];
            }
            
            va_end(argList);
        }
    }
    
    return self;
}

- (void) dealloc
{
    [target_ release];
    [alertView_ release];
    [super dealloc];
}

- (void) show
{
    [alertView_ show];
}

- (void)       alertView: (UIAlertView*) alertView 
    clickedButtonAtIndex: (NSInteger) buttonIndex
{
    // Do nothing
}

- (void) alertViewCancel: (UIAlertView*) alertView
{   
    [target_ performSelector: selector_ 
                  withObject: self 
                  withObject: (id) 0];
}

- (void) willPresentAlertView: (UIAlertView*) alertView
{
    // Do nothing
}

- (void)didPresentAlertView: (UIAlertView*) alertView
{
    // Do nothing
}

- (void)             alertView: (UIAlertView*) alertView 
    willDismissWithButtonIndex: (NSInteger) buttonIndex
{
    // Do nothing
}

- (void)            alertView: (UIAlertView*) alertView 
    didDismissWithButtonIndex: (NSInteger) buttonIndex
{
    [target_ performSelector: selector_ 
                  withObject: self 
                  withObject: (id) buttonIndex];
}

@end
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2010/02/19/an-enhancement-for-uialertview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RogueSheep at Macworld 2010</title>
		<link>http://blog.roguesheep.com/2010/02/09/roguesheep-at-macworld-2010/</link>
		<comments>http://blog.roguesheep.com/2010/02/09/roguesheep-at-macworld-2010/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 22:02:58 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Postage]]></category>
		<category><![CDATA[RogueSheep]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/?p=286</guid>
		<description><![CDATA[Just a reminder that we will be exhibiting Postage and all our iPhone apps at Macworld Expo 2010 in just a few days. If you are planning on attending, be sure to look for us in the Mobile Application Showcase in the expo hall. We&#8217;ll be giving out promo codes and some other cool schwag [...]]]></description>
			<content:encoded><![CDATA[<p>Just a reminder that we will be exhibiting Postage and all our iPhone apps at <a href="http://www.macworldexpo.com/expo">Macworld Expo 2010</a> in just a few days. If you are planning on attending, be sure to look for us in the <strong>Mobile Application Showcase</strong> in the expo hall. We&#8217;ll be giving out promo codes and some other cool schwag including buttons, and these adorable <a href="http://moo.com">MOO</a> cards:</p>

<div style="text-align:center;"><img src="http://blog.roguesheep.com/wp-content/uploads/2010/02/Macworld-MooCards-Blog.png" alt="Macworld MooCards Blog.png" border="0" width="600" height="397" /></div>

<p>If you are not yet planning to attend Macworld 2010, there is still time! It looks like some great events are planned this year, including a special iPad event where Macworld editors will have an iPad on hand to show off. There are also a ton of interesting and entertaining speakersthis year including, filmmaker <a href="http://cts.vresp.com/c/?IDGWorldExpo/afffe897e7/6acdc17cab/498b594347/s=QSHOWA0004C1">Kevin Smith</a>, the legendary <a href="http://cts.vresp.com/c/?IDGWorldExpo/afffe897e7/6acdc17cab/9d2f915b68/s=QSHOWA0005VX">Guy Kawasaki</a> and the cranky, but lovable John Gruber of <a href="http://daringfireball.net/">Daring Fireball</a>. </p>

<p>
The Expo takes place from February 11-13 at the Moscone Center in San Francisco. We have a number of free exhibit hall passes to give away. If you are interested, send us an email here :  <a href=mailto:macworld2010@roguesheep.com>macworld2010@roguesheep.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2010/02/09/roguesheep-at-macworld-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brad Speaking at 360&#124;iDev San Jose in April</title>
		<link>http://blog.roguesheep.com/2010/02/02/brad-speaking-at-360idev-san-jose-in-april/</link>
		<comments>http://blog.roguesheep.com/2010/02/02/brad-speaking-at-360idev-san-jose-in-april/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 01:21:13 +0000</pubDate>
		<dc:creator>brad</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/?p=242</guid>
		<description><![CDATA[

Brad here. The Designer Sheep. I’m going to be speaking at 360&#124;iDev San Jose along with Dave Wiskus in April. Our talk is entitled &#8220;Core Elegance&#8221; and we&#8217;ll be talking about how to think, look, and do like a mobile app designer should.  We&#8217;ve got a kick ass presentation lined up, should be a good [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align:center;"><img title="360iDevCE" src="http://blog.roguesheep.com/wp-content/uploads/2010/02/360iDevCE.png" alt="" width="360" height="373" /></div>

<p>Brad here. The Designer Sheep. I’m going to be speaking at <a href="http://www.360idev.com/">360|iDev San Jose</a> along with <a href="http://betterelevation.com/">Dave Wiskus</a> in April. Our talk is entitled &#8220;Core Elegance&#8221; and we&#8217;ll be talking about how to think, look, and do like a mobile app designer should.  We&#8217;ve got a kick ass presentation lined up, should be a good time.</p>

<p>In commemoration of the event, I&#8217;ve created a wallpaper.  Its a <a href="http://en.wikipedia.org/wiki/M%C3%B6bius_strip">Möbius Strip</a>, a shape with one side.  Simple in concept, beautiful in presentation. <a href="http://musings.halfapixelshort.com/post/347148314/coreelegance">Check it out here.</a></p>

<p>Also, you can use promo code “<a href="http://360idev-CaptainAwesome.eventbrite.com/">CountingSheep</a>” during registration to save 20%.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2010/02/02/brad-speaking-at-360idev-san-jose-in-april/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Apps, one Girl</title>
		<link>http://blog.roguesheep.com/2010/01/29/two-apps-one-girl/</link>
		<comments>http://blog.roguesheep.com/2010/01/29/two-apps-one-girl/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 21:20:31 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Postage]]></category>
		<category><![CDATA[RogueSheep]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/?p=267</guid>
		<description><![CDATA[We&#8217;ve caught the love bug here at RS HQ and have two great new iPhone applications available in the store this week. 

RoseGlobe

RoseGlobe is a romance-themed version of the SnoGlobe application we released last December. RoseGlobe is just beautiful and every bit as mesmerizing to play with as SnoGlobe. Be sure to check out the [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve caught the love bug here at RS HQ and have two great new iPhone applications available in the store this week. </p>

<p><strong><p>RoseGlobe</p></strong></p>

<p><a href="http://snoglobe.roguesheep.com">RoseGlobe</a> is a romance-themed version of the SnoGlobe application we released last December. RoseGlobe is just beautiful and every bit as mesmerizing to play with as SnoGlobe. Be sure to check out the demo video that Brad created at the <a href="http://snoglobe.roguesheep.com">product website</a>. It&#8217;s almost as pretty as the app itself. I think he is going to create a blog post soon to talk about how he worked the magic to motion capture the iPhone to create the animated phone in the short.</p>

<p><strong><p>Valentine ~ Postage
</p></strong></p>

<p>We have also created a newly themed edition of Postage for the upcoming holiday next month. <a href="http://postage.roguesheep.com/valentines">Valentine ~ Postage</a> has 14 love inspired postcard designs, one for each day of February leading up to Valentine&#8217;s Day. Grab it and send your sweetheart a special little message every day next month. I guarantee it will win you some big relationship points!</p>

<p><strong><p>Postage ~ Postcards
</p></strong></p>

<p>Finally, we have also updated the premium edition of Postage with several of the new postcard designs form Valentine ~ Postage filling out the love category with ten total designs. Be sure to update if you haven&#8217;t done it yet. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2010/01/29/two-apps-one-girl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone OS 4.0?</title>
		<link>http://blog.roguesheep.com/2010/01/26/iphone-os-4-0/</link>
		<comments>http://blog.roguesheep.com/2010/01/26/iphone-os-4-0/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 03:49:09 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/?p=255</guid>
		<description><![CDATA[I know that we are all excited about the mythical Apple tablet materializing tomorrow, but with all the pontification already spread across the far corners of the media, I don&#8217;t feel I have much to add to the story. On the other hand, I have been thinking a bit about iPhone OS 4.0. I don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I know that we are all excited about the mythical Apple tablet materializing tomorrow, but with all the pontification already spread across the far corners of the media, I don&#8217;t feel I have much to add to the story. On the other hand, I have been thinking a bit about iPhone OS 4.0. I don&#8217;t think we will hear about 4.0 tomorrow if there really is a tablet. It seems like that would just be too much to unload all at once. (I do allow that we might hear about an incremental update such as iPhone OS 3.2 though). Still, we&#8217;ll be all out of things to speculate on after tomorrow, so perhaps we can kickstart the next round now?</p>

<p><strong>User Desire</strong></p>

<p>As a user, my hope for iPhone OS 4.0 is a way for third party developers to provide background media playing applications. I understand why Apple wants to be careful with allowing any ol&#8217; process to be granted the ability to run in the background. Sure&#8230; power users will be able to manage background processes by hand, no problem. As we have seen on the desktop though, ordinary people just don&#8217;t want to be bothered with that level of device tweaking. We have been playing with a few Android devices here at the labs and its clear its pretty easy to start installing apps that quietly add background processes that start to suck down the battery without realizing what you have done.</p>

<p>On the other hand, applications like <a href="http://www.pandora.com/">Pandora</a> on the Android phones are so much better than their iPhone equivalents. Being able to tune in that Pandora radio station and having it play in the background just like the built-in iPod application when you launch another app would change the value of these applications immensely. </p>

<p>My suggestion for how Apple can do this without opening Pandora&#8217;s box (zing!) is to create a media service API that allows third party apps to hand media streams off to the iPod player. So the flow would work something like this:</p>

<p>You launch Pandora and use their UI to navigate their music offerings. You tune in the station that suits your current mood and give a bit of a listen. Under the hood Pandora is playing their stream via this new service API that is using the iPod application to serve up the audio. Now, you get the urge to catch-up on your news and launch NetNewsWire for some tasty RSS. When Pandora&#8217;s process is terminated the music keeps on playing, because it is the iPod application that is playing the audio. Its all Apple code running in the background, managing how much power is consumed just the way Apple wants, certified to the level of quality Apple is comfortable with, but we get audio from other providers. </p>

<p>There are of course some wrinkles to work out. If I launch the iPod app while a background stream is running, what is &#8216;Now Playing&#8217;? Perhaps the iPod application shows an appropriate image indicating the Pandora app is the current offering and allows you to quickly switch to it. One can even imagine a more sophisticated approach where the Pandora app could provide a plugin bundle that hosts its UI inside the iPod app, though I doubt this is appealing to Apple. There also needs to be some interesting mechanism for the iPod application to ask the originating service for the next or previous media file so that mini-controls that can be used to control the iPod in the background work as expected. Perhaps this is solved through a call-back into a simple code-bundle provided by the third party application? I&#8217; m confident though there is some low impact way to achieve Apple&#8217;s goals and still enrich the media-playing experience on the device.</p>

<p><strong>Developer Desire</strong></p>

<p>So that&#8217;s my biggest desire as an iPhone user, but what about as an iPhone developer? What I would love to see next is a basic suite of video editing APIs. The problem with the iPhone OS and video right now is that if you want to do anything to process frames of video you need to have your own code to decode the video and re-encode after you have done your processing. This is not exactly trivial code to do well and open source starting points are potentially fraught with licensing and patent peril.</p>

<p>Even if you roll your own codec, perhaps even getting down and dirty with some ARM assembly, you still can&#8217;t get access to the built-in hardware assist that allows Apple&#8217;s software to capture and encode video at decent performance. The last thing we want to do as an iPhone developer is invest a lot of time in developing a codec for the iPhone and find that the best we can do is H.263 at a miserable frame rate. We also don&#8217;t want to force the user to wait around in our application for an encode to finish. Once again we need some way to hand this off and allow the OS to encode in the background for us so our users are not trapped in our application waiting for their edit to finish.</p>

<p>A basic QuickTime derived API that would allow us to take a video file, access individual frames and provide our own sequence of frames to encode into a new movie would be just the ticket. I realize that the advanced encoders typically have licensing requirements and perhaps Apple&#8217;s current license for their iPhone software doesn&#8217;t allow for this to be opened up. Hopefully it is something that can be addressed in the next version of the OS anyway?</p>

<p>Surely we are in for a interesting ride with the big announcement tomorrow. No doubt the next 6 months will be an interesting one for those of playing with Apple technologies. I suspect WWDC will be chock full of new content this year!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2010/01/26/iphone-os-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macworld 2010</title>
		<link>http://blog.roguesheep.com/2010/01/25/macworld-2010/</link>
		<comments>http://blog.roguesheep.com/2010/01/25/macworld-2010/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 20:53:04 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Postage]]></category>
		<category><![CDATA[RogueSheep]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/?p=249</guid>
		<description><![CDATA[RogueSheep will be exhibiting at Macworld Expo 2010 this year as part of the Mobile Application Showcase. We will be there showing off Postage and our other iPhone applications, so if you plan on attending Macworld this year be sure and come say hello to us. 

If you have never been to Macworld you have [...]]]></description>
			<content:encoded><![CDATA[<p>RogueSheep will be exhibiting at <a href="http://www.macworldexpo.com/expo">Macworld Expo 2010</a> this year as part of the <strong>Mobile Application Showcase</strong>. We will be there showing off Postage and our other iPhone applications, so if you plan on attending Macworld this year be sure and come say hello to us. </p>

<p>If you have never been to Macworld you have been missing out. Its a great time to meet and mingle with Mac and iPhone enthusiasts from around the world. Many of the prominent independent Mac and iPhone developers such as <a href="http://www.omnigroup.com/">The Omni Group</a>, <a href="http://www.rogueamoeba.com/">Rogue Amoeba</a>, <a href="http://firemint.com/">FireMint</a>, <a href="http://www.riverfold.com/">Riverfold</a>, <a href="http://marketcircle.com/">Marketcircle</a> and <a href="http://www.boinx.com/">Boinx</a> will be presenting their wares there as well. It&#8217;s a great way to meet some of the best known names in Mac and iPhone software development. </p>

<p>The expo takes place February 11th-13th in San Francisco&#8217;s <a href="http://www.moscone.com/site/do/index">Moscone Center</a>. We have some passes to give away, so if you are interested in attending drop us a line here : <a href=mailto:macworld2010@roguesheep.com>macworld2010@roguesheep.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2010/01/25/macworld-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes eBook? iTunes eMag?</title>
		<link>http://blog.roguesheep.com/2010/01/22/itunes-ebook-itunes-emag/</link>
		<comments>http://blog.roguesheep.com/2010/01/22/itunes-ebook-itunes-emag/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 21:46:32 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/?p=230</guid>
		<description><![CDATA[There has been some speculation that Apple might use the iTunes LP format for content in their &#8220;latest creation.&#8221; We don&#8217;t know what Apple intends to show off next week, let alone the content strategy for unsaid device. But let&#8217;s just assume for the moment that on Wednesday Apple reveals a tablet, and amongst the [...]]]></description>
			<content:encoded><![CDATA[<p>There has been some speculation that Apple might use the iTunes LP format for content in their &#8220;latest creation.&#8221; We don&#8217;t know what Apple intends to show off next week, let alone the content strategy for unsaid device. But let&#8217;s just assume for the moment that on Wednesday Apple reveals a tablet, and amongst the festivities they roll out support for electronic books and magazines packaged up into an iTunes LP? What does that mean?</p>

<p>To begin with, it probably won&#8217;t be called iTunes LP. The <a href="http://www.apple.com/itunes/lp-and-extras/">documentation</a> released by Apple some time back shows that iTunes LP (.itlp extension) and iTunes Extras (.ite) are actually two specific incarnations of a general purpose package format. Apple hasn&#8217;t named the general format, so I&#8217;ll call it the iTunes Media Format. As others have pointed out, it is basically a self contained, mini-website, complete with images, videos, audio, fonts, and of course text content. Given all that, it seems possible that an eBook incarnation of the format might be called iTunes eBook (.iteb?), a magazine incarnation might be iTunes eMag (.item?), or maybe there&#8217;s a variant that does both. But will publishers really want to distribute their content in such a way? Why not PDF or EPUB format?</p>

<p>I think publishers will certainly entertain the idea. Although PDF represents an easy migration path right now, it is fundamentally a static page description. Adobe&#8217;s Adobe Reader Mobile SDK does support reflow, but the quality depends on the metadata within the document as well as the ability to infer page structure when none is available. EPUB is somewhat at the other end of the spectrum, it has a rich content model that intrinsically supports reflow, but layout is limited to a subset of CSS2. The iTunes media format, on the other hand, is a good compromise between both extremes &#8212; it supports HTML5 and CSS3 and can let a publisher decide where on the layout vs reflow line they&#8217;d like to be. But how will publishers author content?</p>

<p>That&#8217;s a great question for another day.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2010/01/22/itunes-ebook-itunes-emag/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Postage and WORD SPIN &#8211; 2009 Best App Ever</title>
		<link>http://blog.roguesheep.com/2010/01/07/postage-and-word-spin-2009-best-app-ever/</link>
		<comments>http://blog.roguesheep.com/2010/01/07/postage-and-word-spin-2009-best-app-ever/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 19:52:05 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Postage]]></category>
		<category><![CDATA[RogueSheep]]></category>
		<category><![CDATA[Word Spin]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/?p=221</guid>
		<description><![CDATA[We are honored that both Postage and WORD SPIN have been nominated in the 2009 Best App Ever awards. If you enjoy our apps, please consider heading over to the Best App Ever web site and voting!


Vote for
Postage ~ Postcards
in
Best Visual Design



Vote for
WORD SPIN®
in
Best Word Game

]]></description>
			<content:encoded><![CDATA[<p>We are honored that both Postage and WORD SPIN have been nominated in the 2009 Best App Ever awards. If you enjoy our apps, please consider heading over to the Best App Ever web site and voting!</p>

<div style="margin-top: 23px; margin-right: auto; margin-left: auto; width: 165px; background-color: #242426; padding: 5px; border: 3px solid #777777;"><a href="http://bestappever.com/v/vdap/312231322" target="_blank"><img src="http://bestappever.com/images/bae-small_2009.png" border="0" alt="" /></a>
<span style="font-family: Arial,Helvetica,sans-serif;font-size: 10pt;line-height: 12pt;text-align:center;color: #d9d9d9;">Vote for
<strong>Postage ~ Postcards</strong>
in
<strong>Best Visual Design</strong>
<a href="http://bestappever.com/v/vdap/312231322" target="_blank"><img src="http://bestappever.com/images/button_vote.png" border="0" alt="" /></a>
</span></div>

<div style="margin-top: 23px; margin-right: auto; margin-left: auto; width: 165px; background-color: #242426; padding: 5px; border: 3px solid #777777;"><a href="http://bestappever.com/v/wogm/335201876" target="_blank"><img src="http://bestappever.com/images/bae-small_2009.png" border="0" alt="" /></a><span style="font-family: Arial,Helvetica,sans-serif; font-size: 10pt; &lt;br /&gt; line-height: 12pt; &lt;br /&gt; text-align: center; color: #d9d9d9;">Vote for
<strong>WORD SPIN®</strong>
in
<strong>Best Word Game</strong>
<a href="http://bestappever.com/v/wogm/335201876" target="_blank"><img src="http://bestappever.com/images/button_vote.png" border="0" alt="" /></a></span></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2010/01/07/postage-and-word-spin-2009-best-app-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
