摘要:
(function(window, undefined) { var jQuery = function() {} // ... window.jQuery = window.$ = jQuery;})(window);从上面的代码可看出,自动初始化这个函数,让其只构建一次。详细说...
阅读全文
posted @ 2014-09-25 20:11
吹过的风
阅读(166)
推荐(0)
2017年9月1日
摘要:
Round robin partitioner The first record goes to the first processing node, the second to the second processing node, and so on. Random partitioner
阅读全文
posted @ 2017-09-01 18:08
吹过的风
阅读(335)
推荐(0)
摘要:
The obvious benefit of merge over join is the ability to add reject links. I can't upload pictures. I will edit this later.
阅读全文
posted @ 2017-09-01 16:40
吹过的风
阅读(150)
推荐(0)
摘要:
Info coms from https://www.ibm.com/support/knowledgecenter/en/SSZJPZ_9.1.0/com.ibm.swg.im.iis.ds.nav.doc/containers/cont_iisinfsrv_ds_and_qs.html IBM®
阅读全文
posted @ 2017-09-01 16:19
吹过的风
阅读(523)
推荐(0)
2017年8月23日
posted @ 2017-08-23 16:12
吹过的风
阅读(175)
推荐(0)
2017年6月14日
摘要:
Architecture Overview Modules Angular apps are modular and Angular has its own modularity system called Angular modules or NgModules. Every Angular ap
阅读全文
posted @ 2017-06-14 07:21
吹过的风
阅读(277)
推荐(0)
2016年6月7日
摘要:
Keyboard Shortcuts - Windows/Linux Warning This topic is a draft and may contain wrong information. Editing KeypressCommand Ctrl + X Cut line Ctrl + ↩
阅读全文
posted @ 2016-06-07 22:59
吹过的风
阅读(156)
推荐(0)
2015年7月27日
摘要:
http://www.zhihu.com/question/20790576/answer/32602154
阅读全文
posted @ 2015-07-27 17:02
吹过的风
阅读(136)
推荐(0)
2015年7月2日
posted @ 2015-07-02 13:32
吹过的风
阅读(139)
推荐(0)
2015年6月5日
摘要:
文章引用:http://code.tutsplus.com/tutorials/the-essentials-of-writing-high-quality-javascript--net-15145
阅读全文
posted @ 2015-06-05 17:15
吹过的风
阅读(314)
推荐(0)
2015年4月10日
摘要:
memoization是一种非常有用的优化技术,它缓存特定输入产生的相应结果。这样麻烦的查找和迭代计算可以尽可能的减少。它基本的思想是针对特定的输入,已经计算过的结果都是通过缓存当中的数据直接返回而不是经过重复的计算。实现记忆函数我们可以简单的将memoization理解为记忆函数经过特定输入产生的...
阅读全文
posted @ 2015-04-10 16:12
吹过的风
阅读(289)
推荐(0)