Unable to resolve target 'android-2問題如何解決。
- 3月 21 週一 201114:17
[android] Unable to resolve target 'android-2 && ECLIPSE常用的快捷鍵
Unable to resolve target 'android-2問題如何解決。
- 2月 14 週一 201110:48
[其他]D-Link dir 300 遠端桌面連線
dir 300 設定頁面:
http://goo.gl/ZdOMP
ip 位址輸入你PC 內網IP
公用服務port & 私人服務port 應該都是打 3389~3389
http://goo.gl/ZdOMP
ip 位址輸入你PC 內網IP
公用服務port & 私人服務port 應該都是打 3389~3389
- 11月 28 週日 201014:15
[linux] fedora core 6 kernel 2.6.18.1 編譯 compile / Error: Cannot find a valid baseurl for repo: extras

一開終端機就跑出這個錯誤
Error: Cannot find a valid baseurl for repo: extras
後來查了一下似乎是因為連結的網站搬移了 所以無法下載也無法更新
http://chunwen.wordpress.com/2010/04/03/yum-error-cannot-find-a-valid-baseurl-for-repo-extras/
- 11月 24 週三 201018:04
[linux] add system call 可能有用資料備分
http://newness.wordpress.com/2008/05/07/how-to-add-a-system-call-in-linuxpart-i/
http://mrmoneyc.wordpress.com/2009/03/30/howto-add-system-call-into-linux-kernel/
以上是參考網頁
這是這次嘗試之後的結果 做了以下的更動
http://mrmoneyc.wordpress.com/2009/03/30/howto-add-system-call-into-linux-kernel/
以上是參考網頁
這是這次嘗試之後的結果 做了以下的更動
- 11月 22 週一 201021:28
[linux] ubuntu 權限問題 可能是您需要啟用 ORBit 的 TCP/IP 網路連線,或由於上次系統當機導致有殘留的 NFS 鎖定檔。
http://phorum.neo-info.net/viewtopic.php?f=8&t=9 參考網址
[無法連繫設定伺服器;可能是您需要啟用 ORBit 的 TCP/IP 網路連線,或由於上次系統當機導致有殘留的 NFS 鎖定檔。 請參考 http://www.gnome.org/projects/gconf/ 以取得更多資訊。(詳情 - 1: 取得作業階段的連線失敗:Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.)]
[無法連繫設定伺服器;可能是您需要啟用 ORBit 的 TCP/IP 網路連線,或由於上次系統當機導致有殘留的 NFS 鎖定檔。 請參考 http://www.gnome.org/projects/gconf/ 以取得更多資訊。(詳情 - 1: 取得作業階段的連線失敗:Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.)]
- 11月 19 週五 201017:26
[linux] ubuntu kernel 2.6.35.2 編譯 compile / make: *** [kernel_image] Error 2

因為之前參考的網頁失蹤了 所以這幾天又重新搞了一次編譯 把過程記錄下來以免我的參考網頁又被駭掉 囧
我輸入的指令是用紅色標起來的部分
首先要安裝ubuntu 這面的參考網頁很多 可以自己找
以下是我的參考網頁
- 8月 11 週三 201013:29
[android] 設定button可見or不可見
Make invisible a button in an Android Application
- 2月 25 週四 201021:11
[OpenCV] 轉載 Dev-C++使用OpenCV的方法
但我使用後有一個函式庫沒有被包含到 後來自己去抓
http://yester-place.blogspot.com/2008/06/dev-copencv.html
http://yester-place.blogspot.com/2008/06/dev-copencv.html
- 2月 03 週三 201010:53
[drupal] drupal 6.15 安裝
先是遇到了啥地80行的錯誤
後來改用appserv 5.10版就沒問題了
再來就是複置步驟跟之前的一樣
以下有已經中文化好的檔案
後來改用appserv 5.10版就沒問題了
再來就是複置步驟跟之前的一樣
以下有已經中文化好的檔案
- 9月 23 週三 200922:55
[php]用網址傳變數

送出端
<body>
<?
$name = "lee fish";
$gid = 1;
?>
<a href="http://127.0.0.1/test.php?name=<?=$name?>&gid=<?=$gid?>">test</a>
</body>
