Currently browsing category

Computers, Page 58

Implementing BIND on Mac OS X

From : http://www.macdevcenter.com/pub/a/mac/2003/04/15/bind.html by Jason Deraleau 04/15/2003 Editor’s note: The Berkeley Internet Name Domain distribution, or BIND, is a suite of Unix …

MacBook Pro 四月一號開了我一個不好笑的玩笑

哎優威. 原來 MacBook Pro 過度放電. 電池會死翹翹喔. 後來看到apple support內的熱門主題MacBook and MacBook Pro: Battery not recognized after being fully drained. 按照他的做法.還是沒辦法修復. 另外我還找到Mobile01 讓MB電池一覺不醒的方法! 才知道原來這個是專業硬體測試的必備的關卡. …

My Footsteps updated Part II

又更新了 My Footsteps 這隻程式拉. 可以記載上次瀏覽過的位置.也可以記載zoom的大小.還有地圖形態. 另外還可以傳遞參數.直接連接地圖. 例如上週末去野柳和石門洞玩所更新的照片如下 http://www.samtseng.liho.tw/~samtz/blog/myfootsteps.html?lng=121.6318702677539&lat=25.249353865843863&zoom=12&maptype=G_SATELLITE_MAP 😀 野柳

My Footsteps updated

I just updated my foot steps page(http://www.samtseng.co.cc/~samtz/blog/myfootsteps.html). It supports using mouse wheel scroll to zoom in/out. Resizing windows the map layout will …

javascript – Get Browser Type

取得瀏覽器種類 1 2 3 4 5 6 7 8 9 10 function getbrowser() { var agt = navigator.userAgent.toLowerCase(); if (agt.indexOf(’msie’) != -1) …

Regular Expressions – Check Integer

用正規表示式檢查整數. 1 2 3 4 5 function checkint(str) { var regex = /^[1-9]+\d*$|^-[1-9]+\d*$/; re = new RegExp(regex); return (str.match(regex)) != null ? …

Regular Expressions – Get Value

################################# # data string as following : ################################# TITLE=title name CLICK=click Login button to continue. TYPE=type your login password and. RETYPE=retype your …

How to redirect http requests to https in apache

 DocumentRoot /var/www/html  ServerName samtz.dyndns.org  ErrorLog logs/samtz-error_log  CustomLog logs/samtz-access_log combined     Options ExecCGI   Options Indexes   AllowOverride All    RewriteEngine on  RewriteCond %{SERVER_PORT} =80 …