2011/09/01

2011 Corel 亞太區創意設計大賽起跑 !

0 comments

2011 Corel 亞太區創意設計大賽起跑 !
即日起至2011年12月31日止,使用 Corel 軟體投稿參加亞太區創意設計比賽,就有機會一人獨得超過新台幣30萬的總冠軍獎項,並榮登國際舞台 ! 參與線上作品投票和分享大賽訊息也可以參加超值好禮抽獎喔 ! 詳情請拜訪 www.corel.com/apac-contest


2010/08/23

Ubuntu Apache php5 and mysql with Yii Framework

0 comments
First of all, I assume that you have already have the installed Ubuntu environment.

To install the apache server, open up your command line

#sudo apt-get install apache2

To install PHP5:

#sudo apt-get install php5

To install MySQL-Server

#sudo apt-get install mysql-server

To have a web-base controller of MySQL, you may install phpmyadmin

#sudo apt-get install phpmyadmin

Default Directory:
Apache: /var/www/
Apache Config: /etc/apache2/apache2.conf
MySQL: /var/lib/mysql

To check your apache is working or not,
go to http://localhost/
you will see It's work if the apache is installed well.

To check your php5 is working or not,
#cd /var/www/
#sudo touch test.php
#sudo vim test.php

write the following statement into test.php, then save and quit.

go to http://localhost/test.php

To run the Yii Framework:
Go to http://www.yiiframework.com/download/ to get the version you want.
Remember to get the tar.gz file for your Ubuntu, or you might need to install 7-zip

Decompress the file
#tar zxvf yii-1.1.x.tar.gz
Move the directory you decompressed to the web root
#sudo mv yii /var/www/

To check all the extension you need are installed
go to http://localhost/yii/requirements/
you will see the extensions which you already have and what you don't have.
Install the extension you need. For instance, if you want to use mysql as your database, then you might need to install PDO MySQL extension
using the same method to install the extension you need, that is
#sudo apt-get install xxx

2010/08/17

VMWare Fusion-Assign Physical ip for virtual host

0 comments

The configuration files for doing this reside in /Library/Application Support/VMware Fusion/vmnet8/ (the NAT interface is called "vmnet8" hence why configuration for it is here), specifically dhcpd.conf and nat.conf. These files may be read-only (even for root), so make sure to give root write permission before you edit them.

Any changes to these files requires that the following be executed before they take effect:

sudo "/Library/Application Support/VMware Fusion/boot.sh" --restart

Assigning consistent IP addresses

As explained by this blog entry you can edit the dhcpd.conf file to configure VMWare Fusion's DHCP server to assign specific IP addresses to a VM based on its MAC address. You should see something like this in your dhcpd.conf file:

subnet 192.168.87.0 netmask 255.255.255.0 {     range 192.168.87.128 192.168.87.254;     option broadcast-address 192.168.87.255;     option domain-name-servers 192.168.87.2;     option netbios-name-servers 192.168.87.2;     option domain-name "localdomain";     option routers 192.168.87.2; }

For our IP address assignments, we want to pick an IP address that is outside of the range that is set above. So in my case I picked 192.168.87.100 and 192.168.87.101 for two VMs that I wanted to configure.

So if we were to configure two VM's to have fixed IP addresses, we would add something like this to the dhcpd.conf file:

host uvm {     hardware ethernet 00:0c:29:02:00:f1;     fixed-address 192.168.87.100; }   host wvm {     hardware ethernet 00:0c:29:44:57:46;     fixed-address 192.168.87.101; }

I put entries in my /etc/hosts to point to these, so I don't have to remember IP addresses:

# Ubuntu VM 192.168.87.100        uvm # Windows XP VM 192.168.87.101        wvm

Port forwarding

To make services in NAT-configured VMs available outside of the host OS, we need to set up port forwarding. To do this edit the nat.conf file. Add entries under[incomingtcp] if you are forwarding a TCP connection and under [incomingudp] for a UDP connection. There are examples in this file, but to go along with our above examples, we might do something like this:

[incomingtcp] # Forward host port 2222 to SSH on Ubuntu VM 2222 = 192.168.87.100:22 # Forward Remote Desktop connections to Windows VM 3389 = 192.168.87.101:3389   [incomingudp] # Forward Remote Desktop connections to Windows VM 3389 = 192.168.87.101:3389


Restarting VMWare services on host

Don't forget that after we make any of the above changes, we need to restart the VMWare services using this command:

sudo "/Library/Application Support/VMware Fusion/boot.sh" --restart

reference:http://www.nileshk.com/vmware-fusion-nat-dhcp-and-port-forwarding

2009/07/16

CSS Media Types Create Print-Friendly Pages

0 comments
You've decided to make your site "printer-friendly". You read the article on what it means to be printer friendly, but now you have to decide how you want to do it. There are several options:

Make a copy of every page or article - and manually remove all the non-printer-friendly stuff.
Use a (CGI, PHP, JavaScript, other) script to remove the non-printer friendly stuff on the fly.
Write a style sheet for print.
The drawback to option one should be fairly obvious to most people. It is very labor intensive and requires that for every page on your site, you create a second, duplicate page.

Option two is the most common choice right now, because it mitigates the problems of option one, and with a small change in how you write your Web pages, you can set it up for every page on your site. But if you don't have access to CGI or you just don't feel comfortable with programming, this method can be challenging, if not impossible.

Cascading Style Sheets to the Rescue

Luckily, CSS was not written with just Web pages in mind, and with just a few extra codes you can create a printer style sheet that removes all the non-friendly options on your page and even takes into account issues such as typography and readability. And you don't have to write two different copies of your page or do any programming to build it.

Defining a Style Sheet for Print

As with screen style sheets, you use the /link/ element to define the print style sheet your Web page should use:
link rel="stylesheet" type="text/css" href="print.css" media="print"

The only difference between this link element and the link to your screen style sheet is the attribute:
media="print"
Most style sheets are written for the screen, so the media can be left off, or written as:
media="screen"

Building the Style Sheet

When you build a print-friendly style sheet, you need to keep in mind all the rules that were defined in the previous article:

Change colors to black on white.
Change the font to serif.
Watch the font size.
Underline all links.
Remove non-essential images.
Remove navigation.
Remove some or most of the advertising.
Remove all JavaScript, Flash, and animated images.
Change these rules into CSS:
Black on white with 12-point, serif fonts:
body { color : #000000; background : #ffffff; font-family : "Times New Roman", Times, serif; font-size : 12pt; }

Underline links:
a { text-decoration : underline; color : #0000ff; }
I also like to make the links blue, to stand out on color printers.

Remove Non-Essential Images, Ads, Navigation, and Scripting
The best way to do this is to put
elements around each section of your page. For example, you might have the following sections:

top, bottom, left, and right navigation
internal advertising
content
other elements
Define each of them with a
element:

India Arie Therapy

0 comments


OH Oooh oh ooOH OH, yeaah yeah yeaah Yeaaah hey.
OH Oooh oh ooOH OH, yeaah yeah yeaah
Oh oh oh oh oh oh (I-I-I-I need your therapy)
oh oh oh oh oh oh (I-I-I-I need you to come and lay hands on me)
oh oh oh oh oh oh (I-I-I-I need your therapy-therapy-therapy)
oh oh oh oh oh …..
(heeey)
He lays me on the couch and says
“how has your day been?
Tell me your problems;
I'll help you solve them.
Come on let's talk about it”
He sits next to me and smiles.
Listens to all of my words,
Relaxes all of my nerves.

Like breathe in (breathe in)
Let it go (shout it out)
Take deeps breathes and real slow, calm down.
Close my eyes (soft spoke)
Ease my mind (take control)
From my body please
Work your Psychology

You're taking good care of me
Always been there for me
Boy I can't bear to leave
Cause I need your therapy

You've given me everything
So much I ever could need
Without you I'm so weak in the knees
I need your therapy

Oh oh oh oh oh oh (I-I-I-I need your therapy)
oh oh oh oh oh oh (I-I-I-I need you to come and lay hands on me)
oh oh oh oh oh oh (I-I-I-I need your therapy-therapy-therapy)
oh oh oh oh oh …..
(hey)

He puts his hand on my lower back
his face in my neck and
Says something to make me laugh
Makes me forget I was mad
His touch feels so right
It's like he's reading my mind
I need him all the time

Like breathe in (breathe in)
Let it go (shout it out)
Take deeps breathes and real slow, calm down.
Close my eyes (soft spoke?)
Ease my mind (take control)
From my body please (?)
Work your Psychology

You're taking good care of me
Always been there for me
Boy I can't bear to leave
Cause I need your therapy

You've given me everything
So much I ever could need
Without you I'm so weak in the knees
I need your therapy

Oh oh oh oh oh oh (I-I-I-I need your therapy)
oh oh oh oh oh oh (I-I-I-I need you to come and lay hands on me)
oh oh oh oh oh oh (I-I-I-I need your therapy-therapy-therapy)
oh oh oh oh oh …..
yeaah yeaah

When it feels like I'm losing power
When I feels like a wilting flower
The way you touch me says I'm there for you
It heals me just to hear you say “I Love You”

You're taking good care of me
Always been there for me
Boy I can't bear to leave
Cause I need your therapy

You've given me everything
So much I ever could need
Without you I'm so weak in the knees
I need your therapy

You're taking good care of me
Always been there for me
Boy I can't bear to leave
Cause I need your therapy

You've given me everything
So much I ever could need
Without you I'm so weak in the knees
I need your therapy

Oh oh oh oh oh oh oh oh oh oh oh oh …………

2009/07/15

Queen - I Was Born To Love You (2004 video)

0 comments


I was born to love you
With every single beat of my heart
Yes, I was born to take care of you
Every single day...

chorus:
I was born to love you
With every single beat of my heart
Yes, I was born to take care of you
Every single day of my life

You are the one for me
I am the man for you
You were made for me
You're my ecstasy
If I was given every opportunity
I'd kill for your love

So take a chance with me
Let me romance with you
I'm caught in a dream
And my dream's come true
It's so hard to believe
This is happening to me
An amazing feeling
Comin' through

chorus

I wanna love you
I love every little thing about you
I wanna love you, love you, love you
Born - to love you
Born - to love you
Yes I was born to love you
Born - to love you
Born - to love you
Every single day - of my life

An amazing feeling
Coming through

chorus

Yes I was born to love you
Every single day of my life

Go, I love you babe
Yes I was born to love you
I wanna love you, love you, love you
I wanna love you
I get so lonely, lonely, lonely
Yeah, I want to love you
Yeah, give it to me

2009/05/26

I WILL SURVIVE by GLORIA GAYNOR

0 comments


First I was afraid
I was petrified
Kept thinking I could never live
without you by my side
But I spent so many nights
thinking how you did me wrong
I grew strong
I learned how to carry on
and so you're back
from outer space
I just walked in to find you here
with that sad look upon your face
I should have changed my stupid lock
I should have made you leave your key
If I had known for just one second
you'd be back to bother me

Go on now go walk out the door
just turn around now
'cause you're not welcome anymore
weren't you the one who tried to hurt me with goodbye
you think I'd crumble
you think I'd lay down and die
Oh no, not I
I will survive
as long as i know how to love
I know I will stay alive
I've got all my life to live
I've got all my love to give
and I'll survive
I will survive

It took all the strength I had
not to fall apart
kept trying hard to mend
the pieces of my broken heart
and I spent oh so many nights
just feeling sorry for myself
I used to cry
Now I hold my head up high
and you see me
somebody new
I'm not that chained up little person
still in love with you
and so you felt like dropping in
and just expect me to be free
now I'm saving all my loving
for someone who's loving me

2009/05/23

陳雷 - 歡喜乾一杯

1 comments

陳雷 - 歡喜乾一杯
作詞:郭之儀 / 作曲:郭之儀 / 編曲:許志皇

在家日日安 出外朝朝難 朋友弟兄互相疼痛
人生無幾回 知己的無幾個 只有鬥陣的會當來體會
歡喜來乾一杯 人生快樂過
歡喜來乾一杯 麥擱想彼最
歡喜來乾一杯 人生這呢短
歡喜來乾一杯 有緣來做伙

日日春日日圓-陳雷

0 comments

陳雷 - 日日春日日圓
作詞:漁人、蕭奴 / 作曲:漁人、蕭奴 / 編曲:許志皇

來來來 朋友我敬你 祝你成功賺大錢
做陣來跳恰恰恰 只要咱歡喜 陰晚所有煩惱放一邊
斟斟斟 燒酒斟乎滿喔 有緣你我做知己
年年有春年年圓 熱鬧歸厝邊 只要咱用心萬事就會順利
啊 失志失志免掛心 嚥氣嚥氣無意義
人生難免有風湧啊 認真打拼為前程啊
命好啊不驚運來磨 今夜咱歡喜做酒伴

2009/03/31

夏川りみーいのちの音

0 comments


花は咲(さ)くだけ 風(かぜ)に揺(ゆ)れて
愛されたいと 思(おも)いもせず
(あめ)の雫(しずく)はきっと 冷(つめ)たかろう
(かさ)をさしてあげようか

(なが)れぬ星(ほし)は 夜(よる)の隅(すみ)
何を願(ねが)って 光(ひか)ってるの
一人ぼっちはきっと 寂(さみ)しかろう
(うた)おうたってあけようか

誰にもいえぬことが あるけれども
それでも微笑(ほほえ)んで 生(い)きていきましょ

いのちはとても柔(やわ)らかいから
粗末(そまつ)にしてはいけません
いのちはそれでもね 強(つよ)いから
(かがや)く日(ひ)もおおいはず

誰にも癒(い)えぬ傷(きず)が あるけれども
それでも夢を見て生きていきましょ

花は鮮(あざ)やか 風(かぜ)の中で
愛されたいと 思いもせず
いつも感じていて その胸(むね)
ほら いのちの音がする

(さみ)しいときは 空(そら) 見上(みあ)げて

(す)ぎる季節(とき)より 明日へと
花は心(こころ)の中 実(み)をつける
(ほし)はいつか流(なが)れてく 

片假名
はなはさくだけ かぜにゆれて
あいされたいと おもいもせず
あめのしずくはきっと つめたかろう
かさをさしてあげようか

ながれぬほしは よるのすみで
なにをねがって ひかってるの
ひとりぼっちはきっと さみしかろう
うたおうたってあげようか

だれにもいえぬことが あるけれども
それでもほほえんで いきていきましょ

いのちはとてもやわらかいから
そまつにしてはいけません
いのちはそれでもね つよいから
かがやくひもおおいはず

だれにもいえぬきずが あるけれども
それでもゆめをみていきていきましょ

はなはあざやか かぜのなかで
あいされたいと おもいもせず
いつもかんじていて そのむねで
ほら いのちのおとがする

さみしいときは そら みあげて

すぎるときより あしたへと
はなはこころのなか みをつける
ほしはいつかながれてく

2009/03/22

第四屆龍騰微笑競賽

0 comments
活動目的:

值此台灣經濟轉型之關鍵時刻,宏碁基金會與時報文教基金會共同推出此項貼近市場、著重知識創新與應用、且能掌 握施振榮先生「微笑曲線」精神的「微笑競賽」。我們希望能藉此競賽推動學界研發能量,參與產品、技術、營運模式與品牌行銷的研發,藉以提升台灣產業中知識 經濟的產值。

獎勵辦法:

首獎壹名,獎金200萬元
 貳獎壹名,獎金100萬元
 參獎貳名,獎金50萬元
 佳作若干名,獎金各5萬元

★附註:
1. 本屆競賽獎金除原規劃本屆之400萬元總獎金外,另歷屆競賽累積未發出之獎金達200萬元,評審團得視本屆參賽作品之水準,彈性增額頒發各獎項。
2.為鼓勵指導教授帶領學生組隊參賽,自本屆起獲獎團隊之獎金將保留30%予指導教授(惟若指導教授另有安排,將依其意願分配之)。

參賽對象:

1.中華民國地區大專院校、研究所等在校學生組隊參賽 (不限科系與國籍),並由在校專任教師指導參賽作品的研發與構思。
2. 參賽作品主要的研發需在中華民國境內完成,同一參賽作品不得在競賽期間參與其他國內競賽(但論文競賽不在此限) 。

第一階段審查:

4/15 PM05:00 前繳交精簡計畫書及報名完成

活動網址:http://video.ee.ntu.edu.tw/~longterm3/in-all-news.html

2009/03/18

2009春季電腦展-邀您用影音SHOW生活

0 comments
每個人的心裡頭,有著屬於他的『創意生活』,有人用文字寫出他動人的生活,有人用相機捕捉他生命中珍貴的片段, 有人用繪畫陳述他獨特的故事,也有些人喜歡透過影像搭配文字、音樂來分享他的人生,不管是拍照、攝影、塗鴉設計都是在訴說自己的創意生活!

此次2009春季電腦展的數位內容學苑--『Corel 創意生活家』 --就是透過市場上最夯的主題提供精采的教學課程,包括使用數位相機或是DV將生活中珍貴回憶片刻完整呈現,或將美味的美食照片、精彩的旅遊照 po 在部落格上與同好分享,以及如何利用繪圖軟體創造 “仔經濟”的商機。讓愛好者能夠將軟硬體設備更廣泛的應用於生活中,而進一步對“創意生活”有更好的體驗。

不論您是重視數位生活的家庭,或是喜愛分享歡樂的部落客,『Corel 創意生活家』- 數位影音學苑將以最夯的市場趨勢,最多的創意話題,無限的可能顛覆您的影音視覺新視野!

課程內容與時間表:
4/09 (四) 4/10 (五) 4/11 (六) 4/12 (日) 4/13 (一)
11:30 - 12:30 PENTAX BenQ 帶著Fun心去攝影,
旅遊影音相簿 !
(陳文暉老師)
極致完美高畫質
輕鬆DIY寶貝影音日記
(詹景森老師)
CASIO
13:30 - 14:20 旅遊生活寫真
輕鬆製作相片特輯
(周橞雯老師)
人氣部落格
相簿玩美大公開
(周橞雯老師)
體驗數位彩繪的魅力
快樂塗鴉、創意充滿
FUN!
(非予老師/插畫達人)
創意SHOW自己
影音履歷表
(詹景森老師)
帶著Fun心去攝影,
旅遊影音相簿 !
(陳文暉老師)
14:30 - 14:50 PENTAX BenQ Canon Nikon CASIO
15:00 - 15:50 影音達人 –
影片剪輯初體驗!
(陳文暉老師)
體驗數位彩繪魅力
製作好感動寫真書!
(April老師)
Canon Nikon 我是YouTube
分享王!
(陳文暉老師)
16:00 - 16:20 Canon Nikon Canon Nikon 抽獎時間
16:30 - 17:20 我是YouTube
分享王!
(陳文暉老師)
商業創意行銷
自己作頭家!
(TIM老師)
宅經濟—DIY創意
畫冊與插畫藝術
(梁月老師)
體驗數位彩繪的魅力
快樂塗鴉、創意充滿
FUN!
(非予老師/ 業界達人)

展出日期與展出時間:
日期: 2009年4 月9 日(四)至4月13日(一),共展出5天。
地點: 台北世貿中心展覽一館 數位影音學苑(台北市信義路5 段5 號)

活動網址: http://www.corel.com/tw/content/html/event/2009_springshow/index.htm

2009/03/17

PhotoImpact X3 & 會聲會影X2教學研討會

0 comments
我的畢業紀念冊﹒光碟_免費報名參加!

流逝的是時間,不變的是友誼;把想念的情緒,紀錄在你的畢業紀念冊上

還記得那段刻苦銘心、年少輕狂的日子嗎?我們一步一步的走在人生的每一段旅程中,那些成長 過程所經歷的苦澀與甜蜜,將所有值得珍藏的回憶記錄永久的保存留念,快寫下屬於自己的光陰故事,見證種種歲月的歷程,做一本屬於你我的專屬畢業紀念冊與畢業光碟吧!

本次活動邀請影像設計高手楊比比老師、影片剪輯達人Jackie老師,現在開始收集整理數位相片或過去珍藏在相簿冊裡的大頭照、生活照片及平時所拍攝的紀錄影片,教您只要花一點巧思、加入一些感動的回憶記錄,您們也能創造屬於你自己的光陰故事_畢業紀念回憶喔!

活動網址:http://www.corel.com/tw/content/html/event/200903_pix3vsx2/index.htm


高雄 : 2009/3/14 (六)
14:00~16:30 (13:30 開始入場)
高雄長谷世貿22樓 倫敦廳
高雄市三民區民族一路80號22樓
台中:2009/3/15 (日)
14:00~16:30 (13:30 開始入場)
台中Hotel One 亞緻大飯店Room1
台中市西區英才路532號

* 特別提醒 - 台中場地更至Hotel One

台北:2009/3/21 (六)
14:00~16:30 (13:30 開始入場)
台北集思會議中心(台大館) 國際會議廳
台北市羅斯福路四段85號B1樓

2009/03/14

夏令時間

0 comments

加拿大和美國的夏令時間:

  • 美國和加拿大的夏令時間規則:2007 ~ 2015 每年開始於 3月的第二個星期日上午2點鐘開始,結束於11月的第一個星期日,時間以 02:00 GMT 格林威治標準時間為基準,時鐘才恢復到標準時間。
  • 美國實施夏令時間的地區,並不包含美國的﹝夏威夷、薩摩亞、關島、波多里哥、維京群島和亞利桑那州﹞等地區。

加拿大的歷史:

  • 加拿大的原始居民為印第安各民族以及北極地區的因紐特人(統稱為加拿大原住民),這些民族在至少一萬年前便在加拿大居住,歐洲人第一次探訪加拿大是在大約1000年左右。
  • 當時來自北歐的維京人領袖萊弗·艾瑞克森(紅鬍子埃里克森)曾在加拿大紐芬蘭一帶建立村莊,但不久後該定居點便被淹沒在印第安人之中了。更持久的殖民活動是在16世紀和17世紀左右由法國人開始的。
  • 在這片被稱作新法蘭西的土地上,法國殖民者與英國殖民者之間發生了持續的戰爭,而最終以英國殖民者的勝利而告終,1763年的巴黎和約使加拿大正式成為英屬殖民地... 詳細內容

美國的歷史:

  • 美洲原住民在這塊土地上居住了15,000餘年。歐洲從15世紀末開始殖民美洲。1607年,第一個英格蘭人殖民區成功地在維吉尼亞州建立。接下來二十年裡,一些荷蘭殖民區也陸續建立,包括位於新阿姆斯特丹(今紐約市)和新澤西州的殖民區。
  • 在17世紀和18世紀裡,英國逐漸佔領荷蘭人和其他歐洲殖民者的地區,並在美國東岸廣泛開墾殖民,建立更多的殖民地區。除今天的加拿大外,英國在北美洲共建立了13個殖民地。
  • 各殖民地的代表簽訂獨立宣言時的場景。在1760年代和1770年代,13個美洲殖民地與英國之間的緊張關係最終引發了革命戰爭,殖民地的代表們在1776年7月4日簽下了《美國獨立宣言》... 詳細內容
  • 在獨立戰爭(1775年-1783年)中,喬治·華盛頓領導13個殖民地組成的大陸軍團對抗英軍。殖民地在76年的大會中創立了大陸軍團,但未授權他們徵收稅賦和制定聯邦法律。
  • 1777年,獨立的殖民地正式採納邦聯條例,建立了一個聯邦的主權國家、以及行使管理權的聯邦政府,並批準了美國憲法。經歷艱苦的獨立戰爭後,大陸軍團終於擊敗英軍,英國於1783年簽下了巴黎條約,正式承認美國的獨立。
  • 美國各州的歷史以及州名英文縮寫及中英文全稱:請參考... 全球時區查詢 - 美國
Reference: http://time.artjoey.com/north_america.htm

20090310 草嶺古道遊記

0 comments
那天早上從礁溪出發,沿濱海公路一路開到大里,到了大里,只有我一個人下車,老爸他們三人就開車到福隆去等我,帶著一把雨傘及300C.C.的水,我就往草嶺古道出發,就在準備出發的時候,突如其來的陣痛(肚子),讓我沒辦法繼續前進,心想到底是要放棄還是要繼續走時,算了,來都來了,不走實在可惜,於是換了換零錢,到廁所解決後,如釋重負般地踏上我的旅程。
原本以為不會有太多人走,畢竟不是假日,但是路上還是看到了少許的登山客,還有兩群來自國外的孩子,讓我擔憂的心減輕了不少。一路上我以輕快的步伐,一路超越了路上的登山客,到了觀景亭做了第一次休息。這時候我只花了20分鐘,和地圖上所寫的足足少了一半的時間,心想:如果以這樣的速度,搞不好我可以在一半的時間內征服這條步道。但是事情並不是白癡所想的那麼簡單,接下來的路程,變得非常的陡峭,我的速度也變慢了許多,速度也變得和地圖上所寫的相差不多,到了啞口時,已經有點喘不過氣來了,於是在這裡休息了大概15分鐘。一開始在地圖上看到一個"觀景台"和一個"啞口觀景台",原本還天真的以為啞口觀景台所看到的風景會讓人啞口,到了這裡才知道原來是如照片上的這個啞口,這時候當然不免嘲笑了自己一番。但是看著眼前的這片景象,不禁讓我開始想像古時候如果在這裡發生戰爭,這裡一定是一個突擊的好地方,心中便開始想像著戰爭的畫面。
接著往下走,大概一百公尺後,來到了這趟旅程的重點,"虎字碑"。看到虎字碑後,心想這趟旅程值得了,終於在現場看到了過去在歷史課本上所看到的虎字碑。接下來的路程,開始都是下坡,雖然沒有比較好走,但是卻省力了不少,讓我原本快抬不起來的大腿又恢復了活力。一路上也沒有在中途休息,一路殺到了親水公園。路上經過了"雄鎮蠻煙",跌死馬橋等等。最讓我無法理解的就是當我經過跌死馬橋時,他一點都不像會跌死馬的橋,所以我也錯過了把它拍下來的機會,因為直到我回來後,才發現我有經過跌死馬橋。
最後到了遠望坑親水公園後,我停下了腳步,沒有繼續往下走到福隆火車站,因為老爸說他們要到這裡來接我。這裡整理得非常整齊而且漂亮。有照片為證,沒想到我的手機也能夠拍出這樣的相片。這一路走來,我想到了古時候的人,靠著這條路走到宜蘭地區去開墾,或許他們不是常常在走,但是想到以前他們只能用走的,就能夠深刻的體會他們的辛苦,也珍惜我們現在的方便。這是一個很棒的步道,但是花費的體力不少,改天找機會再找朋友一起走吧,應該會別有一般風味吧!

2009/03/01

Casio EDIFICE

0 comments

昨天跑去敗家了,想了很久,終於還是跑去買了很多年沒有戴的手錶,這次可以說是大失血呢!這支錶的價錢已經超過我想買的G25的價錢的一半了,但是還是買這個會比買G25來得值得而且比較不會被罵。不過我猜應該還是會被念一陣子吧。
但是畢竟這是用獎學金的錢拿來犒賞自己的,偶爾獎勵一下自己,應該會讓自己更有向前的動力吧。當然這是安慰自己也是欺騙自己花錢合理的理由。但是我在刺激經濟啊!

規格:
  • 【CASIO】EDIFIC動力急速賽車錶(黑)
  • ※基本資料※
  • 料號:EF-529SP-1A機芯:日本原廠機芯 動力:電池
  • ※規格※
  • 鏡面-直徑約4.44cm,錶殼-直徑約5.06cm
  • 錶帶:約17~19cm(含表扣)  厚度: 1.3cm  重量:約182g
  • ※顏色※
  • 錶盤:銀白 錶帶: 不鏽鋼
  • 指針:黑 刻度: 白
  • ※材質※
  • 錶殼:不銹鋼(錶背) 錶帶:不鏽鋼錶帶
  • 鏡面:球面礦物玻璃
  • ※規格※
  • 錶扣:不鏽鋼雙折式錶帶 防水: 100米
  • 特殊功能: 秒錶功能 日期顯示 時間功能:3針:時、分、碼錶秒針圈:秒針、碼錶分針 、星期 27組世界時間
  • 配件:100米防水 公司貨, 附說明書,CASIO原廠錶盒 ,保固1年

  • 就在昨天買完回到家後,我又跑到了前幾天看的網頁去看我這支的價錢是多少,
    不看還好,看了真的是痛心的要死,因為足足比我買的少了八百塊阿,讓我真的
    非常的難過,不斷的安慰自己。直到今天,我又心血來潮,又跑去雅虎看了一下
    ,赫然發現,雅虎上面的價錢只比我買得便宜了一百塊,頓時讓我釋懷了不少。
    畢竟這種高單價的東西,我還是不習慣在網路上購買,而且我這個人買東西雖然
    不龜毛,但是沒有摸到實體,就有一種不安的感覺,所以像這種高單價的東西我
    還是喜歡在實體商店上買。
    買回家以後,覺得他的功能實在是太強大了,我竟然連調個時間都得看說明書才
    會調。這支錶真的有許多好用的功能,尤其是常常出國的人,更是一隻非常方便
    的手錶。其他的功能就不再贅述了,總之買了一支新錶,現在的心情非常的開心

    2009/02/27

    Corel Phone Interview notes

    0 comments
    Q1: 曾經面臨過的網頁問題以及解決的方法?

    Q2: 現在有一個網頁,上面有輸入帳號或是E-mail的地方,和一個送出或登入的按鈕,
    你現在是要輸入的人,你會期待看到什麼或是你會想要尋找什麼?(沒有正解)

    Q3: 您現在目前還是一個學生,期中期末考的時候是否會受影響而不能正常上班?

    Q4: 早晚必須和渥太華的主管用電話開會,能否配合?

    (註:全程使用英文)

    2009/02/13

    終極警探 智力測驗

    0 comments
    一個五加侖的水桶和一個三加侖的水桶
    如何量出精確的四加侖的水?要放在秤上面以防止炸彈爆炸!

    2009/02/04

    智力測驗

    0 comments
    現有九顆鑽石,其中一顆為假,假的鑽石比較輕,
    有一無砝碼之天平,如何在兩次秤重內,找出假的鑽石?

    設定 MailScanner

    0 comments

    除了上述的設定外,MailScanner 及 SpamAssassin 還有很多的設定項目可以修改,相關的設定檔全部都放在 /usr/local/etc/MailScanner 中。我們先來說明一下這些設定檔的用途:

    檔名 用途
    MailScanner.conf 這是 MailScanner 的主要設定檔。
    filename.rules.conf 用來設定拒絕的郵件附件的副檔名格式。
    spam.whitelist.rules 用來設定白名單,也就是不會被判斷為垃圾信的寄件者清單。
    spam.blacklist.rules 用來設定黑名單,也就是一定是垃圾信的來源清單。

    filename.rules.conf 可以用來設定郵件附件中不允許哪些副檔名。在 filename.rules.conf 中已經有一些預設的副檔名,如果您想要允許某些副檔名,可以修改該檔案。例如,我們如果想要允許 .exe 檔,則可以在下列這一行前加上「#」:

    #deny \.exe$ Windows/DOS Executable

    spam.whitelist.rulesspam.blacklist.rules 可以用來設定黑白名單。如果您有信件被誤判為垃圾信,可以在白名單中加入讓寄件來源,如此一來,該信件就不會再被當作垃圾信了。 反之,如果有垃圾信沒有被判斷為垃圾信,則可以自行在黑名單中加入。這二個檔案的格式一樣,以 spam.whitelist.rules 為例:

    From: *@*.friends.net yes
    From: *@friends.net ye
    From: 220.132.178.149 yes
    From: 192.168. yes

    它有三個欄位,第一個欄位是指定要檢查的是來源或目的地,第二個是設定來源,第三個欄位為 yes 表示是白名單。以上述內容為例,是設定所有從 friends.net 所寄來的信件都不是垃圾信。另外,我們也可以直接使用 IP 或網域。

    Source: http://twbsd.org

    Followers

    人氣

       my space tracker
       HP Pavilion

     

    Jake Hsiao--Self-trust is the first secret of success.. Copyright 2008 All Rights Reserved Revolution Two Church theme by Brian Gardner Converted into Blogger Template by Bloganol dot com