2013年7月22日 星期一

南瓜可樂餅



南瓜 切塊
洋蔥 切小丁
豬絞肉
馬鈴薯泥

黑胡椒粒

低粉
全蛋 1顆
麵包粉

1. 馬鈴薯蒸熟後壓泥
2. 南瓜切塊後帶皮蒸熟,趁熱壓碎
3. 奶油炒熟洋蔥與豬絞肉
4. 馬鈴薯泥、南瓜泥、洋蔥、豬絞肉、一點水、鹽、黑胡椒粒,順一個方向把它攪拌抓勻
5. 手抹沙拉油,將 4 抓至掌心內,搓圓壓成圓餅狀,做成好幾個圓餅,之後靜置 2~3 分鐘
6. 裹低粉 -> 蛋液 -> 麵包粉,下鍋油炸





Reference :
南瓜可樂餅 - 楊桃美食網!!學做菜食譜,看美食教學,找熱門餐廳

鐵板麵醬



洋蔥 半顆 切丁
蒜 2顆 切末

紅蘿蔔 1/3 根 切丁
蘑菇 4~5朵 切小丁

奶油
黑胡椒粒
鹽 少量
番茄醬
麵粉

1. 加熱奶油,炒香洋蔥、蒜末、紅蘿蔔,後續加入蘑菇
2. 以番茄醬、黑胡椒粒、鹽調味。洋蔥炒至透明
3. 後加入麵粉水煮滾




2013年7月13日 星期六

Debian install pd-extended

# vi /etc/apt/sources.list 
deb http://apt.puredata.info/releases testing main
 
# apt-get update
 
# apt-get install pd-extended 
 
 
 
 
Reference : 
How do I install Pd on Debian, Ubuntu, Mint GNU/Linux? — PD Community Site

2013年7月4日 星期四

PHP Array to JSON


$ar = array('page' => array(
                          'name' => 'Top',
                          'url' => '/index'
                      )
       );


echo json_encode($ar);

?>

git list files in commit

$ git show --pretty="format:" --no-commit-id  --name-only d7196058



Reference :
List all the files for a commit in Git 

update all git submodule

$ git submodule foreach git pull




Reference :
Git - easy way pull latest of all submodules

2013年7月3日 星期三

jQuery $.ajax() asynchronous get url content

function showGetResult( name )
{
     var result = null;
     var scriptUrl = "somefile.php?name=" + name;
     $.ajax({
        url: scriptUrl,
        type: 'get',
        dataType: 'html',
        async: false,
        success: function(data) {
            result = data;
        } 
     });
     return result;
}




Reference :
jQuery return $.get data in a function - Stack Overflow
javascript - How can I get jQuery to perform a synchronous, rather than asynchronous, AJAX request? - Stack Overflow

Node.JS jQuery Library

Install :
$ npm install jquery
 
 
test.js
require("node-jquery");

a = ['aaa', 'bbb', 'ccc', 'ddd'];

$.each(a, function(key, val) { console.log(key + " => " + val); });


Run :
$ node test.js
0 => aaa
1 => bbb
2 => ccc
3 => ddd




Reference :
jquery