<?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>Gizbitz</title>
	<atom:link href="http://www.gizbitz.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.gizbitz.com/blog</link>
	<description>Putting the puzzling pieces together through Web Design and Software Applications</description>
	<lastBuildDate>Tue, 21 Dec 2010 12:55:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>A Game, Cocos2D and Hexagons</title>
		<link>http://www.gizbitz.com/blog/?p=205</link>
		<comments>http://www.gizbitz.com/blog/?p=205#comments</comments>
		<pubDate>Sun, 19 Dec 2010 20:57:40 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Gizbitz Business]]></category>
		<category><![CDATA[iPhone / iPad Apps]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Orbs Away!]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=205</guid>
		<description><![CDATA[Over the past year, I had just dabbled using the Cocos2D framework but had not used it in any of my projects. What was stopping me was the thought that I would have to learn a whole new way to program and language syntax. I am very proficient with Objective C and have a few [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past year, I had just dabbled using the Cocos2D framework but had not used it in any of my projects. What was stopping me was the thought that I would have to learn a whole new way to program and language syntax. I am very proficient with Objective C and have a few apps in the app store, and they are totally written using the standard foundations provided by Apple with the iOS SDK. Over time, I noticed that more and more developers were using Cocos2D for their published games. My wife was also begging me to develop a game for her. A game that is similar to one that she plays all the time at a local arcade/dinner establishment and that she could play on her iPhone. So, I decided to use Cocos2D in earnest for my new client (wife) and started reading up on using it. I browsed the <a href="http://www.cocos2d-iphone.org/" target="_blank">Cocos2D</a> web site and forums as well as the <a href="http://www.learn-cocos2d.com/">learn-cocos2d</a> site run by Steffen Itterheim. (Is it just me, or does he look like Seth Rogen?) It was there that I saw that he was publishing a book on using Cocos2D call &#8220;<a href="http://apress.com/book/view/1430233036" target="_blank">Learn iPhone and iPad Cocos2D Game Development</a>&#8221; I jumped on purchasing the alpha book (pre-release chapters. The book is now published) and then started the journey into really learning the Cocos2D framework and Orbs Away! &#8211; the game.</p>
<p>Orbs Away! is your standard match 3+ color game. However, unlike other color matching games, the game board is laid out in a hexagon pattern of columns and rows.</p>
<p><a href="http://www.gizbitz.com/blog/wp-content/uploads/2010/12/CoordinatesDiagram.jpg"><img class="aligncenter size-medium wp-image-207" title="CoordinatesDiagram" src="http://www.gizbitz.com/blog/wp-content/uploads/2010/12/CoordinatesDiagram-300x248.jpg" alt="" width="300" height="248" /></a></p>
<p>In the image above, you will notice each tile is a hexagon shape and also that each tile can be surrounded by 6 other tiles. In contrast, a typical square grid will have a tile that is surrounded by 4 other tiles. Working with square tiles is pretty straight forward in determining if a tile has the same color as an adjacent tile. Hexagons&#8230;not so much. At least for me anyway. As with probably most developers out there, you search the internet to see if anyone else has developed a solution or tutorial that relates to your development challenge. Now, here is where I will give credit where credit is due. While I did not find much related to a hexagon game layout, I did find an excellent reference to hex coordinate systems at <a href="http://jemgine.omnisu.com/?page_id=412">http://jemgine.omnisu.com/?page_id=412</a>. The author even had a C#  Hex Class written for Windows XNA game development. This class is usually  used as a game board tile map to determine which hexagon is selected upon mouse click or direction for movement of a game piece. I rewrote the class in Objective-C with emphasis on placing falling Orbs in the correct hexagon (with box2d collision detection) and to recursively determine if there are any 3 or more adjacent Orbs with the same color.</p>
<p><a href="http://www.gizbitz.com/blog/wp-content/uploads/2010/12/Screen-shot-2010-12-19-at-9.34.34-AM.png"><img class="aligncenter size-full wp-image-209" title="Screen shot 2010-12-19 at 9.34.34 AM" src="http://www.gizbitz.com/blog/wp-content/uploads/2010/12/Screen-shot-2010-12-19-at-9.34.34-AM.png" alt="" width="479" height="319" /></a></p>
<p>The screenshot above is from the beta version of the game with the Orbs laid out using the reworked Hex Class. I’ll go over the the high-level basics for the HexGrid Class and how I use it in the game. I’ll put up the source for new HexGrid Class in another post at a later date. Right now, I am hurrying to get the game finished!</p>
<p><strong>High Level Game Play</strong></p>
<p>Firstly we need to initialize the class with the radius of each Orb by calling the HexGrid initWithRadius. All the computations (tile center, tile coordinate, etc) are based upon the radius of an Orb. In the game, I slightly increase the radius to give a little empty space (padding) between other Orbs.</p>
<p>(id) initWithRadius:(float)orbRadius</p>
<p>Even though the Orb sprites are round, I set up a box2d body that is hexagon shaped and surrounds the sprite with vertices for each point on the hexagon. I may have been able to just use a circle box2d shape, but I wanted to see exactly how the hexagons laid out using box2d debugDraw. I also do not use physics in the game as I merely want to detect collisions using a contact listener.</p>
<p>When an Orb is released from the “Claw” it will drop towards the floor. Using box2d collision detection, when an Orb either contacts the floor or another Orb, the class method getHexTileAtPoint is called using the center point of the Orb. The method then returns the column and row for the hex tile that center point of the Orb falls in. I should also mention that each Orb is a member of an Orb class that I set up and has an instance variable hexColRow which I then store the returned CGPoint. I then call the getHexTileCenter  method and I simply move the Orb to the returned coordinates. Did that make sense?</p>
<p>-(CGPoint) getHexTileAtPoint:(CGPoint) orbCenter</p>
<p>-(CGPoint) getHexTileCenter:(CGPoint) tileCoordinate</p>
<p><strong>Checking for matching colors</strong></p>
<p>Using a Cocos2d scheduler that runs every 1/30 of a second, I check every Orb to see if  it has 3 or more matching/adjacent colors. I mentioned that each Orb is a member of an Orb class that I set up and has an instance variable hexColRow. Well, here is where I use that. I set up a recursive method that uses the hexColRow and will populate an array of Orbs and their hexColRow coordinates that have 3 or more matching adjacent colors.</p>
<p>-(void) getHexTileMatchesWithTile:(int)col Row:(int)row Color:(NSString *)color</p>
<p>Now it’s just a simple matter of going through the matching array and destroy the Orb sprites and their box2d bodies.</p>
<p>Lastly, I use some of the same HexGrid methods to determine if any Orbs should begin falling due to their not having any Orbs under them. I then put my simulated physics in effect and set the Orb dropping again. Of course the scheduler will run again and see if these newly dropping Orbs set up another match 3+.</p>
<p>Here is a video of the game play and the Orb placement.</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/qPXQ9ODtdOY?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/qPXQ9ODtdOY?fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Closing</strong></p>
<p>Using a hex grid can be used in many ways to enhance game play and it’s not too difficult to put into your own game play. For further understanding, visit the reference site at <a href="http://jemgine.omnisu.com/?page_id=412" target="_blank">http://jemgine.omnisu.com/?page_id=412</a> I was hoping to have Orbs Away! finished by the time I posted this, but I still have some finishing work to do on the game. I’m really bummed that I didn’t get it done in time to be released for Christmas. I could have had a Christmas version as well! If you would like to be informed of updates related to Orbs Away! or to become a beta tester, you can sign up <a href="http://www.gizbitz.com/Orbs/OrbsAway-Announce.html" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=205</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Orbs Away! iPhone/iPad arcade game</title>
		<link>http://www.gizbitz.com/blog/?p=199</link>
		<comments>http://www.gizbitz.com/blog/?p=199#comments</comments>
		<pubDate>Mon, 22 Nov 2010 21:48:26 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Gizbitz Business]]></category>
		<category><![CDATA[iPhone / iPad Apps]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=199</guid>
		<description><![CDATA[We are nearing completion of what we think will be the next big hit in iPhone gaming. Orbs Away! is based upon a classic matching arcade game. The game play is addictive and challenging with multiple levels and Game Center scoring. If you are interested in becoming a beta-tester and having the app before anyone [...]]]></description>
			<content:encoded><![CDATA[<p>We are nearing completion of what we think will be the next big hit in iPhone gaming. Orbs Away! is based upon a classic matching arcade game. The game play is addictive and challenging with multiple levels and Game Center scoring. If you are interested in becoming a beta-tester and having the app before anyone else, just visit our announcement page and <a title="Orbs Away! information sign up page" href="http://gizbitz.com/Orbs/OrbsAway-Announce.html" target="_blank">sign up</a>. If easy, free and we will only contact you to let you know of when it is available on the App Store and to give instructions for becoming a beta-tester.</p>
<p><a href="http://gizbitz.com/Orbs/OrbsAway-Announce.html" target="_blank">Sign up now!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=199</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get your free romance here! Well&#8230;.ideas anyway.</title>
		<link>http://www.gizbitz.com/blog/?p=195</link>
		<comments>http://www.gizbitz.com/blog/?p=195#comments</comments>
		<pubDate>Mon, 10 May 2010 23:04:51 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Gizbitz Business]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=195</guid>
		<description><![CDATA[Want some free romance tips? We are giving away 20 promotional codes that can be redeemed within iTunes for a free copy of the popular Slots Of Love iPhone app. Full of romance ideas for both genders, Slots Of Love can lift your romance to new levels. All we ask is that &#8220;Like&#8221; us on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gizbitz.com/blog/wp-content/uploads/2010/01/SOL-512-round.png"><img class="alignleft size-thumbnail wp-image-185" title="Slots Of Love Romance Ideas" src="http://www.gizbitz.com/blog/wp-content/uploads/2010/01/SOL-512-round-150x150.png" alt="" width="150" height="150" /></a></p>
<h3>Want some free romance tips? We are giving away 20 promotional codes that can be redeemed within iTunes for a free copy of the popular Slots Of Love iPhone app. Full of romance ideas for both genders, Slots Of Love can lift your romance to new levels. All we ask is that &#8220;Like&#8221; us on<a href="http://www.facebook.com/pages/Gizbitz-Software-Development/277562026690" target="_blank"> facebook</a> and post a romance idea/tip. 20 romance idea posts will be chosen at random this Friday &#8211; May 14th. Tell all your friends!</h3>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=195</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spin the bottle &#8211; with a slight twist</title>
		<link>http://www.gizbitz.com/blog/?p=188</link>
		<comments>http://www.gizbitz.com/blog/?p=188#comments</comments>
		<pubDate>Tue, 04 May 2010 14:17:39 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Gizbitz Business]]></category>
		<category><![CDATA[Gizbitz iPhone iPad]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=188</guid>
		<description><![CDATA[The folks at Frivolous Entertainment teamed up with Gizbitz to produce a spin the bottle game for the iPhone and iPad to help promote their site SexIsFun.Net. While working on the iPhone app, Apple opened up the development gates for the iPad and we switched gears to get the iPad version out first. We did [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://itunes.apple.com/us/app/sex-is-fun-spin-bottle-iphone/id369169347?mt=8"><img class="alignleft size-medium wp-image-189" title="SexIsFun.Net iPhone / iPad App" src="http://www.gizbitz.com/blog/wp-content/uploads/2010/05/SS-02-200x300.jpg" alt="" width="200" height="300" /></a> The folks at Frivolous Entertainment teamed up with Gizbitz to produce a spin the bottle game for the iPhone and iPad to help promote their site <a href="http://www.sexisfun.net" target="_blank">SexIsFun.Net</a>. While working on the iPhone app, Apple opened up the development gates for the iPad and we switched gears to get the iPad version out first. We did it in time for the iPad app store grand opening and we were very excited to be among the first with an iPad application. Today (actually last night) marks  the day that the iPhone version is now available on the app store.</p>
<p>While spin the bottle as a game has been around for a long time&#8230;I guess ever since their were bottles, the Sex Is Fun version adds the ability of player avoidance and kissing preferences. Now we all know there are no ugly people in the world, but if you do happen to stumble across one AND happen to be playing this game, you can safely avoid kissing them as a truth or dare question is brought up instead of a &#8220;Kiss&#8221;. The game play appears random and no one will ever know the difference. Whew!</p>
<p>Working with the folks at SexIsFun was a pleasure and if it wasn&#8217;t for the great teamwork, we would not have made the short deadline for the iPad app.</p>
<p>They have other games as well as a popular podcast on rational discussions of human sexuality and education. More information for the <a href="http://itunes.apple.com/us/app/sex-is-fun-hd-spin-the-bottle/id364903233?mt=8" target="_blank">iPad version</a> or <a href="http://itunes.apple.com/us/app/sex-is-fun-spin-bottle-iphone/id369169347?mt=8" target="_blank">iPhone version</a> can be found in the iTunes App Store.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=188</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Apple iPad. It&#8217;s a remote and a lot more&#8230;</title>
		<link>http://www.gizbitz.com/blog/?p=167</link>
		<comments>http://www.gizbitz.com/blog/?p=167#comments</comments>
		<pubDate>Sat, 30 Jan 2010 18:26:20 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Gizbitz Business]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=167</guid>
		<description><![CDATA[I have been following the blogs and press related to the Apple announcement of the iPad. A lot of what I have read is on the negative side. However, these writers are focusing on what the iPad can&#8217;t do. Yeah, it doesn&#8217;t run Flash in the browser, no ability to run multiple applications at the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gizbitz.com/blog/wp-content/uploads/2010/01/ipad_hero3_20100127.jpg"><img class="alignleft size-medium wp-image-168" title="The Apple iPad" src="http://www.gizbitz.com/blog/wp-content/uploads/2010/01/ipad_hero3_20100127-300x191.jpg" alt="" width="300" height="191" /></a>I have been following the blogs and press related to the Apple announcement of the iPad. A lot of what I have read is on the negative side. However, these writers are focusing on what the iPad can&#8217;t do. Yeah, it doesn&#8217;t run Flash in the browser, no ability to run multiple applications at the same time (yet?), no camera (yet?)&#8230;yadda, yadda. I do believe that despite these issues, the iPad will be a very prominent device used throughout the home of the average consumer. With the entry price point of $499, it will be sitting on the coffee table a lot quicker too. Here is a little scenario of what may very well be the typical day in the life of an iPad.</p>
<p>Morning:<br />
- While making coffee to start the day, I reach for my iPad to check out the morning news sites in Safari and the various news apps that I have installed.</p>
<p>- As I eat breakfast and sip on some ever so delicious coffee, I bring up the calendar app to get an idea on how my day is going to go.</p>
<p>- I do a quick check of my email and reply to a couple before I go in to work.</p>
<p>- Kids are getting up now and they ask for the iPad (I really must get another one!) so that they can check off their daily chores via the GizBitz chore app (yeah..I know&#8230;a plug).</p>
<p>-  My beautiful wife (another plug..hehe) is up and repeats the same usage I did on the iPad.</p>
<p>Afternoon:<br />
- Even though my wife works during the day, she takes time out to take one of our kids to get his allergy shots. Lucky kid. He gets to use the iPad to watch a TV show and play a game during the drive time and while sitting in the Drs. office.</p>
<p>Evening:<br />
- Making dinner for us tonight, my wife brings up her recipe app on the iPad. Complete with pictures and a calculator that automatically adjusts the recipe for how many of us are eating at home tonight. Our oldest ones aren&#8217;t home as much as they used to be due to work and sports. My wife also complains that the dinners never look like the pictures. I tell her they still taste the same. Oh&#8230;and it always tastes good too.</p>
<p>- Still making dinner, she brings up facebook to catch up on whatever the heck her friends are either doing or want to do. There is no Flash so she can&#8217;t play farmville and that may be a good thing. <img src='http://www.gizbitz.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>- After dinner, the kids check off their chores again via the iPad. They get $$$ for them so they are really into chores now.</p>
<p>-  Most of the time we all have too much going on in the evenings, but tonight is different. We all plop down on the couch to watch some TV. Grabbing the iPad, we use the (insert Satellite or Cable TV vendor here) iPad/iPhone app to view the schedule. Yes, we could use the onscreen guide, but it is slow and the interface just plain sucks. The iPad is fast and has more information on it&#8217;s screen.</p>
<p>- After we agree to a TV show to watch (we really need an app for that), I tap on the &#8220;View Now&#8221; button and viola, the iPad is now a remote and the channel on the TV changes to what we agreed on! Due in part that the tuner is on the same network and the iPad app can communicate with it.</p>
<p>- While watching the TV show, we see a trailer for a movie that is coming out this weekend. Hey! The iPad is right there so we checkout the showtimes for this weekend and compare the times we have available with the calendar app. Holy crap! we have some time that we are all together on Sunday afternoon. So we touch type the event into our family calendar.  (we now have a new meaning for touch typing)</p>
<p>- One of the kids just remembered that he has a paper due for school tomorrow. So while partaking in our family TV night. he grabs the iPad and uses one of the iWork apps to get it finished.</p>
<p>- The kids are still up but my wife and I head to bed.  I&#8217;d love to read my latest iBook purchase, but she has dibs on the iPad tonight. Did I mention that I really, really need to get another iPad?</p>
<p>That is just one scenario of using an iPad throughout the day. Sure, we could just use our iPhones or jump on the laptop/desktop to do most of these things. However, having an iPad around is like reaching for the remote, but better. The remote sometimes gets lost in the cushions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=167</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slots Of Love &#8211; A romance app now available on the iTunes App Store!</title>
		<link>http://www.gizbitz.com/blog/?p=158</link>
		<comments>http://www.gizbitz.com/blog/?p=158#comments</comments>
		<pubDate>Thu, 28 Jan 2010 20:19:23 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=158</guid>
		<description><![CDATA[Announcing our latest creation. This app is a must have for those needing to add more romance in their lives. And lets face it&#8230;we all do! Loaded with romantic ideas to enhance your marriage, romance your girlfriend or boyfriend, and wonder her this Valentine&#8217;s Day, you will have the toolset to bring out your love [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp" style="text-align: left;">
<p><span style="font-size: small;"><span style="line-height: 17px;"> </span></span></p>
<div id="attachment_157" class="wp-caption alignleft" style="width: 161px"><a href="http://itunes.apple.com/us/app/slots-of-love/id352289941?mt=8"><img class="size-medium wp-image-157 " title="Slots Of Love iPhone App" src="http://www.gizbitz.com/blog/wp-content/uploads/2010/01/SOL-iPhone-tableView-medium-151x300.png" alt="" width="151" height="300" /></a><p class="wp-caption-text">For the hopeless romantic, an iPhone app with romantic ideas for both her an him</p></div>
</div>
<div class="mceTemp" style="text-align: left;">Announcing our latest creation. This app is a must have for those needing to add more romance in their lives. And lets face it&#8230;we all do! Loaded with romantic ideas to enhance your marriage, romance your girlfriend or boyfriend, and wonder her this Valentine&#8217;s Day, you will have the toolset to bring out your love mojo and pour it on the one you love. Ideas are user submitted and can be updated through the app so you are not stuck with a fixed set of romantic moments. Complete details can be found in the iTunes App Store.</div>
<div class="mceTemp" style="text-align: left;"><a href="http://itunes.apple.com/us/app/slots-of-love/id352289941?mt=8"><img class="aligncenter size-full wp-image-160" title="Slots Of Love on iTunes" src="http://www.gizbitz.com/blog/wp-content/uploads/2010/01/App_Store_Badge_EN_trans.png" alt="" width="288" height="84" /></a></div>
<div class="mceTemp" style="text-align: center;"><span style="font-size: small;"><span style="line-height: 17px;"><a href="http://itunes.apple.com/us/app/slots-of-love/id352289941?mt=8" target="_blank">Just click on the logo above to see it on the  iTunes App Store.</a></span></span></div>
<div class="mceTemp" style="text-align: center;"><span style="font-size: small;"><span style="line-height: 17px;"><br />
</span></span></div>
<div class="mceTemp" style="text-align: left;"><span style="font-size: small;"><span style="line-height: 17px;">Do you have a romantic idea to share and think it should be inlcuded in the Slots Of Love app? If you do, you can submit your idea via the link below. Go Romance!</span></span></div>
<div class="mceTemp" style="text-align: left;"><span style="font-size: small;"><span style="line-height: 17px;"><br />
</span></span></div>
<div class="mceTemp" style="text-align: left;"><span style="font-size: small;"><span style="line-height: 17px;"><a href="http://gizbitz.com/slotsoflove/"><img class="aligncenter size-medium wp-image-185" title="Slots Of Love Romance Ideas" src="http://www.gizbitz.com/blog/wp-content/uploads/2010/01/SOL-512-round-300x300.png" alt="" width="108" height="108" /></a><br />
</span></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=158</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle DX for schoolbooks and technical publications</title>
		<link>http://www.gizbitz.com/blog/?p=148</link>
		<comments>http://www.gizbitz.com/blog/?p=148#comments</comments>
		<pubDate>Mon, 23 Nov 2009 15:24:57 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=148</guid>
		<description><![CDATA[I am big fan of the Kindle 2 and really love mine, however, when it comes to reading programming books or technical materials, I always reach for my Kindle DX. The 9.7 inch display is darn near perfect for reading PDF&#8217;s and .mobi files from Amazon.com as well as from the many other book sellers. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://images-na.ssl-images-amazon.com/images/I/51V-u8G3laL._SL160_.jpg"><img class="alignleft size-full wp-image-152" title="Kindle DX" src="http://www.gizbitz.com/blog/wp-content/uploads/2009/11/51V-u8G3laL._SL160_.jpg" alt="Kindle DX" width="160" height="160" /></a> I am big fan of the <a href="http://www.amazon.com/gp/product/B0015T963C?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0015T963C">Kindle 2</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B0015T963C" border="0" alt="" width="1" height="1" /> and really love mine, however, when it comes to reading programming books or technical materials, I always reach for my <a href="http://www.amazon.com/gp/product/B0015TCML0?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0015TCML0">Kindle DX</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B0015TCML0" border="0" alt="" width="1" height="1" />. The 9.7 inch display is darn near perfect for reading PDF&#8217;s and .mobi files from Amazon.com as well as from the many other book sellers. Having native PDF display abilities make it easy to drag a pdf document to the DX and read it anytime. I even have some of my camera manuals on it just in case I need to figure out some remote operation that I rarely use. If you are a student that that can obtain PDF versions of their school books, then I would highly recommend the DX. Beats having to carry all that weight in paper books! To protect mine while I am not using it, I use the the <a href="http://www.sfbags.com/products/kindle/kindlecase.htm" target="_blank">slip case</a> from Waterfield Designs that sells for $33. Don&#8217;t forget to get a booklight for those times when you don&#8217;t have much light as the E-Ink display is not backlit. I really like my <a href="http://www.amazon.com/gp/product/B002CMLDT6?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B002CMLDT6">Mighty Bright XtraFlex2 Clip-On Light (Kindle Version) Black [Amazon Frustration-Free Packaging]</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B002CMLDT6" border="0" alt="" width="1" height="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=148</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting SEO (Search Engine Optimization) to work on your Web Site. Part 1</title>
		<link>http://www.gizbitz.com/blog/?p=130</link>
		<comments>http://www.gizbitz.com/blog/?p=130#comments</comments>
		<pubDate>Sat, 14 Mar 2009 05:35:23 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Gizbitz Business]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=130</guid>
		<description><![CDATA[Recently, I gave a presentation on Search Engine Optimization (SEO) for a local Business Networking International chapter. My time limit was set at 10 minutes to give a presentation on SEO. What! Wait! Ten minutes? I could go on and on about SEO and how to apply various techniques to your current web site and [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I gave a presentation on Search Engine Optimization (SEO) for a local <a href="http://www.bnistl.com" target="_blank">Business Networking International</a> chapter. My time limit was set at 10 minutes to give a presentation on SEO. What! Wait! Ten minutes? I could go on and on about SEO and how to apply various techniques to your current web site and design to improve your visibility on the web. How was I going to cram all of what I know, as well as cover some of the tools available, in such a short amount of time? Well, truthfully, I wasn’t able to. I did design a Keynote presentation to cover most of the basics in 17 slides, but that left me to present a little over 30 seconds per slide. I am very excited about my profession and love talking about it, so I still went for it. What I am giving you here is just an excerpt, but if you want your web site to be found in search engines and increase your user traffic, you should find some of this information beneficial. You can also download my slides on “<a href="http://www.gizbitz.com/web-design-presentations/SEO-In-Web-Site-Design.pdf" target="_blank">Search Engine Optimization &#8211; What it is and what you can do to help your page rank in search engines such as Google, Yahoo! and MSN Live Search</a>” I will put up a section on the main site related to SEO as well as record my presentation to go along with the slides.</p>
<p>What is SEO? According to <a href="http://en.wikipedia.org/wiki/Search_engine_optimization" target="_blank">Wikipedia</a> &#8211; “SEO is the process of improving the volume and quality of traffic to a web site from search engines” Ok, simple enough. But what the heck do they mean by “process”? I could quote another Wikipedia quote on the word process, but in this instance it means time, effort and more than likely, lots of it. I’ll break up this so called process into 6 elements but keep in mind that SEO is not an exact science. If would be if you had the secrets to Googles search engine algorithm, but they are pretty tight lipped about exactly how they rank and rate sites. Besides that, the major search engines are always refining their techniques in order to provide the most valuable search returns possible. SEO is not a sure fire way to get your site at the top of search pages. However, in this and in subsequent posts I’ll briefly layout 5 areas that you should concentrate your efforts on and could very well increase your odds.</p>
<p><strong>Keywords</strong>. Keywords are the foundation of your search engine strategy. After all, keywords are what someone places into a search box to get back results related to&#8230;you guessed it&#8230;their keywords. In essence, if your site has references to their typed in keyword(s), you move into their returned search results. (Provided that your site is in their directory of searches to begin with. I’ll cover this in another post) Picking your web site keywords are very critical. Also, think of keyword phrases. For example, keywords for a web designer might be&#8230;uh&#8230;.web and design. However, to help in search results local to the web designer, the keyword phrase would be something like “Web Design in St. Louis”. Jot down on a sheet of paper (you could use an application such as Excel, Numbers, Word or Pages as well) all the keywords and phrases that you think others would use to find your site. Is it the products that you sell? How about the services that you provide?  Then think about variations on those keywords. Next, talk to your friends, co-workers and others to get an idea on what keywords they would use to search for your web site. I might think everyone uses the search phrase “Web Design” but it could be that others use the phrase “Web Site Creation”.  In the end, you will choose your keywords carefully. However, if this is your first time going through this exercise, just give some thought to them as the next step may change your keyword thinking.</p>
<p>Ok. You are all finished with your keyword selection. Your next step is to use some online tools to more or less validate your keyword selection and possibly eliminate some of your choices. One such tool is the Google keyword tool. It helps to have a Google Adword account (I’ll post something on that down the road) but you can access it for free at <a href="http://www.google.com/sktool" target="_blank"><span>www.google.com/sktool</span></a>. With this keyword tool, you can type in your keyword or phrase and get a number of the monthly searches for that keyword. You will also see variations or the keyword phrase as well as the search number. As a test, I type in the word jewelry which had 350,000 searches per month. Jewelry Stores has 100,000 per month. Jewelry Television has 18,000 with a mix of others in between. This whole process gives you a good indicator on how well your keyword is used. I’m not saying that you have to use the top searched keyword. In the above example for jewelry, I see that handmade jewelry has about 23,000 searches per month and if I did indeed sell handmade jewelry, I might concentrate on this particular keyword phrase and go after those 23,000 searches. You may even find some other ideas for keywords along with their searches/month. The keyword tool from Goolge is just one of many keyword tools out there. Probably one of the best tools is at <a href="http://www.wordtracker.com" target="_blank">www.wordtracker.com</a>. However there is a fee (ie: $$$) to use it. In part 2 of SEO, I will discuss what you should do with these keyword phrases that will help your page rank. I will give you a hint though&#8230;.Content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=130</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Livescribe Pulse SmartPen review (Gadgets)</title>
		<link>http://www.gizbitz.com/blog/?p=102</link>
		<comments>http://www.gizbitz.com/blog/?p=102#comments</comments>
		<pubDate>Sat, 07 Mar 2009 01:11:53 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Gizbitz Business]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=102</guid>
		<description><![CDATA[Notes, notes, notes. In my real life as a web designer and software developer, I meet with clients routinely. During the course of these meetings, brainstorming sessions take place and I try to write down all the ideas and directions as fast as I can. However more times than not, I have a hard time [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_101" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-101" title="LiveScribe Pulse SmartPen" src="http://www.gizbitz.com/blog/wp-content/uploads/2009/03/img_3257-1-300x200.jpg" alt="LiveScribe Pulse Pen" width="300" height="200" /><p class="wp-caption-text">LiveScribe Pulse SmartPen</p></div>
<p><strong>Notes, notes, notes.</strong> In my real life as a web designer and software developer, I meet with clients routinely. During the course of these meetings, brainstorming sessions take place and I try to write down all the ideas and directions as fast as I can. However more times than not, I have a hard time focusing on my note taking and the discussion at the same time. Over the past month, I have been using a simple device that is proving to be very effective in keeping me involved in the discussion and taking notes at the same time. That device is the <a href="http://www.amazon.com/gp/product/B001AAOZHI?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001AAOZHI">LiveScribe 1GB Pulse Smartpen</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B001AAOZHI" border="0" alt="" width="1" height="1" /> available on Amazon.com or Target stores. The pen writes like an ordinary pen, but the similarities stop there. The pen also records your handwriting using special notebook paper and it records audio at the same time. Ok, I know what your thinking&#8230;.so what! Well, during the audio playback, use the pen and tap on any word or drawing that you wrote while recording and the audio plays back exactly what was being said at that time. Here’s the awesome part. Now I don’t have to take meticulous notes or jot down verbatim the ideas, slogan or specific wording that comes up. I just write down various keywords or snippets of the conversation. Then, when I am back at my computer or whenever I need to go over what was said at the meeting, I just tap on a word or diagram that I jotted down, listen to the conversation and take any action that need be. Apart from the purchase of the pen, you do need to use special paper to make all this happen. Sure, the pen will write on regular paper, but the beauty and functionality is in the paper as well. Each page of the paper is coded with thousands of little dots that tell the pen (through its infrared sensor) what page in the notebook the writing is taking place and where on the page. If you look very closely at a page (at my age I have to use my glasses) you can see the little dots. However, they are not noticeable otherwise. The special paper is available in college ruled spiral bound notebooks and both lined and unlined journals.<img class="alignright size-medium wp-image-96" title="img_3249-1" src="http://www.gizbitz.com/blog/wp-content/uploads/2009/03/img_3249-1-300x200.jpg" alt="img_3249-1" width="300" height="200" /> They are sold in packs (usually 4 notebooks per pack in notebook form and 2 per pack in journal form) with each notebook or journal numbered. Yes, the pen even knows which notebook or journal was used to take the notes! I’ll show you where this comes into play in a moment. At the bottom of each page, there are various icons that you can tap with the pen to start/stop recording, pause, adjust volume, playback speed, audio bookmarking and a way to jump to various places in your recording.</p>
<p>Even though you can use just the pen and paper for note taking and audio recording, you can add to it’s functionality by downloading the LiveScribe software that is available for both Windows and Mac OS with the Mac version just released out of beta. The pen comes with a nice little USB charger/dock. There is a magnet in the dock and all you do is set the pen flat in the dock and the magnet guides the pen in the proper spot so that the connecting points are lined up. When you launch the LiveScribe software, it senses the pen and begins a transfer of the audio and pen strokes stored on the pen. If it is the first time connecting the pen, you will be prompted to name and register the pen. After the transfer, the LiveScribe application will display each notebook used in the left panel and the pages with notes on the right panel. I have a separate notebook for my web design and custom software meetings, another for personal notes and a journal that I record information for my kids high school hockey and baseball activities (I’m their coach for both of these&#8230;whew!)</p>
<p>All my notes are stored on my Mac through the LiveScribe software. You can view the note pages, print them out or even click on an area of the note to hear the recording, just like when using the paper. I can delete the notes on the pen to conserve storage space on the pen and still have all the notes and audio available through the software.<br />
Currently, the SmartPen comes in a 1GB and <a href="http://www.amazon.com/gp/product/B001AAN4PW?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001AAN4PW">2GB version</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B001AAN4PW" border="0" alt="" width="1" height="1" />. $149 for the 1GB model and $199 for the 2GB model. According to the LiveScribe website, the 1GB model can store 100 hours of audio recording, however there are various audio recording quality modes that may affect this number. The audio quality is very good and I usually leave it on the default setting. You can change the audio quality to various modes including mono, stereo and with the included headset you can even record in 3D. There is a microphone in each earpiece and the headset has a special jack that fits into the end of the pen that allows this. You cannot use your regular headphones (such as the ones you use on an iPod or iPhone) as the SmartPen has a 2.5mm jack whereas most devices with headphone jacks are the 3.55mm inch kind.  I usually listen through the speaker located on the side of the pen itself and have no problems.</p>
<p><img class="alignright size-medium wp-image-99" title="img_3252-1" src="http://www.gizbitz.com/blog/wp-content/uploads/2009/03/img_3252-1-300x199.jpg" alt="img_3252-1" width="300" height="199" />You wouldn’t think that a pen could have applications, but the Pulse Pen does. Pre-installed on the pen are various utilities such as time, date, battery life remaining and storage remaining. You can get to these utilities by taping on the menu icon on the paper or just draw your own menu icon. There is even a development kit for the pen that allows developers to write applications specifically for the pen. A few that are included in the pen include Calc, Piano and Translator. With Calc, you can write an equation on paper and the LCD display on the pen will show you the result. Handy if you don’t have a calculator around. My iPhone has a calculator app, so I don’t really use this feature. There is also a Piano application that guides you through drawing a simple piano keyboard on paper. When you are finished drawing the keyboard, you simply tap on the simulated keys to emit a piano like sound from the pen. I sense a good bar bet with this. “Hey, I bet I can draw a piano keyboard and play notes that you can hear” There is a demo translator that will convert English into Spanish, Swedish, Arabic and Mandarin. There are only a handful of words and the numbers zero to nine to work with. I have no idea why those languages, but having the pen say “Beer” in Mandarin is a hoot. Hmmm&#8230;something more for that bar bet.</p>
<p><img class="size-medium wp-image-98 alignleft" title="img_3251-1" src="http://www.gizbitz.com/blog/wp-content/uploads/2009/03/img_3251-1-300x199.jpg" alt="img_3251-1" width="300" height="199" />Overall, I give the LiveScribe Pulse Pen 5 Gizzies on a scale of 1 to 5. A Gizzy is a Gizbitz rating that I just made up. I use the pen constantly and it is always in my laptop bag or on my desk. Various accessories such as the <a href="http://www.amazon.com/gp/product/B001AALJ1I?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001AALJ1I">Livescribe Single Subject Spiral Notebook, 4-Pack, Nos. 1-4</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B001AALJ1I" border="0" alt="" width="1" height="1" />, <a href="http://www.amazon.com/gp/product/B001AALJ9U?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001AALJ9U">Premium Leather Case</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B001AALJ9U" border="0" alt="" width="1" height="1" /> and <a href="http://www.amazon.com/gp/product/B001AAOZV4?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001AAOZV4">SmartPen Ink Cartridges</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B001AAOZV4" border="0" alt="" width="1" height="1" /> should be on your list too, either for yourself or a great gift for that note taker in your life.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=102</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle 2 review (Gadgets)</title>
		<link>http://www.gizbitz.com/blog/?p=73</link>
		<comments>http://www.gizbitz.com/blog/?p=73#comments</comments>
		<pubDate>Thu, 26 Feb 2009 18:36:24 +0000</pubDate>
		<dc:creator>Stu Gisburne</dc:creator>
				<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://www.gizbitz.com/blog/?p=73</guid>
		<description><![CDATA[I&#8217;ve had the Kindle 2 for 3 days now and I am loving it. I held off on purchasing the original version that Amazon offered over a year ago. I really didn&#8217;t care for the cosmetic design and I heard various reports of accidental page turning. This was brought about by the relatively large buttons [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_76" class="wp-caption alignleft" style="width: 192px"><img class="size-full wp-image-76" title="Amazon Kindle 2" src="http://www.gizbitz.com/blog/wp-content/uploads/2009/02/kindle2.jpg" alt="Amazon Kindle 2 arrives!" width="182" height="285" /><p class="wp-caption-text">Amazon Kindle 2 arrives!</p></div>
<p>I&#8217;ve had the <a href="http://www.amazon.com/gp/product/B00154JDAI?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00154JDAI">Kindle 2</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B00154JDAI" border="0" alt="" width="1" height="1" /> for 3 days now and I am loving it. I held off on purchasing the original version that Amazon offered over a year ago. I really didn&#8217;t care for the cosmetic design and I heard various reports of accidental page turning. This was brought about by the relatively large buttons for next and previous pages. Well, the Kindle 2 has redesigned page buttons and a thinner body which make it very easy to hold and navigate. It uses the E-Ink technology which gives a more or less ink on paper look. The Kindle is about as thick as a number 2 pencil and very similar in size to a paperback book. Using Amazon&#8217;s Whispernet (free Sprint 3G service included) you can browse the Amazon online book store for Kindle formatted books very easy. Purchasing them is almost too easy and if you are an avid book reader, you can really rack up the $$$. Heck, it only takes about a minute from purchase to having the book delivered wirelessly to your Kindle. However, most books are around $9.99 which is much less that what you can get it in paper form. As for technical books&#8230;well, there are not a lot on the Kindle store and the prices are only slightly less than the printed versions. I found a thread on  <a href="http://www.blogkindle.com/tag/pragmatic-programmer/" target="_blank">blogkindle.com</a> about <a title="Pragmatic Programmer Books" href="http://www.pragprog.com" target="_blank">Pragmatic Programmer</a> books becoming available. The PragProg guys have been toying around with offering Kindle versions of their books, but the formatting of code examples is not that great. I do have a couple of their books in PDF format, so to convert them to the Kindle format, you merely send an email with the PDF as an attachment to <em>yourkindlename</em>@free.Kindle.com. After about 5 minutes or so, you will receive an email back from Amazon with a link to download your Kindle formatted PDF (.asw extension). Make sure you set up your Kindle on the Amazon web site under <em>Manage Your Kindle </em>first however. You will need to add your regular email address to the list of authorized addresses that are allowed to email stuff for your Kindle. According to the Amazon web site, there are other supported formats that you can use with the Kindle. Kindle (AZW), TXT, Audible (formats 4, Audible Enhanced (AAX)), MP3, unprotected MOBI, PRC natively; PDF, HTML, DOC, JPEG, GIF, PNG, BMP through conversion.</p>
<p>On a scale of 1 &#8211; 10, the Kindle 2 receives an &#8220;It Rocks!&#8221; (aka&#8230;10) Ease of use, book purchasing (their site states over 240,000 books in Kindle format) and the ability to carry around 1,500 books puts this device as one that I will use on a daily basis. Oh..and nightly basis too. I picked up a <a href="http://www.amazon.com/gp/product/B000TXZIDM?ie=UTF8&amp;tag=gizbwebdesian-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B000TXZIDM">Mighty Bright XtraFlex2 Clip-On Light</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&amp;l=as2&amp;o=1&amp;a=B000TXZIDM" border="0" alt="" width="1" height="1" /><br />
so that I could read while in bed as the Kindle does not have any backlighting. This of course saves battery life and standard for these type of electronic books. </p>
<p>Update: You may want to get the extented warranty. The first known case of someone breaking theirs comes from Rob Bushway who is one of the editors at <a href="http://www.gottabemobile.com" target="_blank">GottaBeMobile.com</a>. He is getting a replacement due to the extended warranty. Here is a link to his <a title="Rob Bushway's broken Kindle" href="http://www.gottabemobile.com/2009/02/24/kindle-2-arrives-and-i-break-it/" target="_blank">Kindle&#8217;s demise.</a> You may want to get the <a href="http://www.amazon.com/gp/product/B001JAH7OM?ie=UTF8&#038;tag=gizbwebdesian-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B001JAH7OM">Amazon Kindle 2 Leather Cover</a><img src="http://www.assoc-amazon.com/e/ir?t=gizbwebdesian-20&#038;l=as2&#038;o=1&#038;a=B001JAH7OM" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> as I did. It protects your Kindle 2, looks good, feels good and does offer a bit more drop protection. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gizbitz.com/blog/?feed=rss2&#038;p=73</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
