AngularJS 扩展指令 ng-readingtime
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/jiin/ng-readingtime
软件介绍
ng-readingtime 是 AngularJS 的指令,可以用来获取对指定文本的阅读时间。
使用示例
<p> Reading time: <span ng-reading-time text-to-read="text"></span> </p>
.directive('myCustomDirective', ['readingTime', function(readingTime) { return { // ... skipped code
link: function() {
scope.result = readingTime.get(text, {
wordsPerMinute: 210,
format: 'text_only'
});
}
}
}]);并行计算导论
Ananth Grama、George Karypis、张武、毛国勇、Anshul Gupta、Vipin Kumar、程海英 / 张武、毛国勇、程海英 / 机械工业出版社 / 2005-1-1 / 49.00元
《并行计算导论》(原书第2版)全面介绍并行计算的各个方面,包括体系结构、编程范例、算法与应用和标准等,涉及并行计算的新技术,也覆盖了较传统的算法,如排序、搜索、图和动态编程等。《并行计算导论》(原书第2版)尽可能采用与底层平台无关的体系结构并且针对抽象模型来设计处落地。书中选择MPI、POSIX线程和OpenMP作为编程模型,并在不同例子中反映了并行计算的不断变化的应用组合。一起来看看 《并行计算导论》 这本书的介绍吧!
