<?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>Digital Deems</title>
	<atom:link href="http://digitaldeems.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitaldeems.com</link>
	<description>Technology. Passion. Life.</description>
	<lastBuildDate>Sun, 24 Apr 2011 00:59:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Long Island 2 Day Walk To Fight Breast Cancer</title>
		<link>http://digitaldeems.com/2011/04/long-island-2-day-walk-to-fight-breast-cancer/</link>
		<comments>http://digitaldeems.com/2011/04/long-island-2-day-walk-to-fight-breast-cancer/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 00:59:34 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://digitaldeems.com/?p=237</guid>
		<description><![CDATA[On June 11th &#38; 12th I am walking at the Long Island 2 Day Walk to Fight Breast Cancer to help raise money to fight Breast Cancer. The walk is a two-day 35-mile journey through Suffolk County, NY. I have set a goal to raise $1,000 in sponsorship of my walk for the cure. I [...]]]></description>
			<content:encoded><![CDATA[<p>On  June 11th &amp; 12th I am walking at the Long Island 2 Day Walk to  Fight Breast Cancer to help raise money to fight Breast Cancer. The walk  is a two-day 35-mile journey through Suffolk County, NY.</p>
<p>I  have set a goal to raise $1,000 in sponsorship of my walk for the cure. I undertake these two important goals &#8211; to complete the Long  Island 2 Day Walk to Fight Breast Cancer and to raise money for the  fight against this cancer.</p>
<p>For  anyone that is interested in making a donation for the cause, a quick online donation form can be filled out at https://www.li2daywalk.org/donor_info.asp?MEMBERID=10141</p>
<p>Full details about the walk can be found at https://www.li2daywalk.org</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2011/04/long-island-2-day-walk-to-fight-breast-cancer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code smart, not hard</title>
		<link>http://digitaldeems.com/2011/02/code-smart-not-hard/</link>
		<comments>http://digitaldeems.com/2011/02/code-smart-not-hard/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 16:52:14 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Head First]]></category>
		<category><![CDATA[pattern]]></category>
		<category><![CDATA[refactoring]]></category>

		<guid isPermaLink="false">http://digitaldeems.com/?p=215</guid>
		<description><![CDATA[Code smart, not hard is a simple principle that can be applied to any activity, not just programming, but unfortunately is not followed by everyone. Various reasons attribute to bad code being written, but mainly it is a result of laziness and unwillingness to plan ahead. To put it simply, always think things through, plan [...]]]></description>
			<content:encoded><![CDATA[<p>Code smart, not hard is a  simple principle that can be applied to any activity, not just  programming, but unfortunately is not followed by everyone. Various reasons attribute to bad code being written, but mainly it is a result of laziness and unwillingness to plan ahead. To put it  simply, always think things through, plan for possible future changes and be flexible whenever writing code and not confine yourself to bad structure.<span id="more-215"></span></p>
<h2>Establish structure before any coding</h2>
<p>Probably  the most important thing on this list is to get a high level idea of  how everything is structured before any implementation. Catching  problems earlier in the development cycle saves time at an exponential  rate as you proceed from one stage to the next.</p>
<p>Become  comfortable with a modeling language such as UML for structured code. For projects that consists of a database be sure to also create a schema or E-R Diagram before any creating any tables to hammer out data relationships.  This will not only help you sort out your own ideas, but will also allow  others to understand your proposed structure easily before any implementation. A great and free  program I like to use for my UML modeling is called  <a title="yED download page" href="http://www.yworks.com/en/products_yed_about.html" target="_blank">yED</a> and for databases <a title="MySQL Workbench website" href="http://wb.mysql.com/" target="_blank">MySQL Workbench</a> does a sufficient job for diagramming your data.</p>
<h2>Refactor sloppy code</h2>
<p>Ever find yourself faced with <a title="Detailed article on &quot;smelly&quot; code" href="http://www.codinghorror.com/blog/2006/05/code-smells.html" target="_blank">code that “smells” bad</a>? Don&#8217;t just keep adding to the bad code, think of ways to improve the code base. Doing so will save time in the long run in maintenance and when new features need to be added.</p>
<p>An example of a common code smell: the same instructions are being copied and pasted in various places throughout the code with very minor differences. Abstract out any variables used, and then extract the logic into a method that you can call with the variables as arguments. This will ensure that if there is a logic change for your algorithm, changes only need to be made in one place as opposed to many. Otherwise, having multiple copies of the same logic would require searching for each instance and replacing it manually or through find and replace which is dangerous.</p>
<h2>Write reusable code</h2>
<p>Reusable code is related to common practices of refactoring but also deserves a section to call its own. When coding a class, method or algorithm that could be used for a future project, it is in your best interest to make it as flexible to change as possible. With a library of flexible code, you will have an already time-tested code base to work from.</p>
<p>Many books and websites illustrate the importance of using design patterns. Design patterns are coding structures that are accepted by the development community to make easy to read and extend code. A great resource to dive into design patterns is <a title="Head First Design Patterns" href="http://oreilly.com/catalog/9780596007126" target="_blank">Head First Design Patterns</a>; the book does a great job explaining each pattern and the benefit of using each one, without the need of large confusing code examples.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2011/02/code-smart-not-hard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android framework AndEngine</title>
		<link>http://digitaldeems.com/2011/01/android-framework-andengine/</link>
		<comments>http://digitaldeems.com/2011/01/android-framework-andengine/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 20:28:00 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://digitaldeems.com/?p=209</guid>
		<description><![CDATA[I decided recently to dive back into hobby game development and have chosen the Android OS as my development platform. After browsing through various frameworks, I found one called AndEngine, developed by Nicolas Gramlich, which is a free open source OpenGL 2D game engine. Coded for Android AndEngine caught my attention because it isn&#8217;t simply [...]]]></description>
			<content:encoded><![CDATA[<p>I decided recently to dive back into hobby game development and have chosen the Android OS as my development platform. After browsing through various frameworks, I found one called <a title="Free OpenGL 2D game engine" href="http://www.andengine.org/" target="_blank">AndEngine</a>, developed by Nicolas Gramlich, which is a free open source OpenGL 2D game engine.<span id="more-209"></span></p>
<h2>Coded for Android</h2>
<p>AndEngine caught my attention because it isn&#8217;t simply a port of an existing engine that was originally written for another language/platform. Many performance concerns regarding the Java garbage collector should be more properly addressed with a game engine written specifically for Java.</p>
<h2>Examples and community</h2>
<p>Another great aspect is the vast number of example programs written to guide you along in the development of projects. If the examples are not enough, then the very active development community of AndEngine will surely be able to get you on track again. A nice <a title="Set up AndEngine for Eclipse" href="http://www.andengine.org/forums/tutorials/getting-started-with-andengine-t11.html" target="_blank">detailed tutorial is available on their forums</a> to get you set up quickly.</p>
<h2>Closing thoughts</h2>
<p>Overall, I am very excited to jump into this framework and make some killer applications without having to reinvent the wheel during the process. There will be occasional postings about this game engine as I dive in further, so stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2011/01/android-framework-andengine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great simplistic iPhone games to kill time</title>
		<link>http://digitaldeems.com/2011/01/great-simplistic-iphone-games-to-kill-time/</link>
		<comments>http://digitaldeems.com/2011/01/great-simplistic-iphone-games-to-kill-time/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 20:54:54 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Angry Birds]]></category>
		<category><![CDATA[Challenge]]></category>
		<category><![CDATA[Cut the rope]]></category>
		<category><![CDATA[iBlast Moki]]></category>
		<category><![CDATA[Impossible]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Physics]]></category>
		<category><![CDATA[Rube Goldberg]]></category>

		<guid isPermaLink="false">http://staging.digitaldeems.com/?p=147</guid>
		<description><![CDATA[This posting focuses on iPhone games that you can pick up at any time without investing large blocks of time. These all are challenging games that incorporate strategy, realistic physics and/or fast reflexes with memorization. All of these games with the exception of the last listed have a free demo lite version to try before [...]]]></description>
			<content:encoded><![CDATA[<p>This posting focuses on iPhone games that you can pick up at any time  without investing large blocks of time. These all are challenging games  that incorporate strategy, realistic physics and/or fast reflexes with  memorization. All of these games with the exception of the last listed have a  free demo lite version to try before buying the full version.<span id="more-147"></span></p>
<h2>Angry Birds</h2>
<p><a href="http://digitaldeems.com/wp-content/uploads/2011/01/angry-birds-screen.jpg"><img class="size-full wp-image-198 alignright" title="Click for full size" src="http://digitaldeems.com/wp-content/uploads/2011/01/angry-birds-screen-e1296340275769.jpg" alt="Angry Birds screenshot" width="200" height="133" /></a>Quite  possibly the most widely known and popular mobile game available. Angry  birds takes a quirky idea and runs with it. Your goal is the launch  various types of birds, each with their own special launch abilities, to  assault the evil swine that made off with their eggs.<br />
The  game features precariously stacked structures that you have to destroy  with birds to defeat the pigs. Various physics components are present  that make the toppling of these structures somewhat believable and  challenging.</p>
<h2>Cut the Rope</h2>
<p><a href="http://digitaldeems.com/wp-content/uploads/2011/01/cut-the-rope-screen-e1296340477382.jpg"><img class="alignright size-full wp-image-199" title="Cut the Rope screenshot" src="http://digitaldeems.com/wp-content/uploads/2011/01/cut-the-rope-screen-e1296340477382.jpg" alt="Click for full size" width="120" height="180" /></a>My  personal favorite in this list requires the player to feed candy to a  small green monster. This is accomplished by using various tactics such as cutting the rope(s) that suspend the candy in place.  Additionally, later on bubbles are introduced to allow the candy to float, various hazards in introduced such as electric current, candy stealing spiders and spikes. Beating each level is simple  enough, but the true fun and challenge emerges when you try to collect  the three gold stars in each level; as each requires an intricate set of  steps and timing to do so.</p>
<p>A very well polished game that took a great and simple concept and built upon it as the difficulty level progressed onward. I eagerly await further updates for this game to see what new wacky element is added to spice up the game play further.</p>
<h2>Finger Physics</h2>
<p><a href="http://digitaldeems.com/wp-content/uploads/2011/01/finger-physics-screen-e1296340722685.jpg"><img class="alignright size-full wp-image-200" title="Click for full size" src="http://digitaldeems.com/wp-content/uploads/2011/01/finger-physics-screen-e1296340722685.jpg" alt="Finger Physics screenshot" width="120" height="180" /></a>A  physics puzzle game that covers an impressive level of variety in game  play. There are four different level types that  show up that I am aware  of so far:</p>
<ul>
<li> Stack  all the shapes they give you to create a stable building that reaches a  target goal height. The higher you stack the more better rating you  receive.</li>
<li> Use  all the shapes to create a stable building, height doesn’t matter but  you are awarded a higher ranking based on how fast it is accomplished.</li>
<li> Guide an egg into a basket somewhere on the level. Also on this one merit is based on speed.</li>
<li> Stack an infinite amount of blocks until it ultimately tumbles. More points are awarded for each block added.</li>
</ul>
<p>Now  take those game types and add in the other elements the game has to  offer. This includes magnetic blocks, exploding contact blocks, various  odd shapes, and under water scenarios.</p>
<h2>The Impossible Game</h2>
<p><a href="http://digitaldeems.com/wp-content/uploads/2011/01/impossible-game-screen.jpg"><img class="alignright size-full wp-image-202" title="Click for full size" src="http://digitaldeems.com/wp-content/uploads/2011/01/impossible-game-screen-e1296340889980.jpg" alt="Impossible Game screenshot" width="200" height="133" /></a>Before  I start, this game is not for someone that gets frustrated easily. Your  only control in this game is to tap or hold the screen to make a box  jump obstacles to get to the end of the level. It may sound simple but  this requires lightning fast reflexes and a good memory to get past this  tricky fast paced game. Each level is approximately two minutes long  which seems appropriate after you realize how difficult it really is.</p>
<p>A  killer soundtrack also accompanies the game for each level when not  playing in “Practice Mode”. Trying to beat each level without being in  “Practice Mode”  is where this game really shines as an  addicting/frustrating game simultaneously.</p>
<h2>iBlast Moki</h2>
<p><a href="http://digitaldeems.com/wp-content/uploads/2011/01/iblast-moki-screen.jpg"><img class="alignright size-full wp-image-201" title="Click for full size" src="http://digitaldeems.com/wp-content/uploads/2011/01/iblast-moki-screen-e1296340917261.jpg" alt="iBlast Moki screenshot" width="200" height="133" /></a>Out of all the games on the list, this one is likely the most polished. The best way to describe it is to reference the <a href="http://www.rubegoldberg.com/" target="_blank">Rube Goldberg machine</a>.  Your goal is to use ropes, metal poles, balloons, gears and bombs which  are all properly placed and timed to get Moki creature(s) to the goal.  This game is all about precise timing and chain reactions to perfect  each level and offers hours of fun game play. At $2.99 USD it may seem a  little steep to some, but it is worth every penny.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2011/01/great-simplistic-iphone-games-to-kill-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Science fiction and fantasy books worth looking into</title>
		<link>http://digitaldeems.com/2011/01/science-fiction-and-fantasy-books-worth-looking-into/</link>
		<comments>http://digitaldeems.com/2011/01/science-fiction-and-fantasy-books-worth-looking-into/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 19:46:50 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Dune]]></category>
		<category><![CDATA[Harry Potter]]></category>
		<category><![CDATA[Hobbit]]></category>
		<category><![CDATA[Hunger Games]]></category>
		<category><![CDATA[Lord of the Rings]]></category>

		<guid isPermaLink="false">http://staging.digitaldeems.com/?p=130</guid>
		<description><![CDATA[Out of the vast number of books published, below are a list of my favorites that fall within the genre of Science Fiction/Fantasy. These books are all considered classics or mainstream hits but in case you missed any of them, now is the time to get a gist of what they are about and get [...]]]></description>
			<content:encoded><![CDATA[<p>Out  of the vast number of books published, below are a list of my favorites that fall within the genre of Science Fiction/Fantasy. These books are all considered classics or mainstream hits but in case you missed any of them, now is the time to get a gist of what they are about and get into reading them yourself.<span id="more-130"></span></p>
<h2>Harry Potter</h2>
<p>To kick off the list I will start with the <a href="http://harrypotter.scholastic.com/">Harry Potter series written by J.K. Rowling</a>.  The main character in these books is a boy wizard named Harry Potter,  shocking I know&#8230; who survives a terrible tragedy as an infant.  As a  result, he is known throughout the wizard community because of his  survival. His celebrity status as well as his habit of doing what is  good and righteous, each book has him face a new obstacle/dangerous  situation which further rounds him out as a character.  If you have seen  any of the movies and enjoyed them then definitely give these books a  try, they offer much more depth than a two to three hour film can offer.</p>
<h2>Dune</h2>
<p>Possibly the most revered science fiction novel would be <a href="http://www.dunenovels.com/">Dune written by Frank Herbert</a>.  A large number of books take place within the Dune Universe but the  first book, simply titled Dune, in my opinion is the best one.</p>
<p>The  majority of the story takes place on a desert planet that has a rare  substance called melange that is harvested. Water is a precious  commodity and dangerous gigantic sand-worms roam the desert.</p>
<p>There has been a movie adaptation to the book Dune, but I cannot comment on that since I have yet to see it.</p>
<h2>The Hunger Games</h2>
<p>A great <a href="http://www.scholastic.com/thehungergames/">trilogy of books written by Suzanne Collins</a> which explores the darkness and exploitation of people by those that  hold positions of power. You follow the story as Katniss Everdeen, who  is a girl in a poverty stricken district where being able to feed  yourself or family is a difficult task. There are a total of twelve  districts which are controlled by a centralized city known as The  Capitol. Early in the first book Katniss ends up participating in the  yearly Hunger Games held by The Capitol. The games pit children from  each district against each other to a last-man-standing arena fight to  the death.</p>
<p>Very well told story with a lot of heart. I wrote a brief review a few months ago which can be viewed at <a href="../2010/09/the-hunger-games/">http://staging.digitaldeems.com/2010/09/the-hunger-games/</a>.</p>
<h2>The Hobbit</h2>
<p>The last book on this list is <a href="http://www.lord-of-the-rings.org/hobbit.html">The Hobbit written by J. R. R. Tolkien</a>. This book is the prequel to <a href="http://www.lord-of-the-rings.org/books.html">The Lord of the Rings books</a> which were adapted into three movies in the early 2000’s. The story  follows a simple Hobbit named Bilbo Baggins that is content with his  life in The Shire. Until one day a wizard shows up after the visit Bilbo  is convinced into taking a journey to a far off mountain for some  burgling. While the tale is not as epic as The Lord of the Rings, it is a great place to start as it gets the land of Middle Earth familiar with the reader and is a very engaging tale.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2011/01/science-fiction-and-fantasy-books-worth-looking-into/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Front-end web development tools</title>
		<link>http://digitaldeems.com/2010/12/116/</link>
		<comments>http://digitaldeems.com/2010/12/116/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 20:22:47 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Plug-in]]></category>

		<guid isPermaLink="false">http://staging.digitaldeems.com/?p=116</guid>
		<description><![CDATA[For any job that needs to be accomplished there are many options on what would be ideal to use for the task at hand. Today I will focus on front-end web development tools which will ease the burden of testing and developing the HTML, CSS and javascript portions of a site.]]></description>
			<content:encoded><![CDATA[<p>For any job that needs to be accomplished there are many options on what  would be ideal to use for the task at hand. Today I will focus on front-end web development tools which will ease the burden of testing and developing the HTML, CSS and Javascript portions of a site. A nice added bonus is that all of the tools listed are free to use.<span id="more-116"></span></p>
<h2>Netbeans IDE</h2>
<p>We  will kick things off with a program where all of the coding will take  place. Netbeans IDE is a powerful open source code editor with a large  variety of plug-ins. This is the ideal IDE for PHP web development but  works with other languages as well.</p>
<p>One  plug-in for example, named Mercurial, allows a very simple method of  versioning your code. Using this plug-in enables you to roll back code  to previous versions you define while developing. The true power of this  plug-in becomes apparent when you need to work on a website with  additional team members. Changes to various parts of the site can be  merged together and if any code conflicts are present they are manually  resolved by you the user.</p>
<p>Built  in FTP support in Netbeans enables easy syncing of files between your  local development version and the remote server. A variety of options  can be set, one particular FTP option of note is uploading your local  files to the remote server on save.</p>
<p>The Netbeans IDE can be downloaded at <a href="http://netbeans.org/downloads/index.html" target="_blank">http://netbeans.org/downloads/index.html</a>.</p>
<h2>jQuery</h2>
<p>jQuery  is a javascript framework that abstracts out a good portion of the DOM  access in javascript. The biggest feature of jQuery in my opinion is the  ability to select DOM elements by using CSS selectors. Other big  benefits are the simplicity of making AJAX calls, animating HTML  elements and much much more.</p>
<p>Also,  jQuery will take care of most of the cross-browser javascript nuances  that arise so there is less javascript debugging for multiple browsers.  If it works in Firefox, or your preferred web browser, it will likely  work in the others  as well.</p>
<p>The  true benefit of using jQuery is that you have a tried and tested base  for your javascript coding. No reinventing of the wheel when selecting  DOM elements, making AJAX calls, integrating fields with autocompletion,  etc&#8230; which leaves you with more time being graceful with your code  and less on the testing/debugging of said code.</p>
<p>The javascript framework jQuery can be downloaded at <a href="http://jquery.com/" target="_blank">http://jquery.com/</a>.</p>
<h2>Firebug</h2>
<p>Firebug  is the one stop tool to elegantly browse your HTML, CSS and javascript  of a visited web page with the added bonus of editing each element’s  code locally on your browser. A great tool for experimenting minor  changes on a page by page basis without actually applying them to the  live website. In addition to making small changes, it also has a very  well made javascript code debugger which makes finding errors and fixing  them in your scripts faster and easier.</p>
<p>Even  using when the framework jQuery, listed above, you will need to  test/debug your written code. It is unrealistic to think otherwise,  logic can be flawed, there may be null pointers, etc&#8230; which is where  Firebug shines.</p>
<p>Firebug is best used with Firefox but there is also a lite version that can be used for other web browsers. Check it out at <a href="http://getfirebug.com/downloads" target="_blank">http://getfirebug.com/downloads</a>.</p>
<h2>IE Tester</h2>
<p>Finally,  with your coded website you will want to ensure maximum compatibility  to reach the largest audience possible. This usually involves the  installation of multiple browsers on your development machine. The catch  is that many different versions of Internet Explorer are still being  used everyday and only one version can be easily installed on your  machine.</p>
<p>To  counter this you can download IE Tester which enables you to render  your website using IE6, IE7, IE8, IE9 all within one environment. IE  Tester may be a little buggy but it does get the job done at the end of  the day without much of a hassle.</p>
<p>IE Test can be downloaded at <a href="http://www.my-debugbar.com/wiki/IETester/HomePage" target="_blank">http://www.my-debugbar.com/wiki/IETester/HomePage</a>.</p>
<p>If you have any other preferred web tools feel free to suggest them in the comment section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2010/12/116/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dead to the World review</title>
		<link>http://digitaldeems.com/2010/12/107/</link>
		<comments>http://digitaldeems.com/2010/12/107/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 15:26:11 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Sookie Stackhouse]]></category>
		<category><![CDATA[True Blood]]></category>

		<guid isPermaLink="false">http://digitaldeems.com/staging/?p=107</guid>
		<description><![CDATA[Finished reading the fourth book of the Sookie Stackhouse Novels, Dead to the World, last week and was very pleased with the story. Each book so far has been introducing a faction/supernatural creature as the central storyline for the book; this time we are introduced to wiccans also known as witches.  There will be some [...]]]></description>
			<content:encoded><![CDATA[<p>Finished reading the fourth book of the <a href="http://www.charlaineharris.com/bibliography/bibliog-sookie.html" target="_blank">Sookie Stackhouse Novels</a>, Dead to the World, last  week and was very pleased with the story. Each book so far has been  introducing a faction/supernatural creature as the central storyline for  the book; this time we are introduced to wiccans also known as witches.   There will be some <strong>minor spoilers in this review</strong>.<span id="more-107"></span></p>
<h2>Story overview</h2>
<p>A few story lines are present in this book and they flow together very nicely. You have the following:</p>
<ul>
<li>Sookie’s brother Jason goes mysteriously missing early on in the book.</li>
<li>Tensions  rise against the a violent wiccan faction comprised of werewolves and  shapeshifters that has recently migrated to the area of Bon Temps and  Shrevport. The opposing factions of this new group are the resident  werewolves, vampires and human wiccan residents of the area.</li>
<li>Sookie  must shelter Eric, the vampire sheriff of the area, and keep him safe.  This is because the leader of the shape shifter/werefolf wiccans has  placed a spell/curse on him that caused him to have amnesia and is  actively seeking him out through the course of the book.</li>
</ul>
<h2>Final thoughts</h2>
<p>So far in my opinion Dead to the World  has been the best book in the series. It provides a good mixture of  suspenseful story telling with action packed moments. This book should  translate into a great upcoming season four of the <a href="http://www.hbo.com/true-blood" target="_blank">HBO television series True Blood</a>, if they remain somewhat faithful to the source material.</p>
<p><strong>Rating: 4/5</strong> &#8211; Will keep you interested in the series if you made it this far already.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2010/12/107/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Hunger Games</title>
		<link>http://digitaldeems.com/2010/11/the-hunger-games/</link>
		<comments>http://digitaldeems.com/2010/11/the-hunger-games/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 20:21:10 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Hunger Games]]></category>

		<guid isPermaLink="false">http://digitaldeems.com/staging/?p=39</guid>
		<description><![CDATA[Recently finished The Hunger Games by Suzanne Collins over the weekend. A very engaging story that is difficult to put down and stop reading. Below is my brief overview of the story. The setting of the story takes place in a land once known as North America; under the rule of an empire known as [...]]]></description>
			<content:encoded><![CDATA[<p>Recently finished <a title="The Hunger Games - Scholastic" href="http://www.scholastic.com/thehungergames/" target="_blank"><em>The Hunger Games</em> by Suzanne Collins</a> over the weekend. A very engaging story that is difficult to put down and stop reading.<span id="more-39"></span> Below is my brief overview of the story.</p>
<p>The setting of the story takes place in a land once known as North America; under the rule of an empire known as The Capital. Each year the Capital holds a fight to the death tournament, The Hunger Games, that consists of twenty-four children from the ages of twelve to eighteen. The games are televised throughout the nation and are required viewing by all the citizens. These children are chosen through a lottery system, or in some cases a volunteer may take the place of someone picked from the lottery.</p>
<p>With the basics down, we follow Katniss a girl living in poverty from day to day that ends up in <em>The Hunger Games</em>. You follow her struggles to stay alive in the arena either by fleeing, killing or simply surviving in the harsh elements of the arena. Her life can also be jeopardized by the controller the games; if the game becomes boring they will intervene and spice things up with additional hazards.</p>
<p>The story primarily involves Katniss surviving the games but also has a lot of heart to it, which made it a great book. Her ability to put others before herself in even the most dire scenarios draws you closer to Katniss and her inner struggles.</p>
<p><strong>Rating: 5/5</strong> &#8211; A very easy book to get lost in and not put down.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2010/11/the-hunger-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>True Blood compared against the novels.</title>
		<link>http://digitaldeems.com/2010/10/true-blood-compared-against-the-novels/</link>
		<comments>http://digitaldeems.com/2010/10/true-blood-compared-against-the-novels/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 03:45:18 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Comparison]]></category>
		<category><![CDATA[Television]]></category>
		<category><![CDATA[HBO]]></category>
		<category><![CDATA[Sookie Stackhouse]]></category>
		<category><![CDATA[Supernatural]]></category>
		<category><![CDATA[True Blood]]></category>

		<guid isPermaLink="false">http://digitaldeems.com/staging/?p=24</guid>
		<description><![CDATA[With the third season of the HBO show True Blood coming to a close next week, now is an appropriate time to reflect on the The Sookie Stackhouse Novels that the show is based on. Each of the books in the series relates to a full season of True Blood. Dead Until Dark, Living Dead [...]]]></description>
			<content:encoded><![CDATA[<p>With the third season of the <a title="True Blood Homepage" href="http://www.hbo.com/true-blood/index.html" target="_blank">HBO show True Blood</a> coming to a close next week, now is an appropriate time to reflect on the <a href="http://www.charlaineharris.com/bibliography/bibliog-sookie.html" target="_blank">The Sookie Stackhouse Novels</a> that the show is based on. Each of the books in the series relates to a full season of True Blood. Dead Until Dark, Living Dead in Dallas and Club Dead correspond to seasons 1, 2 and 3 of True Blood respectively.</p>
<p>This will mostly be a <strong>spoiler free</strong> comparison between the television show and novels.<span id="more-24"></span></p>
<p>The first three books of the novels are roughly 300 pages long on average, and the first three seasons of the show are twelve episodes long. As a result of this, in order to fill twelve hours per season the show creates additional story arcs that take place simultaneously to the one that Sookie follows in the book.</p>
<h2>What is different?</h2>
<ul>
<li>Most story arcs that do not focus on the main character Sookie never appear in the book, or mentioned very briefly. The book is narrated from the perspective of Sookie, so this is to be expected.</li>
<li>The show is more exciting and dramatic towards the end of the seasons, this is typically where Sookie&#8217;s story line begins to deviate the most from the book. For example, each of the supporting characters have a dramatic end to their additional stories and Sookie gets merged into some of them to keep her character involved.</li>
</ul>
<h2>What is similar?</h2>
<ul>
<li>Most of the characters that exist in the show also exist in the novels.</li>
<li>Sookie&#8217;s story arc in the show follows the framework of the novel for most of the season.</li>
</ul>
<h2>Should I read the novel or watch the show?</h2>
<p>The show is more of a companion to the novel with additional story arcs that can be easily enjoyed. The show builds a more complex view of Sookie&#8217;s life because it not only focuses on her adventures but also gives more depth to the people she associates with. I would suggest reading the novel and then watching the show in that order if both mediums are to be enjoyed.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2010/10/true-blood-compared-against-the-novels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A redesigned site!</title>
		<link>http://digitaldeems.com/2010/09/a-blog-is-born-today/</link>
		<comments>http://digitaldeems.com/2010/09/a-blog-is-born-today/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 20:41:34 +0000</pubDate>
		<dc:creator>Deems</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://digitaldeems.com/staging/?p=10</guid>
		<description><![CDATA[Hi everyone, I&#8217;m excited of my decision to redesign my site. I was easily able to migrate most of my data into the simple content management system, WordPress. It was very simple to install and use with the added bonus of being Open Source. Theme chosen for the site This site&#8217;s theme is based off [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone, I&#8217;m excited of my decision to redesign my site. I was easily able to migrate most of my data into the simple content management system, WordPress. It was very simple to install and use with the added bonus of being Open Source.</p>
<h2>Theme chosen for the site</h2>
<p>This site&#8217;s theme is based off of the freely available <a href="http://wordpress.org/extend/themes/blog-design-studio-newblue" target="_blank">Blog Design Studio New Blue</a>. A clean minimalist two-column layout that is easy to personalize. A nice basis to begin as it complies to most web coding standards.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitaldeems.com/2010/09/a-blog-is-born-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

