Mobile web developer? Watch out, the police might be on to you

Via: https://twitter.com/#!/froots101/status/157079290268221440/photo/1

Posted in humour | Tagged , , | Leave a comment

Do Not Disturb 1.01 for Android released

Do Not Disturb Ringer SilencerThis release fixes a bug where if the time set is less than the current time the ringer returns to normal volume immediately, eg current time is 1pm and you set the ringer to come back on at 12.30pm the next day. This issue is most likely to occur for those wanting the set ringer to silent for 23-24 hours.

Update available on the Android Market at https://market.android.com/details?id=co.uk.thewirelessguy.donotdisturb

 

Posted in Android Apps, Mobile Apps | Tagged , , , , , , , | Leave a comment

Android App Stores

There are many other App Stores for Android other than the Google Android Market:

Amazon App Store

GetJar

AndAppOnline

Handango

 

Posted in Android | Tagged , , , | Leave a comment

Detect mobile visitors in your WordPress theme

There are plenty of solutions for making your WordPress mobile friendly. Most of them redirect to a separate mobile friendly theme. However this may be overkill for certain sites which just require a few minor changes to look right on a mobile device. This solution could be used for example to load a separate style sheet for mobile devices or to only show a javascript photo slider on desktop PCs.

First download Mobile_Detect.php from http://code.google.com/p/php-mobile-detect/

Then open the template file you wish to include your mobile specific changes eg header.php file in a text editor and add the following:

<?php
include("Mobile_Detect.php");
$detect = new Mobile_Detect();

if ($detect->isMobile()) {
 // code to run for mobile devices
} else {
 // code to run for desktop browsers
}
?>

If you just want to detect certain mobile devices like android phones then you can use the following:

if ($detect->isAndroid()) {
    // code to run for the Google Android platform
}

Available methods in Mobile_Detect.php are isAndroid(), isAndroidtablet(), isIphone(), isIpad(), isBlackberry(), isBlackberrytablet(), isPalm(), isWindowsphone(), isWindows(), isGeneric()

Posted in web design, wordpress | Tagged , , , , , , , , , , , , | Leave a comment

Do Not Disturb for Android released

Do Not Disturb Ringer SilencerFed up of your phone going off during meetings or while you’re sleeping? Do Not Disturb quickly silences your phone and turns the ringer back on for you at the time you set.

This is my first Android App. Do feel free to let me know what you think of it and make any suggestions for future versions.

You can download it at:

Android Market https://market.android.com/details?id=co.uk.thewirelessguy.donotdisturb
Amazon AppStore http://www.amazon.com/gp/product/B006L913H8
GetJar http://www.getjar.com/mobile/284523/donotdisturbringersilencer

Posted in Android Apps, Mobile Apps | Tagged , , , , , , , , , | Leave a comment

Using Google+ circles for more than sharing with others

Create a “Read later” circle and a “Drafts” circle, both of which include only yourself.

When you see a post you want to read later, share it only with your “Read later” circle. Later you can open that circle to read, delete or share those posts.

Whenever you get an idea for a post, but no time to write it, draft a rough version and share it with the “Drafts” circle. You can edit the draft by using “Edit this post” from the drop down option menu at the top right corner of the post. When the post is complete, copy it into a new post that you can then share to your circles, then delete the draft post. At the moment there doesn’t seem to be a way to change which circles the post is shared with after you post something.

You can easily extend these ideas to collaborative sharing and editing.

Hat tip to David Yonge-Mallo at Google for this tip.

Posted in Social Media | Tagged , , , | Leave a comment