Email Address Password
Remember Me

Or Create a (Free) Account.
2004JanFebMarAprMayJunJul Aug Sep Oct Nov Dec
2005 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
2006 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Oct Oct
2007JanFebMarAprMayJunJulAugSepOctNovDec2007
2008JanFebMarAprMayJunJulAugSepOctNovDec2008
2009JanFebMarAprMayJunJulAugSepOctNovDec2009
2010JanFebMarAprMayJunJulAugSepOctNovDec2010
2011JanFebMarAprMayJunJulAugSepOctNovDec2011
2012JanFebMarAprMayJunJulAugSepOctNovDec2012
2013JanFebMarAprMayJunJulAugSepOctNovDec2013

Sun 29th Jul 2012 @ 19:34 2012: Netmask Calculator

Following on from my earlier post, I have split the Netmask Calculator into two versions; the existing version now has small, subtle adverts at the bottom of the screen. It's a shame the Android apps can't add a simple "Add Google Ads" level of permission to apps; in order to serve adverts, the existing app now needs to request "Full Internet Access".

To preserve the comfort level of installing only apps with absolutely necessary permissions, I have added a "Pro" version, suitably entitled Netmask Calculator Pro. This is priced at £0.99, €0.80 and USD$0.99.

Some apps genuinely need internet access to perform their duties - a web browser or ssh client, for example. Most (including this one) do not, and whilst I do trust virtually all Android apps to behave honourably (and both versions of the Netmask Calculator are of course completely trustworthy), the only way to address Google's broad "internet access" permissions model with the developer's incentive to create applications, is to provide two different versions of the app - one ad-supported but requiring internet access, and the other which requires no permissions at all, in exchange for the price of less than half a pint of beer.

Post a Comment               

Fri 20th Jul 2012 @ 19:51 2012: Tracing the performance of a shell script?

Instead of the "+" symbol that PS4 normally puts before each command, you can get a timestamp.

$ cat myscript
#!/bin/bash
while :
do
sleep 2
done
... $ bash -x myscript
+ :
+ sleep 2
+ :
+ sleep 2
... etc
$ PS4='\d \t '
$ bash -x myscript
Fri Jul 20 18:43:14 :
Fri Jul 20 18:43:14 sleep 2
Fri Jul 20 18:43:16 :
Fri Jul 20 18:43:16 sleep 2
Fri Jul 20 18:43:18 :
Fri Jul 20 18:43:18 sleep 2

Post a Comment               

Fri 20th Jul 2012 @ 19:13 2012: Android Netmask Calculator

It's just over a year since I first published my Android Netmask Calculator, and I've published a few more updates to it.

There are some tweaks to make it look slightly better on tablet devices, and it also now shows Binary and Hexadecimal values as well as the Decimal that it showed before.

These are easily toggled by pressing the appropriate "radio" button.


Decimal Display


Binary Display


Hexadecimal Display

The Binary display doesn't look too great on a phone; by its nature, it has to wrap around. I've yet to get a screenshot on a tablet. Better still, is a video of the tablet display, as you can tilt the device to change the screenshot, which in Binary mode gives a really good visual lesson in how the netmask, network address and broadcast address affect each other.

Post a Comment               

Sun 1st Jul 2012 @ 18:27 2012: Linux USB boot

Booting Ubuntu 12.04 - same worked for me on a ExoPC Tablet

Post a Comment               

Steve's urandom blog
Share on Twitter Share on Facebook Share on LinkedIn Share on Identi.ca Share on StumbleUpon
My Shell Scripting Book:
    Shell Scripting, Expert Recipes for Linux, Bash and more
is available online and from all good booksellers:


DefectiveByDesign.org