<?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>Juixe Techknow</title>
	<atom:link href="http://juixe.com/techknow/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://juixe.com/techknow</link>
	<description>Break Coders Block!</description>
	<lastBuildDate>Mon, 23 Jan 2012 16:01:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>The Mobile App User Half Life</title>
		<link>http://juixe.com/techknow/index.php/2012/01/23/the-mobile-app-user-half-life/</link>
		<comments>http://juixe.com/techknow/index.php/2012/01/23/the-mobile-app-user-half-life/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 16:01:43 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[behavior]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1518</guid>
		<description><![CDATA[Recently at a iOS development meet up the presenters from Qubop showed a powerful slide from their presentation that quantified the mobile app user life cycle. It is estimated that on average after one day of usage, 38% of the users will stop using a mobile application. After a week, the percent of users that [...]]]></description>
			<content:encoded><![CDATA[<p>Recently at a iOS development meet up the presenters from Qubop showed a powerful slide from their <a href="http://qubop.com/blog/2012/01/sensational-ios-app-design-presented-by-qubop/">presentation</a> that quantified the mobile app user life cycle.  It is estimated that on average after one day of usage, 38% of the users will stop using a mobile application.  After a week, the percent of users that will still use the app drops to 50%.  After 6 months, you are down to 10% of users still using your app in some capacity.</p>
<p>Because of the <b>half life of mobile application users</b>, app developers are constantly updating their mobile apps. It depends on the number of apps you have on your phone, but if I don&#8217;t get the latest apps in a weeks period I would have 15 app updates waiting for me.  I update one day and the next day there is another app ready to update.  Because apps are updated so often, and they require the users permission to do so, mobile app users have are developing <b>app update fatigue</b>.</p>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2012/01/23/the-mobile-app-user-half-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Universally Unique ID in Java</title>
		<link>http://juixe.com/techknow/index.php/2012/01/18/create-universally-unique-id-in-java/</link>
		<comments>http://juixe.com/techknow/index.php/2012/01/18/create-universally-unique-id-in-java/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 01:55:24 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[guid]]></category>
		<category><![CDATA[identifier]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[unique]]></category>
		<category><![CDATA[uuid]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1515</guid>
		<description><![CDATA[For the longest time I&#8217;ve used java.rmi.server.UID to create a unique ID in a application. We enhanced the UID class to fit our needs and to format the ID to the standard format but unfortunately we found that within a process, we were generating duplicate IDs if we created more than a certain amount. It [...]]]></description>
			<content:encoded><![CDATA[<p>For the longest time I&#8217;ve used java.rmi.server.UID to create a unique ID in a application.  We enhanced the UID class to fit our needs and to format the ID to the standard format but unfortunately we found that within a process, we were generating duplicate IDs if we created more than a certain amount.  It didn&#8217;t take much to remedy the problem since Java introduced java.util.UUID in Java 1.5.</p>
<p>To create a universally unique ID in Java 1.5 or greater just call the static randomUUID method on the UUID class.</p>
<pre class="brush: java; title: ; notranslate">
UUID.randomUUID().toString()
</pre>
<p>UUID has a wider range of possible values that I&#8217;m not concern of duplicate values or collisions for my application.</p>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2012/01/18/create-universally-unique-id-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Year In Review 2011</title>
		<link>http://juixe.com/techknow/index.php/2012/01/03/year-in-review-2011/</link>
		<comments>http://juixe.com/techknow/index.php/2012/01/03/year-in-review-2011/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 16:01:18 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[exception]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[lenovo]]></category>
		<category><![CDATA[retweet]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1512</guid>
		<description><![CDATA[It is that time of year where we reflect on the accomplishments of the passing year and look forward to the one to come. Here is a window into the past year in technology through this year’s popular posts on TechKnow Juixe. Code and Design Remove Multiple Null Values From a List in Java Launch [...]]]></description>
			<content:encoded><![CDATA[<p>It is that time of year where we reflect on the accomplishments of the passing year and look forward to the one to come. Here is a window into the past year in technology through this year’s popular posts on <a href="http://juixe.com/techknow">TechKnow Juixe</a>.</p>
<p><b>Code and Design</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2011/09/09/remove-multiple-null-values-from-a-list-in-java/">Remove Multiple Null Values From a List in Java</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/09/08/launch-default-web-browser-in-java/">Launch Default Web Browser and Email Client in Java</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/04/27/how-to-print-the-alphabet-in-java/">How to Print the Alphabet in Java</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/04/25/java-string-conversion-puzzlers/">Java String Conversion Puzzlers</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/09/29/find-the-current-working-directory-in-java/">Find the Current Working Directory in Java</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/04/29/can-you-spot-the-infinite-loop/">Can You Spot the Infinite Loop</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/10/11/run-on-code-statement/">Run-on Code Statement</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/10/18/common-causes-for-out-of-memory/">Common Causes for Out of Memory Exceptions</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/10/19/fix-common-java-errors/">Fix Common Java Errors</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/03/28/access-drives-from-remote-windows-computers/">Access Drives From Remote Windows Computers</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/09/16/create-sql-server-database-and-database-tables-from-a-file/">Create SQL Server Database and Database Tables From a File</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/09/28/copy-records-from-one-database-to-another/">Copy Records From One Database to Another</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/02/01/copy-data-between-two-database-tables/">Copy Data Between Two Databases Tables</a></li>
</ul>
<p><b>Reviews and Rants</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2011/09/30/avoid-overloading-meaning-to-existing-database-column/">Avoid Overloading Meaning to Existing Database Columns</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/10/20/worst-software-bugs/">Worst Software Bug</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/06/01/never-underestimate-your-user/">Never Underestimate Your Users</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/11/14/jquerymobile-phonegap/">jQuery Mobile and PhoneGap</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/03/18/chipotle-online-order-system/">Chipotle Online Order System</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/11/16/save-on-merchant-fees/">Save on Merchant Fees</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/02/08/email-share/">Email Share</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/01/24/missing-feature-the-mobile-device-self-destruct-button/">Missing Feature: The Mobile Device Self Destruct Button</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/12/19/reclaim-disk-space-with-spacie/">Reclaim Disk Space with Spacie</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/01/04/the-google-chrome-notebook/">The Google Chrome Notebook</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/12/16/android-lacks-polish/">Android Lacks Polish</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/06/30/microsoft-bizspark/">Microsoft Bizspark</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/02/07/does-lenovo-use-thinkvantage-toolbox-to-spam-users/">Does Lenovo Use Thinkvantage Toolbox to Spam Users?</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/01/26/hp-printer-driver-wants-to-phone-home/">HP Printer Driver Wants to Phone Home</a></li>
<li><a href="http://juixe.com/techknow/index.php/2010/12/30/apple-ruined-my-neighbors-christmas/">Apple Ruined My Neighbors Christmas</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/08/03/google-starts-towards-the-path-of-evil/">Google Starts Towards the Path of Evil</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/02/03/has-google-jumped-the-shark/">Has Google Jumped the Shark?</a></li>
</ul>
<p><b>Retweet 2011</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2012/01/02/retweet-december-2011/">Retweet December 2011</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/12/02/retweet-november-2011/">Retweet November 2011</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/11/28/retweet-october-2011/">Retweet October 2011</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/10/30/retweet-september-2011/">Retweet September 2011</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/09/12/retweet-august-2011/">Retweet August 2011</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/08/05/retweet-july-2011/">Retweet July 2011</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/07/01/retweet-june-2011/">Retweet June 2011</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/05/23/retweet-april-2011/">Retweet April 2011</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/04/18/retweet-march-2011/">Retweet March 2011</a></li>
<li><a href="http://juixe.com/techknow/index.php/2011/03/10/retweet-february-2011/">Retweet February 2011</a></li>
</ul>
<p><b>Year in Review</b></p>
<ul>
<li><a href="http://juixe.com/techknow/index.php/2009/12/31/techknow-year-in-review-2009/">Year In Review 2009</a></li>
<li><a href="http://juixe.com/techknow/index.php/2008/12/30/techknow-year-in-review-2008/">Year In Review 2008</a></li>
<li><a href="http://juixe.com/techknow/index.php/2007/12/11/techknow-year-in-review-2007/">Year In Review 2007</a></li>
<li><a href="http://juixe.com/techknow/index.php/2006/12/31/techknow-year-in-review-2006/">Year In Review 2006</a></li>
<li><a href="http://juixe.com/techknow/index.php/2005/12/27/techknow-year-in-review-2005/">Year In Review 2005</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2012/01/03/year-in-review-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retweet December 2011</title>
		<link>http://juixe.com/techknow/index.php/2012/01/02/retweet-december-2011/</link>
		<comments>http://juixe.com/techknow/index.php/2012/01/02/retweet-december-2011/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 17:44:04 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[bender]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[go daddy]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[grinch]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[jwz]]></category>
		<category><![CDATA[pinterest]]></category>
		<category><![CDATA[popeyes]]></category>
		<category><![CDATA[sopa]]></category>
		<category><![CDATA[taco bell]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1510</guid>
		<description><![CDATA[From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind. Here is a synopsis of recent tweets and rants. If you want to follow the conversation follow me at techknow and/or juixe. Software Development Being into computers today is not the same as it [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of recent tweets and rants.  If you want to follow the conversation follow me at <a href="http://twitter.com/techknow">techknow</a> and/or <a href="http://twitter.com/juixe">juixe</a>.</p>
<p><b>Software Development</b></p>
<ul>
<li>Being into computers today is not the same as it was in my day when you had to solder chips into boards, now it means you are on Facebook.</li>
<li>I don&#8217;t know why you would fake such a thing but there are a lot of fake self described geeks.</li>
<li>This holiday season remember to backup if don&#8217;t already have a backup system in place.</li>
</ul>
<p><b>Thought Leadership</b></p>
<ul>
<li>Life has a funny way to keep you humble.</li>
<li>Focus on simplicity, complexity is overrated.</li>
<li>Whether I see the glass half full or half empty largely depends on what is in the glass to begin with.</li>
<li>To much of a good thing is a bad thing. Not enough of a good thing is also a bad thing.</li>
<li>No brain, no gain.</li>
<li>There is no such thing as cheap thrills, only cheap tricks.</li>
</ul>
<p><b>Product Placement</b></p>
<ul>
<li>I just realized that I have five phone numbers connected to my iPhone.</li>
<li>Not feeling the new Twitter app.  It feels like it requires too many clicks to do anything.</li>
<li>Every parking lot should be covered with an array of solar panels.  Some parking lots take more area than the base of the building.</li>
<li>I hate when sites and apps require Facebook Connect to sign up. #pinterest</li>
<li>I bet that Taco Bell taco shells are made in China.</li>
<li>Like a true politician, Go Daddy flip flopped on the issue and now claims it does not support SOPA. #WhoDroppedTheSOPA</li>
<li>Google Grinch: No Ice Cream Sandwich for Galaxy S, first Galaxy Tab, or original Nexus.</li>
<li>The one feature that had been overlooked in Android is the ability to take a screenshot of your Android device.</li>
</ul>
<p><b>Quote</b></p>
<ul>
<li>I&#8217;m putting you on the do not kill list. &#8211; Bender Bending RodrÌguez</li>
<li>The truth is often stupid. &#8211; Bender Bending RodrÌguez</li>
<li>Follow the fucking money. When a VC tells you what&#8217;s good for you, check your wallet, then count your fingers. &#8211; jwz</li>
<li>Let&#8217;s go and invent tomorrow. &#8211; Steve Jobs</li>
</ul>
<p><b>Question</b></p>
<ul>
<li>Who moved my cheese and then cut said cheese?</li>
<li>Who is doing some last minute shopping?</li>
<li>How many domains do you own?</li>
<li>Church&#8217;s or Popeyes?</li>
<li>Ancient Aliens or Modern Morons?</li>
<li>If you could go back in time and would be stuck in prehistoric time, what skill would you need most to survive?</li>
<li>If Mr Grinch is so mean what do you think Mrs Grinch is like?</li>
<li>If the world is flat why aren&#8217;t international phone rates flat themselves?</li>
<li>A touch device is a complicated device with many components, what are the chances that the Galaxy Tab would look identical to the iPad?</li>
</ul>
<p><b>Randumb</b></p>
<ul>
<li>Looking forward to the future!</li>
<li>Old Internet memes don&#8217;t die, they go remixed, go viral, and trend.</li>
<li>It&#8217;s rumored that the same maker that built a weight scale with a built it twitter client that tweets your weight is working on a toilet.</li>
<li>Money can&#8217;t buy you love but it can sure buy some lap dances.</li>
<li>When it comes to teenage love, forever doesn&#8217;t last long.</li>
<li>The surprise is the prize.</li>
<li>Empty space is the enemy of clutter.</li>
<li>You are the chaos/cause of you.</li>
<li>You are the cause of you because you.</li>
<li>It is what it will be and it will be what has been.</li>
<li>Happy whatever the fuck you celebrate tonight.</li>
<li>The Internet was invented for the sharing of funny cat videos and pictures.</li>
<li>Make a right at the 3rd dimension and you are here.</li>
<li>The best part of nothing is everything.</li>
<li>Negative ideas manifest into real feelings</li>
<li>Gift wrapping ain&#8217;t going so merry.</li>
<li>If there is a way to hurt yourself with a tape dispenser I&#8217;ve done it&#8230; Why is my lip bleeding!?</li>
<li>I think that The Terminator is the beginning of a long war against the machines that culminates with The Matrix.</li>
</ul>
<p><b>Overheard</b></p>
<ul>
<li>OH: Annoying people are really annoying.</li>
<li>OH: I would love to enjoy my own depression if I only I didn&#8217;t have to deal with other people&#8217;s depression.</li>
<li>OH: I wish my life was an 80&#8242;s movie.</li>
<li>OH: To be honest, I&#8217;m not being honest.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2012/01/02/retweet-december-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Siri on iPhone 4S</title>
		<link>http://juixe.com/techknow/index.php/2011/12/29/enable-siri-on-iphone-4s/</link>
		<comments>http://juixe.com/techknow/index.php/2011/12/29/enable-siri-on-iphone-4s/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 21:44:23 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[siri]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1503</guid>
		<description><![CDATA[A family member received the iPhone 4S for Christmas and the first thing she wanted to try was Siri. She didn&#8217;t know how to turn it on so she called me, the local family tech support. To turn on Siri on the iPhone 4S go to the Settings app. Once on the iPhone Settings, drill [...]]]></description>
			<content:encoded><![CDATA[<p>A family member received the iPhone 4S for Christmas and the first thing she wanted to try was Siri.  She didn&#8217;t know how to turn it on so she called me, the local family tech support.  To turn on Siri on the iPhone 4S go to the Settings app.  Once on the iPhone Settings, drill down on the General option.  In the General settings view drill down on the Siri option.  Once in the Siri settings view, make sure that the toggle button is turned on.  You can also change other Siri settings such as the language.</p>
<div id="attachment_1504" class="wp-caption aligncenter" style="width: 545px"><img src="http://juixe.com/techknow/wp-content/uploads/2011/12/siri-enable-535x802.png" alt="Siri Settings View" title="Siri Settings View" width="535" height="802" class="size-large wp-image-1504" /><p class="wp-caption-text">Siri Settings View</p></div>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2011/12/29/enable-siri-on-iphone-4s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reclaim Disk Space With Spacie</title>
		<link>http://juixe.com/techknow/index.php/2011/12/19/reclaim-disk-space-with-spacie/</link>
		<comments>http://juixe.com/techknow/index.php/2011/12/19/reclaim-disk-space-with-spacie/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 16:01:16 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[hd]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[spacie]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1491</guid>
		<description><![CDATA[Recently I noticed that I had less than 3GB of free disk pace on my laptop. I have and take a lot of photos, in addition to that I download and install a lot of different development tools and IDEs. I also have a lot of music and listen to a lot of podcasts. In [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I noticed that I had less than 3GB of free disk pace on my laptop.  I have and take a lot of photos, in addition to that I download and install a lot of different development tools and IDEs.  I also have a lot of music and listen to a lot of podcasts.  In addition to all this, I am a <b>digital hoarder</b> and download and save any PDF or image that I find interesting. </p>
<p>When I discovered that I was running out of disk space I immediately started to look for &#8220;disk space&#8221; apps on the App Store.  I found <b>Spacie</b> to be what the HD DR ordered.  With Spacie I found that I had multiple version of NetBeans each taking close to 1GB.  I had multiple versions of the Android SDK each taking close to 1GB.  Spotify was caching over 2GB of data.  I found that iPhoto and iTunes was taking the bulk of the space.  I easily had 20GB in iPhoto and 40GB in iTunes.  In iPhoto, I started to export and backup photo sets older than a year or two so that I could reclaim more space.  In iTunes, I found that I had a hundreds of podcasts taking over 100MB each.  I pushed these photo sets and podcasts to an external hard drive and reclaimed over 40GB of disk space.  Spacie helped me to identify what files where taking the most space and I systematically addressed each folder as best I could.</p>
<div id="attachment_1492" class="wp-caption aligncenter" style="width: 545px"><img src="http://juixe.com/techknow/wp-content/uploads/2011/12/spacie-535x304.png" alt="Spacie" title="Spacie" width="535" height="304" class="size-large wp-image-1492" /><p class="wp-caption-text">Spacie finds large files in your hard drive and helps reclaim disk space.</p></div>
<p>Spacie is available on the Apple App Store.  It is currently priced at $1.99 and it&#8217;s well worth it since it saved me from having to upgrade to a new hard drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2011/12/19/reclaim-disk-space-with-spacie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Ultimate Geek Gift Guide 2011</title>
		<link>http://juixe.com/techknow/index.php/2011/12/18/the-ultimate-geek-gift-guide-2011/</link>
		<comments>http://juixe.com/techknow/index.php/2011/12/18/the-ultimate-geek-gift-guide-2011/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 23:50:00 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[moleskin]]></category>
		<category><![CDATA[nook]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[thinkgeek]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1497</guid>
		<description><![CDATA[This geek gift guide is not so much for geeks and techies but for those that have geeks and techies in their life and need a little help in finding the right geek gift this holiday season. If you want to wow the geek in your life with the latest technology gadget you need to [...]]]></description>
			<content:encoded><![CDATA[<p>This <b>geek gift guide</b> is not so much for geeks and techies but for those that have geeks and techies in their life and need a little help in finding the right geek gift this holiday season.  If you want to wow the geek in your life with the latest technology gadget you need to look no further.</p>
<p>For two years straight the iPad has been the most coveted piece of technology on most self respecting geek.  The iPad is great for geeks no matter their expertise, music, photography, gaming, social media, etc.  A geek that travels a lot or enjoys reading on their iPad when at a coffee shop would enjoy the 3G iPad so that they can always be connected no mater where they are.  Whether you give the geek in your life an iPad or if they already have one, there are a ton of great accessories, such as a <a href="http://poketo.com/shop/index.php?route=product/product&#038;product_id=1506">envelope iPad cases</a> from Poketo.</p>
<div id="attachment_1500" class="wp-caption aligncenter" style="width: 470px"><img src="http://juixe.com/techknow/wp-content/uploads/2011/12/poketo-envolope-case.jpg" alt="Poketo Envelope iPad Case" title="Poketo Envelope iPad Case" width="460" height="460" class="size-full wp-image-1500" /><p class="wp-caption-text">Poketo Envelope iPad Case</p></div>
<p>Over this last year there has been an explosion of tablets come into the market such as the Amazon Kindle Fire, and Barnes and Noble&#8217;s Nook Tablet.  The <a href="http://www.barnesandnoble.com/u/nook/379003208/">Nook tablet</a> at $249 is a great bargain but so is the <a href="http://www.amazon.com/dp/B0051VVOB2/">Amazon Kindle Fire</a> at $199.  The Nook tablet is a bit faster and more powerful than the Kindle Fire, but if you already own a Kindle or have purchase Kindle ebooks then the Kindle Fire would be the obvious choice.</p>
<p>For the financial whiz in the family I would recommend the <a href="http://www.shopping.hp.com/product/calculator/HP/1/storefronts/12C%2523ABA">HP 12c Financial Calculator</a>.  The HP 12c Financial Calculator has a retro HP look and over 120 mathematical functions that would be appreciated by any business and finance power user.</p>
<p>Every engineer needs a notebook and there are no better notebooks than Moleskine notebooks.  Moleskine has come out with a limited edition <a href="http://www.amazon.com/dp/8866130265/">Star Wars</a> notebooks perfect for that die hard fan.  For the old school video gamer in the family, they also have a limited edition <a href="http://www.amazon.com/dp/8862935625/">Pac-Man set</a>.</p>
<p>As everyone already knows, the standard geek uniform is jeans and a t-shirt. Any self respecting geek needs to have some <a href="http://www.thinkgeek.com/">ThinkGeek</a> shirts in his wardrobe. ThinkGeek gear is like Armani Exchange for geeks, binary fashionable and geek chic.</p>
<p>If you need more suggestions, take a look at previous years <b>geek gift guides</b>:  </p>
<p><a href="http://juixe.com/techknow/index.php/2010/11/22/the-ultimate-geek-gift-guide-2010/">The Ultimate Geek Gift Guide 2010</a>, <a href="http://juixe.com/techknow/index.php/2009/11/10/the-ultimate-geek-gift-guide-2009/">The Ultimate Geek Gift Guide 2009</a>, <a href="http://juixe.com/techknow/index.php/2008/11/27/the-ultimate-geek-gift-guide-2008/">The Ultimate Geek Gift Guide 2008</a></p>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2011/12/18/the-ultimate-geek-gift-guide-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Lacks Polish</title>
		<link>http://juixe.com/techknow/index.php/2011/12/16/android-lacks-polish/</link>
		<comments>http://juixe.com/techknow/index.php/2011/12/16/android-lacks-polish/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 16:01:12 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[nexus]]></category>
		<category><![CDATA[polish]]></category>
		<category><![CDATA[streak]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1486</guid>
		<description><![CDATA[I&#8217;ve been an Android user since the HTC G1 first came out. Since then, I&#8217;ve had and used the Google Nexus, HTC G2, and the Dell Streak 7. I&#8217;ve tried to like my Android devices but they lack polish or frustrate me in several other ways. The first annoying lack to details is noticed immediately [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been an Android user since the HTC G1 first came out.  Since then, I&#8217;ve had and used the Google Nexus, HTC G2, and the Dell Streak 7.  I&#8217;ve tried to like my Android devices but they lack polish or frustrate me in several other ways.  The first annoying lack to details is noticed immediately as soon as you un-box the device.  Just turn over the device and you&#8217;ll see three or more logos, the maker logo (such as Dell, HTC, or Samsung), the carriers logo (T-Mobile or Verizon), and the product name or other insignia.  Apple products just have the Apple logo.  On Android devices, you&#8217;ll have different logos each placed on the back plate separately, the vendor&#8217;s logo will be etched into the back while the carrier&#8217;s logo will be some cheap vinyl sticker placed afterward.</p>
<p>My personal pet peeve with Android devices is the craziness with moving apps from the internal device&#8217;s memory to the external SD card.  Even relatively recent Android devices such as the Google Nexus and Dell Streak 7 have less than 1GB internal memory so if you download a lot of apps you&#8217;ll soon need to move apps around to the SD card.  But some apps you can&#8217;t move to the SD card so that presents a different issue.</p>
<p>Who cares if the phone&#8217;s memory can be extended by using higher capacity SD cards if a one year old device can&#8217;t even be upgraded to the latest Android version.  So the whole thing with extensible SD cards and moving installed apps from the internal memory to the SD card I find completely and frustratingly useless.  The whole concept of an Operating Systems is that best manages the resources of the device, the Android OS should best manage installed applications in either the internal memory or SD based on some intelligence.  Why am I doing Android&#8217;s job?</p>
<p>Another concern I have with Android devices is that they usually come with a lot of pre-installed apps.  For example, my Dell Streak 7 came with Kongregate Arcade app which I can&#8217;t remove and reclaim the wasted internal memory.  Similarly, carriers and vendors add and customize Android so that no two devices have the same user experience.</p>
<p>My last concern with Android&#8217;s lack of polish is its dark goth color scheme.  Most application&#8217;s menu and option screens are as if they were designed by a goth listening to The Cure.  The Android UI design is not &#8220;Just Like Heaven.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2011/12/16/android-lacks-polish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retweet November 2011</title>
		<link>http://juixe.com/techknow/index.php/2011/12/02/retweet-november-2011/</link>
		<comments>http://juixe.com/techknow/index.php/2011/12/02/retweet-november-2011/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 16:01:23 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[dmv]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[ipaq]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[retweet]]></category>
		<category><![CDATA[stackoverflow]]></category>
		<category><![CDATA[thanksgiving]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1508</guid>
		<description><![CDATA[From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind. Here is a synopsis of recent tweets and rants. If you want to follow the conversation follow me at techknow and/or juixe. Software Development Making good UI means making ugly choices. There was a [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of recent tweets and rants.  If you want to follow the conversation follow me at <a href="http://twitter.com/techknow">techknow</a> and/or <a href="http://twitter.com/juixe">juixe</a>.</p>
<p><b>Software Development</b></p>
<ul>
<li>Making good UI means making ugly choices.</li>
<li>There was a time when having a computer made you a nerd.  Today, people being &#8220;good on Facebook&#8221; does not make you a nerd.</li>
<li>Love working with jQuery Mobile.</li>
</ul>
<p><b>Thought Leadership</b></p>
<ul>
<li>Everyone has a vision, the difference is the scope, lens, and filter around the vision.</li>
<li>Tomorrow is a fresh opportunity to be amazing and amazed.</li>
<li>You ask stupid questions, you get stupid answers.</li>
<li>I&#8217;m not on StackOverflow, so when people ask for my SO reputation I instead give them the the monthly referrals I get from SO.</li>
</ul>
<p><b>Product Placement</b></p>
<ul>
<li>Sweet.  Amazon just sent me a $5 credit because of a &#8220;technical issue on the Amazon.com website&#8221; that I am not even aware I encountered.</li>
<li>Found my first handheld device&#8230; An HP iPaq RX3715 running Pocket PC 2003 Pro w/ Outlook 2002.  It&#8217;s still in great condition!</li>
<li>David Pogue wrote his review of the Kindle Fire, sounds like he wrote it from his iPad.</li>
</ul>
<p><b>Overheard</b></p>
<ul>
<li>OH: Don&#8217;t they have Cliff Notes for the DMV driving manual?</li>
<li>OH: Your brain cells are sexy!</li>
<li>OH: Sometimes when you put things in the closet it doesn&#8217;t mean you have a clean house.</li>
<li>OH: don&#8217;t do it but it you gonna do it make sure you get paid for doing it.</li>
</ul>
<p><b>Thanksgiving</b></p>
<ul>
<li>I&#8217;m turkeyed-out.  I had all major food groups and at least four different meat groups.</li>
<li>McDonalds should have a McTurkey with McStuffing.</li>
<li>Thanksgiving is the time to eat food you don&#8217;t like, I mean why do you only have it only for Thanksgiving?</li>
<li>The holidays forces families to come together because everyone else is with their families.</li>
<li>I dislike food holidays. Especially when everything is so good.</li>
<li>Instead of counting sheep, I&#8217;ll be counting turkeys tonight.</li>
<li>Gobble gobble gone.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2011/12/02/retweet-november-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retweet October 2011</title>
		<link>http://juixe.com/techknow/index.php/2011/11/28/retweet-october-2011/</link>
		<comments>http://juixe.com/techknow/index.php/2011/11/28/retweet-october-2011/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 16:01:52 +0000</pubDate>
		<dc:creator>TechKnow</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[TechKnow]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[bender]]></category>
		<category><![CDATA[bytecode]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[kinect]]></category>
		<category><![CDATA[xbox]]></category>

		<guid isPermaLink="false">http://juixe.com/techknow/?p=1483</guid>
		<description><![CDATA[From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind. Here is a synopsis of recent tweets and rants. If you want to follow the conversation follow me at techknow and/or juixe. Software Development To checkin or not to checkin a large changelist five [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time I just blast tweets about software development, project planning, team dynamics, or whatever else comes to mind.  Here is a synopsis of recent tweets and rants.  If you want to follow the conversation follow me at <a href="http://twitter.com/techknow">techknow</a> and/or <a href="http://twitter.com/juixe">juixe</a>.</p>
<p><b>Software Development</b></p>
<ul>
<li>To checkin or not to checkin a large changelist five minutes before you go home, that is the question?</li>
<li>A test like a good movie, has three parts: the setup, the car chase, and the test of the results.</li>
<li>Testing is like a tax, you have to pay 5-10% to have a good running infrastructure or system.</li>
<li>Testing takes time, make sure you make the time, because it will save you time in the long run.</li>
<li>All programmers have a black belt in hubris.</li>
<li>One bytecode to rule them all.</li>
</ul>
<p><b>Thought Leadership</b></p>
<ul>
<li>Your miles may vary, but it often depends on your attitude.</li>
<li>Passion + Perseverance = Possibilities</li>
<li>Sometimes you can&#8217;t afford to lose a client, but there are other times you can&#8217;t afford keep your client.</li>
<li>Just like there should be no hard coded strings there should be no unwritten rules, or assumptions, or specifications.</li>
<li>The dumbest people I&#8217;ve ever encountered are those that think that the rest of the 99.99% of people are a bunch of idiots.</li>
<li>If you are unique no one can compete with you.</li>
<li>Team meetings should not feel like an AA meeting, &#8220;Hi, I&#8217;m bob and I work here.&#8221;</li>
</ul>
<p><b>Product Placement</b></p>
<ul>
<li>I&#8217;ve used the iPhone apps for Google Voice and G+ and I have to say, Google does not know how to make a good iOS app.</li>
<li>I&#8217;m not liking the new Google Reader look.  I would not be surprised if the next version of Google design has ribbons.</li>
<li>Leave no smart phone behind.  Google won&#8217;t upgrade the Nexus One to Android 4.0.</li>
<li>Google is set to update its motto to &#8220;Do no evil if you ain&#8217;t getting paid for such evil.&#8221;</li>
<li>Android is to Google what Internet Explorer was to Microsoft in the Browser Wars.  MS gave IE for free just to take out Netscape.</li>
<li>Siri is to Apple what Kinect is to XBox what Facebook Connect is to Facebook what Circles are to Google Plus&#8230;</li>
<li>Every time I upgrade a MS product an angel loses his wings.</li>
<li>Is Amazon also adopting social networking features?  I just noticed that Amazon has a like button on its product pages.</li>
<li>Facebook should update its mission &#8220;to trick people to over share and make the world more open, connected, and trackable.&#8221;</li>
<li>Google should update its mission &#8220;to organize the world&#8217;s information about our users and make it accessible and useful to our advertisers.&#8221;</li>
<li>@att has two options in terms of text messages.  Pay as you use for $0.20 or unlimited for $20.  What about a third option, disable texting altogether?</li>
<li>Why does it cost half of the price of a stamp to send or receive a text?  It&#8217;s endemic of an industry that has no competition or innovation.</li>
<li>The Kindle Fire tablet is a modern day physical shopping cart for Amazon&#8217;s virtual online store.</li>
<li>History is being made every day, yet @historychannel airs reruns of Ancient Alien.</li>
</ul>
<p><b>Quotes</b></p>
<ul>
<li>OH WOW. OH WOW. OH WOW. &#8211; Steve Jobs&#8217; Last Words</li>
<li>I&#8217;m so embarrassed. I wish everybody else was dead. &#8211; Bender Bending Rodriguez</li>
<li>Goodbye monobrains &#8211; Bender Bending Rodriguez</li>
<li>There is no recession for great companies&#8230; &#8211; Jason Calacanis</li>
<li>Software is like sex: it&#8217;s better when it&#8217;s free. &#8211; Linus Torvalds</li>
<li>Coming together is the beginning; keeping together is a process; working together is success.  &#8211; Henry Ford</li>
<li>When all men think alike, no one thinks very much. &#8211; Walter Lippmann</li>
</ul>
<p><b>Randumb</b></p>
<ul>
<li>On Monday mornings we are all zombies.</li>
<li>Why am I listening to old school British punk rock? #GodSpankTheQueen</li>
<li>The truth is that truth is absolutely relative.</li>
<li>And then God said, &#8220;Let there be bacon,&#8221; and there was bacon.  God saw that the bacon was delicious.</li>
<li>You&#8217;re so vain, you probably think this tweet is about you.</li>
<li>Fist pump for peace.</li>
<li>Anybody that gets lost in a corn maze is an absolute moron.</li>
<li>I hate Lifetime movies!</li>
<li>Business is legitimate thievery.</li>
<li>Some of the most common elements on earth idiotum and dumbtonium.</li>
<li>meta-disrupt: Disrupt those disrupting disruption.</li>
<li>I am, therefore I meme.</li>
</ul>
<p><b>Thought Equations</b></p>
<ul>
<li>Meaning > money</li>
<li>problem = opportunity</li>
<li>means != ends</li>
<li>Success > Perfection</li>
<li>Experience != Information</li>
<li>Thinking > Knowing</li>
<li>Do > try</li>
<li>Platform > product</li>
<li>Creation > criticism</li>
<li>Passion + Perseverance = Possibilities</li>
</ul>
<p><b>Million Dollar Ideas</b></p>
<ul>
<li>Million Dollar Idea: Online Speed Dating Site</li>
<li>Million dollar idea: a news channel with nothing but news tickers&#8230;</li>
<li>Million Dollar Idea: self cleaning floors.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://juixe.com/techknow/index.php/2011/11/28/retweet-october-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

