撈出所有空值的記錄
-FIELD_NAME:[* TO *]
-FIELD_NAME:["" TO *]
撈出所以非空值的記錄
- Apr 29 Tue 2014 14:20
[SOLR] 針對某個欄位,撈取出空值的記錄
- Apr 09 Wed 2014 11:47
[PHP] 5.4 新增了陣列的新宣告方法
$a = [1, 2, 3, 4];
或
$a = ['one' => 1, 'two' => 2, 'three' => 3, 'four' => 4];
- Jan 16 Thu 2014 22:52
[Git] SCM Manager 簡易安裝教學(Git Server)
最近同事介紹一套 git server 的套件,覺得還蠻好用的,而以設定超簡單,非常適合怕麻煩的人來安裝
簡單介紹一下安裝方法
1. 下載檔案 http://www.scm-manager.org/download/
- Dec 18 Wed 2013 00:50
[MySQL] Row Number 實作
http://ithelp.ithome.com.tw/question/10136053?tag=ithome.nq
- Nov 25 Mon 2013 13:53
[Sublime2] 語法檢查套件 SublimeLinter
參考:
http://www.cnblogs.com/lhb25/archive/2013/05/02/sublimelinter-for-js-css-coding.html
http://www.liudon.org/?p=1046
- Nov 23 Sat 2013 11:50
[jQuery] 自己實作把 jQuery Template 的 html 字串回傳回來的 jQuery Plugin:tmpl_html
因為 jQuery Templat 似乎目前回傳的似乎是物件,而不是 html 的字串,所以若要做字串相加會無法處理
只好找網路上的範例,然後封裝成 jQuery Plugin 的格式來用
函式部份 $().tmpl_html
/** * 把 jQuery Template 的 html 傳回來 * 因為 jQuery Template 似乎沒有提供此功能,只好自己包一個 jQuery Plugin 的介面 * @author Leo Kuo <et282523@hotmail.com> */ (function($) { $.fn.tmpl_html = function(data) { return this.template("#" + this.attr('id'))($, {data: data}).join(''); }; })(jQuery);
- Nov 20 Wed 2013 23:21
jQuery template 沒有繼續維護了,還是找別套來用好了
- Nov 16 Sat 2013 16:12
WordPress 簡易安裝教學
- Nov 16 Sat 2013 11:00
[jQuery] 文字變色特效
終於把自己個人網站的文字特效寫成 jQuery Plugin 了,有需要的人可以自行取用哦
使用方法
$('#you_element').fontColorShow();
程式碼
https://github.com/fishingboy/Library/blob/master/jQuery-Plugin/jquery.font.color.show.js
- Nov 11 Mon 2013 10:24
[Sublime] 快速尋找程式裡的 function 及變數
快速尋找 function
Ctrl + R
快速找到變數
Ctrl + P + #