果然是大师!大师阿!
Submitted by fatman on Thu, 06/18/2009 - 16:30现在才听说这事,确实是孤陋寡闻了,但是绝对够雷人:
6月14日,中国杭州,中国围棋争霸赛第二站比赛。赛前,杭州市委领导会见参赛成员,结果棋圣聂卫平继参加朱军节目后,再一次公然酣睡。(中国新闻网)
聂卫平在公众场合打瞌睡有案可查:
第一次发生在成都举行的一年一度的“西南王”比赛上。
第二次是去年4月30日,央视纪念奥运倒计时100天大型直播晚会在青岛录制现场。第三次就是央视《艺术人生》栏目的邀请,录制端午节特别节目。于丹正在讲台上“滔滔不绝”,老聂却已经酣然入梦。朱军不得不亲自上前,将老聂从梦中唤醒,居然如此反复几次。

看了这个新闻,作为一个俗人,我只能用有一个很俗的词来形容他"爆强"。我认为成功的人都有不同常人的特质。想不到这位棋圣除了棋下得好,连睡觉也能一睡惊人。通过这个现象,可见聂先生的心态是多么好,多么淡定!也只有这样,才能在比赛时应对各种压力,专心下棋!我们大部分人其实都缺少这种品质--我行我素。我们的抉择往往会旁人的左右!而聂师傅没有!
最后在引用一段记者采访:
新:你的助理说你是个比较憨的人,不在乎这些事。
Excel Keyboard Shortcuts
Submitted by fatman on Wed, 09/17/2008 - 12:46I always think microsoft excel is a great tool for works. how do you think of it?
I use excel to plan,to log,to calculate,to process data...
And excel can complete jobs greatly.
And if shortcuts are used , jobs can be done double excellent!!
The following are some shortcuts i often used, hope they can help ;-)
1.Move to the previous sheet in the workbook :
CTRL+PAGE UP
Select the current and next sheet.
2.Move to the previous sheet in the workbook :
CTRL+PAGE DOWN
3. To access the menu: press
/
or
ALT
keys.
To make your subversion (svn) support the svn:// protocol access
Submitted by fatman on Thu, 08/21/2008 - 12:33how to make your subversion (svn) support the svn:// protocol access.
platform : windows xp
1. boot your svn server on the server-side.
1.1 if you install your svn by a windows installer *.msi or *.exe install program,
those programs can always config the svn for your os system. such as add the environment variables
to the SYSTEM PATH.
1.2 if you choose a *.zip to setup your svn server , then you should add the path to the environment variable manually.
suppose you install the svn in c:\subversion ,
unix/linux data analysis / processing tools for large text format data------head
Submitted by fatman on Wed, 08/06/2008 - 00:41head
the first command i introduce here is head,later i will show others ,such as tail,wc,cat,vi,join and so on.
head means 'first' , so if you want to get the first part of your data file , you can use
head command.
such as :
head abc.dat
the result returns:
--------------------------------
the relationship of subversion and apache
Submitted by fatman on Thu, 07/31/2008 - 13:55some may be confuse on the relationship of subversion and apache
when they first wade in subversion-the great version control tools.
now i try to make it clear.
1.if someone use file:// or svn:// protocol to access svn,
they don't need apache,just install svn,take svnserve in your svn package
as a server.
2.if you want your repository to be accessed via http:// or https:// protocol,
then you need apache.
svn client:
get the hex code of character using ue
Submitted by fatman on Wed, 07/30/2008 - 12:57get the hex code of character using ue
keyword: ue,hex,transform
____ _____ ______________ ____ ____ ______
/ _ | / ___// ____/ _/ _/ / _ | / __ \/_ __/
/ /_| | \__ \/ / / / / / / /_| | / /_/ / / /
/ /__| | __/ / /___ / / / / / /__| |/ / / / / /
/_/ |_/____/\____/___/___/ /_/ |_/_/ |_| /_/
"Oldskool" or "Amiga" style
TO use a short path of windows command prompt
Submitted by fatman on Wed, 07/30/2008 - 12:27TO use a short path of windows command prompt
you like command windows?
sometimes you will change your work directories frequently,
so it often come out with a great long path before the prompt,
like : C:\Documents and Settings\Administrator>
and you want the long path "C:\Documents and Settings\Administrator>" to be hidden?
just want >cmd on the command window?
so just type :
prompt $G
then "C:\Documents and Settings\Administrator>" will disappear and only a '>' left.
is that cool?
appendix:
db2 sql develop error--value is to long
Submitted by fatman on Wed, 07/30/2008 - 12:26db2 sql develop error--value is to long
keyword:db2,err,value,insert
*
DB21034E The command was processed as an SQL statement because it was not a
valid Command Line Processor command.
During SQL processing it returned:
SQL0433N Value "hongkong paris trading company guangzhou representative office" is too long.
SQLSTATE=22001
*
when you encounter this problem,
you may check the table definition to see
if some field is too short to accept a long string.
drupal default sql connection
Submitted by fatman on Fri, 07/25/2008 - 12:12when you put your site on your host like hostmonster,
your must specify your database location and user name & password.
how should these be filled ?
suppose your mysql database name called db_drupal,
your database password is db_user,
your database password is db_pass,
then those should be:
database name: db_duser
database pass:db_pass
database location:localhost
the drupal system will generate a config string which saved in the sites/all/default/settings.php
like:
microsoft access 2003: Nz() function problems.
Submitted by fatman on Thu, 07/24/2008 - 17:51the microsoft access 2003: Nz() function
usage : FOR EXAMPLE:
Nz(var1,0)
then if var1 is null, it return 0,if var1 is not null,
it return var1 's value.
as we can see , it's very easy to use.
but recently i used it in my access query ,
when i invoked that query in the brio report ,
and found that there is not any reponse ,
in other words, the query could not be quoted by brio.
when is substitute the Nz() function by IIf(),
and the query can be successfully invoked !