Skip to main content

Tablet Screen Size thoughts

I have had a SmartQ V7 (7 inch Android tablet) for a while now and it has served me well. I have read a few books, browsed the web and played a few simplae games on it. However the one thing I found lacking was the screen was too small to read comics comfortably.

So I have bought an ePad V2 10.2in Android tablet - with 512M of memory it had double the memory of the SmartQ V7 which is an improvement. Its screen is 1024x600 compared to 800x480.

I have tested comic reading and it does fine. The extra size makes a world of difference. It doesn't fit in a (big) pocket like the SmartQ does but it is thinner and only slightly heavier so goes in my backpack comfortably.

At the same time as getting the ePad I bought my wife an iPad. Similar size screen - wider but shorter (1024x768, 4x3 aspect ratio as compared to the 16x9 of the ePad) - but a much better screen with much better responsiveness. The iPad responds to screen touches much better than the ePad and is an overall much better tablet. It did cost three times as much so you get what you pay for.

Android 2.1 is on the SmartQ and 2.2 on the ePad. Both work fine and I have rooted both tablets. I hope it is possible to root the new Honeycomb based tablets even though, in everyday use, I don't need administrative access. It is just nice to have - after all it is an open source system and is trying to be different to the strictly controlled Apple alternative.

Why do you need administrative access? In some cases it is just to change a system setting because there is no other way to change it except for editing a text file. Similar to changing registry settings on Windows because no one made a utility to do it. There are other reasons - in many cases the tablet (or phone) developer simply failed to envisage a perfectly reasonable way to use the device and didn't allow something that is not going to damage the device. Rooting is not just for removing provider lock in!

Am I happy with the ePad? It does not have great battery life - however the biggest problem is it does not go into a low power mode when not in use. It does switch off the screen but it still drains the battery. Of course the problem with these early Android tablets is they are using an operating system designed for a phone which is supposed to stay connected at all times. The SmartQ gets around this by turning off wireless and going into a low power state when the screen is turned off. Which makes it possible to take it on trips without its battery being flat when you want to use it. However you can turn the ePad off completely and it boots up in around a minute. If they fix the micro-SD card problems I will be content with it. It keeps thinking the card is blank forcing an eject and reinsert game until it condescends to see the files on it!

I may get myself an Adam or Xoom next!

Comments

Popular posts from this blog

The Extended Attributes Are Inconsistent in Windows 8

I have upgraded my laptop to Windows 8 and all was fine for about three hours and then I started to get an error when trying to run any application that required Administrator privileges. Half an hour of Googling led me to this blog post   Case of the broken uac prompt This problem was caused by downloading themes. The final theme I had decided on included a new sound theme. Clearly at least one of the sounds did not play (the one for the UAC prompt!). Changing the sound theme (right click on desktop, choose "personalisation") to Windows Default sorted out the problem. Doing a clean install would also have fixed it but that would have been a drastic solution and as soon as I installed a new theme it may have happened again.

Beware vnc and upnp

My new linux box got hacked yesterday. I was careless. My ADSL router has upnp support and it is turned on by default. I enabled "Remote Desktop" in Linux - which is a version of vnc - and decided not to set a password as it would not be accessible from outside the local network. That was my first mistake. Last night I noticed a second connection to the linux box. Someone was using the browser and had connected to Western Union and was trying to install the flash plugin. They had not got very far as Fedora 14 does not install Flash on a 64bit system as it is still in beta so the install is not straightforward. I was able to disconnect this errant person before they got any further and I then disconnected the ADSL line from the modem to prevent another attempt and proceeded to diagnose what had happened. I checked the preferences for VNC and noticed the automatically configure the network check box had been selected and that it was reporting an external address could be

"No child processes" error on Linux

A problem was reported by a customer. They were getting a failure and in the logs it reported error → waitpid failed 'Reason: No child processes' The “No child processes” error came from waitpid() after using  fork/spawn to launch a utility to load data into a data base. Upon detailed investigation it appears it is possible that some other process that the user is running has changed the default handler for SIGCHLD - possibly the shell (e.g. bash!) used to launch our server processes. If the signal handler is set to SIG_IGN then when a process is started using fork()/exec() the return code from the process is NOT returned and waitpid() cannot retrieve the response code. The most likely reason for "No child processes" error from waitpid() is that the signal handler for child processes (SIGCHLD) is not set to SIG_DFL. This should not be possible however it seems that on Linux a process run in the shell (or maybe a shell process) can set it