2014年6月16日 星期一

Lab 39 評論新系網

1. 如果你想考慮就讀本系,這個網站吸引你嗎?

吸引我,因為我看了招生專區,有很多Q&A相信可以讓我更了解電子系。

2. 如果你要找指導教授,這個網站給你足夠資訊嗎?

足夠,基本上老師的專長都有標在上面。
3. 如果你想為子女選擇志願,這個網站給你足夠的畢業校友社會地位與成就資訊嗎?

不夠,我從榮譽榜的系友傑出表現,只有八個,相信中原電子系應該有更多傑出校友。
4. 如果你是系友,想瞭解系上最新的成就與現況,這個網站有提供你要的資訊嗎?

有。

Lab 38 Speed Test

NO proxy




 有用 PROXY
 

Homework 06/09/2014 : 使用Google Drive 進行同步編輯


Lab 37 查詢Google服務狀態




Lab 36 Google Analytics


Lab 35 匯出部落格

http://s9926332-2.blogspot.tw/

2014年5月5日 星期一

Lab 24 Google Maps II

Lab 23 Google Docs

https://docs.google.com/document/d/1xEFBL4bMBplwzdW3zYpcQ983q96OSnz7CRTth-rWxY4/edit?usp=sharing

Lab 22 共同編輯文件

文件連結 : https://docs.google.com/document/d/1LxPSU6Zers6-vNybbm7o2vQ1akqeEou3OFp975UvJRk/edit 表單連結 : https://docs.google.com/forms/d/1jorbpx49UJzAJhGNlF7Erp_DiovpPLskehD0RXEJbY8/viewform

Lab 21 製作線上投影片

Lab 20 Hand code a form

CGI (Common Gateway Interface,共同閘道管制介面)不是一種語言, 而是一種象徵性的名稱。 CGI程式可以用Perl、C++或是Visual Basic寫作而成。 CGI處處可見,留言板、聊天室與搜尋 引擎都是CGI程式可以寫成的。 CGI程式主要提供的是一種使用者與伺服器互動的一種管道
Search:

Lab 19 Lab Form and Action

find:

Lab 18 change pictures

Pulpit rock

2014年4月14日 星期一

Lab 17 JavaScript

1
2
3

Lab 16 Change an image by moving the mouse

Lab 15 九九乘法表

<html>
<body>
<script>
function buildTable(){
  docBody = document.getElementsByTagName("body").item(0)
  myTable = document.createElement("TABLE")
  myTable.id ="TableOne"
  myTable.border = 1
  myTableBody = document.createElement("TBODY")
  for (i = 1; i < 10; i++){
    row = document.createElement("TR")
    for (j = 1; j < 10; j++){
      cell = document.createElement("TD")
      cell.setAttribute("WIDTH","50")
      cell.setAttribute("HEIGHT","50")
      textVal = i+"x"+j+"="+i*j
      textNode = document.createTextNode(textVal)
      cell.appendChild(textNode)
      row.appendChild(cell)
    }
  myTableBody.appendChild(row)
  }
  myTable.appendChild(myTableBody)
  docBody.appendChild(myTable)
}


window.onload = buildTable
</script>
</body>
</html>

2014年3月17日 星期一

Lab 13 Regular expression in action II

檢查IP

Lab 12 Regular expression in action

Write a form to send a query to Google maps. If the input is not in the format of coordinates, display an error and ask the user to retry. For example, an incorrect input may look like 12.a2,21.22
搜尋:

Lab 11 Regular Expression II

Lab 10 Regular expression I

Homework 3/10/2014: Lab 8 Using browsers for programming II

123+-*

123456