基于NodeJs的JSON协议的RPC解决方案 DNode
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: Linux
- 软件首页: https://github.com/substack/dnode
软件介绍
DNode:一个非常不错的基于NodeJs的JSON协议的RPC远程调用解决方案,并且还可以实现浏览器端直接调用远程服务(通过基于socket.io的websocket开发库)
安装方法:npm install dnode
示例代码:
var dnode = require('dnode'); dnode.connect(5050, function (remote) { remote.zing(66, function (n) { console.log('n = ' + n); }); });
Understanding Machine Learning
Shai Shalev-Shwartz、Shai Ben-David / Cambridge University Press / 2014 / USD 48.51
Machine learning is one of the fastest growing areas of computer science, with far-reaching applications. The aim of this textbook is to introduce machine learning, and the algorithmic paradigms it of......一起来看看 《Understanding Machine Learning》 这本书的介绍吧!
