最近在研究 design pattern,
因為對 php 最熟, 理解比較容易,這個 site 有 詳盡的例子
http://www.phppatterns.com/docs/?idx=blogs
一理通, 百理明, design pattern 對 java , c# 也是 一樣的吧.
最近在研究 design pattern,
因為對 php 最熟, 理解比較容易,這個 site 有 詳盡的例子
http://www.phppatterns.com/docs/?idx=blogs
一理通, 百理明, design pattern 對 java , c# 也是 一樣的吧.
FL 大師
http://blog.sina.com.cn/s/articlelist_1053530897_10_1.html
AS 2.0 和 3.0 都有. 值得一讀。
一堆有用的 function
http://log.7thpark.com/article/Study-and-Tutorial/my-own-useful-actionscript-code-collection.html
今天路過一個blog, 很少這麼詳細看一個 blog 的內容,
很多各種 音樂 video 和信仰的分享。也是一個WEB程式員,
有空再去看看。
http://pawls.blogspot.com/
用這個 function 就可防止圖片大於screen, 難於觀看。
$("img").each(function(){
if($(this).width() > $(this).parent().width()) {
$(this).width("100%");
}
});
把圖片放在 table 裡, 再把 table id 改成 wrapper 即可。
html, body, #wrapper {
height:100%;
margin: 0;
text-align: center;
}
#wrapper {
margin: 0 auto;
}
一些簡單的步驟即可。
$raw_text = file_get_contents( "http://www.google.com"); $utf8_text = iconv( $encoding, "utf-8", $raw_text ); $utf8_text = html_entity_decode( $utf8_text, ENT_QUOTES, "UTF-8" );
在 oReilly 的書上看到一個例子, 幾個 function retrieve URL 很有用。
工作需要把一個 folder 裡的 text file 轉成 html
這個網站有sample code, 只要寫個function read directory,
把 filename 放到 array 裡即可。
另一個手工打造的 Jquery 例子.較輕巧方便。
http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/
Project 需要做一個 in place edit 的表格,
JQuery 已有plug-in, 相當好用. 不用自己寫 . good~