Touch Screen All-In-One Desktop Computers – What’s Available?
Tuesday, 23 February 2010 – | 2 Comments

In the pursuit of refreshing my technology I am looking for a new desktop computer, something space saving – hopefully even touch screen and all-in-one. Perhaps it’s a minimalism phase I might be going through …

Read the full story »
Downloads

Things to download free, from posters and shortcut guides to white-papers and checklists

How To & Tutorials

These handy problem solving tips and advice should save you some time

Industry News

News and commentary from news in the technology industry

Safety & Security

Be safe and secure both online and offline, from securing your computer to safe online surfing.

Software

Explore recommended software applications from around the Internet

Home » Archive by Tags

Articles tagged with: Code

J2ME: Get IMEI Number
Friday, 4 April 2008 – | No Comment

To get an IMEI number:
// Get Sony Ericsson IMEI
String imeiSE = System.getProperty(“com.sonyericsson.imei” );
// Siemens
String imeiS = System.getProperty(“com.siemens.IMEI”);
// Motorola:
String imeiM = System.getProperty(“IMEI”);
For more information about IMEI: http://en.wikipedia.org/wiki/IMEI

J2ME: Get System Details
Friday, 28 March 2008 – | No Comment

I have been trying to find a way of obtaining the phone details using J2ME and I think this will do it:
System.getProperty(“microedition.platform”);
For Nokia Devices, the format is generally: “Nokia XXXX/x.yz”,
The original source for this tip …

PHP: Get PHP Information
Thursday, 27 March 2008 – | No Comment

To get useful information relating to PHP – for example which version and libaries are installed you can use:

PHP: Web Service Feed Information
Thursday, 27 March 2008 – | One Comment

Using a web service feed under REST is useful to obtain information that would otherwise be tricky to get.
For example, to get information out of Technorati (rankings etc) you could use:
$request = ‘http://api.technorati.com/bloginfo?key=[key]&url=’ . urlencode(‘www.jasonslater.co.uk’) …

J2ME: Launch a midlet from another midlet
Tuesday, 25 March 2008 – | 2 Comments

As part of the project Bluetooth Push Apps I need to be able to launch one midlet from another midlet. The idea here being that a midlet will be preloaded on a mobile phone and …

Java (Midlet): Obtain Content Types
Tuesday, 25 March 2008 – | No Comment

//import libraries
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.media.*;
//define class
public class myContentTypes extends MIDlet implements CommandListener
{
private Form myForm; // form to present info
public void startApp()
{
if (myForm == null)
{
// setup the form
myForm = new Form(“Obtain Content Types”);
Command exitCommand = new …

Code Comments
Tuesday, 18 March 2008 – | No Comment

A recent topic of discussion has been comments in development code.
See the article at:
Software Code Commenting

ASP: Dynamic Style Sheets
Friday, 14 March 2008 – | No Comment

Many sites use static CSS (Cascading Style Sheets) but 4 Guys from Rolla have an interesting outline of how to dynamically create a CSS style sheet that could allow a user to change things like …