1 2 3 4 5 ··· 14 下一页
摘要: JavaScript 语言基础知识点总结(思维导图)温故而知新———— 最近温习了一遍Javascript 语言,故把一些基础、概念性的东西分享一下。(下面内容大都为条目、索引,是对知识点的概括,帮助梳理知识点,具体内容需要查阅资料)http://julying.com/blog/the-features-of-javascript-language-summary-maps/ 阅读全文
posted @ 2012-12-26 15:02 永不言败 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 巧用项目生成事件属性自动打包http://www.cnblogs.com/nuoyafanfzhou/宏说明$(ConfigurationName)当前项目配置的名称(例如“Debug”)。$(IntDir)为中间文件指定的相对于项目目录的目录路径。它解析为“中间目录”属性的值。$(OutDir)输出文件目录的路径,相对于项目目录。这解析为“输出目录”属性的值。$(DevEnvDir)VisualStudio.NET的安装目录(定义形式:驱动器+路径);包括尾部的反斜杠“/”$(InputDir)输入文件的目录(定义形式:驱动器+路径);包括尾部的反斜杠“/”。如果该项目是输入,则此宏等效于$ 阅读全文
posted @ 2012-11-24 12:57 永不言败 阅读(524) 评论(0) 推荐(0) 编辑
摘要: MongoDb的相关资料MongoLive:在Chrome里进行MongoDB实时监控http://blog.nosqlfan.com/html/1964.htmlMongoDB的局限性与不足http://blog.nosqlfan.com/html/3166.htmlAdmin Zonehttp://www.mongodb.org/display/DOCS/Admin+ZoneMongoDB Administrationhttp://blog.nosqlfan.com/html/1747.html工具MongoVUE 这是老外开发的一个工具。MagicMongoDBTool 。Advance 阅读全文
posted @ 2012-02-12 13:09 永不言败 阅读(289) 评论(0) 推荐(0) 编辑
摘要: javascript apply 和call的区别, http://odetocode.com/Blogs/scott/archive/2007/07/05/function-apply-and-function-call-in-javascript.aspxjavascript设计模式 http://www.cnblogs.com/Darren_code/archive/2011/08/31/JavascripDesignPatterns.html 阅读全文
posted @ 2012-01-31 10:40 永不言败 阅读(229) 评论(0) 推荐(0) 编辑
摘要: One of the features I commonly see requested for Android applications is QR code reader or barcode scanner integration. Some native Android applications actually use an external application for QR code/barcode scanning. That, as far as I know, is not an option at the moment in AIR on Android. Howeve 阅读全文
posted @ 2012-01-12 13:11 永不言败 阅读(1960) 评论(0) 推荐(0) 编辑
摘要: http://jcreamerlive.com/2011/06/21/dependency-injection-asp-net-mvc-3-castle-windsor/ 阅读全文
posted @ 2011-09-05 14:53 永不言败 阅读(246) 评论(0) 推荐(0) 编辑
摘要: This is a short post on how to set up Castle Automatic Transactions. Many people do not see transactions being implemented as a cross cutting concern a good thing mostly because having to structure your classes around aspects could be considered a bad thing. I am privy to using the AOP method becaus 阅读全文
posted @ 2011-08-15 20:31 永不言败 阅读(241) 评论(0) 推荐(0) 编辑
摘要: http://webpy.org/docs/0.3/templetor.zh-cnhttp://jacy.me/webpy-cookbook-chinese 阅读全文
posted @ 2011-08-08 11:22 永不言败 阅读(374) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/shanyou/archive/2011/07/17/2108750.html使用 asp.net mvc和 jQuery UI 控件包 阅读全文
posted @ 2011-08-02 22:02 永不言败 阅读(387) 评论(0) 推荐(0) 编辑
摘要: # -*-encoding:utf-8 -*-"""Basic Blog using webpy 0.3 """import webimport configimport controllers app= web.application(config.urls,globals())if __name__ =='__main__': app.run() class Index: def GET(self): web.header('Content-Type','text/html;charset= 阅读全文
posted @ 2011-07-01 13:09 永不言败 阅读(615) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 14 下一页