2009-02-19

myName

Windows Live SpacemyName(agian).

周: [ zhōu ]
[ 国标码:D6DC 部首: 笔画:8 笔顺:35121251 ]  

1. lap
2. week
3. thoughtful
4. (surname)
5. complete
6. encircle
7. circuit
8. cycle
9. all
10. every
11. attentive

其它相关解释:
<Chou> <main pipe> <perimeter> <Zhou> 


秉: [ bǐng ] / [ bǐng ]
[ 国标码:B1FC 部首: 笔画:8 笔顺:31511234 ]  

1. maintain
2. (surname)
3. to grasp
4. hold


晟: [ shèng ]
[ 国标码:EAC9 部首: 笔画:10 笔顺:2511135534 ]  

1. splendor
2. brightness of sun

2008-11-17

DISABLED & READONLY

Attributes for DISABLED & READONLY
READONLY and DISABLED both remove the functionality of the input field, but to different degrees. READONLY locks the field: the user cannot change the value. DISABLED does the same thing but takes it further: the user cannot use the field in any way, not to highlight the text for copying, not to select the checkbox, not to submit the form. In fact, a disabled field is not even sent if the form is submitted.
Currently only MSIE recognizes either of these attributes.
this code
produces this




It's important to understand that READONLY merely prevents the user from changing the value of the field, not from interacting with the field. For many types of fields, READONLY is irrelevent because you don't normally change the value. In checkboxes, for example, you can check them on or off (thus setting the CHECKED state) but you don't change the value of the field. DISABLED, however, actually prevents you from using the field. Notice in these examples that you can set the checkboxes even though they are "read only":
this code
produces this
mushrooms

onions

peppers
mushroomsonionspeppers
mushrooms

onions

peppers
mushroomsonionspeppers

2008-11-05

java string contains string

source from: http://www.exampledepot.com/egs/java.lang/HasSubstr.html
found by: java string contains string

e72. Determining If a String Contains a SubstringSee also e423 Quintessential Regular Expression Search Program. String string = "Madam, I am Adam";

// Starts with
boolean b = string.startsWith("Mad"); // true

// Ends with
b = string.endsWith("dam"); // true

// Anywhere
b = string.indexOf("I am") > 0; // true

// To ignore case, regular expressions must be used

// Starts with
b = string.matches("(?i)mad.*");

// Ends with
b = string.matches("(?i).*adam");

// Anywhere
b = string.matches("(?i).*i am.*");

2008-10-30

灵魂身体。。。

sunsun9399@skype: 爱情是两个灵魂,一个身体...友谊是一个灵魂,两个身体...

2008-10-08

problem with html tag properties

with this code
<div style="width: 47px; float: left;">
some of onscreen items couldn't display

when i change to
<div style="width: 47%; float: left;">

things looking fine.
let me a msg if u know what's wrong with this.
thank you.

used codes reference: http://www.htmlcodetutorial.com/characterentities_famsupp_69.html

2008-07-26

me at hometown...

has been a long time x update anything over here.
recently nothing i done, daily task not much to say...

i'm using nokia n70... so, now i can read novel by using my hp.
read many novels that i download from internet, many of those novels is around hundred thousand words... that's really cool...

words to bring the story... or stories...
sometimes i feel that i was there, in the story line...
and i can see things in those novels that in words, but i saw!!!

excellent feeling...

2008-06-12

为什么要知道栈与堆的机制?

问:到底为什么要知道栈(stack)与堆(heap)的机制?
这真的与我有关系吗?


答:
  • 如果想要了解变量的有效范围(sope)、对象的建立、内存管理、线程(thread) 和异常处理,则认识栈与堆是很重要的。
  • 后面的章节会讨论到有关线程与异常处理的部分,其余的都会在这一章讨论。
  • 你无需知道它们是如何实现的,只是能够理解这几页的内容就足够了。

2008-06-03

HeadFirstJava 要点 pg 78

传入与传出方法的值类型可以隐含地方大或是明确地缩小。

实例变量 - instance variable

实例变量
instance variable

CNKI翻译助手

http://dict.cnki.net/
CNKI翻译助手
辅助在线翻译系统(含覆盖专业领域最全面的科技术语汉英在线词典、英汉在线词典)

2008-05-29

Java 是做什么?

語言特性
Java之所以被開發,是要達到以下五個目的:
  • 應當使用物件導向程序設計方法學
  • 應當允許同一程序在不同的電腦平臺執行
  • 應當包括內建的對電腦網路的支持
  • 應當被設計成安全地執行遠端代碼
  • 應當易於使用,並借鑒以前那些物件導向語言(如C++)的長處。

Java技術主要分成幾個部分:Java語言、運行環境JVM、類庫。一般情況下說Java時並不區分指的是哪個部分。

Java modifier

source from: http://www.k8w.net/technology/java/200801/419.html
http://dev.21tx.com/2002/02/07/10057.html

Java语言定义了public、protected、private、abstract、static和final这6常用修饰词外
还定义了5 个不太常用的修饰词,下面是对这11个Java修饰词的介绍:



No.Modifier使用对象介绍
1public类、接口、成员无论它所处在的包定义在哪,该类(接口、成员)都是可访问的
2private成员成员只可以在定义它的类中被访问
3static类、方法、字段、初始化函数成名为static的内部类是一个顶级类,它和包含类的成员是不相关的。静态方法是类方法,是被指向到所属的类而不是类的实例。静态字段是类字段,无论该字段所在的类创建了多少实例,该字段只存在一个实例被指向到所属的类而不是类的实例。初始化函数是在装载类时执行的,而不是在创建实例时执行的。
4final类、方法、字段、变量被定义成final的类不允许出现子类,不能被覆盖(不应用于动态查询),字段值不允许被修改。
5abstract类、接口、方法类中包括没有实现的方法,不能被实例化。如果是一个abstract方法,则方法体为空,该方法的实现在子类中被定义,并且包含一个abstract方法的类必须是一个abstract类
6protected成员成员只能在定义它的包中被访问,如果在其他包中被访问,则实现这个方法的类必须是该成员所属类的子类。
7native成员与操作平台相关,定义时并不定义其方法,方法的实现被一个外部的库实现。
8strictfp类、方法strictfp修饰的类中所有的方法都隐藏了strictfp修饰词,方法执行的所有浮点计算遵守IEEE 754标准,所有取值包括中间的结果都必须表示为float或double类型,而不能利用由本地平台浮点格式或硬件提供的额外精度或表示范围。
9synchronized方法对于一个静态的方法,在执行之前jvm把它所在的类锁定;对于一个非静态类的方法,执行前把某个特定对象实例锁定。
10volatile字段因为异步线程可以访问字段,所以有些优化操作是一定不能作用在字段上的。volatile有时可以代替synchronized.
11transient字段字段不是对象持久状态的一部分,不应该把字段和对象一起串起。

meet with new friend, assertion from java island

damn...
kind of simple code, but today i just know...





Fig. 13.9 Checking with assert that a value is within range.
   1  // Fig. 13.9: AssertTest.java
2 // Demonstrates the assert statement 3 import java.util.Scanner; 4 5 public class AssertTest 6 {
7 public static void main( String args[] ) 8 { 9 Scanner input = new Scanner( System.in ); 10 11 System.out.print( "Enter a number between 0 and 10: " );
12 int number = input.nextInt(); 13
14 // assert that the absolute value is >= 0
15 assert ( number >= 0 && number <= 10 ) : "bad number: " + number;
16
17 System.out.printf( "You entered %d\n", number );
18 } // end main
19 } // end class AssertTest



Enter a number between 0 and 10: 5
You entered 5






Enter a number between 0 and 10: 50
Exception in thread "main" java.lang.AssertionError: bad number: 50
at AssertTest.main(AssertTest.java:15)


2008-05-06

mp3 edit

google found by: mp3 edit
URL: http://www.nch.com.au/wavepad/

WavePad Sound Editor
Professional Audio Editing Software

able to load mpg/audio files and trim, edit and convert to other formats.

2008-04-24

车零件和专有名词的介绍以及简称

Source from: http://zhidao.baidu.com/question/22900168.html?fr=qrl
found by: www.baidu.com
with words: 车 零件 介绍


一.外部的一些部件

1.发动器(引擎)罩盖 bonnet(US.E. hood)
2.行李箱 boot(US.E. trunk)
3.保险杠 bumper
4.门 door
5.排气管 exhaust pipe
6.头灯 headlight
7.毂盖 hubcap
8.转向灯 indicator light (US.E. turn signal)
9.牌照 number plate (US,E. license plate)
10.尾灯 rear light (US.E. taillight)
11.后窗 rear window
12.牌照号码 registration number
13.车顶 roof
14.车顶架 roof-rack
15.边灯 sidelight (US.E. parking light)
16.轮胎 tyre (US.E. tire)
17.挡风玻璃窗 windscreen (US.E. windshield)
18.刮水器(雨刷) windscreen wiper
19.翼子板 wing (US.E. fender)
20.后视镜 wing mirror (US.E. side mirror)
21.天线 antenna

二.内部装置

1.油门踏板 accelerator pedal (US.E.gas pedal)
2.刹车踏板 brake pedal
3.阻风门纽 choke
4.离合器踏板 clutch pedal
5.仪表板 dashboard/fascia
6.司机座 driver's seat
7.门把 door handle
8.变速杆 gear-lever (US.E. gearshift)
9.储物箱 glove compartment
10.手刹车 handbrake
11.头垫 head-rest
12.暖气设备 heater
13.喇叭 horn
14.点火开关 ignition switch
15.客座 passenger seat
16.后视镜 rear-view mirror
17.安全带 seat-belt
18.速度计 speedometer
19.方向盘 steeringwheel

三.发动机和底盘

1.空气过滤器 air filter
2.车轴 axle
3.蓄电池 battery
4.鼓式制动器 brake-drum
5.汽化器 carburettor (US.E. carburetor)
6.底盘 chassis
7.离合器 clutch
8.量油尺 dip-stick
9.手刹车 handbrake
10.差速器 differential gear
11.发电机 dynamo
12.排气歧管 exhaust manifold
13.风扇 fan
14.风扇皮带 fan belt
15.变速箱 gearbox
16.导线 leads
17.汽油箱 petrol tank (US.E. gas tank)
18.冷却器 radiator
19.避震器 shock absorber
20.消声器 silencer (US.E. muffler)
21.火化塞 sparking-plug (US.E. spark plug)
22.起动发动机 starter motor
23.悬挂装置 suspension
24.传动轴 transmission shaft (US.E. drive shaft)

"US.E."代表是美式英语
参考资料:http://hi.baidu.com/ferrari1

自己如何清洗汽车

source from: http://www.xche.com.cn/bbs2/1/?art=http://www.xche.com.cn/art/6579/65795.html
found by: www.google.com
with words: 挡风 玻璃 窗 车 如何 清洗

* 自己如何清洗汽车
本文相关车型:四川丰田
  


电动洗车虽然快速、省力,但不省钱,而且有一些死角无法洗到,表面清洁也不是十全十美。所以,有时候也不妨自己动手清洗汽车。

(1)先用清水清洗车身,方法是从车顶往下冲洗污物。

(2)用清水仔细冲洗前后车身及前后挡风玻璃上附着的污泥。

(3)用清水冲洗两侧玻璃门窗。

(4)用清水柱冲洗车轮挡泥板内侧及凹缘内处,并用手或布擦或挖凹缘内的积泥。

(5)用水柱冲洗减振器上的积泥。

(6)用清水冲洗车门板下的淤泥。

(7)用软毛刷子及清水刷洗前后保险杠上的污泥。

(8)用布或软毛刷子或海绵刷洗轮圈护盖上的污泥。

(9)用水柱彻底冲洗前挡泥板上的污泥。

(10)用水柱彻底冲洗后挡泥板、后保险杠与车身连接处接缝中泊污泥。

(11)用清水清洗后照镜与车窗及连接处的污泥。

(12)用水大力冲洗车身下底盘各处污泥和油秽。

(13)用水大力冲洗车轮污泥,并用刷子或螺丝刀清除轮胎纹沟中的小石子和其他脏物。

(14)用毛巾或布配合清水擦洗全车。

(15)用半干半湿毛巾按"车顶-前挡风玻璃-后车身-行李箱盖-发动机盖-前后保险杠-左右两侧及车窗"的顺序擦去残留污痕。

(16)用干毛巾按上述程序擦干全车。

如果有高压水枪,可先将车身全部喷射清洗一次,然后按"前后挡风玻璃及通风口-左右车门及挡风玻璃-车门板下部及门饰板和饰条-底盘各处及门槛间和缝隙和车轮顶部-前后保险杠及其与车身的接缝处-车轮及轮胎"的顺序进行冲洗,然后进行上述的(14)至(16)步即可。

2008-04-03

eclipse: steps for [New Java Project]/[Create project from existing source.]

eclipse: steps for [New Java Project]/[Create project from existing source.]





  1. Create new workplace.

  2. Configure(add) JRE 1.5 ([Window > Preferences]>[Java > Installed JREs > Add])


    1. browse jdk1.5.0_12 directory. -> click OK.

    2. select the JRE which just added. -> click OK.

    3. (need to change Compiler compliance level@Window.Preference.Java.Compiler)

  3. Configure Tomcat version:


    1. Select Tomcat version 5.x

    2. browse Tomcat Home -> click OK.

    3. -> click Apply.



  1. Create New Project (pure new/from existing source)


    1. File > New > Project

    2. Java > Java Project.-> Click Next.

    3. -> Type Project Name

    4. Choose Contents -> Click Create Project from existing source.

    5. Browse source directory(location path) -> Click OK.

    6. Optional to check Add project to working set. -> Click Next

  2. go to Libraries tab


    1. Check if Tomcat doesn't in the list.


      1. (create user libraries for tomcat - jasper-runtime.jar, jsp-api.jar, servlet-api.jar)

  3. database xml Configuration


    1. edit config.xml (path, port, id, password)

    2. edit hibernate.cfg.xml (path, port, id, password)


done.

2008-03-28

twitter 罢工。。。

gmail 的 twitter 罢工???

2008-03-26

Korea Star King

Star King #8 - Five Year Old Blind Genius Pianist (en)
http://www.youtube.com/watch?v=ntReE2n15bo

heechul crying cut from star king super junior t
http://www.youtube.com/watch?v=JCOFHC075iI&feature=related

(Blind) 5 years old girl on Piano - Variety Show (Korea)
http://www.youtube.com/watch?v=3SFppCXNOyk&feature=related

Star King #44 - Boy dancing Tell Me, Girls Generation (en)
http://www.youtube.com/watch?v=pw0zRb3bgMQ&feature=related

Star King #38 - Charice Pempengco Wows The World (en)
http://www.youtube.com/watch?v=WZccz5cy3ks&feature=related

___________________________________________________________________________
extra:
Bianca Ryan vs. Charice Pemepngco! prove it! Who is better
http://www.youtube.com/watch?v=7mWKTbcbRmY&feature=related

2008-03-13

tech-recipes

http://www.tech-recipes.com/

found by phrase: xp vista theme

2008-03-12

斟酌

斟酌
zhen 1 zhuo 2

斟酌: [ zhēn zhuó ]

1. wrestle
2. went behind

其它相关解释:



例句与用法:
1. 此事已成定局,我们不能再去斟酌它了。
It is settled and therefore we cannot go behind it.

2. 我得先斟酌一下, 才能决定是否接受这样的提议.
I'd hesitate before accepting such an offer.

2008-03-02

华联聚会

chu san our secondary school 10ann gathering wil held in hua lian school hall


only for 1999 grad

to be continue

2008-02-14

熟透的香蕉會產生攻擊異常細胞的物質 TNF

Subject: 熟透的香蕉會產生攻擊異常細胞的物質 TNF

我今天看連網路看台灣新聞,有一個小女孩3歲時得白血球癌症,她媽媽施行每日五蔬果,疾病遠離我。
现在这个小女孩已上学并且白血球的癌症已痊愈了。

熟透的香蕉會產生攻擊異常細胞的物質 TNF
您可能會發現不久的將來 ........香蕉會缺貨 !!
香蕉愈成熟即表皮上黑斑愈多, 它的免疫活性也就愈高。
日本人愛吃香蕉不是沒原因的, 大、小朋友們都喜歡吃香蕉 ~真方便,每日五蔬果,疾病遠離我喔 ........
根據日本科學家的研究發現,香蕉中具有抗癌作用的物質 TNF。
而且,香蕉愈成熟其抗癌效果愈高。
日本東京大學教授山崎正利利用動物試驗,比較了香蕉、葡萄、蘋果、西瓜、菠蘿、梨子、柿子等多種水果的免疫活性,結果證實其中以香蕉的效果最好,能夠增加白血球,改善免疫系統的功能,還會產生攻擊異常細胞的物質 TNF。
山崎 教授的試驗也發現, 香蕉愈成熟即表皮上黑斑愈多,它的免疫活性也就愈高。
所以從現在開始要吃熟一點的香蕉唷! 香蕉不會使白血球盲目增長只有在數量少的時候才會大幅度增加。 因此,專家們研究認為,香蕉具有的免疫激活作用比較溫和 , 在人體狀態健康時並不會使免疫力異常升高. 但對病人、老人和抵抗力差的體弱者則很有效果。
因此,在日常生活中,我們不妨每天吃1∼2根香蕉,透過提升身體的抗病能力來 預防感染,特別是預防感冒和流感等病毒的侵襲。
山崎 教授指出,在黃色表皮上出現黑色斑點的香蕉,其增加白血球的能力......... 要比表皮發青綠的香蕉強8 倍。

2008-02-10

轻轻的 say hello...

Memo... - まっ白
http://anitalau.blog.163.com/

Date found: 2008-02-10 9:12pm
Artist: Rosie Thomas
Song: Say Hello.mp3



Date found: 2008-03-31 11:10am
Artist: JoJo
Song: Like That.wma

2008-02-04

how to learn wisdom.

By Three Methods...
We may learn wisdom:
1st: by reflection, which is noblest;
2nd: by imitation, which is easiest;
3rd: by experience, which is the bitterest.
Confucius.

2008-02-03

asp.net query builder parameter

Found by: asp.net query builder parameter
IDE: Visual Studio 2005
Found URL: http://forums.asp.net/t/1199996.aspx


Quetion/Problem:
Hi there, I have an urgent problem Some background: I'm using vs2005, MySql and Vb.net. Now, I watched the video from asp.net on hilo_data_final which shows you how to create a typed dataset, and using the wizard create adapters, datatables together with the query builder and then filter a given select statement by using an @something parameter. Now, when using MS Sql, it works and after finishing the query builder, the parameter is placed inside the table adapter, but when using MySql, the moment I change the query syntax, the parameter is the "recognized" by vs2005. Hope someone can help...



Solved by:
Hi,
in your query builder, change the @ to ? (question mark).
hope it helps..

Cheers,
CLIPER
There’s nothing constant in this world, except change.
------------------------------------------------
Believe nothing, no matter where you read it, or who said it, no matter if I have said it, unless it agrees with your own reason and your own commonsense.
---Buddha (563BC-483BC)

2008-01-28

HEALTH Important notice‏.

by: sy NEOH @hotmail.com
Subject: FW: HEALTH Important notice


少喝奶茶;
Reduce volume of tea;

不吃 刚烤的面包;
Do not eat bread which JUST toasted;

远离充 手机电源 ;
Get a distance from charger;

白天多喝水,晚上少喝;
Drink more water at the morning, less in the night;

一天 不喝多于两杯咖啡;
Do not drink coffee twice a day;

少吃油多的食物;
Reduce volume of oily food;

最佳睡眠为晚上十点至凌晨六点;
Best sleeping time is from 10 at night to 6 at the morning;

晚上五点后少吃大餐;
Do not have HUGE meals after 5pm;

每天喝酒不多过一杯;
Do not take alcohol more than a cup daily;

不用 冷水服胶囊;
Do not take capsule with cool water;

睡前半小时服药忌立刻躺下;
Do not lie down immediately after taking medicine before sleeping;

睡眠不足八小时人会变笨;
8 hours lack of sleep will make a person stupid;

午睡习惯的人不易老;
People who get used of napping will not get old easily;

若不能晨跑,傍晚5点至8 点的时间是散步的好时间;
If you can't get on early morning runs, 5-8 at the afternoon is a great time for jogging;

电池剩一格时不要 接电话 ,剩一格时辐射是平时的一千倍 ;
When battery left last grid, do not answer the phone. The radiation is 1000 times;

还要记得用左耳接话 ,右耳会直接伤害到大脑;
Answer the phone by left ear. It'll spoil your brain directly by using right ear;

少用耳机。用一小时后就好休息你的耳朵;
Do not use earphone for long time. Rest your ear awhile after 1 hour.


请转发 每一 你珍惜的朋友.
Forward this to friends who you care.

2008-01-22

load data into CrystalReport by generated TableAdapter.Fill() DataTable

Dim c As DataTable = Me.dsNorthwind.Customers

Me.taCustomers.Fill(c)
Me.crtAllCustomer.SetDataSource(c)
Me.crvCustomers.ReportSource = Me.crtAllCustomer
Me.crvCustomers.DisplayGroupTree = False

Me.crvCustomers.Zoom(70)

2008-01-13

养生的 12 把金锁匙!

養生~12把金鑰匙...


抗老專

王衛民教授的12把金鑰匙
1 KEY 晨起一杯水,身體水平衡 WATER
2 KEY 右側臥、睡如弓,睡眠品質好 SLEEP
3 KEY 只吃七分飽,身體自然好 APPETITE
4 KEY 生命在運動中蓬勃 EXERCISE
5 KEY 音樂舒暢身心,讀書增加智慧 MUSIC/LITERATURE
6 KEY 常吃豆,可長壽 BEANS
7 KEY 跟菸、酒說再見 VICES
8 KEY 愛與性完美和諧 LOVE/S EX
9 KEY 擺脫孤獨寂寞就健康 LONELINESS
10 KEY 勤用腦,防衰老 MIND
11 KEY 多喝茶,可減肥、防癌、保青春 TEA
12 KEY  用笑容面對人生 SMILE


伸懶腰養生
人在疲倦時,伸個懶腰是挺舒服的。尤其是對伏案工作的人來說,伸懶腰更是一種非常有益的體育活動。人體健康狀況的重要指標之一,就是血液循環正常與否。因為,為人體各部分提供營養物質,並把廢物帶走的工作,都是由循環流動的血液完成的。伸個懶腰,會引起全身大部分肌肉的較強收縮,在持續幾秒鐘的伸懶腰動作中,很多瘀積的血液被趕回了心臟,就可以改善血液循環,與此同時,肌肉的收縮和舒張作用,亦能增進肌肉本身的血液流動,使肌肉內的廢物得以帶走,從而消除疲勞,振奮精神。此外,伸懶腰時人們總喜歡兩臂外展,出現擴胸運動,從而使人心曠神怡,開懷氣暢。
不能喝的五種開水
下列五種開水不宜飲用:
在爐灶上沸騰了很長時間,飲用水已經是溫吞水。
裝在熱水瓶裡已好幾天,成了不新鮮的溫開水。
經過多次反覆煮沸的殘留開水。
開水鍋爐中隔夜重煮和未重煮的開水。
蒸飯、蒸肉後的「下腳水」。
這幾種開水不適宜飲用的原因,簡單地說,反覆沸過的開水中,所含的鈣、鎂、氯、重金屬等微量成分增高了,會對人的腎臟產生不良影響。而溫吞水中亞硝酸鹽容易增多。
不要過量地食用水果
日本京都大學醫學部滕田一郎教授指出,過量地食用水果,會使體內積蓄大量維生素C,進而產生草酸。草酸與人體汗液混合排出,會損傷皮膚,使皮膚變得粗糙,嚴重者還會產生藥物過敏性皮炎。
對此,美國科學家也得出同樣的結論。
他們還認為,吃水果根據不同季節和不同病症加以選擇。
如秋、冬季,天氣乾燥,應選擇有利尿解熱作用的雪梨或有潤腸作用的香蕉、蘋果吃;長期咳嗽的人,應多吃些性寒味甘、有潤肺、消炎止咳功能的梨。腸胃消化不良、老年性心臟衰弱、冠心病和高血脂病患者,常吃山楂,大有裨益。

不要過量地吃雞蛋

雞蛋富含營養物質,是一種男女老少咸宜的滋補品。雞蛋的吃法很多,但以下面兩種食用方法為佳:一是將蛋拌在湯內,或用滾開水沖服,這樣有利於消化吸收;二是煎荷包蛋並加適量白糖,這樣營養效果最顯著。有人覺得雞蛋營養豐富,因此主張多吃,以為攝取的雞蛋越多,增加的營養物質就越豐富。其實,這完全是個誤解。據測定,按人體對蛋白質的需要量,每天吃1~2個雞蛋就足夠了。

不要忘記吃飯前先喝一碗湯

人們已發現,在吃飯前,先喝點熱湯,對控制體重的增加是有好處的。美國學者以一千個肥胖者作對象,進行調查。結果顯示,飯前先喝熱湯的人,每餐攝取的熱量,往往要少55卡。
一般說來,吃飯快的人,容易發胖。這是因為大腦的食慾中樞接受「已吃飽」的信號需要一定的時間。這時,吃飯快的人已經吃下了過量的食物。但如果飯前喝一碗湯,則可減少飯量,從而防止發胖。

不要以為喝水沒有最佳時間

一般說來,我們平均每天最少要喝1500㏄水。除了患有特殊疾病(例如心臟機能或腎臟機能不足)的人之外,我們喝的水一般都顯得不夠,特別是家裡或工作場所太暖或開了冷氣機而致空氣乾燥的時候。我們最好在三餐之間和用餐時常常喝水,不過每次不要喝得太多。

不要以為早餐吃得飽就行了
有人說:「早餐吃得飽,午餐吃得好,晚餐吃得少」,認為「早餐吃得飽」就行了,其實不然。早餐是一天當中最重要的一頓飯。一頓好的、高蛋白的早餐可以使血糖能在較長的時間裡保持正常的水平。早飯除有熱飲料如咖啡或茶外,還應有穀類食品(燕麥做的食品),動物蛋白質(牛奶、酸牛奶、雞蛋),水果或果汁,以及含有少量的脂肪和糖的食品。所以說,早餐不僅要吃得飽,而且要吃得好。
美國芝加哥大學的研究表明,吃完高蛋白的早飯以後,血糖在15分鐘內由空腹時的70~80毫克,升到140~150毫克(正常血糖水平在80~120毫克之間)。值得一提的是,賦予我們生命活力的能量來源,就是正常或高於正常水平的血壓。

別以為淋浴的功能僅在於衛生

淋浴對人體有利,因為噴水的蓮蓬頭事一個很好的陰離子發生器。當蓮蓬頭噴射細水流時,會在空氣中產生大量的陰離子。陰離子是一種特殊的維生素,可以促進人們的新陳代謝,有利於機體生長、發育和排泄廢物,提高人體免疫力,有降低血壓、鎮咳、消除疲勞、催眠等作用。因此,人們在淋浴時會感到很舒服。

不要將開水燒了又燒

有的家庭為了節省燃料,常將溫開水再燒開,這是不符合飲水衛生的。實驗證明,水經過反覆燒開,會使水裡的硝酸鹽物質,變成有毒的亞硝酸鹽它會使人體中的血紅蛋白變為亞硝基血紅蛋白,使之失去帶氧氣的能力。喝一定量含這種物質的水,會使人在十幾分鐘或一至三小時後,發生亞硝酸鹽中毒,出現組織缺氧、心慌、氣短、口唇和指甲,甚至全身皮膚紫紺,並有頭暈、頭痛、嗜睡或煩躁不安、呼吸急促、血壓下降等症狀,對人體健康影響很大。同時,亞硝酸鹽進入人體後,在胃酸的作用下,還會生成一種有毒性的亞硝氨。

喝水養生法

近年來,日本學者對晨起喝一杯涼開水(即把一杯普通的水燒開後,蓋上杯蓋冷卻到室溫攝氏25-30度)又重做了研究,認為人在經過一夜的睡眠後,胃腸道已經排空,飲下這種活性水之後,能很快的被吸收進血液循環,稀釋血液,從而對體內各器官組織進行一次「內洗滌」,增強了肝臟的解毒能力和腎臟的排泄能力,促進新陳代謝,加強免疫功能,對防治腎炎、腎結石、尿路感染都具一定療效,故泌尿科醫生常說:「保護腎臟多喝水。」另外,藉著血液稀釋和擴張血管有利於降低血壓,預防腦溢血和心肌梗塞。

葡萄酒的妙用

1. 適量飲用葡萄酒可減少心臟病猝發的危險性,也能調養心血管系統疾病。每次服酒量不宜過多,每次服用25~50即可,每天服一~二次。
2.
白葡萄酒味甜略帶酸味,飲後刺激胃液、膽汁分泌,善解油腥,對魚肉等油膩飲食尤佳。
3.
葡萄酒除含有糖分、氨基酸外,尚含豐富的維生素B12B1B2及維生素C,故對貧血有一定療效。
4.
葡萄酒還能治療流行性感冒,服用方法,每次取紅葡萄酒30-90,稍加溫服之。每天2-3次。

茶可防治高血壓

茶葉中的兒茶素和維生素CP,有增強血管的柔嫩性、降低血中膽固醇、防止脂肪在肝臟積累和防治動脈硬化的作用,故能治療高血壓、冠心病、心功能不全和脂肪肝。
飲用法:一般每次用綠茶1-2,乾山楂片5,泡茶喝,每天1-2次,經常服用。

不要長時間地煮沸咖啡

人們喜愛喝咖啡,是因為它味道芳香可口,並能使神精系統興奮。
為了使其香味不變,咖啡不宜長時間地煮沸。這是因為蒸汽泡會攜帶部分芳香物質,並聚集在咖啡表面,形成泡沫,而咖啡香味取決泡沫的密度。燒開後的咖啡繼續沸煮,會導致泡沫被破壞,使芳香物質隨蒸汽跑掉。最好是在咖啡燒好後馬上飲用,因為放涼了泡沫也會遭到破壞。

別忘記看完電視後再次洗臉

電視機開啟後,機內電子流對螢光屏不斷轟擊,螢光屏表面會產生靜電荷。靜電荷對螢光屏周圍含有大量微生物和粒子的灰塵有吸引作用。離螢光屏太近會看電視過久,這些灰塵會附著在人的皮膚上導致皮膚病(常出現面部斑疹),因此看電視時不能離螢光屏太近,看電視時間也不宜長,看完後最好用溫水洗臉。

不要老是乘車不走路

日本科學家發現一個有趣定律,糖尿病發病率隨著小汽車數量的增加而升高。經常乘車的人容易發胖,肥胖不僅能誘發糖尿病,而且會使病情加重。這一情況在日本發生能源危機時又一次從反面得到證明:一些在此期間不得不步行的糖尿病患者,看病的次數明顯減少了。

2008-01-11

下次感冒初起, 不妨试试 !

下次感冒初起, 不妨試試 !

可以很快使感冒或頭痛不再繼續惡化!

友人轉寄,說 得蠻有道理的,提供參考!

如果你感覺到已經開始流鼻水、連續打噴嚏、有點頭痛,就快要感冒了!趕緊先喝兩、三杯熱 開水(不可以喝冰的)

等三、五分鐘,再沖一杯咖啡,任何咖啡都可以,三合一的最方便了,如果沒有,鐵罐子的咖啡? ?

可以,一定要熱的喝才有效 ( 不可冰)。

二、三十分鐘以後,咖啡和先前喝的開水會讓你要尿尿,而且,很神 奇的,流鼻水、打噴嚏、頭痛都慢慢不見了!

知道為什麼這麼好用?

一、咖啡可以讓你加速排 尿,加上先喝的開水,可以把已經侵入繁殖的病毒,從身體裡「洗」掉大部分。

二、咖啡有提神、興奮的作用,會讓你低迷不振的免疫 功能提振起來,病毒從尿尿排掉了一部分,免疫功能又加強了,感冒繼續惡化的可能當然降低不少。

2007-12-31

新的一年

2008,第27个年头
多些行动,将是不一样的第一步。

早安,2008
明天再见~!

2007-12-27

Using Transactions.TransactionScope

Trying to do with: running Using scope As Transactions.TransactionScope = New Transactions.TransactionScope() in vs 2005 pro by vb.net
Searched by: TransactionScope imports
Source from: http://www.devnewsgroups.net/group/microsoft.public.dotnet.framework.adonet/topic59025.aspx


"Namespace or type specified in the imports 'System.Transactions' doesn't contain any public member or cannot be found. Make sure then namespace... etc."

When I visit the properties of the project and check the available references I can't find it there either. Do I have to do something extra before using that Namespace?


If you are using Visual Studio 2005 Standard Editon & above do the following
Right click on the project
Add Reference
you'll definitely see reference System.Transaction under .NET references in
the references tab.

MSDTC on server is unavailable.

Trying to do with: running Using scope As Transactions.TransactionScope = New Transactions.TransactionScope() in vs 2005 pro by vb.net
Searched by: MSDTC on server is unavailable
Source from: http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=54705




[*]

On the server where the trigger resides, you need to turn the MSDTC service on. You can this by clicking START > SETTINGS > CONTROL PANEL > ADMINISTRATIVE TOOLS > SERVICES. Find the service called 'Distributed Transaction Coordinator' and RIGHT CLICK (on it and select) > Start.

Test the trigger and see if it works. If it still does not work, wrap you trigger in the following transaction code (found below in bold):


SET XACT_ABORT ON
BEGIN DISTRIBUTED TRANSACTION


-- Put all queries in here (SELECT, INSERT, UPDATE, and DELETE)
select * from [SERVER2].[DBASE].[OWNER].[TABLENAME]
update [SERVER2].[DBASE].[OWNER].[TABLENAME]
set [column] = value
where [condition(s)]

COMMIT TRANSACTION
SET XACT_ABORT OFF



This solution solved our problems, I hope they solve yours.
We ran into the following errors, and the above fixed them:
1. MSDTC on server is unavailable. [fixed this error by started the service above [*] ]
2. Server: Msg 7395, Level 16, State 2, Procedure name, Line 26
Unable to start a nested transaction for OLE DB provider 'SQLOLEDB'. A nested transaction was required because the XACT_ABORT option was set to OFF.
[OLE/DB provider returned message: Cannot start more transactions on this session.]
OLE DB error trace [OLE/DB Provider 'SQLOLEDB' ITransactionLocal::StartTransaction returned 0x8004d013: ISOLEVEL=4096].

2007-12-20

msn nick

☑爱自己
☐Rich
LoL ~~ o(∩_∩)o...

2007-12-19

DateTimePicker vb.net 2005 bindingsource

These will cause error:
  1. DateTimePicker.value = DateTime.Now().ToString("yyyy-MM-dd dddd hh:mm:ss tt")
  2. DateTimePicker.value = Format(Now, "yyyy-MM-dd dddd hh:mm:ss tt")
if assign value to any components(comboBox.selectedIndex, DateTimePicker.value) within constructor New() body, after form those assigned value don't work as expected.

fixed by: assign value within form_load body.

2007-12-11

sql server functions

SQL Server 2000

There are three types of UDF in Microsoft SQL Server 2000:

  1. Scalar functions.
  2. Inline table-valued functions.
  3. Multistatement table-valued functions.

Scalar functions return a single data value (not a table) with RETURNS clause. Scalar functions can use all scalar data types, with exception of timestamp and user-defined data types. Inline table-valued functions return the result set of a single SELECT statement. Multistatement table-valued functions return a table, which was built with many TRANSACT-SQL statements.

User-defined functions can be invoked from a query like built-in functions such as OBJECT_ID, LEN, DATEDIFF, or can be executed through an EXECUTE statement like stored procedures.

2007-12-10

The Structure of Stored Procedures

The Structure of Stored Procedures
(from SQL SERVER 2000 Stored Procedure Programming)

We will pause aminute to explain the structure of a stored procedure.
A stored procedure encapsulates a relatively simple Select statement for later use.
It returns a recordset containing values from the Selected column.

The recordset will contain only records that matched with the WHERE statement.

The code of a stored procedure consists of a header and a body.

The header of the stored procedure defines external attributes of the stored procedure—its name and a list of one or more parameters.

A example stored procedure has two parameters.
Parameter names must start with the @ character.
The developer must also define a datatype for each parameter.
The header must begin with the Create Procedure keyword and finish with the As keyword.

The body of the stored procedure contains the Transact-SQL statements to be executed when the stored procedure runs.

In this example, there is just one Select statement using the procedure parameters.

2007-12-03

钻石水机用户,是真是假,有关当局快快帮帮忙。

Cz: 钻石水机用户,是真是假,有待你的医生从你的医药报告 一一告知以你

有線新聞踢爆鑽石能量水廣告
http://www.youtube.com/watch?v=-NkHV0a10Do


鑽石水機用戶,請立刻驗腎!!!
請立刻轉寄給所有鑽石水機用戶,功德無量!!!

鑽石水機用戶感染腎小球腎炎 - 李小姐 32 歲,每年都有例行全身檢驗的習慣,
2006 2 月,李小姐安裝了一台鑽石水機,開始生飲過瀘後的水,
2006 4月作例行全身檢驗時發覺感染了腎小球腎炎,腎功能開始衰退。

據知馬來西亞,新加坡和香港已有多人受感染。 鑽石水機大腸桿菌嚴重超標

鑽石水機用戶陳先生,2006 6月安裝了一台鑽石水機,開始生飲過瀘後的水,
感到
身體不適,每天肚瀉多次,代理解釋為好轉反應,陳先生不放心
於是自行把過瀘後
水交化驗所化驗,結果是大腸桿菌嚴重超標。
陳先生於是立刻退機。


Cz: 有关当局快帮帮忙,别让你忠实的用户,过于担心。
好的产品当然不怕考验,希望这一封转邮,纯属恶搞。
要不然,受害者多得是啊~

p/s:查证后,将有详细的讯息 将陆续上载~

new function of blogger



today, new function from blogger.

Write. Share. Post.
Post to Blogger from Google Docs & Spreadsheets.

friendster vs facebook


trend of customizing for friendster steping after facebook.

few days back, friendster launched something which is similiar with facebook.

2007-11-30

From - An.Inconvenient.Truth.2006.

From “An.Inconvenient.Truth.2006.”

Learn as much as you can about the climate crisis.
Then put your knowledge into action. www.climatecrisis.net

2007-11-29

vb.net time format string.

CodesOutput
Format(Now, "h")System.FormatException was unhandled
Input string was not in a correct format.
FormatDateTime(Now, DateFormat.ShortTime)19:36 (in 24 hour)
DateTime.Now.ToString("h")
or
Now.ToString(" h")
7 (in 12 hour)
Now.Hour.ToString(" h")h (not appear figure in hour)

转:hottest forum in china

http://www.tianya.cn/
[5:32:27 PM] Gwyneth Tham says: iit's one of the hottest forum in china nowadays
[5:32:27 PM] Gwyneth Tham says: it has lots of forums for lots of topics

Formatting Dates and Times

Formatting Dates and Times

A format string for date/time values can use one of the predefined string values shown in the following table.

StringDescription
Long DateDDisplays a date in long date format.
Short DatedDisplays a date in short date format.
Long TimeTDisplays a date in long date format.
Short TimetDisplays a date in short date format.
FDisplays the long date and long time.
fDisplays the long date and short time.
gDisplays the short date and short time.
MmDisplays the month and the day of a date.
YyFormats the date as the year and month.






Examples of applying a format string to date/time values are shown in the following table.

FormatOutput
Format(Now,"D")Thursday, November 29, 2007
Format(Now,"d")11/29/2007
Format(Now,"T")3:20:02 AM
Format(Now,"t")3:20 AM
Format(Now,"F")Thursday, November 29, 2007 3:20:02 AM
Format(Now,"f")Thursday, November 29, 2007 3:20 AM
Format(Now,"g")11/29/2007 3:20 AM
Format(Now,"m")November 29
Format(Now,"y")November, 2007

kitten for adoption




















Born/Found on 2007 Nov 25
Photo took on 2007 Nov 27

Bio status:
- healthy
- eyes still closing
- milk feeding

if any one interested, pls contact me before too late.


Open Adoption Closed on 2007 Nov 30.

TypeInitializationException was unhandled


Public g_sptCompany As new clsCompany

fixed by:
Public g_sptCompany As clsCompany
g_sptCompany = new clsCompany

Then VS2005 show me in the clsCompany constructor have some errors in VS2005 errors list, then easy to fix.

2007-11-24

Editing guide for private battlenet server of Warcraft III.

well...,
just simply a lousy guide for editing private battlenet server of warcraft III,
will keep update ya.

(assuming your copy of Warcraft III in pc is installed, able to play in single player and LAN,
and u able to connected to official battlenet servers,
but could not login due to id and password)

Tools: BNetGatewayEditor.exe
version: 2.0.3.1.
(perfer this version's flexibilities)
Url: http://track.eurobattle.net/
browser: any will do.
(any will do)


To be continue...

different of beginning and ending.

friendster Shoutout:

"~=~N0body cAn g0 baCk and staRt a nEw begiNning, but any0ne can sTart t0day and mAke a new ending."~=~"

2007-11-21

朋友是啥?

from evapink@msn:

朋友就是被你看透了 還能喜歡你的人。

Cz: 学习找朋友的当儿,也应当学习如何成为别人的朋友吧~

2007-11-20

转:是真是假,如何查证呢?

Fw: must read

有個朋友,在一次烤肉聚會當中絆倒了,摔了一跤,旁邊的朋友建議找醫護人員,但她很確定自己沒事, 只是穿了新鞋被磚塊絆了一下罷了。她還有點危危顫顫站立不穩的時候,朋友們幫她清洗乾淨,又為她盛了一盤食物, 她就跟著大家一起享受接下來的時光了。

她的先生後來打電話通知大家,她被送到醫院,傍晚六點,就過世了,原因是她在烤肉聚餐的時候中風。如果他們懂得辨識 中風的癥兆,她現在也許還跟我們在一起。有些人不會死,但結局處於無助無望的景況中。

只需要花一分鐘的時間讀完這篇文章,腦神經外科醫師說,如果他能在三 小時之內接觸到中風患者,他就可以將中風的後果完全扭轉過來。訣竅就是辨識診斷出中風的問題,並讓病患在三小時之內接受醫療,而這是很難的。

辨識中風感謝 上帝讓我們記住 STR 三步驟,請閱讀並學習 !
有時候中風的癥兆很難辨認,不幸的是,缺乏警覺就會帶來災難。身邊的人辨認不出中風的徵兆,中風患者就會嚴重腦傷。醫生說,旁人只要問三個簡單的問題, 就可以辨識中風:

S : (smile) 要求患者笑一下
T : (talk) 要求患者說一句簡單的句子(要有條理,有連貫性)
例如:今天天氣晴朗。
R : (raise) 要求患者舉起雙手注意:


另外一項中風癥兆是: 要求患者伸出舌頭 ,如果舌頭「彎曲」或偏向一邊,那也是中風的徵兆。

上面四個動作,患者如果有任何一個動作 做不來, 就要立刻打 999!!!
並且把症狀描述給接線者聽。
心臟科醫師說,收到這封電函的人, 若能將它轉寄給 10 個人, 就至少可以救一條命。

Cz:是真是假,如何查证呢?唯有记在脑力,别等要派上用场时,记不着。。。那就无法查证了咯~

2007-11-15

dig and view CHKDSK result after reboot

Once you have restarted and CHKDSK has carried out the surface scan, Windows will boot normally. For a log of the results, right-click 'my computer' and select 'manage,' then open up 'event viewer\applications'.





Event Type: Information
Event Source: Winlogon
Event Category: None
Event ID: 1001
Date: 2007-11-05
Time: 10:46:38 PM
User: N/A
Computer: CZ
Description:
Checking file system on C:
The type of the file system is NTFS.

A disk check has been scheduled.
Windows will now check the disk.
Cleaning up minor inconsistencies on the drive.
Cleaning up 127 unused index entries from index $SII of file 0x9.
Cleaning up 127 unused index entries from index $SDH of file 0x9.
Cleaning up 127 unused security descriptors.
CHKDSK is verifying Usn Journal...
Usn Journal verification completed.
CHKDSK is verifying file data (stage 4 of 5)...
Read failure with status 0xc000009c at offset 0x891a9d000 for 0x10000 bytes.
Read failure with status 0xc000009c at offset 0x891aa9000 for 0x1000 bytes.
Windows replaced bad clusters in file 10539
of name \DOCUME~1\billson.CZ\Desktop\NTUSER~1.BAK.
File data verification completed.
CHKDSK is verifying free space (stage 5 of 5)...
Free space verification is complete.
Adding 1 bad clusters to the Bad Clusters File.
CHKDSK discovered free space marked as allocated in the
master file table (MFT) bitmap.
Correcting errors in the Volume Bitmap.
Windows has made corrections to the file system.

52428095 KB total disk space.
23384276 KB in 102093 files.
45132 KB in 16197 indexes.
4 KB in bad sectors.
306139 KB in use by the system.
65536 KB occupied by the log file.
28692544 KB available on disk.

4096 bytes in each allocation unit.
13107023 total allocation units on disk.
7173136 allocation units available on disk.

Internal Info:
90 12 02 00 1c ce 01 00 1f fa 02 00 00 00 00 00 ................
d7 00 00 00 00 00 00 00 5f 01 00 00 00 00 00 00 ........_.......
08 36 c3 03 00 00 00 00 9c 35 d5 3f 00 00 00 00 .6.......5.?....
68 10 9d 03 00 00 00 00 5c 2e 6f 6d 02 00 00 00 h.......\.om....
08 b8 90 f4 00 00 00 00 fc 5e 2d ba 03 00 00 00 .........^-.....
99 9e 36 00 00 00 00 00 d8 3c 07 00 cd 8e 01 00 ..6......<...... 00 00 00 00 00 50 43 93 05 00 00 00 45 3f 00 00 .....PC.....E?.. Windows has finished checking your disk. Please wait while your computer restarts. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.





Details
Product:Windows Operating System
ID:1001
Source:Winlogon
Version:5.0
Symbolic Name:EVENT_AUTOCHK_DATA
Explanation

Chkdsk ran on one of the volumes when the computer restarted. A log file, bootex.log, was created and stored in the root of the volume. This file states whether Chkdsk encountered any errors and, if so, whether they were fixed.

User Action

No user action is required.

Version:5.2
Symbolic Name:EVENT_AUTOCHK_DATA
Explanation

Chkdsk ran on one of the volumes when the computer restarted. A log file, bootex.log, was created and stored in the root of the volume. This file states whether Chkdsk encountered any errors and, if so, whether they were fixed.

User Action

No user action is required.

Version:5.2.3790.1830
Message:NTFS - Autochk: file system check occurred on startup
Explanation

Microsoft® Windows® encountered corrupted file-system metadata during the last Windows session, so Windows marked the file system as “dirty” (corrupt). Windows ran the chkdsk /f command during startup in an attempt to repair the corrupted file system metadata.

Related Events

Chkdsk: Event ID 26180
Chkdsk: Event ID 1066

Cause

The file system might have been marked as “dirty” (corrupt) for one of the following reasons:

  • I/O requests that were issued by the file system to the disk subsystem might not have been completed successfully.
  • The operating system was shut down incorrectly.

    If the volume is formatted with the FAT file system, an incorrect shutdown of Windows will always cause this event (Event ID 1001). FAT is not a journaling file system. In order to maintain metadata consistency, FAT requires the operating system to be shut down properly. An incorrect shutdown (for example, a power failure) forces Windows to run chkdsk in order to ensure that the file-system metadata is consistent.

    If the volume is formatted with the NTFS file system, running chkdsk is not normally necessary. NTFS is a journaling file system and does not usually require chkdsk to ensure metadata consistency. However, NTFS depends upon the media to guarantee its write-through semantics. If the media does not accept write-through semantics, inconsistencies in the file-system metadata might occur when there is a sudden loss of power or a system failure.
  • The media (hard disk) might have developed bad sectors.
User Action

This message is provided to inform you that thechkdsk command was run on the file system. No actions are required, but the corrupted disk might indicate other disk problems. You should do the following:

  • Review the application log and the system log in Event Viewer for additional errors. Event ID 1066 contains the detailed chkdsk log. You should review the chkdsk log to see what problems (if any)chkdsk found on the volume and what fixes (if any) were made.
  • Check related hardware and devices on the shared bus to ensure that the cables are connected and that the hardware and devices are properly terminated.
  • Avoid improper shutdowns. If the volume is formatted with the FAT file system, you can usually avoid Event ID 1001 by properly shutting down Windows.

    If Event ID 1001 occurs frequently for an NTFS volume (or for a FAT volume, despite proper shutdowns), it is likely that the disk has developed bad sectors. Run chkdsk /r to locate bad sectors on the hard disk.

Related Resources

For more information about chkdsk, see Knowledge Base article 187941, “An Explanation of CHKDSK and the New /C and /I Switches,” at http://go.microsoft.com/fwlink/?LinkId=25770.

2007-11-14

Island near Phuket

Island near Phuket
Just grand opened


+ Large 400px
+ Show captions
+ Autoplay
- HTML Links (for MySpace)

but where is there actually?

911 will solve math as well for a 4 years old child.

911 will solve math problem for a 4 years old child as well.
you might think this is idiot. But...
who knows the reason behind this conversation?




i strongly giving out, this is one of the right way to educate some children.


911 emergency. Cz: greeting with manner
Yeah. I need some help.
What's the matter? What... Cz: lead the child to express himself.
With my math.
With your mouth? Cz: confirm the answer from the child.
No, with my math. I've to do it.
Will you help me?
Sure. What kind of math do you have that you need help with? Cz: inorder to keep communicating, operator keep agree with children request. eventhough this is out of "common sense" that adults think that shouldn't happen." (agree this request will easy for operator to question back later.)

I've. I've take-aways.
Oh, you gotta do the take-aways? Cz: confirm again the answer from the child.
Yeah.
All right what's the problem? Cz: lead again the child to express himself.

Okay, "Sixteen..."
...Yeah... Cz: respone to the child
"...take away eight..."
...uh-huh... Cz: respone again to the child
...is what?

You tell me. How much do you think it is? Cz: educate again by leading the child to think on what he is trying to solve. (later might let the child know this kind of problem/matter shouldn't call to 911)
I dunno, "one?"
No... How old are you? Cz: response back to the child about the answer is wrong, and trying to communicate with child by getting personal information.
I'm only four.
Four? Cz: confirm again the answer from the child.


Johnny, what are you doing?
This policeman is helping me with my math!
What did I tell you about playing on the phone?

Listen to the mother... Cz: operator again educate the child, by telling listen to the mother, but did not telling the child should listen to him.(if other people talk to this child again, child might remember about this call that he should listen to mother, not other stranger on the phone)
You said when i need help... to call somebody!
I didn't mean the POLICE!
......





educate children deep into their mind unconsciously.
In Malaysia, when will this kind of conversation happen?

math by 911

911 emergency.
Yeah. I need some help.
What's the matter? What...
With my math.
With your mouth?
No, with my math. I've to do it.
Will you help me?
Sure. What kind of math do you have that you need help with?

I've. I've take-aways.
Oh, you gotta do the take-aways?
Yeah.
All right what's the problem?
Okay, "Sixteen..."
...Yeah...
"...take away eight..."
...uh-huh...
...is what?




for video
http://billson.imeem.com/video/P3BSQPWo/joke_math_by_911_extreme_video/


You tell me. How much do you think it is?
I dunno, "one?"
No... How old are you?
I'm only four.
Four?

Johnny, what are you doing?
This policeman is helping me with my math!
What did I tell you about playing on the phone?

Listen to the mother...
You said when i need help... to call somebody!
I didn't mean the POLICE!
......

2007-11-13

bad clusters

......
CHKDSK is verifying file data (stage 4 of 5)

Windows replaced bad clusters in file 10539 of name
\DOCUME~1billson.CZ\Desktop\NTUSER~1.BAK
75 percent
......

开口说话

VeryCD

毁灭一个人只要一句话,
培植一个人却要千句话,
请你口下留情

contact me please

5366
Mc Donald
ss15
wpu
2007 Nov 12


if you have further any of these information, leave message over here or contact me.

thank you very much.





Myvi
5336

2007-11-12

dreamweaver background image

http://www.ehow.com/how_14789_add-background-image.html

张含韵 一人一梦

张含韵
一人一梦
《宝葫芦秘密》主题曲





天 有多高 有多大 想知道
有没有 传说中的城堡

海有多深 如何的奥妙
我要好好的思考
凭一个理想 来解开每个问号

我要用新鲜空气 帮助我心燃烧
我要指挥每次心跳 生命是停不下的表

每个人至少拥有一个梦想 有一个理由去坚强
感动了别人为我鼓掌 再做自己的偶像
每个人至少寻找一个梦想 每一天对得起夕阳
我幻想 游过了海洋 让那目光比星光更漂亮


我 还年少 坦白地 微笑
我爱跟勇敢合照 要达成目标
没有免费的门票

我要用新鲜空气 帮助我心燃烧
我要指挥每次心跳 生命是停不下的表

每个人至少拥有一个梦想 有一个理由去坚强
感动了别人为我鼓掌 再做自己的偶像

每个人至少寻找一个梦想 每一天对得起夕阳
我幻想 游过了海洋 让那目光比星光更漂亮

每个人至少寻找一个梦想 每一天对得起夕阳
我幻想 能乘风破浪 让那目光比星光更漂亮

2007-10-30

come what may

Define come what may :
不论发生什么事情

例句与用法:
1. Come what may, the final victory will remain with the Chinese.
无论怎样,最后的胜利是属于中国人的。
2. He promised to support her come what may.
他答应不论发生什麽事都支持她。

outlink: 加入生词本 看更多解释
inlink: http://billson.blogspot.com/2007/02/come-what-come-may.html

2007-10-25

alternative warcraft battlenet for asia players.

good news!!! at least for me. XD
an alternative for those who wish to join the blueserver, but could not make it to answer those questions at open register time.
here is the private server which is very easy to add in into ur pc.

SGBattle.Net is online.
Server IP: 218.186.115.169

SGBattle.Net Status
PvPGN version: 1.8.0
Uptime: 6 days 21 hours 4 minutes 0 seconds
Games: 0
Users: 0
Channels: 3
User accounts: 5

if finding hard to add this server into ur game, then leave msg here.
i'll get something could help u out.
yet, there is still new, currently not much ppl active over there.
which mean, if u r alone and wish to join other players for games, this is not good for u then.

but if u have a group of friends currently in battlenet, then this is good news to you i think.
to move to this private sg server, i think that's the right choice if compare with ur current battlenet server.

have fun.


guide to edit ur warcraft III battlenet server list for private server gaming.

2007-10-21

林健辉 - 让我靠近你

Added: 2018-Dec-06_pm020219



《 让 我 靠 近 你 》 唱 : 林 健 辉
2002年 《2000-2003astro新秀合輯》 - 讓我靠近你

某 年 某 月 某 一 天
你 穿 橙 色 球 鞋
不 知 不 觉 走 进 我 世 界
你 唇 上 的 口 红 像 热 情 的 感 觉
你 的 笑 容 多 么 天 真 无 邪
某 年 某 月 某 一 天
你 用 蓝 色 指 甲
撩 动 长 发 撩 动 我 心 房
你 笑 里 开 成 的 花 不 是 美 丽 想 像
这 都 是 我 陶 醉 的 原 因 吗 ?
或 许 我 太 天 真 你 太 缅 腆
我 们 的 友 情 在 SAY HI 边 缘
多 次 约 你 出 街 被 你 拒 绝
我 的 心 已 开 始 疲 倦
或 许 我 太 间 接 你 太 单 纯
对 你 的 关 心 只 能 凭 眼 神 传 接
(放 在 心 里 面 )
什 么 时 候 你 能 够 对 我 有 改 变
能 让 我 靠 近 你 一 些 (让 我 靠 近 你 一 些 )
不 想 再 尴 尬
我 该 放 下 你 吗 ?
你 在 我 心 中 还 是 那 么 优 雅
可 以 和 你 聊 个 电 话
送 你 回 家 已 美 好 得 不 像 话

2007-10-04

sms - talian kecemasan

Mulai 1 Oktober 2007, Talian Kecemasan adalah 999. Satu Negara, Satu Nombor

Sender: maxis
Sent: 17:35:36 2007-10-04

2007-09-30

菜鸟成长手册:让移动硬盘管理高人一等

来源:天极yesky 作者: 2006-09-14 出处:pcdog.com



作者:帷幄
  要想让移动硬盘工作更高效,必须学会对其进行恰当的管理;而提到管理移动硬盘,相信大家会对这样的话题有点不屑一顾,不就是将其直接插入到计算机中,然后就能开始使用了嘛,哪有什么管理技巧可言?!事实上,管理移动硬盘的技巧多着呢,
而且它的管理与Windows系统的管理一样深不可测;这不,本文下面就跳出移动硬盘自身框框的限制,巧妙借助外来的力量,来移动硬盘管理高人一等!
  借用外力,让移动硬盘“变身”启动盘
  移动硬盘能不能象普通的闪盘那样,来作为系统的启动盘直接启动系统呢?当笔者将启动系统的几个文件复制到移动硬盘中,并尝试重新启动系统时,发现移动硬盘根本无法启动Windows系统,那如何才能让移动硬盘“变身”为一个合格的系统启动盘呢?其实,要让移动硬盘具有启动系统的功能,必须具备两个条件,一个是计算机主板本身必须支持USB设备的直接启动,另外一个就是必须借助专用的工具将移动硬盘做成系统启动盘,而不是简单地复制几个系统文件就可以的。目前,大多数新买的计算机主板几乎都可以支持USB设备的直接启动,我们只要进入系统的BIOS参数设置界面,将系统设置成通过USB设备启动,就可以轻松满足第一个条件了。
  要想将普通的移动硬盘做成符合要求的系统启动盘,并不是通过简单地复制系统文件就能完成的,我们必须借助一些专用的工具才能将移动硬盘变成系统启动盘。这不,本文在这里为大家推荐的是一款惠普公司推出的“HP USB disk storage format tool”工具,利用该工具我们能很方便地将移动硬盘制作成系统启动盘。在制作启动盘时,可以先按正确方法将移动盘插入到计算机的对应端口中,然后运行“HP USB disk storage format tool”工具程序,并在其程序界面中将目标移动硬盘选中,同时选中“Create a DOS startup disk”复选项,最后指定好系统启动文件存放的目录路径,再单击一下“start”按钮,这样该工具就能自动将移动硬盘制作成系统启动盘了。制作任务完毕后,我们就能使用该移动硬盘来重新启动计算机系统了。
  借用查错,为移动硬盘“搭脉”治病
  频繁对移动硬盘中的内容进行删除、保存操作之后,移动硬盘中可能会出现一些逻辑混乱故障,这种故障尽管不影响眼前的数据保存操作,但它会降低日后读写数据的效率,而且也不利于数据的安全保存。遇到移动硬盘发生逻辑错误故障时,我们不妨巧妙利用Windows系统内置的查错功能,来为移动硬盘及时“搭脉”治病,确保移动硬盘的读写能力不受影响。在对移动硬盘进行“治疗”时,可以按照如下操作步骤来进行:
  首先打开“我的电脑”窗口,从其中找到移动硬盘对应的图标,并用鼠标右键单击该图标,从其后出现的右键菜单中执行“属性”命令,进入到移动硬盘的属性设置界面;







单击该界面中的“工具”标签,打开如图1所示的标签页面,在该页面的“查错”设置项处,单击“开始检查”按钮,并在其后出现的对话框中将“自动修复文件系统错误”以及“扫描并试图恢复坏扇区”这两个复选项选中,最后单击“开始”按钮,这样Windows系统就能自动解决移动硬盘的逻辑混乱故障了,从而有效地提高了移动硬盘的读写性能了。
  借用格式化,让移动硬盘“接纳”大文件
  相信大家在使用移动硬盘的过程中,经常会碰到“无法写入文件,磁盘已满”的提示;也许你会说这并不是什么故障呀,一旦写入的文件超过了移动硬盘的总存储容量后,系统当然会自动弹出这样的提示。的确,上面的提示有时是一种正常现象,但事实上我们有时只向移动硬盘中写入一了个容量略大于4GB的文件,移动硬盘就会出现了上面的提示,而移动硬盘此时剩余的实际空间容量要远远大于这个数目,这是为什么呢?其实,该系统提示并不是真正由于移动硬盘空间不够引起的,而是我们对移动硬盘没有进行合适的格式化操作,导致移动硬盘无法“接纳”大容量身材的文件。
  正常情况,移动硬盘一般工作在FAT32分区格式下,该格式下的磁盘分区对保存在其中的单个文件容量是有限制的,如果文件尺寸超过4个GB的话移动硬盘就会自动出现“无法写入文件,磁盘已满”的虚假提示;
  为了效果上述虚假提示,让移动硬盘顺利“接纳”大容量、大身材的文件,我们可以借助移动硬盘随机配备的专用格式化工具,来对硬盘分区进行重新格式化,在格式化过程中只需要将移动硬盘的分区格式修改为“NTFS”就可以了。
  借用服务,为移动硬盘读写提速
  有时我们用鼠标双击移动硬盘图标,准备进入移动硬盘的根目录窗口来读写文件时,发现移动硬盘窗口迟迟无法打开;造成这种故障现象的可能原因除了有网络病毒外,还有就是与移动存储设备有关的系统服务可能被设置错误。为了让移动硬盘的根目录窗口打开速度更快一些,我们应该先对系统进行全面查杀病毒,一旦病毒因素被排除在外的话,那我们再对系统相关服务进行一下检查。
  由于“Removable Storage”系统服务与移动硬盘的读写有关联,一旦该服务被意外停止的话,移动硬盘的打开速度就会受到明显影响。在查看“Removable Storage”的工作状态时,可以先打开系统的控制面板窗口,然后双击其中的“管理工具”图标,再双击其后界面中的“服务”图标,进入系统服务列表窗口;







用鼠标右键单击其中的“Removable Storage”选项,执行右键菜单中的“属性”命令,进入对应服务的属性设置窗口;在该界面“常规”选项设置页面中,我们可以轻松查看到“Removable Storage”服务当前的工作状态(如图2所示)。一旦发现该服务被意外禁止的话,那我们不妨单击一下“启动”按钮,再将该服务的启动类型设置为“自动”,最后单击一下“确定”将“Removable Storage”服务重新启动起来。之后,当我们重新进入移动硬盘根目录窗口时,或许就能感觉到打开速度有显著提高了。
  借用工具,快速恢复移动硬盘被删文件
  当我们不小心将保存在移动硬盘中的重要文件删除掉后,我们脑海中肯定会下意识地想到专用的数据恢复工具;不过移动硬盘的容量通常较大,如果使用普通的工具来恢复移动硬盘中的被删文件时,往往效率不高,而且还需要耗费不少时间。有鉴于此,笔者特地费了一番工夫,找到一款名为R-Studio的数据恢复程序,借用它我们能快速地将移动硬盘中被删除的文件或目录恢复过来,甚至利用它我们还能将格式化过的移动硬盘数据恢复过来。
  在使用R-Studio工具恢复被意外删除的文件时,可以先从网上下在得到R-Studio工具的安装程序,然后按照常规方法将该程序安装好;
  接着运行R-Studio程序,并在其主界面中双击移动硬盘所对应的盘符,然后在其后出现的对话框中单击“打开”按钮,这样R-Studio程序就会自动对移动硬盘进行快速全面扫描了,一般来说40GB大小的移动硬盘,R-Studio程序只需要花上短暂的15秒钟左右的时间就能快速扫描完成了;
  扫描操作完毕后,R-Studio程序就会把已经被删除了的文件或目录全部显示出来,并在它们对应的图标上打上鲜红的叉号以示区别其他正常的文件;要是想恢复某个目录或文件时,只需要选中待恢复的目标对象,然后依次单击菜单栏中的“文件”/“恢复”命令,这样被删除的文件或目录就能被R-Studio程序自动恢复过来了。当然,要保证数据恢复操作成功,我们必须在发现错误删除了某个文件后,不能再继续向移动硬盘中保存其他任何文件或数据了。

Google Referrals