跳到主要內容

發表文章

目前顯示的是 1月, 2011的文章

[教學] Facebook API PHP SDK 基本篇. Facebook API PHP SDK Basic introduce.

快速教學如何使用php建構自己的APP Facebook 中建立application 取得Keys Facebook developer application page. 進入頁面後如下圖所表示,根據提示快速建立Application. 建立好app,可以進入到內部將Domain name, email, ...等資料補齊。 TIP:Domain name一定要設定好,不然會導致無法使用。

[Javascript] xor 運算子浮點運算在不同瀏覽器速率比較

因為某支js檔案無法通過 JSlint  檢查而導致錯誤,檢查出來結果是因為 xor ( ^ ) 的運算子沒辦法通過JSlint檢查項目裡面提到: Bitwise Operators JavaScript does not have an integer type, but it does have bitwise operators. The bitwise operators convert their operands from floating point to integers and back, so they are not as efficient as in C or other languages. They are rarely useful in browser applications. The similarity to the logical operators can mask some programming errors. The bitwise option prohibits the use of these operators: << >> >>> ~ & |. 原因是因為Javascript 會將資料轉換為float來做運算比較,因此會使效能降低。 讓我興起實測一下到底速度差異多少,以下使用javascript XOR運算子,以及NAND組合運算子,來比較一下實際速度差異。