读书笔记(2014年7月)

(一)2014-07-24

向那些疯狂的家伙们致敬

Here's to the crazy ones. The misfits. The rebels. The troublemakers. The round pegs in the square holes. 

The ones who see things differently. They're not fond of rules. And they have no respect for the status quo. You can quote them, disagree with them, glorify or vilify them. 

About the only thing you can't do is ignore them. Because they change things. They push the human race forward. 

While some may see them as the crazy ones, we see genius. Because the people who are crazy enough to think they can change the world, are the ones who do.

(Apple Inc.)

向那些疯狂的家伙致敬
他们特立独行
他们桀骜不驯
他们惹是生非
他们格格不入
他们用与众不同的眼光看待事物
他们不喜欢墨守成规
他们也不愿安于现状
你可以赞美他们 引用他们 反对他们
质疑他们 颂扬或是诋毁他们
但惟独不能漠视他们
因为他们改变了事物
他们推动人类向前发展
或许他们是别人眼里的疯子
但他们确是我们眼中的天才
因为只有那些疯狂到以为自己能够改变世界的人
才能真正的改变世界

 (二)2014-07-28

(1)Web开发调试工具:Livepool

LivePool 是一个基于 NodeJS,类似 Fiddler 支持抓包和本地替换的 Web 开发调试工具,是 Tencent AlloyTeam 在开发实践过程总结出的一套的便捷的 WorkFlow 以及调试方案。

参考链接:http://www.oschina.net/p/livepool

(三)2014-07-29

(1) 文档生成工具:

 jsdoc: https://github.com/shengli0218/jaguarjs-jsdoc

 doxmate: http://html5ify.com/doxmate/#index_Usage

(2)eventproxy

主要亮点:通过事件实现异步协作!Github: https://github.com/JacksonTian/eventproxy

(3)Mocha: NodeJS 测试框架

    http://cnodejs.org/topic/516526766d38277306c7d277

(4)朴灵:html5ify:

    http://html5ify.com/

(5)#!/usr/bin/env python与#!/usr/bin/python的区别

脚本语言的第一行,目的就是指出,你想要你的这个文件中的代码用什么可执行程序去运行它,就这么简单

#!/usr/bin/python是告诉操作系统执行这个脚本的时候,调用/usr/bin下的python解释器;
#!/usr/bin/env python这种用法是为了防止操作系统用户没有将python装在默认的/usr/bin路径里。当系统看到这一行的时候,首先会到env设置里查找python的安装路径,再调用对应路径下的解释器程序完成操作。
#!/usr/bin/python相当于写死了python路径;
#!/usr/bin/env python会去环境设置寻找python目录,推荐这种写法

(四)2014-07-30

(1)搜索引擎:WolframAlpha(http://www.wolframalpha.com/),新一代搜索引擎,向用户返回的是答案,而不是链接;

/*------------------------------------------------------------------------------------------------*/

// AD

// www.tmallstudio.com

// TS: TEST BODY

/*------------------------------------------------------------------------------------------------*/

  

原文地址:https://www.cnblogs.com/china-victory/p/3866729.html