2009年1月13日 星期二

我有話要說

如果你覺得這學期Java 功課表現尚不滿意,你可以在部落格上自由發揮,用你覺得比較好的方式告訴別人,其實我已經學好 Java 。期末評分時,我會閱讀你所書寫。

老實說,在上老師課之前我曾經猶豫了一陣子,因為我對寫程式語言完全沒有任何的基礎,只有在大一上計概的時候,勉強接觸了一些,但回想起來,也幾乎沒有學到什麼,我覺得可能是因為我太笨,嚴老師交的太難以至於我這呆腦袋沒辦法吸收。我想了又想,最後還是決定修一下老師的課,因為我覺得既然是電子系,沒有理由不碰到程式這一塊的東西,畢竟在這競爭激厲的時代當中,電子系所涵蓋的範圍越來越廣,現實社會當中一些公司也都需要會寫程式語言的工程師,如果連基本的程式都不會寫的話!那不就跟高中畢業一樣,所以我才硬著頭皮修了老師的課,當然這期間也參雜了一些學長姐或同學們的建議。一開始上的時候,還算適應的OK,因為還再學一些JAVA的基本知識與架設部落格,隨著時間慢慢的加深,我覺得上老師的最大的優點是老師講的東西顯淺易懂,老師能把看似複雜的程式,透過一些生活的例子表達出來,並且舉一下實際的例子,讓我們這些初學JAVA的小毛頭能更快的進入狀況,老師也會分享一些過去的勵志故事給我們聽,跟我們說一些未來社會可能的走向,比如說我們已經WEB2.0的時代,未來的發展等等之類的。上老師的課,說有趣也不是,枯燥也不是,大概在兩者之間吧!因為老師有時候上課很有趣,但又有時候覺得很無聊,我不否認我有幾堂課曾經夢見周公過!這學期的JAVA給我最大收穫就是讓我對JAVA有一些概念,可能還是寫不出很厲害的程式,但一些基本的程式至少我都懂,還有部落格的架設,都讓我獲益良多,也感謝老師對我們這些不懂程式的小毛頭的耐心,交我們應該很辛苦吧!

學生9526157 電子三甲 盧志展

2008年12月29日 星期一

Lab Web Stress Test

1. Download Stress Test
2. Take a look at the user manual.
3. Test a static page.
Try combinations of stress levels and stress multipliers to simulate 10 users and 100 users.
4. Test a dynamic page.
Try combinations of stress levels and stress multipliers to simulate 10 users and 100 users.
5. Compare the response time of both pages and explain why.


Lab Site Traffic Metrics

1. Enter Sitemeter.
2. Put a Sitemeter in your own blog.
2. Check the site meter to see the daily traffic chart, the recent visitors by locations.

Lab: Packet Sniffer

1. Install Protocol Analyzer Ethereal at http://www.wireshark.org/
2. Capture the packets at your Ethernet interface card.
3. Enter a login required website that you often go to, such as web mail. Don't use the real account or password.
4. Try to catch the packet that contains the password.


2008年12月22日 星期一

Lab: Drap and Drop

1. Go to Laszlo and enter (Laszlo in 10 minutes).
2. Study and play around the "drag-and-drop" example.
3. Use this method to control movie playing as in the previous lab.
4. If you drag and drop the photo to the "play" area, the movie plays.
5. If you drap and drop the photo to the "pause" area, the movie pauses.


Lab: Movie Player

1. Go to Laszlo and enter (Laszlo in 10 minutes).
2. Study and play around the "scripting" and "video" examples.

3. Use this script to control movie playing.

4. If you push the "pause" button, the movie pauses.

5. If you push the "resume" button, the movie resumes.








Lab Hanoi Tower

The pseudocode for Hanoi Tower is as follows:

solve(N, Src, Aux, Dst)
if N is 0 return
solve(N-1, Src, Dst, Aux)
Move N from Src to Dst
solve(N-1, Aux, Src, Dst)


Write the Java program based on the pseudocode in the above.