- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://beijunyi.github.io/ParallelGit/#/
软件介绍
ParallelGit 是为 Git 应用准备的高性能 Java NIO 内存文件系统。ParallelGit 是基于 JGit 构建的, 可以帮助 Java 项目快速的访问 Git 文件。
ParallelGit 可以帮助你操作本地 Git仓库,允许你通过 Java 7 nio 文件系统接口来访问 Git 仓库,达到跟原生文件系统一样的体验。
示例
Create Repository
public Repository createProjectRepository() {
File dir = new File("/home/project/repo");
return RepositoryUtils.createRepository(dir);
}Create Branch
public void branchFromMaster(String newBranch, Repository repo) {
BranchUtils.createBranch(newBranch, "master", repo)
}Read File
public void printFile(String filename, Repository repo) {
byte[] blob = GitFileUtils.readFile(filename, "master", repo);
String text = new String(blob);
System.out.println(text);
}
人工智能的未来
Jeff Hawkins、Sandra Blakeslee / 贺俊杰、李若子、杨倩 / 陕西科学技术出版社 / 2006.1 / 18.5
陕西科技出版社最新引进美国图书《人工智能的未来》(On Intelligence)一书,是由杰夫•霍金斯,一位在硅谷极其成功、受人尊敬的计算机工程师、企业家与桑德拉•布拉克斯莉,《纽约日报》的栏目作家共同撰写。本书对人类大脑皮层所具有的知觉、认识、行为和智能功能新理论提出了新的理论构想。这一理论的独到之处在于对大脑皮层的现行认识提出了新的观点,对大脑的工作原理,即霍金斯称之为“真正智能”而非计算机......一起来看看 《人工智能的未来》 这本书的介绍吧!
