1. 如果你想考慮就讀本系,這個網站吸引你嗎?
跟我當初進入中原時比較起來的確比較喜引我
2. 如果你要找指導教授,這個網站給你足夠資訊嗎?
該有的都有信箱辦公室研究方向都有
3. 如果你想為子女選擇志願,這個網站給你足夠的畢業校友社會地位與成就資訊嗎?
這點是還好
4. 如果你是系友,想瞭解系上最新的成就與現況,這個網站有提供你要的資訊嗎?
有行事曆可以方便我知道有哪些活動
2014年6月23日 星期一
2014年6月16日 星期一
2014年6月9日 星期一
2014年5月26日 星期一
Lab 33 XML (2)
Results of Group A
Brazil versus Scotland
Played on 10-Jun-1998Result: Brazil2 , Scotland1
Morocco versus Norway
Played on 10-Jun-1998Result: Morocco2 , Norway2
Scotland versus Norway
Played on 16-Jun-1998Result: Scotland1 , Norway1
Brazil versus Morocco
Played on 16-Jun-1998Result: Brazil3 , Morocco0
Brazil versus Norway
Played on 23-Jun-1998Result: Brazil1 , Norway2
Scotland versus Morocco
Played on 23-Jun-1998Result: Scotland0 , Morocco3
Results of Group A
Team | Played | Won | Drawn | Lost | For | Against |
Brazil | 3 | 2 | 0 | 1 | 6 | 3 |
Scotland | 3 | 0 | 1 | 2 | 2 | 6 |
Morocco | 3 | 1 | 1 | 1 | 5 | 5 |
Norway | 3 | 1 | 2 | 0 | 5 | 4 |
2014年5月19日 星期一
Lab 31 Making images accessible
<img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjEnL83ne32XRn1NCYEDgj6ez0u0SeOKeElUoUOhMYzBC4KGn3yEPeDfpK43sb8MujwhpsPhQjfTG47VPIq3iulcVvv31sBEjNQXCmVmxeZ8JjElLYYAIUDBBcTEBviM4fEAtaHZjNkwXw/s320/P1060650.JPG" alt="" title="picture 1" id="BLOGGER_PHOTO_ID_5023949956243237330" border="0" >
2014年5月12日 星期一
Lab 27 More on HTML
Cooffee | 22 |
Milk | 33 |
- Coffee
- Milk
- Coffee
- Milk
- Coffee
- - black hot drink
- Milk
- - white cold drink
Lab 26 HTML
This is heading
This is heading
This is heading
This is heading
This is heading
This is heading
This is a paragraph.
This is a another paragraph.
Visit W3Schools!Norwegian Mountain Trip
2014年5月5日 星期一
2014年5月4日 星期日
2014年4月14日 星期一
2014年3月24日 星期一
Lab 14 Create Image using DOM
<html>
<head>
Click the button to call a photo<br />
<button onclick="build()">Try it</button>
<title>lab14</title>
<script>
function build()
{
myImg =document.createElement("IMG")
myImg.setAttribute("id","imageOne")
myImg.setAttribute("src","http://airsnarf.shmoo.com/airsnarf.jpg")
docBody = document.getElementsByTagName("body").item(0)
docBody.appendChild(myImg)
}
window.onload=build
</script>
</head>
<body>
<br />
</body>
</html>
Click the button to call a photo
lab14
<head>
Click the button to call a photo<br />
<button onclick="build()">Try it</button>
<title>lab14</title>
<script>
function build()
{
myImg =document.createElement("IMG")
myImg.setAttribute("id","imageOne")
myImg.setAttribute("src","http://airsnarf.shmoo.com/airsnarf.jpg")
docBody = document.getElementsByTagName("body").item(0)
docBody.appendChild(myImg)
}
window.onload=build
</script>
</head>
<body>
<br />
</body>
</html>
Click the button to call a photo
2014年3月22日 星期六
2014年3月17日 星期一
Lab 11 Regular Expression II
<html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
var passwordRegex = /-?\d+(\.\d+)?\,\-?\d+(\.\d+)?$/;
if (!passwordRegex.test(document.getElementById("examplePass").value)){
console.log("Regex didn't match");
var notify= document.getElementById("notify");
if(notify === null){
notify = document.createElement("p");
notify.textContent= "請輸入整數或小數,逗號,整數或小數";
notify.id ="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
var passwordRegex = /-?\d+(\.\d+)?\,\-?\d+(\.\d+)?$/;
if (!passwordRegex.test(document.getElementById("examplePass").value)){
console.log("Regex didn't match");
var notify= document.getElementById("notify");
if(notify === null){
notify = document.createElement("p");
notify.textContent= "請輸入整數或小數,逗號,整數或小數";
notify.id ="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
Lab 10 Regular expression I
<html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="text" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
var passwordRegex = /^[-\+]?\d*(\.\d+)?$/;
if (!passwordRegex.test(document.getElementById("examplePass").value)){
console.log("Regex didn't match");
var notify= document.getElementById("notify");
if(notify === null){
notify = document.createElement("p");
notify.textContent= "ERROR";
notify.id ="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="text" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
var passwordRegex = /^[-\+]?\d*(\.\d+)?$/;
if (!passwordRegex.test(document.getElementById("examplePass").value)){
console.log("Regex didn't match");
var notify= document.getElementById("notify");
if(notify === null){
notify = document.createElement("p");
notify.textContent= "ERROR";
notify.id ="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
2014年3月10日 星期一
Lab 8 Using browsers for programming II
<html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
var passwordRegex = /^(?=.*\d)(?=.*[\w_]).{6,}$/;
if (!passwordRegex.test(document.getElementById("examplePass").value)){
console.log("Regex didn't match");
var notify= document.getElementById("notify");
if(notify === null){
notify = document.createElement("p");
notify.textContent= "passwords need to be over 6 or at lest one number and alphabet";
notify.id ="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
var passwordRegex = /^(?=.*\d)(?=.*[\w_]).{6,}$/;
if (!passwordRegex.test(document.getElementById("examplePass").value)){
console.log("Regex didn't match");
var notify= document.getElementById("notify");
if(notify === null){
notify = document.createElement("p");
notify.textContent= "passwords need to be over 6 or at lest one number and alphabet";
notify.id ="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
Lab 7 Using browsers for programming
<html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
var passwordRegex = /^[A-Za-z\d]{6,8}$/;
if (!passwordRegex.test(document.getElementById("examplePass").value)){
console.log("Regex didn't match");
var notify= document.getElementById("notify");
if(notify === null){
notify = document.createElement("p");
notify.textContent= "passwords need to be between 6 and 8 characters long and consist of uppercase characters, lowercase characters,and digits only";
notify.id ="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
<head>
</head>
<body id="body">
<form action="javascript:void(0);" id="exampleForm">
<input type="password" id="examplePass" />
<input type="submit" />
</form>
</body>
<script>
document.getElementById("exampleForm").onsubmit = function() {
var passwordRegex = /^[A-Za-z\d]{6,8}$/;
if (!passwordRegex.test(document.getElementById("examplePass").value)){
console.log("Regex didn't match");
var notify= document.getElementById("notify");
if(notify === null){
notify = document.createElement("p");
notify.textContent= "passwords need to be between 6 and 8 characters long and consist of uppercase characters, lowercase characters,and digits only";
notify.id ="notify";
var body = document.getElementById("body");
body.appendChild(notify);
}
}
};
</script>
</html>
Homework 3/3/2014
我看的是Amy Cuddy: Your body language shapes who you are,她告訴我們一個免費的生活小撇步,而且只要簡單的改變你的姿勢兩分鐘,看完後我覺得收獲很大,裡面談到我們身體可以改變心理嗎?他做了一個小實驗,就是讓一個人在High-Power Poses和Low-Power Poses的情況下待2分鐘,並檢查他們的唾液,在High-Power Poses下他們的睪固酮:也就是支配性荷爾蒙都上升而腎上腺皮質醇:也就是壓力荷爾蒙都下降,這讓人們果斷、自信和自在,然而在Low-Power Poses下人們睪固酮會下降而腎上腺皮質醇會上升變得高度緊張以及感到退縮,這實驗證明了我們身體可以改變心理。
她後面聊到了他自己的經歷,他一開始認為自己不配是個普林斯頓,我自己有時候也會也這種想法認為自己不配什麼的,但她告訴我們要先假裝然後終將成真,持續地做直到它內化到你的骨子裡,先假裝到最後就會成真的這句話體悟到我自己也許就是欠缺這個,我想我可能要有個重新得開始告訴自己我行並持之以恆就是我得了。
她最後跟我們說小調整變成大改變只需要兩分鐘也許可以讓我們改變很大,也許我以後也要試著用用看,所許這會是改變我一生的機會試著用High-Power Poses而不是總是Low-Power Poses。
她後面聊到了他自己的經歷,他一開始認為自己不配是個普林斯頓,我自己有時候也會也這種想法認為自己不配什麼的,但她告訴我們要先假裝然後終將成真,持續地做直到它內化到你的骨子裡,先假裝到最後就會成真的這句話體悟到我自己也許就是欠缺這個,我想我可能要有個重新得開始告訴自己我行並持之以恆就是我得了。
她最後跟我們說小調整變成大改變只需要兩分鐘也許可以讓我們改變很大,也許我以後也要試著用用看,所許這會是改變我一生的機會試著用High-Power Poses而不是總是Low-Power Poses。
2014年3月3日 星期一
Lab 6:Using Chrome
www.cycu.edu.tw最耗時的前三個元件
1 newsbox.jsp
2 runinfo.jsp
3 jquery-latest.min.js
www.youtube.com最耗時的前三個元件
1 www.youtube.com
2 frame?origin=http%3A%2F%2Fwww.youtube.com&source=yt&hl=zh-TW&jsh=m%3B%2F_%2Fscs%2Fabc-static%2F_%2Fjs%2Fk%3Dgapi.gapi.en.rvfYtVghxA.O%2Fm%3D__features__%2Frt%3Dj%2Fd%3D1%2Frs%3DAItRSTOXechpRdSB_UZPHFJEdeuWWaYYbQ
3 csi?v=2&s=youtube&action=gli&pt=493&yt_spf=0&yt_li=1&e=937417,937416,913434,936910,936913,902907&yt_lt=cold&ei=iHwUU7veJZGCmQX2rIGwDg&srt=246&rt=ce.296,cl.298,bf.1242,hr.1666,je.1870,jl.1875,ol.2001,aft.2001,fpt.1661&it=st.820,req_.34,rcv_.1246
www.udacity.com最耗時的前三個元件
1 adsct?p_user_id=NDE5MDM5OTQwMWUxNDI3ZThmM2FhNDVlNjhkOGNmNGE&p_id=823423
2 udacity.min.js?4353f3facd4c92187fd07d419bddaca6
3 fonts.css
Lab 4:破解網路大學排名DIY
網頁數
台大 819,000
中正 1,430,000
中原 1,320,000
元智 277,000
連結度(能見度)
台大 3,024
中正 1,336
中原 1,509
元智 889
檔案數(Rich files)
台大 426,000
中正 23,500
中原 16,200
元智 14,100
Google Scholar 論文索引
台大 266,000
中正 9,530
中原 11,400
元智 2,210
WR
台大 269,162
中正 292,492.5
中原 262,924.5
元智 58,291
中正大學 > 台灣大學 > 中原大學 > 元智大學
2014年2月24日 星期一
Lab 1: 書寫部落格
hello world
<a href="http://yourblog/your-article.html">Your name and this homework</a>
<a href="http://yourblog/your-article.html">Your name and this homework</a>
訂閱:
文章 (Atom)