跳到主要內容

發表文章

目前顯示的是 2012的文章

免費圖片圖示下載網站

照片 PHOTO PIN 需加註圖片來源 介紹: http://www.techbang.com/posts/9866 http://www.soft4fun.net/website-recommand/photopin-free-photo-gallery.htm freepixels 介紹: http://blog.xuite.net/loveisa/media/19739611 小圖示 http://icons.mysitemyway.com/

大衛 鮑森新約、舊約綜覽

大衛 鮑森(David Pawson) 的新約、舊約綜覽是非常好的讀經教材,他深入淺出的講解聖經,保證讓基督徒在聖經中找到前所未有的亮光。 以下是一些相關的網路資源: Mp3 福音影視網 新約綜覽 舊約綜覽 正版DVD有附上課程內的所有中文圖表與講義,值得收藏。

為新手撰寫技術文章的方法

觀察 "XYZ" for Dummies這類書籍中使用的撰寫方式: 每章開頭有漫畫 將要描述的觀念、步驟,條列式、分點 配合圖示來標注要強調的段落 採用較大的標題,標題用特別的字型 儘量使用圖片說明想法 另闢一區特別解釋專有名詞 其他作法: 從讀者的角度去訂標題 只提供一種不容易出錯的操作步驟 去除非必要的程式碼與技術細節

使用Google Custom Search REST API

介紹: 我使用v1 https://developers.google.com/custom-search/v1/overview 準備工作: 只要有Google 帳號就能申請,但一天只能免費查詢100次 申請設定custom search engine 並取得engine ID 申請Google API使用權限 並取得 API key 作法概念: 發出Http GET request 到下面的URL並設定好參數 https://www.googleapis.com/customsearch/v1?key=[INSERT-YOUR-API-KEY]&cx=[CUSTOM-SEARCH-ENGINE-ID] 範例程式: public String search(String keyword){ StringBuffer result = new StringBuffer(); try { HttpURLConnection connection = (HttpURLConnection)new URL(CSE_URL+"&q="+keyword).openConnection(); connection.setRequestMethod("GET"); connection.setDoOutput(true); connection.connect(); BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream())); String line; while ((line = reader.readLine())!=null){ result.append(line); } }catch (Exception e) { e.printStackTrace(); } return result.toString(); } 使用 Custom Search API - Java library : Javad

Criticism about ZK

Comparison ZK http://blog.pdark.de/2011/10/27/zk/ Performance Report of Server Side RIA Frameworks http://java.dzone.com/articles/performance-report-server-side Thoughts about the ZK Web Framework: Overall experience http://jawsy.fi/blog/2011/09/08/thoughts-about-the-zk-web-framework-overall-experience/ Thoughts about the ZK Web Framework: Technical stuff http://jawsy.fi/blog/2011/09/27/thoughts-about-the-zk-web-framework-technical-stuff/ http://blue-walrus.com/?p=187 ZK vs Vaadin http://jtechnoprojects.blogspot.com/2011/05/zk-vs-vaadin.html http://jtechnoprojects.blogspot.in/2012/12/vaadin-touchkit-vs-zk-mobile-vs.html http://forum.zkoss.org/question/89429/vaadin-vs-zk/ User Experience ZK Rich Client Framework and Agile Development http://www.theserverside.com/news/1363872/ZK-Rich-Client-Framework-and-Agile-Development

儲存(匯出)eclipse搜尋結果

在 Search view中按右鍵, 選 copy即可