paul_cheung

导航

2013年8月13日 #

css round corner div and transition

摘要: 圆角风格的tag,css中属性渐变效果 阅读全文

posted @ 2013-08-13 15:38 paul_cheung 阅读(271) 评论(0) 推荐(0) 编辑

2013年8月2日 #

TypeScript简单的代码片段

摘要: typescript中接口的定义和实现,重载函数的实现;类的定义和继承;module的定义和使用。有对应javascript代码 阅读全文

posted @ 2013-08-02 17:35 paul_cheung 阅读(482) 评论(0) 推荐(0) 编辑

2013年7月31日 #

Static variables in JavaScript

摘要: javascript中变量和方法,static, public,private 阅读全文

posted @ 2013-07-31 21:03 paul_cheung 阅读(184) 评论(0) 推荐(0) 编辑

2013年7月26日 #

Visual Studio TFS

摘要: 安装TFS2012,创建Project Collection,TFS Admin Console,Project Collection Web Portal,了解Build Configuration(Controller/Agent) 阅读全文

posted @ 2013-07-26 10:02 paul_cheung 阅读(512) 评论(0) 推荐(1) 编辑

2013年7月24日 #

JavaScript私有方法

摘要: some concepts: Java is from Sun Microsystem Inc., andJavaScript, called LiveScript before,is from Netscape; those two languages has little relationship with each other. Just their names confuse us. 个人一直以为javascript中没有私有成员(变量和方法)的说法,直到看完此文云雾骤散。1.对象 Arrays, Functions, Objects都是对象。Objects是name-valu... 阅读全文

posted @ 2013-07-24 16:27 paul_cheung 阅读(334) 评论(0) 推荐(0) 编辑

2013年7月23日 #

Django学习笔记----settings and database_based App demo

摘要: 原文参考docs.djangoproject.com, what can manage.py utility do? find here.1.Database Setup编辑settings.py文件,配置数据库,包括provider和数据库(文件路径)名称,然后保存(不确定要不要compile下)。如果为SQLite,使用此操作自动创建数据库文件(给出绝对路径名c:/blah/blah/demoDB.db,engine:'django.db.backends.sqlite3')使用:python manage.py syncdb2.设置Time Zone等默认为美国中部时间C 阅读全文

posted @ 2013-07-23 12:11 paul_cheung 阅读(461) 评论(0) 推荐(0) 编辑

2013年7月22日 #

CSS 三栏布局入门

摘要: 使用CSS进行简单的三栏布局 阅读全文

posted @ 2013-07-22 15:43 paul_cheung 阅读(204) 评论(0) 推荐(0) 编辑

2013年7月21日 #

Module, Package in Python

摘要: Phthon中Module,Package,__init__ 阅读全文

posted @ 2013-07-21 18:09 paul_cheung 阅读(227) 评论(0) 推荐(0) 编辑

Django[pronounced dʒ] installation on windows

摘要: 1.Install python,download python windows installerfrom http://www.python.org/download/and do installation(add evironmentvariable); when this operation complete, there is no 'Script' folder under %Python% directory.2.Google search 'ez_setup', find ez_setup.py, copy it and save as ez_s 阅读全文

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

2013年7月20日 #

Singleton pattern的线程安全问题

摘要: Singleton实现中的线程安全问题及保证线程安全。 阅读全文

posted @ 2013-07-20 23:51 paul_cheung 阅读(1309) 评论(0) 推荐(0) 编辑