Try: The Google Latest Search Technology that Knows Your Thinking

Best Free Web Hosting

Free Web Hosting with Website Builder

Monday, August 10, 2009

Strongest Breast in Ther World 奇人: 史上最强的乳房(碎板,破西瓜)

Believe your eye :)

Thursday, July 16, 2009

養不起的未來

日本的諷刺明星兼導演北原武不久前又獲得一個電影的國際獎。
幾年前他的母親去世,他回故鄉去奔喪,他一直不喜歡母親,

因為她一直不斷向這一個兒子要錢,只要他一個月沒有寄錢回家,

母親就打電話給他破口大罵,真是所謂的死要錢,而且北原武越出名,她索取的錢越多。

回到家之後,他還是忍不住大哭一場,

想到他一直在外,沒有好好供養媽媽,

雖然是死要錢的媽媽,他還是覺得虧待母親。

等辦完喪事,北原武正要離開家的時候,

他的大哥把一個小包袱給了他說:

這是媽媽叫我一定要交給你的。

北原武小心翼翼地打開小包袱看到一本存摺與一封信,存款是用他的名義開戶,存款金
額高達數千萬日幣,信中母親寫道:

“武兒,在這幾個兒女當中,我最擔憂的就是你,

你從小就不喜歡唸書,又亂花錢,對朋友太慷慨,

當你說要去東京打拼時,我就很擔心你會變成一個落魄的窮光蛋,

因此我每月從不間斷地要你寄錢回家,

一方面可以刺激你去賺更多的錢,

另一方面也為了替你儲蓄;你給我的錢,

我一毛都沒有花,你大哥一家把我養得好好的, 你的錢就是你的錢,現在就拿去好好利用吧!” 看完了信,北原武哭倒在地上,久久站不起來...



王永慶曾經說過一句話:
你賺的一塊錢不是你的一塊錢,你存的一塊錢才是你的一塊錢。

現在的經濟景氣越來越差,全世界都進入了二低一高的時代低成長、低利率、高通膨;
不要小看你隨手花掉的小錢:
一杯咖啡、一包香煙、一件衣服...

省下它,就有可能改變你的一生,

如果你身邊也有存不了錢的朋友,

告訴他北原武的故事,你就有可能成為他這輩子的貴人!



養不起的未來 --不是收入太少,而是開銷太大

Tuesday, July 7, 2009

音乐是不需语言的 - 天籁之音

在youtube 看到这小片段,他她们的音乐太迷人了,大家不妨细心欣赏一下。

Monday, June 29, 2009

两岁半孩子开榴莲

我家两岁半孩子挑战开榴莲。哈哈,竟然给他成功了。

Thursday, June 25, 2009

HDR effect with Panasonic Lumix FZ28 (照片 HDR 后期制作 )

High Dynamic Range (HDR) - Here are some photo that taken with my Panasonic Lumix FZ-28, and processed with Photomatrix for HDR after effect. It was really fun and the outcome seems awesome.
To produce HDR with Panasonic Lumix FZ28, the photo must be taken in RAW format, and then use SilkyPix Developer Studio(photo manipulation software that come with the camera) to develop 3 jpeg photos with following EV setting: -2EV, 0EV, +2EV . After that, you need to use the Photomatrix software to Merge these 3 photo to produce the final HDR photo.

最近从同事那里学会了玩 HDR, 特地放几张照片来和大家分享一下。制作 HDR 一点也不难,首先必须使用RAW 格式来拍摄,然后使用SilkyPix Developer Studio(随机附送的软件)制成3张照片,照片设置为 -2EV, 0EV, +2EV。 过后使用 Photomatrix 来进行结合,就能制成 HDR了。
Normal /HDR


 


Normal/HDR



Normal/HDR



Normal/HDR

Thursday, June 18, 2009

KLSE - Short Term Trading

After a lunch with Allen, here are some KLSE short-term trading information that collected and let's share it.
There are 5 graphs that we need to monitor in order for short term trading,there are
1) Moving Average ( 5 days, 15 days, 30 days)
---MA mostly useful for mid and long term investment.
---Look for the Golden Cross for indication
2) Candle Stick
3) ADX(Seller and Buyer)
---When Buyer(green line) going down, cross over the Seller(red line), good signal. If above the Zero line, even better.
4) MACD
---When the solid line moving up and cross over the the dash line, good sign.
5) Stochastic

All of the above graphs must be supported by a large trading volumn, if trading volumn is small, the above graph will be meaningless.

There are some good counter for short-term trading in KLSE, there are:
Steel Industry
1) Annjoo
2) Lionind (fast)
3) Lioncorp (fast)
4) Masteel
5) Ssteel

Property
1) E&O
2) Spsetia
3) DNP
4) Suncity
5) Ijmland

Oil Industry
1) Kencana
2) Sapcres
3) Petra
4) Penergy
5) Knm
6) Waseong

Plantation
1) IOI
2) Rsawit
3) KLK
4) Ijmplnt
5) Sime

Medical Glove
1) Kossan
2) Supermax
3) Topglove

Telecommuncation
1) Axiata
2) TM

Construction
1) Muhibbah
2) WCT
3) LCL

Corporation
1) YTL
2) MMCCorp
3) MRCB
4) DRBHCOM
5) Zelan
6) Sunway

Cement
1) Lmcement
2) Ytlcement

Pipe
1) Jaks
2) KPS
3) Puncak

Finance
1) Commerce
2) Maybank

Electronic
1) Unisem
2) ENG
3) Gtronic

Friday, June 5, 2009

How to Create DOM Element with Javascript

To create a DOM element with Javascript is very simple, look as the following example you will find it is just a piece of cake.

<script>
function addTR(tableid)
{
var atr=document.createElement('TR');
atr.setAttribute('id','tr4');
document.getElementById(tableid).appendChild(atr);
addTD('tr4');

}
function addTD(trid)
{
var atd=document.createElement('TD');
var atr=document.getElementById(trid);
atd.innerHTML='TD created by JS';
atr.appendChild(atd);
}
function addInputButton(parentId)
{
var abut=document.createElement('INPUT');
abut.setAttribute('type','button');
abut.setAttribute('name','buttybutton');
abut.setAttribute('value','Butty Button');
document.getElementById(parentId).appendChild(abut);
}
function addInput(parentId,type,inputname,inputvalue)
{
var aInput=document.createElement('INPUT');
aInput.setAttribute('type',type);
aInput.setAttribute('name',inputname);
aInput.setAttribute('value',inputvalue);
document.getElementById(parentId).appendChild(aInput);
}
</script>

<table name='t1' id='t1'>
<tr id='tr1'>
<td>
<input type=button onclick="addTR('t1');" value='Add TR'>
<input type=button onclick="addTD('tr2');" value='Add TD'>
<input type=button onclick="addInputButton('butbox');" value='Add Button'>
<input type=button onclick="addInput('butbox','text','textbox1','Wow Dynamic');" value='Add Textbox'>
</td>
</tr>
<tr id='tr2'></tr>
<tr id='tr3'><td>Hello</td></tr>
<tr id='tr5'><td id='butbox'></td></tr>
</table>