<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Wed, 30 May 2012 23:35:18 GMT--><feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"><title>Main</title><subtitle>Main</subtitle><id>http://www.goondaba.com/main/</id><link rel="alternate" type="application/xhtml+xml" href="http://www.goondaba.com/main/"/><link rel="self" type="application/atom+xml" href="http://www.goondaba.com/main/atom.xml"/><updated>2012-04-24T03:19:30Z</updated><generator uri="http://www.squarespace.com/" version="Squarespace Site Server v5.11.81 (http://www.squarespace.com/)">Squarespace</generator><entry><title>Vaadin Portal Page Flow</title><category term="Nerdy"/><category term="java"/><category term="liferay"/><category term="page flow"/><category term="portlets"/><category term="vaadin"/><id>http://www.goondaba.com/main/2012/3/26/vaadin-portal-page-flow.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2012/3/26/vaadin-portal-page-flow.html"/><author><name>Goondaba</name></author><published>2012-03-27T03:20:00Z</published><updated>2012-03-27T03:20:00Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>In researching using Vaadin portlets within Liferay for a project, I came upon the need to implement some sort of portlet-to-portlet navigation (or page flow, in static html lingo). &nbsp;And after searching around for a bit, I couldn't find anything to my liking.</p>
<p>What I really wanted to do was have a containing portlet with views I'd setup in a CustomComponent, and then swap out that CustomComponent for a new one on the fly. &nbsp;So, being familiar with the iOS way of doing things, I simply used an iOS-style push/pop view concept.</p>
<p>In your Vaadin application, setup a function that takes a new CustomComponent; this function will be responsible for swapping out the components in the containing portlet. Then, in your CustomComponents, you can simply push a new view onto the stack, or pop the current one. Example below:</p>

<h3>Vaadin Application</h3>
<code>
<div id="_mcePaste">package Wizardry;</div></br>
<div></div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste">import com.vaadin.Application;</div>
<div id="_mcePaste">import com.vaadin.ui.Label;</div>
<div id="_mcePaste">import com.vaadin.ui.Window;</div>
<div id="_mcePaste">import com.vaadin.ui.CustomComponent;</div>
<div id="_mcePaste">import java.util.Stack;</div>
<div></div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste">public class WizardryApplication extends Application {</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste" style="padding-left: 30px;">Window window;</div>
<div id="_mcePaste" style="padding-left: 30px;">Stack&lt;CustomComponent&gt; viewStack = new Stack&lt;CustomComponent&gt;();</div>
<div style="padding-left: 30px;"></div>
<div style="padding-left: 30px;"></div>
<div id="_mcePaste" style="padding-left: 30px;"></div>
<div id="_mcePaste" style="padding-left: 30px;">public void init() {</div>
<div id="_mcePaste" style="padding-left: 60px;">window = new Window();</div>
<div id="_mcePaste" style="padding-left: 60px;">setMainWindow(window);</div>
<div id="_mcePaste" style="padding-left: 60px;"></div>
<div id="_mcePaste" style="padding-left: 60px;">pushNewView(new FirstView());</div>
<div id="_mcePaste" style="padding-left: 30px;">}</div>
<div style="padding-left: 30px;"></div>
<div style="padding-left: 30px;"></div>
<div id="_mcePaste" style="padding-left: 30px;"></div>
<div id="_mcePaste" style="padding-left: 30px;">public void pushNewView(CustomComponent givenComp){</div>
<div id="_mcePaste" style="padding-left: 60px;">if(viewStack.size() &gt; 0){</div>
<div id="_mcePaste" style="padding-left: 90px;">if(viewStack.peek() != null){</div>
<div id="_mcePaste" style="padding-left: 120px;">window.removeComponent((CustomComponent) viewStack.peek());</div>
<div id="_mcePaste" style="padding-left: 90px;">}</div>
<div id="_mcePaste" style="padding-left: 60px;">}</div>
<div id="_mcePaste" style="padding-left: 60px;"></div>
<div id="_mcePaste" style="padding-left: 60px;">window.addComponent(givenComp);</div>
<div id="_mcePaste" style="padding-left: 60px;">viewStack.push(givenComp);</div>
<div id="_mcePaste" style="padding-left: 30px;">}</div>
<div style="padding-left: 30px;"></div>
<div style="padding-left: 30px;"></div>
<div id="_mcePaste" style="padding-left: 30px;"></div>
<div id="_mcePaste" style="padding-left: 30px;">public void popView(){</div>
<div id="_mcePaste" style="padding-left: 60px;">if(viewStack.size() &gt; 0){</div>
<div id="_mcePaste" style="padding-left: 90px;">if(viewStack.peek() != null){</div>
<div id="_mcePaste" style="padding-left: 120px;">window.removeComponent((CustomComponent) viewStack.pop());</div>
<div id="_mcePaste" style="padding-left: 90px;">}</div>
<div id="_mcePaste" style="padding-left: 90px;"></div>
<div id="_mcePaste" style="padding-left: 90px;">window.addComponent(viewStack.peek());</div>
<div style="padding-left: 60px;">}</div>
<div id="_mcePaste" style="padding-left: 30px;">}</div>
<div id="_mcePaste">}</div>
<div></div>
</code>

<h3>Push a new view</h3>
<code>
<div></div>
<div>
<div>WizardryApplication myApp = (WizardryApplication) getApplication();</div>
<div>myApp.pushNewView(new SecondView());</div>
<div></div>
</code>

<h3>Pop the current view</h3>
<code>
<div></div>
<div>WizardryApplication myApp = (WizardryApplication) getApplication();</div>
<div>myApp.popView();</div>
</div>
</code>]]></content></entry><entry><title>The Curious Case of the 8GB 3rd Gen iPod Touch</title><category term="apple"/><category term="ebay"/><category term="ipodtouch"/><id>http://www.goondaba.com/main/2012/2/1/the-curious-case-of-the-8gb-3rd-gen-ipod-touch.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2012/2/1/the-curious-case-of-the-8gb-3rd-gen-ipod-touch.html"/><author><name>Goondaba</name></author><published>2012-02-01T23:12:18Z</published><updated>2012-02-01T23:12:18Z</updated><content type="html" xml:lang="en-US"><![CDATA[<h3>The Impetus</h3>
<p style="text-align: justify;">In developing some apps that had to support older devices, I had to acquire a previous generation iPod Touch for testing purposes. I figured a 3rd generation 8GB iPod Touch would be fine. So I set off to eBay to quickly grab an iPod.&nbsp;</p>
<p style="text-align: justify;">After a few days, my new-to-me-but-used iPod Touch arrived in the mail. I took it out of the box and plugged it into the iMac, only to have XCode tell me I had a 2nd gen iPod Touch in my possession.</p>
<p style="text-align: justify;">I checked my eBay order to make sure I hadn't ordered the wrong thing. Nope; 3rd gen 8GB iPod Touch. So I assumed the seller had sent me the wrong item. I contacted the seller, and was informed I'd received the correct item. I was ready to go off on the seller, but I first checked the Apple page on identifying iPod models. It turns out, we were both kind of right.</p>
<p style="text-align: justify;">You see,&nbsp;technically, there is no such thing as a 3rd generation 8GB iPod Touch.</p>
<h3>The Confusion</h3>
<p style="text-align: justify;">In 2009, Apple introduced the 3rd Gen iPod touches; they released new 32GB and 64GB models, but didn't release a new 8GB model. So for a time Apple sold the 2nd gen 8GB iPod Touch alongside the new 3rd gen 32 &amp; 64GB models (<a href="http://en.wikipedia.org/wiki/IPod_Touch#Models">Wikipedia reference</a>).</p>
<p style="text-align: justify;">So what had occurred, was that the seller had identified the 8GB iPod as 3rd generation, because it was sold alongside the actual 3rd generation iPod Touches. It's easy to see how this confusion might occur, but in looking at Apple's own page on "Identifying iPod Models" (<a href="http://support.apple.com/kb/HT1353#iPod_touch_late2009">source</a>):</p>
<blockquote style="text-align: justify;">
<div id="_mcePaste">iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive...</div>
<div></div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste">...The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.</div>
</blockquote>
<p style="text-align: justify;">it becomes clear that there is no such thing as an 8GB 3rd generation iPod Touch. And that Apple would refer to the model number of the 2nd generation iPod Touch in the blurb about the 3rd gen suggests that this confusion may be common.</p>
<h3>Why Does This Matter?</h3>
<p style="text-align: justify;">If this were simply a matter of getting the wrong model, that would be one thing. But if you look at the pricing (as of the date of this post) of the 8GB 2nd gen vs. the 8GB 3rd gen, there's a big difference:</p>
<p style="text-align: center;"><img src="http://www.goondaba.com/storage/ebay_compare.png?__SQUARESPACE_CACHEVERSION=1328141885845" alt="" /></p>
<p style="text-align: justify;">These are the exact same thing; iPod Touch model A1288. It would appear that sellers on eBay are profiting from this confusion; selling the mislabeled 2nd gen iPod Touch for a higher price than the correctly labeled 2nd gen 8GB iPod Touches. Whether this is intentional or not is difficult to say, but it is something you should be aware of if you're in the market for a used iPod Touch.</p>
<p style="text-align: justify;">In my case the seller was friendly and willing to accept a refund, but not everyone might be so fortunate.</p>
<h3>Bottom Line</h3>
<p style="text-align: justify;">If you're looking to buy a used 8GB 3rd generation iPod Touch (or any used iPod Touch, really), refer to Apple's&nbsp;page on <a href="http://support.apple.com/kb/HT1353">"Identifying iPod Models"</a> first to make sure you know what you're looking for, and don't end up paying more than you should.</p>]]></content></entry><entry><title>What's That Colour?</title><category term="Apps"/><category term="appstore"/><category term="development"/><category term="ios"/><category term="iphone"/><id>http://www.goondaba.com/main/2012/1/30/whats-that-colour.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2012/1/30/whats-that-colour.html"/><author><name>Goondaba</name></author><published>2012-01-31T04:41:50Z</published><updated>2012-01-31T04:41:50Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p style="text-align: center;"><img src="http://www.goondaba.com/storage/wtc_hero_resized.png?__SQUARESPACE_CACHEVERSION=1328041422014" alt="" /></p>
<p style="text-align: justify;">Ever need help telling what a colour is?</p>
<p style="text-align: justify;">What's That Colour to the rescue!</p>
<p style="text-align: justify;">Just tap to find a colour name, as well as RGB values for anything you can point your camera at.</p>
<p style="text-align: center;"><a style="font-size: 150%;" href="http://itunes.apple.com/us/app/whats-that-colour/id497233817?mt=8">Get it now!</a></p>]]></content></entry><entry><title>Sketch : Review</title><category term="Reviews"/><category term="mac"/><category term="mac app store"/><category term="review"/><category term="sketch"/><category term="vector drawing"/><id>http://www.goondaba.com/main/2011/8/9/sketch-review.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2011/8/9/sketch-review.html"/><author><name>Goondaba</name></author><published>2011-08-09T18:01:01Z</published><updated>2011-08-09T18:01:01Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I've been messing around with Inkscape lately, just for fun.&nbsp; But what's not fun is seeing your Core i7 iMac struggling to redraw your document while zooming in.&nbsp; You see, Inkscape isn't multi-threaded. So, during intensive tasks I'll just see a single core at 100% while the other 7 are just chilling, presumably talking smack about integers.</p>
<p>Thus began my search for a cheap, Mac-native vector drawing application.&nbsp; And after a grueling 10 minute search of the internets, I decided to try out Sketch.</p>
<h3>Initial Impressions</h3>
<p>&nbsp;</p>
<p style="text-align: center;"><img style="width: 600px;" src="http://www.goondaba.com/storage/sketch_hero.png?__SQUARESPACE_CACHEVERSION=1312913590762" alt="" /></p>
<p>Sketch touts "Infinite Size" documents as one of its features.&nbsp; When you open Sketch, you have an infinite sized canvas on which to do your vector drawing thing.&nbsp; When you've achieved something worth exporting, you make a "slice" or selection of your canvas to export. That's nifty.</p>
<p>I was using a mouse when I started up Sketch, and was going nuts trying to find a way to scroll around the canvas.&nbsp; I went into the toolbar configuration, and found that there was indeed a hand tool; it just wasn't in the default toolbar. "Why is that?", I wondered. But switching to the Magic Trackpad, I was easily able to scroll and zoom my way around using the two-finger scroll and pinch.&nbsp; It seems Sketch was made for use with the trackpad, so that's something to keep in mind.</p>
<p>Sketch has a stroke width tool that's easy to use, and the transforms (stretch, scale, skew) are easy to apply. But that's where the ease stops.</p>
<h3>Annoyances</h3>
<p>I spent a few minutes trying to figure out how to select a vector I'd already drawn. Not modifying it; just selecting it. You see, Sketch doesn't have a mouse tool. Whenever I tried to select a vector, I'd find myself applying the effect of whatever tool I had selected. It wasn't until I realized I had to deselect my current tool, that I could select elements. That was annoying.</p>
<p>Also, Sketch seems very green; it feels buggy in places.&nbsp; Selecting layers and then deleting them doesn't always work on the first try.&nbsp; Additionally, a reference layer I had put in the document and hid, wouldn't then un-hide. Useful.</p>
<p>Which brings me to the layers.&nbsp; Sketch definitely supports layers, but that isn't apparent when you open up the application.&nbsp; You have to enable layers in the View menu.&nbsp; And once you have your list of layers, you might be inclined to order them&hellip; Well, good luck with that.</p>
<p>For whatever reason, Sketch has decided to make the process of ordering layers as maddening as possible.&nbsp; You might assume that sending a layer backwards, would change the relative order of the selected layer. Guess again! Rather, in order to send a layer backwards, you must first click the behind tool, then click on the layer you want your selected layer to go behind. Get it? It's so intuitive!</p>
<p>Sketch also includes a set of distortions:</p>
<p style="text-align: center;"><span class="full-image-inline ssNonEditable"><span><img src="http://www.goondaba.com/storage/sketch_distort.png?__SQUARESPACE_CACHEVERSION=1312913728087" alt="" /></span></span></p>
<p>These distortions are easy enough to use, but they aren't very precise. Thus, I don't really find them that useful. But you know what are useful? Bezier handles.</p>
<p>In working with already made vectors, I found it difficult to grab the Bezier handles; sometimes they were easily visible, other times they weren't.</p>
<h3>Bottom Line</h3>
<p>Sketch seems very promising, and I look forward to updates and seeing where it goes.&nbsp; But for right now, I'll put up with the sluggishness and stick with Inkscape.&nbsp;</p>
<p>Sketch&nbsp;is made by <a href="http://www.bohemiancoding.com">Bohemian Coding</a>, and is <a href="http://itunes.apple.com/us/app/sketch/id402476602?mt=12">available on the Mac App Store</a> for USD 39.99.</p>]]></content></entry><entry><title>Apple &amp; Google: Different Goals</title><category term="android"/><category term="apple"/><category term="google"/><category term="ios"/><id>http://www.goondaba.com/main/2011/8/9/apple-google-different-goals.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2011/8/9/apple-google-different-goals.html"/><author><name>Goondaba</name></author><published>2011-08-09T16:43:06Z</published><updated>2011-08-09T16:43:06Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Apple's goal has been to achieve maximum profit from the sale of hardware:</p>
<p><a href="http://www.asymco.com/2011/07/29/apple-captured-two-thirds-of-available-mobile-phone-profits-in-q2/">"Apple captured two thirds of available mobile phone profits in Q2"</a></p>
<p>Success.</p>
<p>&nbsp;</p>
<p>Google's goal has been to increase the number of eyeballs looking at ads, growing the search market:</p>
<p><a href="http://www.canalys.com/newsroom/android-takes-almost-50-share-worldwide-smart-phone-market">"Android takes almost 50% share of worldwide smart phone market"</a></p>
<p>Success.</p>
<p>&nbsp;</p>
<p>Everybody wins. I don't see what all the bickering is about.</p>]]></content></entry><entry><title>USBFever 2x Optical Lens for iPhone 4 Review</title><category term="Reviews"/><category term="iphone"/><category term="lens"/><category term="photography"/><category term="usbfever"/><id>http://www.goondaba.com/main/2011/8/2/usbfever-2x-optical-lens-for-iphone-4-review.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2011/8/2/usbfever-2x-optical-lens-for-iphone-4-review.html"/><author><name>Goondaba</name></author><published>2011-08-03T00:56:34Z</published><updated>2011-08-03T00:56:34Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p style="text-align: justify;">I've been snapping some pictures on my iPhone 4 recently. &nbsp;The iPhone 4 is a great casual camera, but I've been running into situations where I wish I had just a bit of zoom. &nbsp;The iPhone doesn't have any optical zoom abilities. &nbsp;What it <em>does</em> have is a ditigal zoom, which produces a very pixelated and ugly result.</p>
<p style="text-align: justify;">After doing some searching, I recently picked up the 2x Optical Zoom lens from <a href="http://www.usbfever.com">USBFever</a>. &nbsp;In my search, I'd found that there were lenses that offered up to 12x zoom (again, which you can get from USBFever). &nbsp;But, besides being rather bulky, these lenses require a tripod. &nbsp;Anyone who's tried taking a steady picture with a smartphone camera knows the difficulties of trying to hold the phone steady. &nbsp;Stick a 12x zoom lens on that phone, and it's not humanly possible to hold the phone steady enough in your hand. &nbsp;But my goal was to get something which I could easily snap on or off in casual use, and lugging around a giant lense and a tripod doesn't seem that casual to me. &nbsp;At that point, you might as well carry around a real camera.</p>
<p style="text-align: justify;">So, a week after ordering, the lens found itself to my door from Hong Kong ready to take for a spin.</p>
<p style="text-align: justify;">The lens itself is screwed in place onto a specialized iPhone case which comes included in the package. &nbsp;The idea is that you keep this case on your iPhone at all times, and then just screw in the lens whenever you need it. &nbsp;I actually really like the case, so that won't be a problem.</p>
<p><span class="full-image-block ssNonEditable"><span>&nbsp;</span></span></p>
<p style="text-align: center;"><img style="width: 600px;" src="http://www.goondaba.com/storage/hero.JPG?__SQUARESPACE_CACHEVERSION=1312333099456" alt="" /></p>
<h3>General Use</h3>
<p style="text-align: justify;">After taking some shots, a few things became apparent. &nbsp;First of all, it does indeed zoom. &nbsp;But there's also a very noticeable distortion around the edges, accompanied by a vignette effect. &nbsp;The distortions are more noticable in some shots than in others.</p>
<p style="text-align: center;"><span class="full-image-inline ssNonEditable"><span><img style="width: 600px;" src="http://www.goondaba.com/storage/lens02.JPG?__SQUARESPACE_CACHEVERSION=1312333185142" alt="" /></span></span></p>
<p style="text-align: center;"><span class="full-image-block ssNonEditable"><span><img style="width: 600px;" src="http://www.goondaba.com/storage/lens01.JPG?__SQUARESPACE_CACHEVERSION=1312333279091" alt="" /></span></span></p>
<h3>Comparisons</h3>
<p>Without lens:</p>
<p style="text-align: center;"><span class="full-image-block ssNonEditable"><span><img style="width: 600px;" src="http://www.goondaba.com/storage/nolens_01.JPG?__SQUARESPACE_CACHEVERSION=1312333356184" alt="" /></span></span></p>
<p>With lens:</p>
<p style="text-align: center;"><img style="width: 600px;" src="http://www.goondaba.com/storage/lens_01.JPG?__SQUARESPACE_CACHEVERSION=1312333414374" alt="" /></p>
<p>&nbsp;</p>
<p>Without lens:</p>
<p style="text-align: center;"><img style="width: 600px;" src="http://www.goondaba.com/storage/nolens_02.JPG?__SQUARESPACE_CACHEVERSION=1312333475844" alt="" /></p>
<p>&nbsp;</p>
<p>With lens:</p>
<p style="text-align: center;"><img style="width: 600px;" src="http://www.goondaba.com/storage/lens_02.JPG?__SQUARESPACE_CACHEVERSION=1312333512555" alt="" /></p>
<h3>Conclusions</h3>
<p style="text-align: justify;">The distortions will have to be something I keep in mind when deciding whether to use the 2x lens, but I like having the option when I want to see something a bit more closely.</p>]]></content></entry><entry><title>Lion: Quit Without Auto Resume</title><category term="lion"/><category term="tip"/><id>http://www.goondaba.com/main/2011/8/1/lion-quit-without-auto-resume.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2011/8/1/lion-quit-without-auto-resume.html"/><author><name>Goondaba</name></author><published>2011-08-01T16:02:50Z</published><updated>2011-08-01T16:02:50Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Mac OS X Lion introduced a feature that allows applications to restore the exact state of the program when quit. So, the next time you open the application, every document, window, and panel will be right where you left it. &nbsp;But what if you want to quit an application and DON'T want to see all those windows again? &nbsp;Apparently you can override the auto resume behavior, by using the key cominbation:</p>
<p>Command(Apple) + Option + Q</p>
<p>&nbsp;</p>]]></content></entry><entry><title>Messing around with Inkscape</title><category term="Doodles"/><category term="inkscape"/><id>http://www.goondaba.com/main/2011/7/30/messing-around-with-inkscape.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2011/7/30/messing-around-with-inkscape.html"/><author><name>Goondaba</name></author><published>2011-07-31T02:15:21Z</published><updated>2011-07-31T02:15:21Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span class="full-image-block ssNonEditable"><span>&nbsp;</span></span></p>
<p style="text-align: center;"><img src="http://www.goondaba.com/storage/drawing.png?__SQUARESPACE_CACHEVERSION=1312078689797" alt="" /></p>]]></content></entry><entry><title>Spring Grove Cemetery</title><category term="cemetery"/><category term="cincinnati"/><category term="cincy"/><category term="photography"/><category term="quirky"/><id>http://www.goondaba.com/main/2011/7/25/spring-grove-cemetery.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2011/7/25/spring-grove-cemetery.html"/><author><name>Goondaba</name></author><published>2011-07-25T06:19:51Z</published><updated>2011-07-25T06:19:51Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>&nbsp;</p>
<p><span class="thumbnail-image-inline ssNonEditable"><span><a href="http://www.goondaba.com/galleries/spring-grove-cemetery/"><img style="float: left;" src="http://www.goondaba.com/storage/thumbnails/11306402-10558302-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1311578089461" alt="" /></a></span><span class="thumbnail-caption" style="width: 600px;">Click to see the gallery</span></span></p>]]></content></entry><entry><title>Rainy Day at Eden Park</title><id>http://www.goondaba.com/main/2011/7/25/rainy-day-at-eden-park.html</id><link rel="alternate" type="text/html" href="http://www.goondaba.com/main/2011/7/25/rainy-day-at-eden-park.html"/><author><name>Goondaba</name></author><published>2011-07-25T06:13:24Z</published><updated>2011-07-25T06:13:24Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span class="full-image-block ssNonEditable"><span>&nbsp;</span></span></p>
<p style="text-align: center;"><img src="http://www.goondaba.com/storage/rainy.png?__SQUARESPACE_CACHEVERSION=1311574539727" alt="" /></p>]]></content></entry></feed>
