在一起最重要的是-彼此明白的默契,這需要時間跟
環境、緣分來培養,雖然人與人之間似乎是永遠無法完全
互相理解的。
我明白他
作詞:娃娃 作曲:陶吉吉 編曲:陶吉吉 演唱:莫文蔚
他是太寂寞 愛的來去自由 又談何容易
他想逃避的感情 他並沒有勇氣 傷了人不傷心
看著他 我 就有一種莫名心動
愛著他 我 從來就一無所求
明知太傻 真的太傻 偶而想過帶他回家
睡在一起 只是說話 輕輕摸著他的頭髮
我明白他 那些痛苦快樂 他心裡在想什麼
他沒有對我說 可是 我明白他 明白他
他是太多情 浪漫放在現實 難免有些問題
他的好和他的錯 有一些是無心 有一些是故意
看著他 我 就有一種莫名心動
愛著他 我 從來就一無所求
知道他愛 知道他恨 知道他心裡的害怕
知道他在 說著謊話 全都知道也沒辦法
我愛著他 不說我愛他 也不要他的回答
只要他一直都知道 我明白他 我明白他 我明白他
2009年10月5日 星期一
[SONG]我明白他
張貼者:
kinju
於
10/05/2009 12:36:00 上午
0
意見
標籤: 心情隨筆
2009年8月25日 星期二
Twits of the day
閒置了許久,有時後想上來寫點什麼,但是又覺得好懶,
是工作的倦怠還是生活上欠缺一點刺激,我想或許都有
一點關係。
plurk上隨手寫的一行文寫多了,忽然忘記文章的起承轉合
是怎麼一回事,更可能我從來沒真正懂過XD,文章還是要多
寫才會多進步阿。
張貼者:
kinju
於
8/25/2009 12:11:00 上午
0
意見
標籤: 心情隨筆
2009年6月21日 星期日
2009年6月11日 星期四
If you really want it
If you really want it.
If you really want it, you'll push past pain,
use it, control it.
Glory,If you really want it,
live in dreams.
If you really want it,
learn from fails, learn how to win.
If you really want it, you'll feel everything to a fire
All the pain,failures,criticis,glory.
Take the ball,take the last shot,
You can do anything you want to.
If you really want it.....
張貼者:
kinju
於
6/11/2009 11:33:00 下午
0
意見
標籤: 心情隨筆
2009年4月11日 星期六
說謊
說謊的技巧在於七分真話三分假話,隨著年齡
與經驗的增長,感覺到說謊愈來愈臉不紅氣不喘了,
道德感日漸低落,雖然說假的事情做久了或許就會
變真的,不過我實在不喜歡這樣,這就是長大嗎?
張貼者:
kinju
於
4/11/2009 12:42:00 上午
0
意見
標籤: 心情隨筆
橫山家之味

這部片子雖然只是描述一個平凡家庭藉由過世長子的忌日而重聚
,在外地生活的大姊(不知道叫啥名字)、二哥(阿部寬)帶著剛結褵
的妻子與兒子返家探親短短兩天一夜所發生的故事,但是導演卻
能深刻刻畫了家中成員每個人的性格:
二哥阿部寬似乎因為從小就要被父親拿來與兄長比較,感受到相當
的壓力,總是想在父親面前證明些什麼.....
大姊雖然看起來散散的,不過卻是努力成為家庭內的黏著劑。
阿部寬的老婆夏川結衣,維持在日劇"不能結婚的男人"中的形象
,是一個很懂得體貼他人的女人。
橫山家的家長(老父親)是一個觀念守舊的男人,沙文主義很重,
但是對他身為醫生的工作感到自豪也非常的執著,甚至把工作
看的比家庭重要。
橫山家的老母親,是一位傳統的女性,一生都奉獻給家庭,甚至
曾隱忍丈夫的出軌,說的話有時辛辣且能命重要害,是印象中傳統
母親的代表。
真是一部描述人性與家庭的好電影。
張貼者:
kinju
於
4/11/2009 12:13:00 上午
0
意見
標籤: 生活雜記
2009年4月9日 星期四
SVN + Apache 2.2 Authentication Set Up
I have tried twice to start up a simple svn server with either svnserve daemon or
apache module, even both.
But every time when I want to rebuild a server in different machines, I have to
waste my time looking up Internet resource. Therefore, I determined to write a easy document about the whole procedure just in case I should forget once again.
Platform: winxp sp3 & IBM X31
1.Download SVN binary with apache module from here
2.Download apache package and install it.
After installation, enter localhost to see if apache service works.
3.Copy bin/mod_dav_svn.so and bin/mod_authz_svn.so under svn installed directiry to the Apache modules directory.
4.Set system environment variable "path" to svn insatlled directory
subfolder "bin" and reboot so that svn support dll's are visible to
apache service.
5. Edit the Apache configuration file (httpd.conf) and make the following changes:
5a. Uncomment the following two lines:
#LoadModule dav_fs_module modules/mod_dav_fs.so
#LoadModule dav_module modules/mod_dav.so
5b. Add the following two lines to the end of the LoadModule section:
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
6. Add the following code snippet in th end of http.conf
# /svn_repos attribute refers to http uri.In
# this example, it should be http://localhost/svn_repos/
#
DAV svn
SVNParentPath D:/svn_repos/
# This indicates the absolute path where your
# respositories reside in your machine
# Apache authentication begins...
AuthType Basic
AuthName "Subversion repository"
AuthUserFile D:/svn_repos/apache_authz
# Generate this "apache_authz" with htpasswd tool under apache installed
# directory "bin" subfolder with following
# command:
# htpasswd -cm path to your file username
# ex. htpasswd -cm D:/svn_repos/apache_authz kinju
# -c option means "create" Next time when you want to
# add a new user, you should omit -c option like that
# htpasswd -m D:/svn_repos/apache_authz kinjuplus
# This program should prompt you to enter password twice.
Require valid-user
### apache auth end
### svn auth begin
# our access control policy
AuthzSVNAccessFile D:/svn_repos/svn_authz
# authentication if necessary
Satisfy Any
### svn auth end
#
7. Edit svn auth policy in configuration file
as you define in http.conf previously
[groups] #define group syntax: groupname = user1,user2,....
test-developers = kinju
[/:] #repository root
*= r
@test-developers = rw
[test:/] # "test repository"
*= r
@test-developers = rw
[test:/test] # A test folder under test repository
@test-developers = rw
[test2:/] #"test2 repository"
*= r
@test-developers = rw
Tips: You must create your repository with svnadmin command line tool like that
"svnadmin create --fs-type fsfs NewRepo."
On the contrary, creating a repository with TortoiseSVN(烏龜), you probably
will encounter a error. This is a bug dued to a compatibility issue in new
version of TortoiseSVN. Refer to here
張貼者:
kinju
於
4/09/2009 01:43:00 下午
0
意見
標籤: 筆記
