- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/keen/explorer
软件介绍
Explorer 是 Keen IO 开发的数据浏览器。
初始化配置:
<script type="text/javascript">
$(document).ready(function(){
client = new Keen({
projectId: "your_project_id",
readKey: "your_read_key",
masterKey: "your_master_key"
protocol: "https",
host: "api.keen.io/3.0",
requestType: "jsonp"
});
var app = new Keen.DataTools.App({
client: client,
targetId: 'content'
});
app.render(); // Render the app's UI into the targetId provided in the config.
});
</script>Effective Java: Second Edition
Joshua Bloch / Addison-Wesley / 2008-05-28 / USD 54.99
Written for the working Java developer, Joshua Bloch's Effective Java Programming Language Guide provides a truly useful set of over 50 best practices and tips for writing better Java code. With plent......一起来看看 《Effective Java: Second Edition》 这本书的介绍吧!
