Candid Smile

Candid Smile
Young and Innocent

Saturday, October 6, 2007

Sydney, NSW, Australia Visit



Well had a visit to Australia on 23rd till 29th Sept, 2007. Purpose of visit....
Had to be company training.

22nd Sept,2007

Board my MAS flight from KLIA to Sydney Australia, Estimated time reached in 7hrs.


23rd Sept, 2007




Reached Sydney in the morning....
Zoom around for location to hotel. Looking for available transport. Reach hotel, n chk-in.








Visit Bondi beach in the afternnon... Amazing beach they had there. Nice place to go for beach escape. Had a great time walking along the seaside wandersing the sea n surfers surfing around.








Had time to view a fashion parade host by the ppl there. will visit again in future...

24th Sept, 2007


After training, had a walk around the training area Berry Square. Not much sight-seeing done. too tired of traveeling yesterday. hehehe

25th Sept, 2007











Take the train to from North Sydney to Circular Quay. had to transfer train from Wynyard during the trip.Destination reached. From there, walked to Sydney Opera House (SOH).
Had a great view from there. kind of relaxing. reminds me of my home, Portugese Settlement, (Bring back memories) It is a beautiful building. Nice architecture.

26th Sept, 2007











Went to the Darling Harbour. had long walk from there. The Animal soo is closed from public due to functions going on. had a snapshot on the koala. From Darling Harbour, i walk my way to the Paddington Market which was closed, Wat my luck... Never sad, went to Chinatown bought some keychains as souvenir. From there had a 2km walk to Cross Street to Hard Rock as i promosed sum1 to buy the small glass collection. Too tired to walk another 3km to townhall station back to hotel....

27th Sept, 2007

Nothing done. was tired from yesterday long walk...

28th Sept, 2007



Final night in Sydney. No where to go, so head on to Darling Harbour. Luck was on my side. Darling Festival was goin on on that time. Got to view the beautiful fireworks n some brazillian cultural dance...

29th Sept 2007





Can't sleep. due to the liquor i had on the night before. 5am on my watch... Slept 4 hrs onli and the sun is already coming up. Went jogging by the bay. Cool morning... Went Luna Park (which was closed as it early morning, who the hell wake up that early). Got a great view of SOH from there. i wish i had more time there. 10am, Check out from hotel n make my way to airport for my flight to Malaysia.





P/S: Due to some unforeseen timelime, i had no time to publish my pics. will update the pics asap

Tuesday, September 4, 2007

One for the family




Been a long time now... here's the ex - family of DELL Asia...
Will cherished the moments i had. One yr working seems like yesterdays work...
Work life balance, well we can get it sum of the times, but not all the times there.

A promising job if one seeks to learn from there. Cheerful, helpful n outgoin ppl workin 2gether making life moving simple as it goes... Monday blues will not come if u nvr try to be in the team...

Will be great to be working wf such a team again in my future job...

Thanks to all of them, i've gained more from there to be wat i am now

Monday, July 23, 2007

I'm Coming Home

Well, wat i need to say more. . .
I'm coming home after yrs working in other places. . .
Not sure for how long but will be back home wf family n hometown friends. . .
memories of yesteryears will surely come back to me. . . Really miss mums cooking and malaccan cuisines. Satay celup, famous One Tan vercimeli, Hainan Chicken Rice Ball, Nyonya food, etc..

Wait a minute. y do i need to start with food whenever a place comes to my mind.. I need to forget bout food. (getting more bulkier from time to time). Once return i need to save a few of my $$$ to get a new Car... hehehe possibly next 2 yrs la...

Monday, May 28, 2007

Cameron Tea Valley

Tea Valley

May 1st,
Wat to say... got a call from my fren. inviting me to visit Cameron Higlands. Jus to pass me time sitting at home. Nothing to lose, got up from bed in the early wee hrs, 5am frsh clean bath and head for cameron....

The trip took us bout three hrs thirty minutes. We reach our destination bout ten am in the mornin. Have a lousy breaks fast in one of the coffee shop around the small townm of cameron...
Purple all around???

Reach our destination. Have a tea whilst enjoying the surrounding highlands view. A walk around the valley make me wonder how wonderful it is to be in natures arms. having escape from the pressures face in the city and work, being there makes me feel free and relax.
Above:Strawberry tea
Below: Enjoying the view
Up Close n personal

Well time does flies faster wen u were having ur sweet time. not noticing anything it's almost time for lunch. We heads down to cameron town for our lunch. After lunch, we end our journey by visiting the strawberry farm n bought a few boxes of it. journey down cameron makes me feel car sick. The winding road, constant braking. Urggh... wat a pain...

Strawberry farm...

Wanna plan for another journey.... Tis time maybe will hav a one nite stay there...


Sunday, March 18, 2007

Programming Tips

Wanna post some important programming tips thru here as not to forget.

To Create an xml file from asp using VB scripting. Normal creation

Dim xmlDoc, rootEl, fieldAnswer, att01, p

'Create an xml Document
Set xmlDoc = server.CreateObject("Microsoft.XMLDOM")
xmlDoc.preserveWhiteSpace=true

'Create a root element and append it to the document
Set rootEl = xmlDoc.createElement("Element")
xmlDoc.appendChild rootEl
Set fieldAnswer = xmlDoc.createElement("Root1")
Set att01 = xmlDoc.createAttribute("Attr_ID")
'Set the value of the id attribute equal to the name of the current form field
att01.Text = "Sum Attr"
'Append the id attribute to the field element
fieldAnswer.setAttributeNode att01
'Append the field element as a child of the root element
rootEl.appendChild fieldAnswer
'Insert xml v ersion
Set p = xmlDoc.createProcessingInstruction("xml","version='1.0'")
xmlDoc.insertBefore p,xmlDoc.childNodes(0)

--------------------------------------------------------------------
Generate Unique Key for asp

Function gen_key(digits)

'Create and define array
dim char_array(50)
char_array(0) = "0"
char_array(1) = "1"
char_array(2) = "2"
char_array(3) = "3"
char_array(4) = "4"
char_array(5) = "5"
char_array(6) = "6"
char_array(7) = "7"
char_array(8) = "8"
char_array(9) = "9"
char_array(10) = "A"
char_array(11) = "B"
char_array(12) = "C"
char_array(13) = "D"
char_array(14) = "E"
char_array(15) = "F"
char_array(16) = "G"
char_array(17) = "H"
char_array(18) = "I"
char_array(19) = "J"
char_array(20) = "K"
char_array(21) = "L"
char_array(22) = "M"
char_array(23) = "N"
char_array(24) = "O"
char_array(25) = "P"
char_array(26) = "Q"
char_array(27) = "R"
char_array(28) = "S"
char_array(29) = "T"
char_array(30) = "U"
char_array(31) = "V"
char_array(32) = "W"
char_array(33) = "X"
char_array(34) = "Y"
char_array(35) = "Z"
'Initiate randomize method for default seeding
randomize
'Loop through and create the output based on the the variable passed to
'the function for the length of the key.
do while len(output) < num =" char_array(Int((35" output =" output" gen_key =" output">" & gen_key(10) &amp; "" & vbcrlf
aKey10 = gen_key(10)