<?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>Official Sanft.com Blog &#187; Technology</title>
	<atom:link href="http://www.sanft.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sanft.com</link>
	<description>Where my opinion counts more!  ;)</description>
	<lastBuildDate>Tue, 28 Jul 2009 14:21:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Netbooks worth the effort?</title>
		<link>http://www.sanft.com/2009/01/27/netbooks-worth-the-effort/</link>
		<comments>http://www.sanft.com/2009/01/27/netbooks-worth-the-effort/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 16:20:22 +0000</pubDate>
		<dc:creator>Ted Sanft</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.sanft.com/?p=308</guid>
		<description><![CDATA[I have been reading about netbooks as of late.  For me, the thought of an ultra portable laptop that will allow me to access the internet and use tools like ssh to manage linux systems sounds like a great idea.  If you add Bluetooth support, I will be able to tether my AT&#38;T Tilt to [...]]]></description>
			<content:encoded><![CDATA[<p>I have been reading about netbooks as of late.  For me, the thought of an ultra portable laptop that will allow me to access the internet and use tools like ssh to manage linux systems sounds like a great idea.  If you add Bluetooth support, I will be able to tether my AT&amp;T Tilt to the netbook and use my netbook anywhere I have cell coverage!</p>
<p>Over the last 2 months I have researched many netbooks and with my brother in-laws input, I decided on and MSI WIND u100.  Ultimately I went with the WIND over the HP mini because of disk size and price.  For $439, I purchased the MSI WIND u100 (black) with 1GB of memory, 160GB hard drive, Bluetooth, Windows XP, and an upgraded 6 cell battery.  The HP maxes out at 60GB hard drive and they only offer a 3 cell battery.</p>
<p>I plan on testing the usibilty, battery life, video playback, etc.  I will post a 2-3 part review in the coming weeks.  If you have someting specific you want me to review on the device, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanft.com/2009/01/27/netbooks-worth-the-effort/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading to Ruby 1.8.6 on Red Hat</title>
		<link>http://www.sanft.com/2008/12/01/upgrading-to-ruby-186-on-red-hat/</link>
		<comments>http://www.sanft.com/2008/12/01/upgrading-to-ruby-186-on-red-hat/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 00:14:40 +0000</pubDate>
		<dc:creator>Ted Sanft</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[originalposts]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.sanft.com/?p=292</guid>
		<description><![CDATA[Excuse me while I get my inner geek on.
I had Red Hat system that needed to be upgrade from running Ruby 1.8.5 to Ruby 1.8.6.  Unfortunately, Red Hat really lags in releasing RPM&#8217;s for many packages, and Ruby is one of the packages.
Now I have drunk the Red Hat RPM Kool-aid.  IMHO using RPM&#8217;s on [...]]]></description>
			<content:encoded><![CDATA[<p>Excuse me while I get my inner geek on.</p>
<p>I had Red Hat system that needed to be upgrade from running Ruby 1.8.5 to Ruby 1.8.6.  Unfortunately, Red Hat really lags in releasing RPM&#8217;s for many packages, and Ruby is one of the packages.</p>
<p>Now I have drunk the Red Hat RPM Kool-aid.  IMHO using RPM&#8217;s on your system is the only sane way to manage a Red Hat based system.  Compiling from source is ugly and hard to manage in the long run.</p>
<p>I called tech support (google.com) and found an RPM based solution to upgrade, but I ran into a few problems that I could find no solution for through &#8220;tech support&#8221;  I am going to walk you through installing ruby 1.8.6 on a Red Hat system using RPM&#8217;s and solving a little issue after you have installed it.<br />
<span id="more-292"></span><br />
First, I decided the best approach for the upgrade was to find a source RPM for ruby 1.8.6.  In my investigations, I also found a couple of large bugs in ruby 1.8.6 below patch level 230, therefore I looked for a Red Hat source RPM for ruby 1.8.6 above patch 230.  Unfortunately, none exist, however Fedora Core 9 is close enough for this process.  Here are the steps I followed to upgrade to 1.8.6 patch level 287:</p>
<p><strong>First, there were some prerequisites:</strong><br />
<code><br />
yum install tk-devel tcl-devel emacs ncurses-devel<br />
</code></p>
<p><strong>Now get the srpm:</strong><br />
<code><br />
cd /tmp<br />
wget ftp://ftp.pbone.net/mirror/download.fedora.redhat.com/pub/fedora/linux/releases/9/Everything/source/SRPMS/ruby-1.8.6.287-2.fc9.src.rpm<br />
</code><br />
<strong>Now that we have it, let&#8217;s install it:</strong><br />
<code><br />
rpm -ivh ruby-1.8.6.287-2.fc9.src.rpm<br />
</code><br />
<strong>Okay, source RPMS is installed, now let&#8217;s build the actual binary RPM&#8217;s:</strong><br />
<code><br />
cd /usr/src/redhat/SPECS/<br />
rpmbuild -bb ruby.spec<br />
</code><br />
<strong>Now the RPM&#8217;s are built, we can install all of the RPM&#8217;s:</strong><br />
<code><br />
cd /usr/src/redhat/RPMS/i386<br />
rpm -Uvh ruby-1.8.6.287-2.i386.rpm \<br />
ruby-debuginfo-1.8.6.287-2.i386.rpm \<br />
ruby-devel-1.8.6.287-2.i386.rpm \<br />
ruby-docs-1.8.6.287-2.i386.rpm<br />
ruby-irb-1.8.6.287-2.i386.rpm \<br />
ruby-libs-1.8.6.287-2.i386.rpm \<br />
ruby-mode-1.8.6.287-2.i386.rpm \<br />
ruby-rdoc-1.8.6.287-2.i386.rpm \<br />
ruby-ri-1.8.6.287-2.i386.rpm \<br />
ruby-tcltk-1.8.6.287-2.i386.rpm<br />
</code><br />
<strong>This should give you ruby 1.8.6 patch level 287:</strong><br />
<code><br />
ruby -v<br />
</code><br />
&#8220;ruby 1.8.6 (2008-08-11 patchlevel 287) [i386-linux]&#8221;</p>
<p><strong>Oh joyful day!  I figured it out!  However, later, I tried to access the console using:</strong><br />
<code><br />
script/console production<br />
</code><br />
<strong>I received:</strong><br />
<code><br />
/usr/lib/ruby/1.8/irb/completion.rb:10:in `require': No such file to load -- readline (LoadError) from    /usr/lib/ruby/1.8/irb/completion.rb:10 from /usr/lib/ruby/1.8/irb/init.rb:218:in `require' from /usr/lib/ruby/1.8/irb/init.rb:218:in `load_modules' from /usr/lib/ruby/1.8/irb/init.rb:216:in `each' from /usr/lib/ruby/1.8/irb/init.rb:216:in `load_modules' from /usr/lib/ruby/1.8/irb/init.rb:21:in `setup' from /usr/lib/ruby/1.8/irb.rb:54:in `start' from /usr/bin/irb:13<br />
</code><br />
<strong>I poked around quite a bit and found this solution:</strong><br />
<code><br />
find / -name readline -print<br />
cd /usr/src/redhat/BUILD/ruby-1.8.6.287/ruby-1.8.6-p287/ext/readline<br />
ruby extconf.rb<br />
make<br />
make install </code> [do this as root/admin]</p>
<p><strong>That should have worked, but it did not. I then turned to tech support (google.com) and found no good answer.  This should work since I did have both readline and readline-devel installed:<br />
</strong> <code><br />
rpm -qa | grep readline<br />
</code><br />
readline-devel-5.1-1.1<br />
readline-5.1-1.1</p>
<p><strong>I did notice that when I ran &#8220;make&#8221; and &#8220;make install&#8221;, it did not do anything.  I then decided to search for readline.h:</strong><br />
<code><br />
find / -name readline.h<br />
</code><br />
<strong>No result?(!)</strong></p>
<p><strong>So, I simply did:</strong><br />
<code><br />
yum remove readline-devel<br />
yum install readline-devel<br />
find / -name readline.h<br />
</code><br />
<strong>This the results were different:</strong><br />
&#8220;/usr/include/readline/readline.h&#8221;<br />
<strong>w00t!</strong></p>
<p><strong>I ran this again:</strong><br />
<code><br />
cd /usr/src/redhat/BUILD/ruby-1.8.6.287/ruby-1.8.6-p287/ext/readline<br />
ruby extconf.rb<br />
make<br />
make install </code></p>
<p><strong>Now everything works!!</strong></p>
<p>I hope you found this useful!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanft.com/2008/12/01/upgrading-to-ruby-186-on-red-hat/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My CyberpowerPC Experience Part 1</title>
		<link>http://www.sanft.com/2008/09/19/my-cyberpowerpc-buying-experience-part-1/</link>
		<comments>http://www.sanft.com/2008/09/19/my-cyberpowerpc-buying-experience-part-1/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 16:18:53 +0000</pubDate>
		<dc:creator>Ted Sanft</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[cyberpower]]></category>
		<category><![CDATA[cyberpowerpc]]></category>
		<category><![CDATA[originalposts]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://www.sanft.com/?p=89</guid>
		<description><![CDATA[I have read MANY advertisements for Cyberpowerpc.com, though I have never paid much attention to them.  I generally buy high-end Dell PC&#8217;s, or I build my own.  I read MaximumPC magazine religously and I was surprised to see the high marks they gave the CyberPower Gamer Ultimate SLI QUAD.  I currently have an aging home [...]]]></description>
			<content:encoded><![CDATA[<p>I have read MANY advertisements for Cyberpowerpc.com, though I have never paid much attention to them.  I generally buy high-end Dell PC&#8217;s, or I build my own.  I read MaximumPC magazine religously and I was surprised to see the high marks they gave the CyberPower Gamer Ultimate SLI QUAD.  I currently have an aging home built dual core E6700 oc&#8217;d to 3.06Ghz with an NVidia 8800Ultra.  One of the biggest issues I run into is drive performance, since I am running dual 400GB drives in a RAID-1 configuration.  My ASUS mobo basically sucks and the RAID performance really sucks.  I am going to turn this box into my new sever at home.</p>
<p>Back to my CyberpowerPC.com story.  I spent the last few weeks pricing out rigs and looking at many PC manufactures, I also looked at parts to build my own.  I came to the conclusion that I could buy a system from CyberpowerPC.com cheaper than I could build one, plus I get VIsta (I already have XP for a new PC if I need it) and some nice freebies.<span id="more-89"></span></p>
<p>Of course wanting to be sure, I jumped over to resellerratings.com and found very mixed results.  They have been improving over the last 6 months (7.8 ranking) and most of the issues seemed to revolve around tech support.  Since I am pretty handy with computers, and they do have a 30 day money back guarantee (I just have to pay return shipping).  I thought it would be an interesting experience to configure and buy a system and chronicle the purchase on my blog.</p>
<p>With the MaximumPC review in mind, I opted for the CyberPower Gamer Ultimate SLI Quad, however I stepped the configuration down a bit:</p>
<ul>
<li>CoolerMaster Cosmos S Gaming Full Tower 420W Case w/ Transparent Side Panel</li>
<li> (Quad-Core)Intel(R) Core(TM) 2 Quad Q9650</li>
<li>LG 20X DVD+/-R/+/-RW + CD-R/RW DRIVE DUAL LAYER (BLACK COLOR)</li>
<li>Round Cable Upgrade for Optical Drive</li>
<li>INTERNAL 12in1 Flash Media Reader/Writer (BLACK COLOR)</li>
<li>Asetek Liquid CPU Cooling System (Extreme Cooling Performance + Extreme Silent at 20dBA)</li>
<li>Extreme Performance (RAID-0) with 2 Identical Hard Drives (300GB (150GBx2) 10,000RPM)</li>
<li>MOTHERBOARD: (3-Way SLI Support) Asus Striker II Extreme nForce 790i SLI Mainboard)</li>
<li> 4GB (2GBx2) DDR3/1600MHz Memory Module OCZ-Gold</li>
<li>Microsoft(R) Windows Vista(TM) Home Premium w/ Service Pack 1 (64-bit Edition)</li>
<li>Professional Wiring for All WIRINGs Inside The System Chasis with High Performance Thermal Compound on CPU</li>
<li>1,000 Watts  Thermaltake ToughPower &#8211; Quad SLI Ready</li>
<li>HIGH DEFINITION ON-BOARD 7.1 AUDIO</li>
<li>600Watts PMPO Subwoofer Stereo Speakers</li>
<li>NZXT Sentry LX Aluminum High Performance Fan Control, Clock, &amp; Temperature Display</li>
<li>2 x NVIDIA GeForce 9800 GX2 1GB 16X PCI Express (EVGA Powered by NVIDIA)</li>
</ul>
<p>And the Freebies:</p>
<ul>
<li>FREE! (Age of Conan) Game</li>
<li>FREE! (Microsoft(R) Flight Simulator X Deluxe) Game</li>
<li>FREE! 4GB USB Pen Drive</li>
<li>FREE! CyberPower Multi-Purpose Carrying Briefcase</li>
<li>FREE! Cyberpower Unleash The Power T-Shirt</li>
</ul>
<p>All in all, a pretty nice rig.  I used coupon code SMARTCOMPU for a 5% discount, opted for two day FedEx, and with my Tennessee address, no tax.  This rig came in @ just about $3,064.</p>
<p>The system configuration tool was pretty decent (probably overly complicated for a newbie).  The order process was straightforward and I received my order confirmation in less than 60 seconds.  So far the experience has been good.</p>
<p>More later.</p>
<p><span style="text-decoration: underline;"><strong>UPDATE 9/20/08</strong></span></p>
<p>CyberpowerPC.com acknowledged my order this morning and gave me an estimated ship date of 10/3/08, which should have my new computer in my hands on 10/7/08.  The date is a bit longer than I had hoped for, but if they hit the promised date, I am okay with it.  I will update shipping status on this post until my new PC  is delivered.</p>
<p><span style="text-decoration: underline;"><strong>UPDATE 9/23/08</strong></span></p>
<p>Just to give me some heart failure, CyberpowerPC.com changed my order status from in-process to &#8220;Order Received&#8221; again. Since there is no description on the order page of what each status means, I called CyberpowerPC, hit &#8220;1&#8243; for sales and was immediately connected to sales. Apparently they are working on my order and the &#8220;in my hands date&#8221; is still tracking for 10/7. He did not have an explanation for why the status changed. It is somewhat confusing, but not a huge issue. On a side note, the charge for the system did hit my Credit Card this morning.</p>
<p><span style="text-decoration: underline;"><strong>Update: 09/23/08 12:05pm</strong></span></p>
<p><strong> </strong></p>
<p>My status has changed back to the in-process screen.  I do not know if my call caused that to happen.</p>
<p><span style="text-decoration: underline;"><strong>UPDATE 10/9/08</strong></span></p>
<p>My new PC was supposed to ship 10/3/08.  As of today (10/9/08) the status still says expected ship date 10/3/08.  No additional information.  It is crazy that their order status screen (designed to keep people like me from calling them) is not smart enough to update.</p>
<p>This afternoon I called CP and rang directly to Steve.  Steve was puzzled by WHY my order had not moved and put me on hold.  Steve came back and let me know that my processor (Q9650) had been back ordered and they just received shipment today.  He stated that they were working on my PC and it would ship Friday or Monday at the latest.  He immediately apologized and offered me a 5% discount on my purchase (wow!).</p>
<p>Minutes after the call to Steve, Steve called me back and let me know that since I already had used the 5% off coupon code, they were unable to offer me an additional 5% discount, however he would credit me $30 once I received my system.  No big deal to me, since I was calling for a status and I was not looking for a discount.</p>
<p>However, I am interested in how they can charge me in full for a system they have not started to build.  I will ponder that one for a bit (while I am waiting for my system to ship).  So far, their order status frontend is less than elegant.  The jury remains out on CP, however Steve was very polite and responsive.</p>
<p><strong><a href="http://www.sanft.com/2008/10/18/my-cyberpowerpc-experience-the-review-part-1/" target="_self">Now read part 2 ,the unpacking HERE</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanft.com/2008/09/19/my-cyberpowerpc-buying-experience-part-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ode to WordPress</title>
		<link>http://www.sanft.com/2008/09/12/ode-to-wordpress/</link>
		<comments>http://www.sanft.com/2008/09/12/ode-to-wordpress/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 20:35:18 +0000</pubDate>
		<dc:creator>Ted Sanft</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[originalposts]]></category>
		<category><![CDATA[godaddy.com]]></category>
		<category><![CDATA[muelface.com]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.sanft.com/?p=77</guid>
		<description><![CDATA[I have really enjoyed my blogging experience to date.  I have installed WordPress many times in the past, but someone else set the site up.  When my friend Matt built my hockey team website (tnt-hockey.com) with WordPress, I figured it was time to learn how to USE  WordPress (You know this if you have been [...]]]></description>
			<content:encoded><![CDATA[<p>I have really enjoyed my blogging experience to date.  I have installed <a href="http://wordpress.org" target="_blank">WordPress</a> many times in the past, but someone else set the site up.  When my friend Matt built my hockey team website (<a href="http://tnt-hockey.com">tnt-hockey.com</a>) with WordPress, I figured it was time to learn how to USE  WordPress (You know this if you have been following the site for more than 9 days!).</p>
<p>Today I was chatting with Matt and he was complaining about how Godaddy&#8217;s web hosting service kind of sucked for WordPress.  Things like ftp uploads did not set permissions correctly on his files and permalink redirects taking 3+ hours to change.</p>
<p>I have a GoDaddy virtual server running <a href="http://centos.org" target="_blank">CentOS</a> (which effectively is my own Linux server on the Internet).  I offered to let Matt use my server for his blog.  I did this because he is a friend; it will not cost me anything; he turned me on to WordPress; and he did build a pretty awesome hockey site.<span id="more-77"></span></p>
<p>From the moment Matt said okay, I have:</p>
<ul>
<li>Added a directory for his new site (<a href="http://muelface.com" target="_blank">muelface.com</a>)</li>
<li>Created a blank database for WordPress</li>
<li>Gaven Matt the IP address of the server</li>
<li>Configured Apache for Matt&#8217;s site</li>
<li>Downloaded the latest version of WordPress</li>
<li>Dropped WordPress to the appropriate directory</li>
<li>Connected to muelface.com admin screen, and configured the database</li>
</ul>
<p>This entire process took less than 4 minutes.  WordPress was up and rockin, waiting for Matt to put his theme in and blog his first post!</p>
<p>I want to share with all of you just how awesome WordPress is, GoDaddy virtual servers are, and give Matt a little motivation to get that theme in place and get his first post up SOON.  <img src='http://www.sanft.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Good luck Matt!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanft.com/2008/09/12/ode-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Iphone 3G vs. AT&amp;T Tilt</title>
		<link>http://www.sanft.com/2008/09/06/iphone-3g-vs-att-tilt/</link>
		<comments>http://www.sanft.com/2008/09/06/iphone-3g-vs-att-tilt/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 20:14:28 +0000</pubDate>
		<dc:creator>Ted Sanft</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[originalposts]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[at&t]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[tilt]]></category>

		<guid isPermaLink="false">http://www.sanft.com/?p=54</guid>
		<description><![CDATA[I admit it, I am a phone geek.  I love my phone and the accessibility a well designed phone gives me and the productivity lifts I enjoy from said phone.  I have been using an AT&#38;T Tilt aka: 8925 aka: HTC Kaiser.  The stock windows mobile 6.0 ROM is really quite terrible, but with a [...]]]></description>
			<content:encoded><![CDATA[<p>I admit it, I am a phone geek.  I love my phone and the accessibility a well designed phone gives me and the productivity lifts I enjoy from said phone.  I have been using an AT&amp;T Tilt aka: 8925 aka: HTC Kaiser.  The stock windows mobile 6.0 ROM is really quite terrible, but with a custom cooked WM 6.1ROM, the phone is quite excellent.  It does just about everything I need it to do.  With the new Opera Mobile Browser, the browsing functionality is more akin to the Iphone.</p>
<p>6 Weeks ago, my boss decided he needed a new phone.  While he was happy with his Samsung Blackjack, he wanted an Iphone.  I ordered him one and went ahead and ordered one for myself.  My IT guys support everyone else, but my boss views me as his own personal IT person, so I figured I might as well be familiar with the device and I thought it would be nice to eliminate the need to carry my trusty Ipod Nano.  Here is what I found:</p>
<p>Pros:</p>
<ul>
<li>The web browser is totally AWESOME!  Opera is nice, but I never have experienced such seamless web browsing from a mobile device.</li>
<li>The new Exchange plug-in is pretty, reading email and displaying attachments is pretty darned slick.</li>
<li>Once you get the hang of the layout, it is fairly easy to navigate the phone.</li>
</ul>
<p>Cons:</p>
<ul>
<li>You MUST have Itunes to activate your Iphone (We have a corporate account, so we did not need to go to an AT&amp;T or Apple store).  This is a pain in the butt in a corporate environment.  There really are no management tools for Itunes, so I doubt these phone will make it across our corporation.</li>
<li>No wonder there is a program called &#8220;jail break&#8221;.  I felt like I was in jail using this phone!  There are limited applications (most a not free), you can not edit Word documents, Excel files, etc. etc.</li>
<li>Notes do not sync with Outlook, that totally sucks</li>
<li>The phone crashes more often than my Windows Based phone (WOW!!)</li>
<li>The Ipod functionality IMHO sucks, I prefer the interface of the wheel over the touch interface.</li>
<li>I could find no functional voice dialing option.  I love Microsoft Voice Command, it works in conjunction with my Motorola H700 Bluetooth head set seamlessly (until the H700 died last week!)</li>
<li>You cannot add attendees to a meeting you set up on your Iphone (total suck)</li>
</ul>
<p>All and all, I liked the Iphone, but not enough to keep it.  If you want a read only device that displays thinks beautifully and you do not need a mobile computing platform, the Iphone is the bomb.  If you need a mobile computing platform, the Tilt with a custom ROM is AWESOME. I can recommend a ROM if you want!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanft.com/2008/09/06/iphone-3g-vs-att-tilt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
