Search this Site

Saturday, July 3, 2010

Free GPS & Map for Samsung Omnia i900

*Renewed Article in 2010 July
Previous related article:  http://code.maxmayo.com/2009/02/samsung-omnia-malaysia-how-to-get-gps.html

Requirements:
  1. Samsung Omnia
  2. Software: Garmin Mobile XT for Windows Mobile
  3. Additional File: Garmin Mobile XT Free Basemap
  4. Additional File: Garmin Mobile XT Support Files
  5. A Keygen by JetMouse for the software: Try google for "garmin mobile xt keygen"
  6. A Free map from MalSingMaps.com
  7. A map unlocker.
*Please email me for the mentioned software, map, and map unlocker.
(Unfortunately, I only have map for Malaysia, Singapore & Brunei area).
Step-by-step:
  1. Connect your Samsung Omnia to your PC.
  2. Install Garmin Mobile XT for Windows Mobile to your Storage Card.
    Double-click the installer and follow the instructions. Half way through the installation, a dialog will prompt up on your Omnia and asking if you would like to install the software. Tap yes.
  3. Install Garmin Mobile XT Free Basemap to your Storage Card.
  4. Install Garmin Mobile XT Support Files to your Storage Card.
  5. Now, run Garmin Mobile XT software from your phone.
  6. Try Free Trial & agree the T&C. Skip any step that scans for GPS device. You'll arrive at the main menu of the software.
  7. Tap the button "Tools" > "Settings" > "About". Look for Card ID. Jot down the Card ID.
  8. Exit the software on your Omnia.
  9. Using the Card ID, run the keygen by JetMouse on your PC to get the unlock code.
  10. Copy the unlock code, create a file named "sw.unl" on your PC, and save the code into the file.
  11. Copy "sw.unl" on your PC to your Omnia. Put it in YourStorageCard/Garmin.
  12. Extract the Free Map you downloaded from MalSingMaps.com to your PC.
  13. Copy the extracted map file to your Omnia. Put it in YourStorageCard/Garmin.
  14. Your installation is almost done. Go to somewhere without a roof or an open-air space e.g. car park.
  15. Run Garmin Mobile XT software again.
  16. If you're seeing an "locked map" message, use map unlocker to unlock the map. (Instructions to unlock comes with the software files.) Rename the unlocked file to gmapsupp.img and put it in YourStorageCard/Garmin again.
  17. For double-confirmation, go back to the main menu, go to "Tools" > "Settings" > "System" > "Remote GPS" > button "GPS Info". You should be able to see something moving on the Bar Chart.
  18. If you can't see anything as mentioned, you can try to bring your Omnia and run the software at other places. 
Remember, GPS signals travel by line of sight, which means they can pass through clouds, glass and translucent plastic but not solid objects such as buildings and mountains.

Saturday, March 20, 2010

PHP Tutorials and Samples for Beginner: PHP Variables

<?php

// Simple Variable Declaration
$item_name = "";
$item_price = 5;
$itemId = "1";
$itemcode = "GH123";
$_itemdesc = "Colour: Red";
$item;

?>

Thursday, March 4, 2010

Samsung Omnia i900 How to Hard Reset

Hard Reset is to revert the phone to factory settings – just like when it's still new.
To hard reset:

  1. Go to Main Menu > Favourite Settings > All Settings > System > Hard Reset
  2. Choose to reset Main Memory or My Storage.

*Warning: All your Contacts stored on the Main Memory will be deleted. Only contacts in Sim Card will remain.

Sunday, December 13, 2009

Mac OS X: Tab to switch between buttons in Dialog Box (Save, Ok, Cancel etc)

Be default, users cannot switch between the buttons on a dialog using the Tab button (unlike Windows). To enable that behaviour:

Go to System Preferences > Keyboard > Full Keyboard Access
Check the radio button "All controls"

Saturday, December 5, 2009

Export Complete MySQL Database without Windows Software

  1. Open Command Prompt
  2. Cd to the directory of mysqldump.exe
  3. Run the command:
    mysqldump -hyourhost -uyourusername -pyourpassword yourdatabase > C:\mydb_export.sql

    For example:
    mysqldump -h223.102.12.23 -uroot -pVBNFGHfds stock_db > C:\mydb_export.sql

    The exported database will be in the format of SQL statement in the file "mydb_export.sql" in the directory "C:\".
* To export database with BLOB field, include the code "--hex-blob" in the command. For example:
mysqldump -h223.102.12.23 -uroot -pVBNFGHfds --hex-blob stock_db > C:\mydb_export.sql