Aug 31, 2011

Delete files(source code) in google code web 在google code 中刪除檔案

Google code web can create or edit any file easily.
Google code 網站可以很方便地建立或編輯檔案,

The only problem is that you can not delete files on the web....
唯一的問題是無法刪除檔案。



Solution
解決方法

Step1. install svn client like tortoisesvn for windows : http://tortoisesvn.net/downloads.html
先安裝 svn 的軟體,windows的使用者可以安裝 tortoisesvn

Step2. in the command line, input the command like below
安裝完成後,在指令模式執行以下類似的指令
svn delete https://yourproject.googlecode.com/svn/trunk/file.ext --username yourusername@gmail.com -m "your reason"

Step3. input your password and the file will be deleted.
輸入密碼,檔案即可被刪除

Split editor window in Netbeans 在Netbeans中分割視窗

It's useful that split window for searching variables or code in one code file.
需要對同一份檔案做尋找而編輯時,分割視窗比照是很方便的。

Step 1. right click on the document (code file), select "Clone Document".
在要分割的檔案中點選右鍵,選擇"Clone Document".



Aug 29, 2011

JavaScript get parameters from URL 使用JavaScript 從網址傳遞參數

You can create a getUrlParameter function in JavaScript to parse URL for passing/getting parameter.
可以利用 JavaScript 來剖析/傳遞網址來得到特定的參數

Step 1. using window.location.href to get URL string.
利用 window.location.href 得到網址字串

Step 2. parsing URL string.
剖析該字串

Step 3. call getUrlParameter function to get specified parameter
利用getUrlParameter 來取得特定的參數


Below is a example for parsing URL like: "http://xxxxxx?A=1&B=2",
以下是一個剖析如 "http://xxxxxx?A=1&B=2" 的網址,

call getUrlParameter("A") to get value "1" and call call getUrlParameter("B") to get value "2"
利用 getUrlParameter("A") 可得到 "1",利用 getUrlParameter("B") 可得到 "2"