paul_cheung

导航

2013年7月19日 #

可以直接拿来用的15个jQuery代码片段

摘要: jQuery代码片段;handy usage... 阅读全文

posted @ 2013-07-19 20:31 paul_cheung 阅读(144) 评论(0) 推荐(0) 编辑

管窥python语法

摘要: 刚接触python,mark下所见所得:1.Python调用底层API,可在任何platform上运行,包括Windows、Mac、Unix;2.用#符号对代码或语句进行注释,#后的代码不被编译;3.print的时候使用逗号[,]告诉解释器不作新行输出;4.python程序可以运行在windows shell里(cmd line);5.代码可以在notepad下编辑,纯文本结构文件;6.变量声明:v=2; v="can be changedtoa string"; #the value of v can be changed at any time; name=" 阅读全文

posted @ 2013-07-19 13:50 paul_cheung 阅读(177) 评论(0) 推荐(0) 编辑

2013年7月17日 #

Daily Build[called heart beat]

摘要: Use MSBuild to do daily build 阅读全文

posted @ 2013-07-17 14:31 paul_cheung 阅读(161) 评论(0) 推荐(0) 编辑

2013年7月16日 #

JS判断浏览器类型与版本

摘要: javascript判断浏览器类型 阅读全文

posted @ 2013-07-16 23:53 paul_cheung 阅读(173) 评论(0) 推荐(0) 编辑

2013年7月15日 #

Dependency Injection in ASP.NET MVC

摘要: 原文引自http://www.dotnetcurry.com/ShowArticle.aspx?ID=7861.传统三层结构,相邻两层之间交互; 2.如果使用EntityFramework则View层直接与Db层交互,如在Controller中定义DbContext操作数据库,属于紧耦合; 3.解决2中紧耦合的方法:1)定义IRepository(CRUD),此接口在对应数据层实现(DbContext);2)Controller中只使用IRepository实例出的相应Repository,进而达到松耦合的目的; 4.Controller默认使用无参构造函数,不能以传递参数的方式实例化Cont 阅读全文

posted @ 2013-07-15 19:17 paul_cheung 阅读(431) 评论(0) 推荐(0) 编辑

Mock Framework

摘要: Typemock Isolator; Rhino Mocks; NMock; MS Fakes(has not same mechanism with NMock)Mock is usually used for Test-Driven Development, in order to write unit test, we need to mock certain objects using these frameworks. 阅读全文

posted @ 2013-07-15 19:14 paul_cheung 阅读(198) 评论(0) 推荐(0) 编辑

Splash Screen(短时间弹出框,信息显示一次)

摘要: 原文引自codeproject site, http://www.codeproject.com/Articles/6511/Transparent-Splash-Screen1.A splash page: an initial web site page used to capture the user's attention for a short timeas a promotion or lead-in to the site home page or to tell the user anything. to have the splash page automatical 阅读全文

posted @ 2013-07-15 19:14 paul_cheung 阅读(314) 评论(0) 推荐(0) 编辑

sites for debugging script

摘要: 1. javascript debugger online: http://jsfiddle.net/2. script(js,python,ruby) debugger online:http://codechat.net/ 阅读全文

posted @ 2013-07-15 19:12 paul_cheung 阅读(186) 评论(0) 推荐(0) 编辑

Types in Javascript(jQuery)

摘要: String: 空字符串等于Boolean的false;htmlString: 包括起始tag和结束tag的字符串,代表html代码;Number:双精度64位,跟string一样属于immutable,基于c语言的运算符都适用于此值;0默认为false,!0为true; Math函数,parseInt函数(各进制到int的转换); 转换为字符串,""+1+2==“12”,""+(1+3)==“4”...... NaN,非Number的对象会返回NaN,用isNaN函数判断;Number类型; Infinity,1/0==infinity;Number类 阅读全文

posted @ 2013-07-15 17:14 paul_cheung 阅读(241) 评论(0) 推荐(0) 编辑

推荐10个超棒的jQuery工具 提示插件

摘要: 脚本之家 http://www.jb51.net/article/28525.htm 阅读全文

posted @ 2013-07-15 17:13 paul_cheung 阅读(134) 评论(0) 推荐(0) 编辑