of Muse & Black Holes

Unlike Singapore or Bangkok, concert promoters here seem to be leagues behind in delivering concerts with a contemporary rock edge. Well, things are slowly changing. And that necessary makes the news that

The Muse concert is presented by Tiger Beer and organised by Galaxy Productions.

Muse, which includes singer/songwriter Matt Bellamy, bass guitarist Chris Wolstenholme and drummer Dominic Howard, will be in top form once it arrives in Kuala Lumpur on Feb 25, 2007.

With a Pacific Rim tour that begins in mid-January to support its recent album Black Holes and Revelations, the band is set for a hot summer in Australia and New Zealand before it swings over to Stadium Negara.

Date: Sunday, 25 February 2007
Time: 8:00p.m.
Venue: Stadium Negara, Kuala Lumpur
Ticket pricing:
Numbered seating – RM180, RM140, RM110
Free Seating – RM80, RM50
Arena Rockzone – RM110
Ticketing Hotline: 03 2282 2020
Tiger music website: www.tigermusic.com.my
Concert website: www.galaxy.com.my



unfortunately, it is presented by Tiger Beer... "-_-

of Islam & Mu'min

First of all, this is only my opinion based on input from my senses (what i see, read, think, etc..)

I can see two type of Islam in Malaysia nowadays, 'religion' and Way-Of-Life. What majority of us in Malaysia practices is Islam the religion. What it means is that it is a ritual (what you do occasionally), such as going to Jumaat prayer once a week (much like Christian's Sunday church) or full-covering of 'Aurat' while at the mosque/praying.

I'm not saying it is wrong, but it is not right enough.

Take Jumaat prayer (solat Jumaat) for instance. It is good that the mosque is full at the time, but what happen to other 48 times of the prayer (a week's prayer) ? 5 times a day, not once per week (some are even better, once or twice per year). Subuh, Zuhur, Asar, Magrib and Isyak are no less important than Jumaat, so why is the mosque are not as full?

The former might not be so obvious, so let's take something everyone can see everyday. Aurat.
Women's hair to be more specific. It is stated in the Quran (by the way, should be our main source, not some law written by Reid) that every part of a women's body should be covered, except the face and palm. Trust me, ask any Muslim women, they will admit it (some may say 'Yes, but...').
But when they are praying, they willingly follow the Quran. After that, all is off. As if, Almighty Allah can only see them when they pray, and then they somehow become invisible to Allah after the prayer. Why is this?

The answer lies in the mindset. They regards Islam as a religion, something that needs to be done when the time comes, then they are free.. It is known as Secular (religion & life/state must be separated). yes, we might have been declare as Islamic country, but whose law are we abiding? Does our society mimics those form Ottoman empire or the West? Do we put knowledge above all?

Only a handful left regards Islam as a way of life. Yes, it is hard, but nobody said it would be easy. Look at Rasullullah when he is still in his 1st 10 years living in Makkah as the Messenger of Allah, does his life easy or hard?

At the very least we can do, try to improve ourselves by regarding Islam as a way of life, not something you do when its Friday afternoon or 1st of Syawal.

of MS4W & PostGIS

A few months back, I had an interest in GIS, and set on a quest to find out how to set a server (induced by google maps actually :lol:). On the adventure, I learned that U kinda need a spatial database (a bit different from your usual database) and there we're only two that I know of, Oracle Spatial and PostGIS.

Oracle Spatial is an extension to, err.. Oracle, and given the oracle pricing (Oracle XE is Yet in the market), I opt for postGIS.. Unfortunately, U exclusively need linux for it to run nicely, and i'm not exactly Linux-savvy :lol:

Recently (read today), I look again at postgresql and it seems there's a windows' friendly installer. And it's GIS add-on has been upgraded too :)) that's good news.. A little download and installing, voila a postgresql server is up (and running)

so, gis database: check

next on the list, a map/spatial server. aptly named MapServer, its way nicer than a few months before (maybe a year). Documentation is good (in terms of OSS), and installation is a breeze (actually u dont need to install :lol:)

so, map server: check

finally, the GUI (web-based tho). There's already some nice gui U can use with MapServer, for instance ka-map (), MapScript for the interaction between server and client (UI), and a few others..

gui: check

so, i'm off (to code :)) and to home)

of DVD/RW

ada 4 jenis DVD disc
1. 1st class honour
> 95 % success burn rate
untuk master copy/archive media
mahal :lol:

2. 2nd class honour
>80% success burn rate
secondary backup / media (movie) distribution
kurang mahal skit la..

3. 3rd class
>50% success burn rate
burn data <2gb>0% success burn rate
...
murah xhengat (tak ingat)

one catch, memang kalau kita usha/cari2 kat cover/kotak nak cari Media ID number die, memang sampai kiamat tak jumpa..

kena pakai software:
win : DVD Identifier, DVDInfo
mac : DVD Media Inspector
linux: dvd+rw-mediainfo

p/s: ada pulak factory malaysia dalam 4th class nih.. "-_-

of Py & print

d Signed integer decimal.
i Signed integer decimal.
o Unsigned octal.
u Unsigned decimal.
x Unsigned hexadecimal (lowercase).
X Unsigned hexadecimal (uppercase).
e Floating point exponential format (lowercase).
E Floating point exponential format (uppercase).
f Floating point decimal format.
F Floating point decimal format.
g Floating point format. Uses exponential format if exponent is greater than -4 or less than precision, decimal format otherwise.
G Floating point format. Uses exponential format if exponent is greater than -4 or less than precision, decimal format otherwise.
c Single character (accepts integer or single character string).
r String (converts any python object using repr()).
s String (converts any python object using str()).
% No argument is converted, results in a "%" character in the result.

Usage: print "%d etc ... %d" % (3*3, 4-1)