Skip to main content

Tablet Thoughts

I have an iPad 2, Nexus 7, Kindle Touch, Smartq 7 and an ePad 10inch tablet. The SmartQ and ePad have been consigned to the back of a shelf out in the shed and I am actively using the iPad and Nexus 7.

I use the iPad a lot - it has a decent sized screen so is comfortable for web browsing. I prefer its screen ratio to that chosen by the Android tablets. The Nexus 7 was bought to replace the Kindle (actually I used Frequent Flyer points that were about to expire so it was not a hard decision as it didn't seem to cost anything). The problem with the Kindle Touch is the difficulty reading it when the light is fairly poor. There is no problem reading the Nexus 7 and its screen is nice and sharp (1280 by 800 resolution for a 7 inch tablet is very nice). The only thing that might make me upgrade my iPad is the screen on the new models or when it breaks!

Do I like iOS or Android more? I don't think there is a lot of difference - both are good at what they do - running apps! I find iOS is better at battery life - it seems to lose power less when not being used. It appears that the Nexus 7 loses more battery power overnight however as I do not have a feel for the relative battery life of the two devices that is not an objective measurement. I have paid for apps on iOs and not on Android. That is more because I have had the iPad longest - I did get the SmartQ and ePad before the iPad but the user experience of both devices and the hacker nature of the tablets did not lend itself to trusting the purchasing experience. Also I can buy iTunes cards at 20% off!

I looked at the Kindle Fire but that was not a good option as I live in Australia so am cut off from all the content. I get emails from Amazon UK advertising digital music that I am not allowed to buy! You would think they could tell that from my address and email. Until they reinstate free shipping I am not buying from them!

[6 Jul 2013] I have been buying books from The Book Depository as they have free shipping. I did get the Firefly Blu-ray from Amazon as even with shipping included it was cheap compared to buying it locally. 


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