#启动Rstudio-server rstudio-server start #启动 rstudio-server stop #停止 rstudio-server restart #重启 #查看运行中R进程 rstudio-server active-sessions #指定PID,停止运行中的R进 ...
分类:
系统相关 时间:
2020-08-18 15:36:46
阅读次数:
87
树链剖分基本操作: 1. 修改第i条边的权值。 2. 对树上一条路径的权值取反(正变负,负变正)。 3. 查询树上一条路径的权值的最大值。 因为要取反,所以要同时维护最大值和最小值。 1 #include<cstdio> 2 #include<cstring> 3 #include<algorith ...
分类:
其他好文 时间:
2020-08-18 13:36:03
阅读次数:
62
Given a binary tree, return the inorder traversal of its nodes' values. Example: Input: [1,null,2,3] 1 \ 2 / 3 Output: [1,3,2] Follow up: Recursive so ...
分类:
其他好文 时间:
2020-08-17 17:50:25
阅读次数:
81
Jenkins下用DockerFile自动部署Java(SpringBoot)项目,简单自用,勿喷 一、Jenkins构建Java(SpringBoot)项目 新建-构建一个Maven项目 需要提一下,现在新安装的没有这个选项,需要在插件里安装一下 Maven Integration java配置, ...
分类:
编程语言 时间:
2020-08-17 17:02:22
阅读次数:
86
# **Docker 快速安装**
wget http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repo
yum install docker-ce -y
//启动
service docker start
//设置开机启动
sy...
分类:
数据库 时间:
2020-08-17 16:50:46
阅读次数:
72
1. 通过yarn的 http://node2:8088/cluster 的网页版本 可以查看到总CPU核心数 , 以及正在使用的 ,剩余的 , 和内存数 2. 如何通过shell 命令或脚本查看剩余的 cpu核心数 和内存 yarn top 这个命令句就可以 , 查看集群的资源情况 , 包括正在使 ...
分类:
其他好文 时间:
2020-08-17 16:44:40
阅读次数:
160
下载安装介质 ntp-4.2.6p5-29.el7.centos.2.x86_64.rpm ntpdate-4.2.6p5-29.el7.centos.2.x86_64.rpm 开始安装 rpm -ivh ntpdate-4.2.6p5-29.el7.centos.2.x86_64.rpm rpm ...
分类:
其他好文 时间:
2020-08-13 11:49:53
阅读次数:
178
beforeEnter: function(el) { // 通过绝对定位,小球css的top和left值一直都是固定的 //不管怎么滚动,小球的x y坐标固定 el.style.transform = "translate(0,0)"; }, enter: function(el, done) { ...
分类:
其他好文 时间:
2020-08-12 15:52:47
阅读次数:
66
考察利用php://filter伪协议进行文件包含 知识点参考:https://www.smi1e.top/%E6%96%87%E4%BB%B6%E5%8C%85%E5%90%AB%E6%BC%8F%E6%B4%9E%E4%B8%8Ephp%E4%BC%AA%E5%8D%8F%E8%AE%AE/ 首 ...
分类:
其他好文 时间:
2020-08-10 20:58:19
阅读次数:
71