上一页 1 ··· 3 4 5 6 7 8 9 下一页

2012年2月8日

[Learn Note] Java Script Guide Line

摘要: Table of Contents1 Reference 2 Highlights 2.1 Formating 2.1.1 Curly Braces 2.1.2 Array and Object Initializers 2.1.3 Function Arguments 2.1.4 Passing Anonymous Functions 2.1.5 More Indentation 2.1.6 Binary and Ternary Operators 2.2 Strings 2.3 JavaScript Types 2.3.1 Type Casts 2.4 Comments 2.4.1 JSD 阅读全文

posted @ 2012-02-08 16:33 Jalen Wang 阅读(280) 评论(0) 推荐(0) 编辑

2012年2月7日

[LearnNote] JSON

摘要: 1 JSONJSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.More information is availble on the home page.2 JSON in JavaScript2.1 Operate with a JSON object2.1.1 Create a JSON object// Declar 阅读全文

posted @ 2012-02-07 21:14 Jalen Wang 阅读(327) 评论(0) 推荐(0) 编辑

2012年2月5日

Flex Builder

摘要: Adobe® Flex® 3 是用于构建和维护在所有主要浏览器、桌面和操作系统一致地部署的极具表现力的 Web 应用程序的高效率的开放源码框架。 可以使用免费的 Flex SDK 构建 Flex 应用程序, 开发人员可以使用 Adobe Flex Builder™ 3 软件来显著促进开发。Download:http://subject.csdn.net/adobedownload/Post by: Jalen Wang (转载请注明出处) 阅读全文

posted @ 2012-02-05 10:19 Jalen Wang 阅读(226) 评论(0) 推荐(0) 编辑

Update emacs to 23.2 on Ubuntu

摘要: sudo add-apt-repository ppa:ubuntu-elisp/ppasudo apt-get updatesudo apt-get upgraderef:http://jeffbeeman.com/node/120Post by: Jalen Wang (转载请注明出处) 阅读全文

posted @ 2012-02-05 10:12 Jalen Wang 阅读(214) 评论(0) 推荐(0) 编辑

2012年1月30日

Eclipse快捷键

摘要: Table of Contents1 Useful eclipse Keyboard 2 Move /Copy the lines 1 Useful eclipse Keyboardrectangle selection model shift + alt + aTemplate Alt + /Go to implementation => F3 Rename => Shift + Alt + R Ctrl + F11 Ctrl + E quick browser Ctrl + M Maxiam the active window F12 Active Editor Ctrl + 阅读全文

posted @ 2012-01-30 23:07 Jalen Wang 阅读(209) 评论(0) 推荐(0) 编辑

[Learn Note]2012-01-29

摘要: Table of Contents1 Emacs Lisp Date Time Formats 2 C#与闭包 3 Bootstrapping 4 emacs searching 1 Emacs Lisp Date Time FormatsElisp provides a very convenient function format-time-string for printing data time. For example, you can write a command to print date in the yyyy-mm-dd format using (insert (form 阅读全文

posted @ 2012-01-30 21:47 Jalen Wang 阅读(185) 评论(0) 推荐(0) 编辑

2012年1月28日

[Notes]2012-1-28

摘要: 1 How to Have the Best Year of Your Life (without Setting a Single Goal)通过坚持一些良好的习惯以Get Things Done。1.1 Get up earlyWhen the world wakes up, distractions abound. If you are going to focus on creating a new life for yourself, you’ll need to find the time. The best way to do this is to work while othe 阅读全文

posted @ 2012-01-28 21:55 Jalen Wang 阅读(130) 评论(0) 推荐(0) 编辑

2012年1月27日

[Learn Notes] PowerShell学习笔记

摘要: 这几天抽空学习了一下PowerShell,领略了其强大之处。本想好好的写点笔记,到网上一翻,还真有现成的笔记(http://www.ansatt.hig.no/erikh/tutorial-powershell/powershell-pres.pdf)。看了一下,这个笔记做的真不错,突出了重点,看过《Mastering-PowerShell》后,完全可以当作quick reference用。至于如何在emacs添加powershell的support,可以参照http://www.emacswiki.org/emacs/PowerShell。ps. 本来应该是个很长的文章,现在我也可以呀呀数语 阅读全文

posted @ 2012-01-27 22:37 Jalen Wang 阅读(151) 评论(0) 推荐(0) 编辑

2012年1月19日

[Tip]一次解压多个文件

摘要: 自从用了DBank后,我就把很多常用的绿色软件给按文件夹压缩后上传到网盘里面。如果一个新机器上我需要安装的话,就把这些zip包给下载下来,然后给解压到一个目录里面。一个一个的解压当然很烦,研究了一下7z,这才发现它支持一次过个文件,这就是我要的批处理模式。操作界面如下: 阅读全文

posted @ 2012-01-19 19:25 Jalen Wang 阅读(318) 评论(0) 推荐(0) 编辑

2012年1月7日

[Learn Notes] CSS学习笔记

摘要: 1 数据和视图分离1.1 有了 CSS,就可以控制页面的外观并且将文档的表现部分与内容分隔开2 更易于保持各个界面的风格的一致性2.1 这个界面可以使用相同的CSS3 标记3.1 id 和 类名3.2 div 和 spandiv 可以用来对块级元素进行分组,而 span 可以用来对行内元素进行分组或标识4 为样式找到目标有效且结构良好的文档为应用样式提供了一个框架。要想使用 CSS 将样式应用于特定的(X)HTML 元素, 需要有办法找到这个元素。在 CSS 中,执行这一任务的样式规则部分称为选择器(selector)。4.1 常用的选择器4.1.1 类型选择器类型选择器有时候也称为元素选择器 阅读全文

posted @ 2012-01-07 21:19 Jalen Wang 阅读(194) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 下一页

导航