摘要: sudo apt-get install nginx sudo groupadd www sudo useradd -g www www /etc/nginx/nginx.conf service nginx status /var/www/html/ git clone https://github.com/xlhu19/clubmaster.git nginx -t w... 阅读全文
posted @ 2017-09-08 14:17 湖风雨晚晴 阅读(164) 评论(0) 推荐(0) 编辑
摘要: Clojure 是一种运行在 Java 平台上的 LISP 方言,LISP 是一种以表达性和功能强大著称的编程语言。 阅读全文
posted @ 2017-09-07 15:00 湖风雨晚晴 阅读(1243) 评论(0) 推荐(0) 编辑
摘要: 编程语言 面向对象 c 否 c++ 是 clojure Clojure是一个在JVM平台运行的动态函数式编程语言,其语法接近于LISP语言 java 是 阅读全文
posted @ 2017-09-07 14:28 湖风雨晚晴 阅读(143) 评论(0) 推荐(0) 编辑
摘要: # Spark is a fast and general engine for large-scale data processing. # Spark libraries YARN ./bin/run-example SparkPi 10 ./bin/spark-shell --master s 阅读全文
posted @ 2017-09-07 14:09 湖风雨晚晴 阅读(169) 评论(0) 推荐(0) 编辑
摘要: mvn 安装 pom.xml 是 mvn 的配置文件: mvn 默认会在 ~/.m2/repository/ 下寻找依赖的包,如果找不到,会从 pom.xml 中定义的 repository 中搜索下载。 一些 mvn repository http://central.maven.org/mave 阅读全文
posted @ 2017-09-06 16:49 湖风雨晚晴 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 偏微分 u = f(x , y, z), du = (∂f/∂x)dx + (∂f/∂y)dy + (∂f/∂z)dz 阅读全文
posted @ 2017-09-06 13:25 湖风雨晚晴 阅读(3755) 评论(0) 推荐(0) 编辑
摘要: 系统性能测试 stream SPARK 测试 streaming benchmark https://github.com/yahoo/streaming-benchmarks 阅读全文
posted @ 2017-09-06 09:57 湖风雨晚晴 阅读(334) 评论(0) 推荐(0) 编辑
摘要: MuGo 是一个开源的 Go Engine,下棋能力大概在 10k - 2k 左右。 用 MuGo 搭建 Go Engine 并在 KGS 对战的步骤如下: 1. 安装 TensorFlow 因为 MuGo 要用 Python3,所以要用 Python 3 的 TensorFlow 版本,或者用 P 阅读全文
posted @ 2017-09-05 22:57 湖风雨晚晴 阅读(1404) 评论(0) 推荐(0) 编辑
摘要: 指定使用某个GPU 阅读全文
posted @ 2017-09-05 15:50 湖风雨晚晴 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 本文说明为什么会出现僵尸进程 (zombie process, defunct),以及如何杀掉僵尸进程 1. 为什么有僵尸进程 僵尸进程出现在父进程没有回收子进程的 PCB 的时候,这个时候子进程已经结束,但是父进程没有回收它,所以保存了一份子进程的 PCB 在父进程的内核空间中。 僵尸进程占用的是 阅读全文
posted @ 2017-09-05 15:10 湖风雨晚晴 阅读(4468) 评论(0) 推荐(1) 编辑