<?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>Transcending Thought</title>
	<atom:link href="http://www.transcendingthought.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.transcendingthought.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 02 Jan 2012 20:43:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Fedora 16 on My Dell Studio 1557 Laptop</title>
		<link>http://www.transcendingthought.com/2012/01/fedora-16-on-my-dell-studio-1557-laptop/</link>
		<comments>http://www.transcendingthought.com/2012/01/fedora-16-on-my-dell-studio-1557-laptop/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 17:46:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Mobile Computing]]></category>
		<category><![CDATA[ati]]></category>
		<category><![CDATA[battery]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sleep]]></category>

		<guid isPermaLink="false">http://www.transcendingthought.com/?p=67</guid>
		<description><![CDATA[After getting a virus for the first time in 6+ years, and a failed stick of RAM, I decided it was time to move away from Windows and on to Linux. I&#8217;ve been using RedHat based distros for about 10 years in a server capacity, but never felt it was really ready to take over [...]]]></description>
			<content:encoded><![CDATA[<p>After getting a virus for the first time in 6+ years, and a failed stick of RAM, I decided it was time to move away from Windows and on to Linux. I&#8217;ve been using RedHat based distros for about 10 years in a server capacity, but never felt it was really ready to take over my desktop. I&#8217;ve used Ubuntu a few times, and regularly use SuSE at work, so I certainly have a high comfort level. After seeing the features in changes and F16, I decided to give it a shot (since I had to do a fresh OS install anyway).<span id="more-67"></span></p>
<p>For the most part, everything worked great. There were even a few things that wouldn&#8217;t work that did in Fedora. For example, I have a 3G card (bought it cheap for GPS) which there were no 64-bit Windows 7 drivers for, making it useless. I also have a Creative Extigy sound card. I wanted to be able to hook up my PS3 and laptop simultaneously to my Logitech Z5300e 5.1 speakers (without always having the laptop on, the main draw of the standalone Extigy). Unfortunately, again, there were no Windows 7 64-bit drivers for it. Because of this, I had HDMI running to my monitor, then analog audio from my monitor to the line in of the Extigy. It was a hack, but it worked. Both devices were detected and working immediately in Fedora.</p>
<p>There were, however, a few snags that made it rough to stomach the transition.</p>
<h2>No Sleep Mode</h2>
<p>The first thing I noticed, was that I couldn&#8217;t put my laptop to sleep. If I did, when it resumed, I got a dead screen. I couldn&#8217;t even switch to a terminal, I had to force it to power off. There are tons of reports of this phenomenon on various laptop models all over the web. Finally, I found a bug in RedHat&#8217;s Bugzilla which mentioned adding <del>&#8220;pci=nocrs&#8221;</del> &#8221;hpet=disable&#8221; to the kernel command line. Worked like a charm. To add this, you can run:</p>
<pre>vim /etc/default/grub</pre>
<p>Add the options <del>&#8220;pci=nocrs&#8221;</del> &#8221;hpet=disable&#8221; to the end of the GRUB_CMDLINE_LINUX entry, so your file looks like this:</p>
<pre>GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Fedora"
GRUB_DEFAULT=saved
GRUB_CMDLINE_LINUX="rd.md=0 rd.lvm=0 rd.dm=0  KEYTABLE=us quiet SYSFONT=latarcyrheb-sun16 rhgb rd.luks=0 LANG=en_US.UTF-8 hpet=disable</pre>
<p>Reboot, and you&#8217;re good to go.</p>
<h2>Horrible Battery Life</h2>
<p>The next big issue was the battery life. I was accustomed to anywhere between 4 and 4 1/2 hours under Windows; Fedora gave me 2 to 2 1/2 out of the box. This was unacceptable. After digging, I found that it all boiled down to the video drivers. The open source ATI drivers work flawlessly for what they&#8217;re intended, displaying video. However, their power management abilities are sub-par to say the least. Getting the ATI proprietary drivers installed wasn&#8217;t exactly a walk in the park though. First, you&#8217;ll have to make sure the RPMFusion repository is configured (I won&#8217;t repeat their directions, check it our <a href="http://rpmfusion.org/Configuration">Here</a>).</p>
<p>Next, you&#8217;ll need to run:</p>
<pre>yum install akmod-catalyst-11.11 xorg-x11-drv-catalyst-libs xorg-x11-drv-catalyst-11.11-2</pre>
<p>You&#8217;ll need to add a few kernel options as well to make things work:</p>
<pre>vim /etc/default/grub</pre>
<p>Add the options <del>&#8220;pci=nomsi&#8221; and</del> &#8220;nomodeset&#8221; to the end of the GRUB_CMDLINE_LINUX entry, so your file looks like this:</p>
<pre>GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Fedora"
GRUB_DEFAULT=saved
GRUB_CMDLINE_LINUX="rd.md=0 rd.lvm=0 rd.dm=0  KEYTABLE=us quiet SYSFONT=latarcyrheb-sun16 rhgb rd.luks=0 LANG=en_US.UTF-8 hpet=disable nomodeset</pre>
<p>Now we&#8217;re almost done. The last tidbit is to allow a few options through SELinux. Without this, GDM will simply crash before giving a login prompt. I&#8217;m not a huge fan of playing with SELinux stuff, so I just set it to permissive mode:</p>
<p>vim /etc/selinux/config</p>
<p>And change the option for SELINUX to permissive, your file should look like this:</p>
<pre># This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - No SELinux policy is loaded.
SELINUX=permissive
# SELINUXTYPE= can take one of these two values:
#     targeted - Targeted processes are protected,
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted</pre>
<p>Now reboot and you&#8217;re all set. You will see a little slowness and artifacts in the new Gnome 3 Shell, and it may crash every few hours (takes less than 2 seconds to reinitialize, and no other applications are affected), but I think it&#8217;s a fair tradeoff for an extra 2 hours of battery life. If anyone is interested in setting the SELinux permission appropriately, please let me know and I&#8217;ll update the post. If I get bored one night, I may figure it out myself and re-post <img src='http://www.transcendingthought.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>A Note on Edits: </strong>The pci=nomsi isn&#8217;t required after setting SELinux to permissive. The pci=nocrs does not work with the proprietary ATI drivers. I guess I posted too soon before full testing :/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transcendingthought.com/2012/01/fedora-16-on-my-dell-studio-1557-laptop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Universal Wall Wart</title>
		<link>http://www.transcendingthought.com/2011/08/universal-wall-wart/</link>
		<comments>http://www.transcendingthought.com/2011/08/universal-wall-wart/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 04:18:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[ATX]]></category>
		<category><![CDATA[PSU]]></category>

		<guid isPermaLink="false">http://www.transcendingthought.com/?p=56</guid>
		<description><![CDATA[I finished this project about a month ago, and decided it was time to share with the world. I noticed while I was consolidating my technology that even after getting rid of more than half of what I had, there was still a nasty little problem plaguing my desk&#8230; a jungle of cabling, all attached [...]]]></description>
			<content:encoded><![CDATA[<p>I finished this project about a month ago, and decided it was time to share with the world. I noticed while I was consolidating my technology that even after getting rid of more than half of what I had, there was still a nasty little problem plaguing my desk&#8230; a jungle of cabling, all attached to wall-warts. It had gotten so bad, in fact, that almost an entire UPS was filled with them, plus a few outlets in the second, plus a few on a power strip.</p>
<p>It was ugly, a mess, and impossible to work with. I was constantly unplugging one to plug in another. Today this device needed to be charged, that device was needed for a project or another just for fun. Finally, I decided to do something about it. I got the clever idea to use an old (but only lightly used) ATX power supply. This had a high chance of success, since almost every device had either a 5v or 12v adapter. It didn&#8217;t take long either, and it accomplished a few goals:</p>
<ol>
<li>Cleaner; no more cabling jungle&#8230;<br />
Every device which <em>was</em> using a wall wart <em>is</em> now run from the power supply.</li>
<li>More efficient&#8230;</li>
<ol>
<li>No more vampire-draw (switching power supplies only draw [slightly more than] what is necessary).</li>
<li>More efficient (cheap small switching power supplies typically have lower efficiencies than ATX PSUs).</li>
<li>Expandable (even with all devices running under full load, the ATX PSU has plenty of breathing room for more devices).</li>
</ol>
</ol>
<div>Here&#8217;s a quick rundown of what this bad boy is powering:</div>
<table border="1" cellspacing="0" cellpadding="3">
<tbody>
<tr>
<td>WRT610N Router</td>
<td>12v</td>
<td>2.0a Max</td>
</tr>
<tr>
<td>4-to-2 HDMI Matrix</td>
<td>5v</td>
<td>2.0a Max</td>
</tr>
<tr>
<td>Creative Extigy Sound Card</td>
<td>12v</td>
<td>1.0a Max</td>
</tr>
<tr>
<td>Belkin Multi-TT USB Hub</td>
<td>5v</td>
<td>3.5a Max</td>
</tr>
<tr>
<td>PS3 Controllers</td>
<td>5v</td>
<td>1.0a Max</td>
</tr>
</tbody>
</table>
<p>This is a grand total of 68.5w:</p>
<ul>
<li>12v 3.0a Max (PSU can push 9a)</li>
<li>5v 6.5a Max (PSU can push 20a)</li>
</ul>
<div>For finishing touches, I added a switch to activate the PSU, an LED to indicate power status, and 2 USB ports scavenged from a PCI bracket motherboard adapter. I used 220 Ohm resistors on the data pins (lets USB devices know they can safely draw 500ma). It was all pretty simple, just some simple wiring, a few solder joints and a little patience. Here are some pictures, enjoy!!!
</div>
<div><a href="http://www.transcendingthought.com/wp-content/uploads/2011/08/2011-07-15_20-57-43_45.jpg"><img class="alignnone size-medium wp-image-48" title="Universal Wall Wart (top view)" src="http://www.transcendingthought.com/wp-content/uploads/2011/08/2011-07-15_20-57-43_45-300x169.jpg" alt="" width="300" height="169" /></a></div>
<div>
Here&#8217;s a top-view. I used a spare 20-24 pin ATX adapter so I wouldn&#8217;t have to cannibalize the PSU. The terminal strip allows easily adding more lines if necessary. I stuck with the color coding of Yellow for 12v, and Red for 5v. The black electrical tape covers the resistors for the USB ports.
</div>
<div><a href="http://www.transcendingthought.com/wp-content/uploads/2011/08/2011-07-15_20-57-52_709.jpg"><img class="alignnone size-medium wp-image-49" title="Universal Wall Wart (usb ports)" src="http://www.transcendingthought.com/wp-content/uploads/2011/08/2011-07-15_20-57-52_709-300x169.jpg" alt="" width="300" height="169" /></a></div>
<div>
Here&#8217;s a front-view. I used a nibbler to cut the holes for the USB ports. The switch fit perfectly into one of the holes in the cube. A quick hole was drilled and a panel mount used to secure the power LED.
</div>
<div><a href="http://www.transcendingthought.com/wp-content/uploads/2011/08/2011-07-15_20-57-58_764.jpg"><img class="alignnone size-medium wp-image-50" title="Universal Wall Wart" src="http://www.transcendingthought.com/wp-content/uploads/2011/08/2011-07-15_20-57-58_764-300x169.jpg" alt="" width="300" height="169" /></a></div>
<div>
Here it is finished. I picked up some plugs at Radio Shack to connect the devices (router, HDMI matrix, sound card and hub).
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.transcendingthought.com/2011/08/universal-wall-wart/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Split-Loom Cabling Project</title>
		<link>http://www.transcendingthought.com/2010/09/split-loom-cabling-project/</link>
		<comments>http://www.transcendingthought.com/2010/09/split-loom-cabling-project/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 05:12:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Cabling]]></category>
		<category><![CDATA[Organize]]></category>

		<guid isPermaLink="false">http://www.transcendingthought.com/?p=31</guid>
		<description><![CDATA[If you know me, you know I have enough electronic gadgets to kill a cow. After a while though, the rats nests of wires hanging all over gets annoying. I decided to buy a bunch of split-loom tubing to organize the vast network of cables floating around my desk. Here&#8217;s the result: Here&#8217;s the PlayStation [...]]]></description>
			<content:encoded><![CDATA[<p>If you know me, you know I have enough electronic gadgets to kill a cow. After a while though, the rats nests of wires hanging all over gets annoying. I decided to buy a bunch of split-loom tubing to organize the vast network of cables floating around my desk. Here&#8217;s the result:</p>
<p><a href="http://www.transcendingthought.com/wp-content/uploads/2010/09/2010-09-20_00-52-03_61.jpg"><img class="alignnone size-medium wp-image-30" title="PS3 Split Looming" src="http://www.transcendingthought.com/wp-content/uploads/2010/09/2010-09-20_00-52-03_61-300x169.jpg" alt="" width="300" height="169" /></a></p>
<p>Here&#8217;s the PlayStation 3. From left-to-right, the power, optical audio, ethernet and HDMI cables fit perfectly into a 3/8&#8243; tube.</p>
<p><a href="http://www.transcendingthought.com/wp-content/uploads/2010/09/2010-09-20_00-51-42_889.jpg"><img class="alignnone size-medium wp-image-29" title="External Drive Split Loom" src="http://www.transcendingthought.com/wp-content/uploads/2010/09/2010-09-20_00-51-42_889-300x169.jpg" alt="" width="300" height="169" /></a></p>
<p>My &#8220;Modified MyBook&#8221;&#8230; a 1/4&#8243; split loom tube worked great for the power and USB cables.</p>
<p><a href="http://www.transcendingthought.com/wp-content/uploads/2010/09/2010-09-20_00-51-19_794.jpg"><img class="alignnone size-medium wp-image-28" title="Monitor and Speaker Split Looming" src="http://www.transcendingthought.com/wp-content/uploads/2010/09/2010-09-20_00-51-19_794-300x169.jpg" alt="" width="300" height="169" /></a></p>
<p>This was the biggest improvement. The blue and black loose cables are the ethernet and HDMI from the PS3 (going to the monitor and router). The &#8220;conduit&#8221; (as I like to call them) on the bottom holds the wires for the center, left and right speakers, as well as the control pod; all routed down to the amp on sub (Logitech Z-5300e 5.1 THX). The &#8220;conduit&#8221; on the top has the power and DVI cables from the monitor, and USB cables from the remote transceiver and webcam. Altogether, 8 cables combined into 2 (going to 2 locations)&#8230; MUCH cleaner than before!</p>
<p>Not pictured, are the one which has the line and power cables to my phone, as well as the one which has USB and power to my scanner.</p>
<p>The velcro cable ties were used to hold the tubing along the rails of the desk. I&#8217;m very happy with the way this all turned out <img src='http://www.transcendingthought.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.transcendingthought.com/2010/09/split-loom-cabling-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day one with my Droid-X</title>
		<link>http://www.transcendingthought.com/2010/07/day-one-with-my-droid-x/</link>
		<comments>http://www.transcendingthought.com/2010/07/day-one-with-my-droid-x/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 03:38:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile Computing]]></category>
		<category><![CDATA[droid-x]]></category>
		<category><![CDATA[Motorola]]></category>
		<category><![CDATA[swype]]></category>

		<guid isPermaLink="false">http://www.transcendingthought.com/2010/07/day-one-with-my-droid-x/</guid>
		<description><![CDATA[My black berry storm served me well for a year and a half, but as soon as I heard about the Droid-X,I knew it was time for a change. Being the tech geek I am, nothing less than having it on launch day would do. Less than a day in I can already tell I [...]]]></description>
			<content:encoded><![CDATA[<p>My black berry storm served me well for a year and a half, but as soon as I heard about the Droid-X,I knew it was time for a change.</p>
<p>Being the tech geek I am, nothing less than having it on launch day would do. Less than a day in I can already tell I made the right choice.</p>
<p>I read a lot of complaints that the phone is too big, but I have to disagree. The big screen makes reading a breeze.It may be bigger than most phones, but I don&#8217;t find it awkward at all.</p>
<p>Being my first android phone I don&#8217;t have a point of reference from previous versions, but 2.1 is an awesome experience.&#8221;Experience&#8221; really is the only way to describe it. Easy to use and navigate, well integrated and snappy, it makes my previous phone seem like a dinosaur.</p>
<p>The camera works well, and the on phone editing works great, but out of all of the effects and features, I was a little disappointed to see the red eye reduction wasn&#8217;t in the arsenal. This is especially disappointing considering the flash has a serious red eye issue.</p>
<p>My favorite piece by far though had to be the inclusion of swype. I got pretty good  over the years with multi touch keyboards, but after a few hours of swyping, I dont think I could ever go back. As proof, I&#8217;m writing this article exclusively with swype. I almost feel like its faster than traditional typing on a full size keyboard, which is a complement from someone who pounds out 65 WPM.</p>
<p>I&#8217;ll surely spend a lot of time on this little bad boy over the next few days, I&#8217;ll post another update once I&#8217;ve fully settled in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transcendingthought.com/2010/07/day-one-with-my-droid-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Netbook Remix Karmic Koala&#8230; a few days in</title>
		<link>http://www.transcendingthought.com/2010/01/ubuntu-netbook-remix-karmic-koala-a-few-days-in/</link>
		<comments>http://www.transcendingthought.com/2010/01/ubuntu-netbook-remix-karmic-koala-a-few-days-in/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 03:30:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile Computing]]></category>
		<category><![CDATA[NetBook]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.transcendingthought.com/?p=13</guid>
		<description><![CDATA[My initial impressions of the latest Ubuntu Netbook Remix, Karmic Koala, were pretty good. A few days later, the impression has gotten better. Being a hardcore command-line junkie, I can still appreciate an Operating System that gives me Mac usability without the overpriced hardware and overly cutesy  interface. Codecs don&#8217;t come pre-installed, but are readily [...]]]></description>
			<content:encoded><![CDATA[<p>My initial impressions of the latest Ubuntu Netbook Remix, Karmic Koala, were pretty good. A few days later, the impression has gotten better. Being a hardcore command-line junkie, I can still appreciate an Operating System that gives me Mac usability without the overpriced hardware and overly cutesy  interface.</p>
<p>Codecs don&#8217;t come pre-installed, but are readily available for every major format in the base packages; including the official Adobe Flash player, and Sun Java plugin. Silverlight/Moonlight is nowhere to be found using the Ubuntu Software Center, but a quick browse to the <a href="http://go-mono.com/moonlight/" target="_blank">Moonlight</a> project page will give you a quick 1-click install for FireFox.</p>
<p>Although not, it should have been overly-obvious to me that the &#8220;Mouse&#8221; control allows you to enable touchpad scrolling (including two-finger scrolling).</p>
<p>Integration of  Empathy and Evolution into the navigation bar at the top along-side the other nice icons (wireless signal, battery life, clock) give it a smartphone meets full size computing feel. It puts you right into a usability comfort zone for mobile computing.</p>
<p>The installer works great, and the automatic resizing of the Windows partition and Grub dual-boot configuration was a breath of fresh air from installers of Linux past.</p>
<p>Despite what other may say, OpenOffice is a great [freee] alternative to Microsoft Office, and it has more than enough features for mobile users.</p>
<p>Finally, like most Linux distributions, although it may seem bloated by the dependency hell you suffer whenever you install the smallest utility, the base install, everything I&#8217;ve mentioned, as well as the development set I have installed (NetBeans, MonoDevelop, Eagle and a full LAMP stack) still weigh in at a miniscule 3.8GB.</p>
<p>I&#8217;m running all of this on the stock hardware (Atom N270 &amp; 1GB of RAM)&#8230; so don&#8217;t think you have to drop a stack of cash upgrading your netbook to make it a usable system (unless you&#8217;re afraid of trying Linux because you realize you may actually like it, and limit yourself to Windows).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transcendingthought.com/2010/01/ubuntu-netbook-remix-karmic-koala-a-few-days-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netbook Review: ASUS EEE 1000HEB &amp; Ubuntu Netbook Remix</title>
		<link>http://www.transcendingthought.com/2009/12/netbook-review-asus-eee-1000heb-ubuntu-netbook-remix-2/</link>
		<comments>http://www.transcendingthought.com/2009/12/netbook-review-asus-eee-1000heb-ubuntu-netbook-remix-2/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 16:06:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile Computing]]></category>
		<category><![CDATA[ASUS EEE]]></category>
		<category><![CDATA[NetBook]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.transcendingthought.com/?p=7</guid>
		<description><![CDATA[I finally took the plunge and bought a NetBook, and decided to share my thoughts and experiences in the first 24 hours. I&#8217;d like to start with a few notes on NetBooks in general. Personally, I knew what I was getting in to. I had seen them in the stores, people using them, I knew [...]]]></description>
			<content:encoded><![CDATA[<p>I finally took the plunge and bought a NetBook, and decided to share my thoughts and experiences in the first 24 hours. I&#8217;d like to start with a few notes on NetBooks in general.</p>
<p>Personally, I knew what I was getting in to. I had seen them in the stores, people using them, I knew how small they are. You can&#8217;t truly appreciate their compact size though until you use one. I like the ultra-portable form factor; in it&#8217;s sleeve, it is smaller than a high-school text book. Many people though will find the screen and keyboard much too small for comfort (check eBay, that&#8217;s one of the largest reasons for individual sellers parting with them [that I've seen]).</p>
<p>Weight-wise, it&#8217;s nice not carrying around the lead brick that is my laptop. One gotcha however, is that the NetBook isn&#8217;t overly stable. I set it down on my recliner (which is only on a few degree incline), and it flipped over almost immediately. This isn&#8217;t a major issue, just make sure you don&#8217;t sneeze too hard in its direction, it may end up on the floor.</p>
<p>As for some 1000HEB specifics; The battery life is great. Although it would have been nice to get the 1000HE with 50% more life, I&#8217;ve found I get nearly the rated life out of the battery just doing general web surfing (which is what it&#8217;s designed to do). I must point out though, that I&#8217;ve gotten much better life under Ubuntu than Windows. In Windows, I wasn&#8217;t able to squeeze more than 5 hours, Ubuntu on the other hand, gave me a solid 6 with the screen at almost half-brightness and the wireless turned on.</p>
<p>The LCD backlit display is superb, colors are vivid and blacks are deep. I definitely couldn&#8217;t bring myself to buy another CCFL backlit display again. I like the matte finish on the 1000HEB. My gateway tablet has the gloss finish, and it&#8217;s nice to not have that incredible glare.</p>
<p>Input devices. SO much to say about input devices. Anyone accustomed to a full sized keyboard will no-doubtedly agree with me that getting ussed to a reduced-size keyboard is a little harsh. That being said, the 92% sized keyboard on the EEE is very useable with some practice, I couldn&#8217;t imagine one of the NetBooks sporting only 85%; it would be well outside of my comfort zone.</p>
<p>The chiclet keys are nice, I think they&#8217;re much better than the standard beveled style, especially for this form factor. The right-shift, however, is too small, and I find myself occassionally arrowing-up instead. Speaking of arrows, the arrow keys are the smallest on the keyboard, and difficult to get used to. So far, they&#8217;re probably my biggest complaint about this little guy.</p>
<p>My last hardware note is the touchpad. The pad itself has a good feel, and supports multi-touch. The buttons however, are very stiff, and a little difficult to work with. I like feedback for buttons, but these are a bit much.</p>
<p>Overall, the biggest thing to consider will ultimately be the software. I initially booted to the fresh image of Windows XP SP 3. XP has been a little outdated for my tastes for a while, and the fact that it still had Internet Explorer 6 out of the box, made it feel a  little antiquated. 52 updates later, and I had IE 8 and an up-to-date 8.5 year old OS. All of that aside, it felt a little sluggish. Screen re-draws weren&#8217;t exactly fluid, and there was a bit more stuttering than I could handle. I know  the Atom is a  low-power CPU, but the performance in the first hour on Windows just wasn&#8217;t to my liking.</p>
<p>I decided to give Ubuntu NetBook Remix a try. I&#8217;m no stranger to Linux, I have an OpenSUSE desktop, CentOS firewall, and use SLES and RHEL daily at work. Despite that, I don&#8217;t think anyone should hesitate to try this spin. Even though I&#8217;m more of a command-line kinda guy, I like the interface. It&#8217;s very user-friendly, responsive, and the package selection is well chosen. Clearly, this was designed for NetBook use.</p>
<p>All  of my hardware was recognized immediately (Wireless card, webcam, audio). I especially like the always-maximized environment. Although 1024&#215;600 is a great resolution for such a small screen, it is still a small screen, and working with windows in such an environment is cumbersome, and difficult to read.</p>
<p>UNR also has an option to install all of the little goodies necessary for a true web experience without hassle. Within 15 minutes I had the Adobe Flash player (you can choose open-source alternatives), as well as the Sun Java Runtime Environment and all of the popular CODECs (MP3, WMA/V, etc.) installed with point-and-click ease. It also comes with FireFox 3.5; a browser not only released this year, but in this decade.</p>
<p>Despite less than 10 hours of use, I could write a novella about my experience so far. I think I&#8217;ve given enough information though that anyone out there could make an edicated decision about whether or not a NetBook is right for them, and which OS to choose.</p>
<p>ASUS EEE 1000HEB Pros:</p>
<ul>
<li>Lightweight</li>
<li>Good Battery Life</li>
<li>Good keyboarding experience</li>
<li>Excellent display</li>
<li>Stays cool (you won&#8217;t be sterilized having this on your lap)</li>
</ul>
<p>ASUS EEE 1000HEB Cons:</p>
<ul>
<li>Ships with Window XP &amp; Internet Explorer 6</li>
<li>No BlueTooth</li>
<li>Switching OS isn&#8217;t straightforward (must disable boot booster in BIOS)</li>
<li>Touchpad buttons are VERY stiff, takes getting used to</li>
</ul>
<p>Ubuntu NetBook Remix Pros:</p>
<ul>
<li>Great hardware support</li>
<li>Well laid-out User Interface</li>
<li>Great package selection out of the box and for add-ons</li>
<li>Better power management than Windows XP</li>
<li>Responsive</li>
<li>And so on&#8230;</li>
</ul>
<p>Ubuntu NetBook Remix Cons:</p>
<ul>
<li>None yet (considering how critical I can be, that&#8217;s high praise)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.transcendingthought.com/2009/12/netbook-review-asus-eee-1000heb-ubuntu-netbook-remix-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

