Skip to main content

iPad versus Thinkpad Tablet 1838

Initial thoughts:
My first-generation iPad is a much better device.  Apple got it right.  It does everything so right that you don't even notice, until you try something else... and now that I have tried something else, I'm pretty disappointed.  Almost to the point where I will "eat" the $105 restocking fee to send the Thinkpad back.

What do I mean by "you don't even notice"?  Take a pencil, for instance.  It basically just works.  Remember those stupid foam-rubber things that people would put on the pencil to make a futile attempt to improve.. the pencil??? Well, I consider the iPad to be a pencil.  It performs perfectly for doing what you would expect it to do.  Any additional functionality seems to be unnecessary and simply over-complicates things... (not sure if the phrase "simply over-complicate" even makes sense...)

Quality:
There is no question regarding the difference in quality between the 2 devices.  The iPad's simple design, metal back plate and quality screen are no match for the seemingly cheap construction of the Thinkpad and the plastic case it has.

Connector:
I am not a huge fan of the proprietary "iPad/iPhone connector", but I have been using that connector for years now and NEVER had an issue.  I am already worried about the micro-USB connector for the TPT.  One advantage the TPT has over the iPad is the number of external interfaces/connectors.  The TPT has a micro-USB, full-size USB, dock-port, SD card slot.  Also - the SD card is simply a device - there doesn't have be particular folders, etc... like you might expect if you were using it with a camera, or something.

Interface:
I don't like the TPT Android interface nearly as much as IOS.  It seriously bothers me to say it... but IOS is just simple.  Finding applications and setting up your "desktop" is simple.  The interface on the TPT Android is so busy I am left wondering where I am supposed to go to find things, change settings, etc...  I uninstalled a free/demo app recently because I bought the full version and now I have a stale icon on the desktop that I can't use, nor can I figure out how to remove the icon.
The TPT has a Stylus that actually works really well.  But when you are using it, you realize how much you would rather NOT be using it and to have an interface where a stylus would not be possible.
The TPT keyboard would often lose sensitivity to finger touch and would require the stylus.


File Management:
This was essentially the sole reason I had purchased an Android rather than another iPad.  What a monumental mistake that was.  I bought the 64 GB version so I could copy all of my documentation, project plans, etc.. to the device so I could reference them practically any time.  I also installed a 32 GB SD card.  At this point I am left using "Docs to Go" to access the files in a horrible application-specific browser.  I am still unclear exactly how I would put any audio files on the device and worse yet how I would play them.  I have attempted to use WinAmp (due to familiarity with the Windows product) and that crashes every time I try to use it.

Summary:
if you want a $700 web browser tablet, this device is great.  Otherwise, the Lenovo Thinkpad Tablet is cumbersome, confusing and performs poorly.
At this point I am extremely disappointed, somewhat saddened and growing angry with the whole experience.  I absolutely LOVE my Lenovo Thinkpad T520.  The tablet, however, is lacking and it will take quite a bit to win me over.

Cons:
  • You can't actually touch/test/etc... a Thinkpad tablet.  There are no retailers that carry them in stock.
  • 802.11n doesn't seem to work if you are connecting to an Apple Airport Extreme.  The 'n' capability may not work at all.  I don't have a network to attempt to attach to other than my Airport - so, it's difficult to say what the problem might be.  UPDATE: It turns out that I needed an education.  I had assumed that ANY 'n' device was also a 5GHz device.  Apparently that is NOT the case and I believe my Aiport Extreme uses 5 GHz for the 'n' network.
  • The thing took around 3 weeks to be delivered.  Fairly unacceptable for anything nowadays, let alone a fairly standardized device like a tablet (i.e. very little customization is possible).
Update:  After putting a LOT of thought/effort into making my Lenovo behave more like my iPad, I'm starting to actually like the device.  The "ease of use" is not on par with the iPad, but I think if you are patient enough and like to tinker, the Thinkpad Tablet is a better option.  I suppose I had ignored my ambition to tinker after I bought an iPhone, iPad and MacBook pro... it's fairly interesting that all the products created and sold by a person who many consider to be the greatest innovator of recent times.. completely removes that tendency from it's users.

Comments

Popular posts from this blog

RHN Satellite Server (spacewalk) repomd.xml not found

"repomd.xml not found" If you add a channel, or if your RHN cache gets corrupted, and one of your guests complains that it cannot find repomd.xml for jb-ews-2-x86_64-server-5-rpm (for example) - you need to rebuild your repodata cache. Normally this is an automated job - which is exemplified by the fact that you have obviously built out your entire Satellite environment and never had to do any of the steps you are about to do. So - some prep work: Open 3 terminals to your Satellite Server and run: # Term 1 cd /var/cache/rhn watch "ls -l | wc -l" # Term 2 pwd cd /var/log/rhn tail -f rhn_taskomatic_daemon.log # Term 3 satellite-sync --channel=jb-ews-2-x86_64-server-5-rpm Once the satellite-sync has completed, you >should< see the count increment by one.  If you are unlucky (like me) you will not. You then need to login to the Satellite WebUI as the satellite admin user. Click on the Admin tab (at the top) Task Schedules (on the left) fin

Install RHEL 7 on old HP DL380 g5

Someone at work had been running RHEL on an HP DL380 G5 and blew it up.  After several attempts at doing an installation that made me conclude the hardware was actually bad... I kept digging for the answer. Attempt install and Anaconda could not find any disks - try a Drivers Disk (dd.img) both cciss and hpsa.   -- once we did that, when the system would reboot it would say it could not find a disk. hmmm. Boot from your installation media and interrupt the startup at grub. Add hpsa.hpsa_allow_any=1 hpsa.hpsa_simple_mode=1 to the line starting with linuxefi press CTRL-X to boot. Once the system restarts after the install, you need to once again interrupt the startup and add the line from above. After the system starts, edit /etc/default/grub and add those 2 parameters to the end of the line starting with GRUB_CMDLINE_LINUX (which likely has quiet at the end of the line currently). then run # cp /boot/grub2/grub.cfg /boot/grub2/grub.cfg.orig # grub2-mkconfig -o /boot/grub2

MOTD with colors! (also applies to shell profiles)

I'm not sure why I had never looked into this before, but this evening I became obsessed with discovering how to present different colored text in the /etc/motd. A person had suggested creating a shell script (rather than using special editing modes in vi, or something) and I agree that is the simplest way of getting this accomplished quickly. This most noteworthy portion of this script is the following: RESET="\033[0m" that puts the users shell back to the original color. I typically like a green text on black background. Also - a great reference for the different colors and font-type (underscore, etc...) https://wiki.archlinux.org/index.php/Color_Bash_Prompt I found this example on the web and I wish I could recall where so that I could provide credit to that person. #!/bin/bash #define the filename to use as output motd="/etc/motd" # Collect useful information about your system # $USER is automatically defined HOSTNAME=`uname -n` KERNEL=`un