Currently browsing tag

Programming, Page 4

iPhone SDK 開發工具

當我買了iPod Touch後, 就很期待3/6的到來. 因為蘋果要發佈iPhone SDK. 不過期待了很久, 最後居然是有點失望.因為要在設備上開發必需要在花費$99美金.才能把程式放到設備上.要不然就得在模擬器上玩.對我來說.我並不想開發需要付費的程式.只想玩玩在iPhone或iPod Touch上自行開發程式. 😛 這樣而已.那 99 元真是不太必要花費.對我而言是這樣拉. 除非我想營利.想開發有人想買的軟體.後來, 假日兩天都在玩iPod Touch破解. 想說把它破解後, 然後把自己寫的測試程式放入執行. 但是呢!! 最後還是不行執行.真是有點不甘心.

SMS Timer for Mac OS X

在使用Skype傳送簡訊時, 也許會期望Skype提供定時發送簡訊功能吧?! 我就有這個需求.所以索性寫了一個無敵陽春的 SMS Timer 程式.歡迎到這裡下載. When you use the Skype to send the SMS, you may need a function which is …

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 …

Customizing XCode File Templates

Want to customize/organize your XCode 2.1 templates?? Here’s a few things I do to help myself. First off let’s get an understanding …