Skip to main content

Posts

Showing posts from March, 2010

SIM card or a CPU

The SIM cards in cellular telephones might be smaller than a postage stamp and less than a millimeter thick but that hasn't stopped South Korea's SK Telecom from cramming all the major components needed to run Google's Android OS inside one of them. The carrier's Android SIM, a prototype of which is on show at this week's Mobile World Congress in Barcelona, includes an ARM-based processor, companion memory and 1GB of flash memory to store the OS and other data. SK Telecom envisages such a SIM card could be used between a number of "dumb" terminals -- devices that have ancillary peripherals such as a screen and keyboard but lack a processor and pre-installed OS. The SIM card uses the USB 2.0 interface to communicate with the terminal. All of the user's applications and data are stored alongside the OS in the SIM card, so the user's desktop could be transported between devices by switching the SIM card between them. For example, a PC desktop could be...

Print "Hello World" in a Mobile Phone Using J2ME

Print "Hello World" in a Mobile Phone Using J2ME Use a simulator to see the output: import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class HelloWorld extends MIDlet implements CommandListener { private Command exitCommand; private TextBox tbox; public HelloWorld() { exitCommand = new Command("Exit", Command.EXIT, 1); tbox = new TextBox("Hello world MIDlet", "Hello World!", 25, 0); tbox.addCommand(exitCommand); tbox.setCommandListener(this); } protected void startApp() { Display.getDisplay(this).setCurrent(tbox); } protected void pauseApp() {} protected void destroyApp(boolean bool) {} public void commandAction(Command cmd, Displayable disp) { if (cmd == exitCommand) { destroyApp(false); notifyDestroyed(); } } }

SANDISK G3 SOLID STATE DRIVE

While other industry leaders are showing off their new ventures and inventions, SanDisk joined the party by unveiling its new G3 series solid-state hard drives (SSD) designed particularly as drop-in replacements for conventional hard disk drives in netbooks and notebooks. The famous flash memory card maker promised that this so called world’s fastest multi-level cell SSDs are more reliable and more resilient besides running 5 times faster that the industry’s current HDD and double the speed of SSDs unveiled in 2008. SanDisk’s new G3 series SSDs come in three different sizes: 60GB, 120GB and 240GB. The prices for each respective size are as follows: 60GB for $149, 120GB for $249 and 240GB for $499. This price range is on the high side compared to existing HDDs. However, these new technology drives are gaining popularity and increasingly being used as a storage device in laptops and other electronic devices due to their speed and reliability. Since there are no moving parts in them, the...