<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>CodeHead in the desert</title>
	<atom:link href="http://codeheadsystems.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://codeheadsystems.wordpress.com</link>
	<description>Random thoughts of a coder</description>
	<lastBuildDate>Mon, 12 Dec 2011 20:47:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='codeheadsystems.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>CodeHead in the desert</title>
		<link>http://codeheadsystems.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://codeheadsystems.wordpress.com/osd.xml" title="CodeHead in the desert" />
	<atom:link rel='hub' href='http://codeheadsystems.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Grails 1.3.7, cobertura and zip errors</title>
		<link>http://codeheadsystems.wordpress.com/2011/08/23/grails-1-3-7-cobertura-and-zip-errors/</link>
		<comments>http://codeheadsystems.wordpress.com/2011/08/23/grails-1-3-7-cobertura-and-zip-errors/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 17:09:20 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=288</guid>
		<description><![CDATA[When turning code-coverage on for my grails app, I suddenly started getting an error when cobertura was instrumenting my classes; unable to read zip file. Found someone with similar issues here, but I had to end up with a different patch. I added the closure onto the fileset request on line 122 of _GrailsClasspath.groovy. Yeah, its a grails problem&#8230; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=288&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When turning code-coverage on for my grails app, I suddenly started getting an error when cobertura was instrumenting my classes; unable to read zip file. Found someone with similar issues <a href="http://comments.gmane.org/gmane.comp.lang.groovy.grails.user/106477">here</a>, but I had to end up with a different patch. I added the closure onto the fileset request on line 122 of _GrailsClasspath.groovy. Yeah, its a grails problem&#8230; they assume everything is a jar or zip in a lib directory&#8230; guess its not true in a plugin I loaded. Anyways, here&#8217;s the patch I added:</p>
<pre>    for (pluginLib in pluginLibDirs) {
        fileset(dir: pluginLib.file.absolutePath){
            include(name:"**/*.jar")
            include(name:"**/*.zip")
        }
    }</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/288/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=288&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2011/08/23/grails-1-3-7-cobertura-and-zip-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>
	</item>
		<item>
		<title>Google and Minors&#8230; what the ToS says&#8230;</title>
		<link>http://codeheadsystems.wordpress.com/2011/08/10/google-and-minors-what-the-tos-says/</link>
		<comments>http://codeheadsystems.wordpress.com/2011/08/10/google-and-minors-what-the-tos-says/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 20:34:50 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=285</guid>
		<description><![CDATA[Right now I&#8217;m trying to get my son&#8217;s gmail account re-enabled, with no such luck. Google&#8217;s attempt at COPPA compliance/mitigation is not impacted by parental agreement. But in attempts to figure out what&#8217;s going on, turns out you cannot use Google if your under 18. This is according to the Terms of Service that Google has. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=285&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Right now I&#8217;m trying to get my son&#8217;s gmail account re-enabled, with no such luck. Google&#8217;s attempt at COPPA compliance/mitigation is not impacted by parental agreement. But in attempts to figure out what&#8217;s going on, turns out you cannot use Google if your under 18. This is according to the <a href="http://www.google.com/accounts/TOS">Terms of Service</a> that Google has.</p>
<p>You can read my ramblings about what happened <a href="http://www.google.com/support/forum/p/gmail/thread?fid=15bf798994a39cd20004aa26d38917de&amp;hl=en">here</a>, but when someone told me I didn&#8217;t read the ToS, they really didn&#8217;t read it either. Not only does it say nothing about the age 13 being a magic number, but rather this line got to me:</p>
<blockquote><p>2.3 You may not use the Services and may not accept the Terms if (a) you are not of legal age to form a binding contract with Google</p></blockquote>
<p>In the US, that&#8217;s the <a href="http://en.wikipedia.org/wiki/Age_of_majority">Age of Majority</a> or usually, 18. So, according to the ToS from Google, if you are under 18, you cannot use google search, YouTube, Android, etc&#8230;</p>
<p>For the record, my son has my consent to use the non-COPPA compliant gmail service. It blocks a lot of spam I don&#8217;t want him to get. At the least, I want him to get copies of the email is sent/received off of gmail servers.</p>
<p>I can&#8217;t say how angry this gets me. No notice, just &#8216;account disabled&#8217;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/285/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=285&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2011/08/10/google-and-minors-what-the-tos-says/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>
	</item>
		<item>
		<title>Small review of cloud music options</title>
		<link>http://codeheadsystems.wordpress.com/2011/07/22/small-review-of-cloud-music-options/</link>
		<comments>http://codeheadsystems.wordpress.com/2011/07/22/small-review-of-cloud-music-options/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 19:36:28 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=280</guid>
		<description><![CDATA[Some of you know that I&#8217;m kinda a music nut. I have a fairly eclectic music collection and love to hear it all the time. Years ago I converted my albums to FLAC and MP3, bought Cowon audiophile devices, and realized that MP3 is really all I need. My CDs, for the most part, are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=280&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some of you know that I&#8217;m kinda a music nut. I have a fairly eclectic music collection and love to hear it all the time. Years ago I converted my albums to FLAC and MP3, bought Cowon audiophile devices, and realized that MP3 is really all I need. My CDs, for the most part, are in boxes now, and I only listen to my music from these MP3s. Between buying from Amazon, CD-Baby or other online (legitimate) retailers, my collection has not stopped growing.  Now that cloud services have started to embrace music in a real and meaningful way, I&#8217;ve gone through the trouble of using them, trying to find what works best.</p>
<p>Some bias I have that will no doubt color my impression of the services include that it has to work on my Linux computers and android phones. If I have to use windows or mac, it won&#8217;t work for me.  The following list is done in order in which I discovered the services, starting from what is hardly considered &#8216;cloud service&#8217; now-a-days, to the real thing.</p>
<p><strong>mp3.com</strong> (original site, defunct) The old site was a great way to find music, download and listen to it. I was able to find new artists such as Sarah Fimm. The current version of the site is useless to me. I have to mention the old one because it was really the first way I was able to find music online. Its not a &#8216;cloud service&#8217; in that I couldn&#8217;t upload my music to it. But I do miss them.</p>
<p><strong>Last.fm</strong> (formally scrobbler) was my first real use of online music. It logged what I listened to, and made suggestions of other music from friends I were connected to, or &#8216;neighbors&#8217;. Neighbors were people with similar music style, and I could find other bands to listen to. It didn&#8217;t work that well for me at first, but did expose me to new music so I stuck with it. Its not a way to manage my own music files, but does provide an online catalog of what you actually do listen. To this day its probably the best way for me to find new music and I&#8217;m glad I stuck with them.</p>
<p><strong>Pandora</strong> is another service to expose you to new music, and discover what friends listen to. Some success for me here in finding new music, such as Mankind Is Obsolete, and Emilie Autumn. But I found myself going back to Last.fm to learn more about the band, and hear more of their tracks. Unlike Last.fm, I couldn&#8217;t really see or manage what I listened to in the past without an additional step of bookmarking. But unlike last.fm, I really could create a radio station (for free) and listen to it at work, home, on my Tivo or phone. This killed &#8216;real&#8217; radio for me. I&#8217;ve not found new artists from Pandora anymore, so I guess I&#8217;m in a statistical maximum. I actively use them now, still free version.</p>
<p><strong>YouTube</strong> was easily discovered as a juke box by others long before me. Suffice it to say its fun and easy to create &#8216;playlists&#8217; of music other people uploaded and play in the background. The only issue is that to use it this way tends to be a time-sink. I do still use it, but not as much.</p>
<p><strong>Amazon CloudMusic</strong> made me fall in love with Amazon all over again. Stuff I buy from Amazon (from when it came out, not before, but I&#8217;m not bitter) are hosted free on amazon, and listenable to my browsers, android phone, etc. I can also re-download it again from amazon whenever I want. I can create playlists online and they exist everywhere.  I can also upload free up to 20G worth of music (or other files) and listen to that music later as well. (Its only 20G if you buy an album a year, otherwise its 5G. For me, that&#8217;s not a problem.) Streaming works well, the android player is good for local music as well as cloud music. Browser can only handle cloud music. Can use a native app to upload music or the browser.</p>
<p><strong>Google Music</strong> is similar to Amazon, but they only deal with music files, you have to use their native app to upload music, which until recently didn&#8217;t run on Linux. It seems more &#8216;buggy&#8217; then Amazon as a player, but does work. Also, Google does not let you re-download your music, which bugs me. Playlists work fine. Right now, Between both of these services, I need to merge in features from Amazon and Google to be happy. I want to download again, don&#8217;t bug me about storing stuff I bought at amazon, and 20k files upload is a good place to be, more then 20G of storage. I&#8217;m less likely to use Amazon for that simple reason (and because uploading via the browser basically sucks, no linux client for Amazon)</p>
<p><strong>GrooveShark</strong> is a different approach that is wining me over right now. You can upload what you want, listen on a browser or via the phone app if you have a paid subscription. You can listen to whatever was already uploaded even without an account. Lots of music choices. I&#8217;ve not paid for the service so I don&#8217;t know how good the streaming option is, but from a browser perspective, its the easiest way to create playlists, removing most of my usage of YouTube.</p>
<p><strong>Spotify</strong> I mention only because its kinda like Grooveshark, seems more polished, huge library but without their native linux client (for free users) I can&#8217;t try it at all. Hopefully that will change soon, but since its been that way for a year, I doubt they care enough to change it. (Side note, on Spotify you can use it free on a paid OS, but you have to pay for it on a free OS. Feels weird. And no, wine isn&#8217;t an option here.)</p>
<p>Where does all this lead me? I use my android phone instead of my Cowon even though the Cowon has better quality sound. Browser instead of Banshee, currently enjoying grooveshark as my browser player. In the car, I use google music to stream, setting it to shuffle. Listen to Pandora via TiVo at home. I buy new music from Amazon, finding new music from last.fm, pandora and sometimes from Amazon suggestions. What&#8217;s apparent is that no single service is &#8216;perfect&#8217;, and each does something somewhat different. Last.fm is the best social experience for me so far, in that I can integrate it with almost anything. What&#8217;s really great is each service I list above is improving itself (maybe not pandora) so I have no question that they will continue improve over time.</p>
<p>Its a good time to be a music nut.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=280&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2011/07/22/small-review-of-cloud-music-options/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>
	</item>
		<item>
		<title>Cassandra 0.7 and the grails plugin</title>
		<link>http://codeheadsystems.wordpress.com/2011/01/20/cassandra-0-7-and-the-grails-plugin/</link>
		<comments>http://codeheadsystems.wordpress.com/2011/01/20/cassandra-0-7-and-the-grails-plugin/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 17:02:31 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=275</guid>
		<description><![CDATA[Just updated the grails plugin for Cassandra to be compatible with Cassandra 0.7. Remember folks, this isn&#8217;t a GORM module.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=275&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just updated the grails plugin for Cassandra to be compatible with Cassandra 0.7. Remember folks, this isn&#8217;t a GORM module.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/275/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/275/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/275/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=275&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2011/01/20/cassandra-0-7-and-the-grails-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>
	</item>
		<item>
		<title>Mario, Evo and the death of WebOS&#8230;</title>
		<link>http://codeheadsystems.wordpress.com/2010/06/28/mario-evo-and-the-death-of-webos/</link>
		<comments>http://codeheadsystems.wordpress.com/2010/06/28/mario-evo-and-the-death-of-webos/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 04:12:07 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=268</guid>
		<description><![CDATA[As of now Android is my only smartphone operating system. WebOS is dead to me. Why you ask? Because now you can get Mario running around as a live wallpaper for Android. Unless WebOS starts using Tempest controls I&#8217;m done. The is awesome. I figured out today that Android doesn&#8217;t combine instance messaging and SMS messaging in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=268&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.engadget.com/2010/06/28/mario-live-wallpaper-for-android-better-than-a-tanooki-suit-in/"><img class="alignleft size-full wp-image-269" title="Mario" src="http://codeheadsystems.files.wordpress.com/2010/06/mario.jpg?w=510" alt=""   /></a>As of now Android is my only smartphone operating system. WebOS is dead to me. Why you ask? Because now you can get Mario running around as a live wallpaper for Android. Unless WebOS starts using Tempest controls I&#8217;m done. The is awesome.</p>
<p>I figured out today that Android doesn&#8217;t combine instance messaging and SMS messaging in the same app, which pissed me off. Luckily, this made it all better.</p>
<p>Long live Mario^h^h^h^h^hAndroid!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/268/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=268&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2010/06/28/mario-evo-and-the-death-of-webos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>

		<media:content url="http://codeheadsystems.files.wordpress.com/2010/06/mario.jpg" medium="image">
			<media:title type="html">Mario</media:title>
		</media:content>
	</item>
		<item>
		<title>A good review of Android vs. WebOS</title>
		<link>http://codeheadsystems.wordpress.com/2010/06/20/a-good-review-of-android-vs-webos/</link>
		<comments>http://codeheadsystems.wordpress.com/2010/06/20/a-good-review-of-android-vs-webos/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 17:05:05 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=263</guid>
		<description><![CDATA[A found this review that goes in depth on the differences between the Android Evo and Palm Pre on Sprint. Its long but worth it.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=263&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A found this review that goes in depth on the differences between the <a href="http://www.androidcentral.com/comparing-palm-pre-htc-evo-4g-sprint">Android Evo and Palm Pre</a> on Sprint. Its long but worth it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=263&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2010/06/20/a-good-review-of-android-vs-webos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>
	</item>
		<item>
		<title>The problems of food in America&#8230;</title>
		<link>http://codeheadsystems.wordpress.com/2010/06/18/the-problems-of-food-in-america/</link>
		<comments>http://codeheadsystems.wordpress.com/2010/06/18/the-problems-of-food-in-america/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 16:52:54 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=261</guid>
		<description><![CDATA[I pointed out in a previous post about my problems with chemically processed food additives like soy isolate. Then I tried to not eat that type of stuff even though I&#8217;m a vegetarian. Turns out I kinda mess up my diet and general health in the process. Fundamentally, I&#8217;m fairly lazy in the food prep [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=261&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I pointed out in a <a href="http://codeheadsystems.wordpress.com/2010/04/17/this-is-not-a-test/">previous post</a> about my problems with chemically processed food additives like soy isolate. Then I tried to not eat that type of stuff even though I&#8217;m a vegetarian. Turns out I kinda mess up my diet and general health in the process.</p>
<p>Fundamentally, I&#8217;m fairly lazy in the food prep department. I try to make lots of stuff, but like most people I&#8217;m tired when I get home and don&#8217;t want to deal with it. While I&#8217;ve removed virtually all processed food from my diet, I didn&#8217;t really replace it with anything much. Salad, fruits and vegetables, which is good for you, but I still didn&#8217;t eat much of it. End result was large weight loss due to reduce caloric intake. But I recently realized that one component missing from my diet was iron.</p>
<p>The multi-vitamin I take is geared towards men and contains no iron; they assume men eat lots of meat and don&#8217;t need it. In the past few weeks I &#8216;forgot&#8217; to make my beans that I usually make, and before I knew it, the amount of food with iron in it has dropped to almost zero. The result has been anemia, odd taste/smell sensations which can all be attributed to a nutritional deficiency of some form or another.</p>
<p>Since I became a vegetarian the amount of iron I eat has always been low, but never this low for this long. The impact on my health on my recent diet changes has been striking. Losing weight in a nice even pace, but I&#8217;ve had sleep disorders and a host of other issues that can be directly correlated to lack of some specific nutritional component or another. Being a vegetarian in a non-vegetarian culture is really difficult. Even though I&#8217;ve been doing this for about 14 years, I still struggle. The abundance of food in America is positive because people shouldn&#8217;t have these issues I brought on myself recently. Rather this abundance causes other issues that I&#8217;ve had to deal with up to this point. This culture I&#8217;m in makes it difficult to come up with rational choices on what you eat simply because you spend so little time dealing with it. You order it or buy it, eat it then do the next thing. Doing the &#8216;next thing&#8217; is the American culture I grew up with. You go to the &#8216;next big movie&#8217; or buy the &#8216;next big game/shoes/phone&#8217;. All those things take more time and resources then &#8216;food&#8217; in America does. So quality food is really secondary much to our determent.</p>
<p>I&#8217;m being fairly reductionist here, but it seems obvious to me that the American culture relies on buying prepared food in some form or another. Canned food, sauces, frozen dinners, pizza, etc. You buy it because its easy to make and gets the job done. Each of those has issues with them (salt, preservatives, etc) that wouldn&#8217;t be there if you prepared them yourself. But the culture does not revolve around the kitchen, so no one wants to be in there. And if you go out all the time, then you have no clue what you&#8217;re really eating&#8230; giving the restaurant owner keys to your nutritional intake as well as your pocketbook.</p>
<p>So, how do I fix this? First change my multi-vitamin, at least that&#8217;s easy. Second, spend more time in the kitchen and get the rest of the family there too. I&#8217;m used to the format that if I&#8217;m cooking, Kirsten can do something else or visa versa. (I almost always clean the dishes, BTW). Also I need to get Jacob helping out in the kitchen more. I&#8217;m not sure I can fight this &#8216;next thing&#8217; syndrome. That seems much harder then normalizing my diet.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=261&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2010/06/18/the-problems-of-food-in-america/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>
	</item>
		<item>
		<title>Gridgain, Grails, GORM and Cassandra</title>
		<link>http://codeheadsystems.wordpress.com/2010/06/15/gridgain-grails-gorm-and-cassandra/</link>
		<comments>http://codeheadsystems.wordpress.com/2010/06/15/gridgain-grails-gorm-and-cassandra/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 23:05:58 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=257</guid>
		<description><![CDATA[I have grails working to submit jobs to gridgain nodes. The grid tasks execute and send out jobs that run on the grid nodes just fine. The grid jobs are able to make use of a cassandra service (provided by the cassandra plugin I wrote) just fine, thanks to Hector reconnecting blindly on the grid [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=257&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have grails working to submit jobs to gridgain nodes. The grid tasks execute and send out jobs that run on the grid nodes just fine. The grid jobs are able to make use of a cassandra service (provided by the cassandra plugin I wrote) just fine, thanks to Hector reconnecting blindly on the grid job. Interesting tidbit is that GridTasks (which execute on the node that submits the task) are able to make use of standard GORM methods like list(). But GridJobs cannot make use of these methods. Odds are this is due to how the method list() is added to the GORM object&#8230; the method simply isn&#8217;t added on the grid node when it loads up the class.</p>
<p>I should also note that this is using the GAR deployment.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=257&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2010/06/15/gridgain-grails-gorm-and-cassandra/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>
	</item>
		<item>
		<title>Android scenes and WebOS</title>
		<link>http://codeheadsystems.wordpress.com/2010/06/09/android-scenes-and-webos/</link>
		<comments>http://codeheadsystems.wordpress.com/2010/06/09/android-scenes-and-webos/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 03:50:54 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=254</guid>
		<description><![CDATA[I started getting into customizing my Evo tonight and I have to say the scenes/widgets concept is pretty good compared to the WebOS &#8216;cards&#8217;. In the palm when you launch an app you have apps divided into three &#8216;pages&#8217; (cards) that you can launch. So customizing is pretty much pick which of the three cards to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=254&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I started getting into customizing my Evo tonight and I have to say the scenes/widgets concept is pretty good compared to the WebOS &#8216;cards&#8217;. In the palm when you launch an app you have apps divided into three &#8216;pages&#8217; (cards) that you can launch. So customizing is pretty much pick which of the three cards to place your apps on. The &#8216;ribbon&#8217; on the Pre is good, and it holds four apps you use a lot.</p>
<p>Android has scenes which is basically five cards (static size, unlike WebOS &#8216;cards&#8217; that grow as much as it can). You can put app launches, shortcuts to web pages or widgets on it. (Widgets have no palm equivalent save the notification-only apps, which are kinda close.) Plus, you can create your own scenes. So I now have four scenes. Work, weekends, travel and games. We&#8217;ll see if I end up keeping all three. The wallpaper integration with the scenes is nice too. I still don&#8217;t like the method to switch between apps, but there is a real advantage with the &#8216;launch&#8217; process Android has over WebOS.  Games wallpaper is&#8230; wait for it&#8230;. PacMan.</p>
<p>As far as Apps go, yes Android has 50,000+ apps and WebOS has ~2500. But I&#8217;d say almost half of the android apps are ebooks, different form of clocks or some thing else that is dumb and/or redundant, where less percentage of the WebOS ones are as crappy. So, Android really has only 10 times more &#8216;real&#8217; apps then WebOS instead of 20 times. Of course, this still means Android  has more interesting apps then WebOS currently does, and enough where I&#8217;m not going to be able to review all their descriptions. (I did for the WebOS)</p>
<p>And, kudos again for the Evo hardware; though that battery cries out in pain. So far this phone has been really fun.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/254/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=254&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2010/06/09/android-scenes-and-webos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>
	</item>
		<item>
		<title>WebOS vs Android</title>
		<link>http://codeheadsystems.wordpress.com/2010/06/07/webos-vs-android/</link>
		<comments>http://codeheadsystems.wordpress.com/2010/06/07/webos-vs-android/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 03:02:19 +0000</pubDate>
		<dc:creator>wolpert</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://codeheadsystems.wordpress.com/?p=251</guid>
		<description><![CDATA[I just got an Evo to upgrade from my Palm pre. I&#8217;m most surprised by the Evo in that it is not a pure killer of the WebOS Palm pre.  Here are initial findings. Hardware: Here there is no comparison. The Evo is fast and good looking. The Palm pre started with hardware issues (Slider, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=251&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just got an Evo to upgrade from my Palm pre. I&#8217;m most surprised by the Evo in that it is not a pure killer of the WebOS Palm pre.  Here are initial findings.</p>
<p><strong>Hardware:</strong> Here there is no comparison. The Evo is fast and good looking. The Palm pre started with hardware issues (Slider, screen effects). Memory wise, the Palm pre plus is actually better, but evo&#8217;s expansion fixes lots of issues, and android 2.2 will make use of the SDHC card easy for applications. I got used to the pre&#8217;s keyboard, but honestly I don&#8217;t have a real preference (yet) between the on-screen one for the Evo or the slider physical one for the pre. I hate that using it takes away my screen real-estate, but not enough feeling there to really care. Size-wise, the evo is really big, almost too big, whereas the palm pre was really small, almost too small. (Same resolution). I&#8217;d rather error on big here though.</p>
<p><strong>WebOS vs Android</strong>: Now this is very preliminary, so I can&#8217;t talk about much here. However, WebOS is far better in the area of multi-tasking from a usability perspective. You can easily see what applications you have open where the concept of &#8216;open apps&#8217; is basically hidden from you in the android. Though that may be technically irrelevant, switching between apps (especially while talking on the phone) is far easier on WebOS then android.</p>
<p>The second thing that weirded me out was email/contacts/calendar integration. WebOS integrations seamlessly between Gmail, yahoo, facebook and corporate google apps account. One application for mail, one for calendar, one for contacts. Android has a gmail integration, and a mail integration. Two separate apps.  Now, gmail on android functions like gmail on the web browser, which is nice, but it makes no sense to treat these so different. Also, as of yet I cannot get my work calendar in my Android without having to share it with my personal gmail account. No question that palm having years to deal with these types of issues have paid off. Though I continue to be surprised that both integrated facebook calendar and contacts perfectly. (Where are my yahoo contacts?)</p>
<p>Apps is a no brainer. Android has more then WebOS.  But the apps &#8216;feel&#8217; very different on the two devices. I&#8217;m not sure one &#8216;feels&#8217; better then the other, but its a stark contrast. WebOS launches them, and switching between two active apps is as fluid as if you were on a computer having multiple windows open. Android seems to leave you in place when you go after the next app. You cannot see them as windows or are separate functioning applications. So WebOS has more of a computer feel to it and Android feels more like a phone. Which is better? Not sure yet, but my gut instinct is that I&#8217;d prefer the WebOS feel on a tablet. Honestly, I&#8217;ll have to see if this is just the process of getting used to Android after using WebOS for a year.</p>
<p>I&#8217;ll have to play more with media on the device to see how that is. I was never overly impressed with the pre there, and was still using my Cowon S9 (or even D2) instead of the pre. Evo will be well worth it if it functions well here too, though I&#8217;m really picky about that.  I&#8217;ll give another review in a few weeks and see if I change my mind from these initial impressions. I really was surprised that the Evo is not a &#8216;slam dunk&#8217; as far as better then Palm pre&#8230; I do know that my wife would really hate to give up her pre.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeheadsystems.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeheadsystems.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeheadsystems.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeheadsystems.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeheadsystems.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeheadsystems.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeheadsystems.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeheadsystems.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeheadsystems.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeheadsystems.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeheadsystems.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeheadsystems.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeheadsystems.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeheadsystems.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeheadsystems.wordpress.com&amp;blog=1822535&amp;post=251&amp;subd=codeheadsystems&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeheadsystems.wordpress.com/2010/06/07/webos-vs-android/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb12830c57e6f8aa6da954229d317e7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wolpert</media:title>
		</media:content>
	</item>
	</channel>
</rss>
