Nokia 5800 supports Flickr services via its Share Online feature. It can even updates the Flickr photos automatically. The bad thing is that this feature is turned on by default when you enable the Flickr service. The default setting is it will update to Flickr every 6 hours, and it will consumes for about 600kb of data transfer. This feature is bad for users that do not subscribe to the unlimited Internet broadband.
Count the number of occurences using Counter() in Python
July 3rd, 2009 | No CommentsCounter is an object of collections module, and it is a dict subclass for counting hashable objects, in Python 3.
Archive and Compress Files Using zip
July 3rd, 2009 | No CommentsZip and unzip are two free command line programs that comes with Linux. For Windows, they can be downloaded from the Info-ZIP Website. This article provides the basic of archiving and compressing files using the command line zip program.
How to disable A-GPS in Nokia 5800
July 2nd, 2009 | No CommentsNokia 5800 comes with an integrated GPS device. Besides, Nokia 5800 also support Assisted GPS (A-GPS), and it is turn on by default.
A-GPS could help the phone to connect to the satellite faster. However, A-GPS requires the internet connection. Therefore, if you are not subscribed to the unlimited broadband package, you may want to disable the A-GPS support.
My ignorance of this issue had cost me a few hundreds Ringgit.
To disable the A-GPS support in Nokia 5800, follow this steps:
- Press the white Menu button.
- Select Apps.
- Select Location.
- SelectPositioning.
- Select Positioning Methods.
- Select Assisted GPS, and select Disable.
How to list out Python reserved words
July 1st, 2009 | No CommentsTo list out the Python reserved words, just enter the following lines into the Python interpreter.
>>> import keyword
>>> print(keyword.kwlist)
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue',
'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global',
'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass',
'raise', 'return', 'try', 'while', 'with', 'yield']

Python Reserved Words
