From Vanity Fair
-
http://www.vanityfair.com/online/daily/2012/07/microsoft-downfall-emails-steve-ballmer
Foxbrush 發表在 痞客邦 留言(0) 人氣(2)
Foxbrush 發表在 痞客邦 留言(0) 人氣(72)
瞎子摸象:心理學家的 UX 觀點(上)
瞎子摸象:心理學家的 UX 觀點(下)
Foxbrush 發表在 痞客邦 留言(0) 人氣(64)
dive.into.javascript - sprintf() for JavaScript
Foxbrush 發表在 痞客邦 留言(0) 人氣(16)
var fragment = document.createDocumentFragment();
for (var i in some_array) {
var node = document.createElement('option');
node.innerHTML = '....';
fragment.appendChild(node);
}
targetNode.appendChild(fragment);
Foxbrush 發表在 痞客邦 留言(0) 人氣(78)
經典分享MySQL的limit查詢優化
主要是對MySQL limit查詢優化的具體內容的介紹,我們大家都知道MySQL數據庫的優化是相當重要的。其他最為常用也是最為需要優化的就是limit。MySQL的limit給分頁帶來了極大的方便,但數據量一大的時候,limit的性能就急劇下降。
Foxbrush 發表在 痞客邦 留言(0) 人氣(68)
Nested classes (C++ only)
http://publib.boulder.ibm.com/infocenter/comphelp/v8v101/index.jsp?topic=%2Fcom.ibm.xlcpp8a.doc%2Flanguage%2Fref%2Fcplr061.htm
Foxbrush 發表在 痞客邦 留言(0) 人氣(4)
程式語言的特性本質(一)-靜態語言與動態語言的信任抉擇
Foxbrush 發表在 痞客邦 留言(0) 人氣(132)
Foxbrush 發表在 痞客邦 留言(0) 人氣(1)

指標 (pointer),參考 (reference) 觀念整理與常見問題
-----------------------------------------------------------------------------------------------------------------------
Foxbrush 發表在 痞客邦 留言(0) 人氣(433)