在C:\Program Files\Vim目录下的 _vimrc文件中,插入基本配置,包括中文乱码,行号和主题。 " Vim with all enhancements source $VIMRUNTIME/vimrc_example.vim " 解决中文乱码 set encoding=utf-8 ...
分类:
系统相关 时间:
2020-05-29 21:39:22
阅读次数:
110
#DNS软件bind isc 开源 免费使用 其他:powerdns(基于php) undound ##安装bind yum list all bind 官方最新版本 www.isc.org/download/#BIND 稳定版本 9.16.3 May.2020 localhost 表示本机所有ip ...
分类:
其他好文 时间:
2020-05-29 13:46:00
阅读次数:
76
package _interview_question /** * Given a list/array of integers, return a boolean that states whether all numbers appear an even number of times. Exa ...
分类:
移动开发 时间:
2020-05-29 13:33:33
阅读次数:
69
mysql> mysql -u用户名 -p用户密码 mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '我是密码' WITH GRANT OPTION; mysql> flush privileges; mysql> net ...
分类:
数据库 时间:
2020-05-29 13:25:16
阅读次数:
90
.htaccess 仅能用于apache下,并且内容严格,不能有错误行,如:GIF89a .user.ini php 5.3.0开始引入,可设置除了:PHP_INI_SYSTEM 外的其他,包括(PHP_INI_PERDIR 和 PHP_INI_USER ,PHP_INI_ALL),不用重启服务器, ...
分类:
数据库 时间:
2020-05-29 10:27:31
阅读次数:
87
题目如下: A happy string is a string that: consists only of letters of the set ['a', 'b', 'c']. s[i] != s[i + 1] for all values of i from 1 to s.length - ...
分类:
移动开发 时间:
2020-05-29 10:03:22
阅读次数:
64
一、测试用例数据库存放分析 1、测试用例相关表 QC 将测试用例主要存放在4张表上,TEST 表存放测试用例名,DESSTEPS表存放用例步骤,ALL_LISTS 表存放用例在系统上的路径,STEP _PARAMS 表存放步骤上所引用的参数。如下图: 1.1 ALL LISTS 表 系统和用户 li ...
分类:
其他好文 时间:
2020-05-29 09:53:06
阅读次数:
62
列出分发版 wsl -l , wsl --list wsl --list --all wsl --list --running 设置默认分发版 wsl -s Ubuntu 取消注册和重新安装分发版 注销后,与该分发关联的所有数据、设置和软件都将永久丢失。 从 Store 重新安装会安装分发版的干净副 ...
分类:
其他好文 时间:
2020-05-28 23:34:55
阅读次数:
152
所谓双Value,就是两个数据集RDD之间进行操作。 1 union(otherDataset):对源RDD和参数RDD合并后返回一个新的RDD,不会去重 val listRDD1: RDD[Int] = sc.makeRDD(1 to 5) val listRDD2: RDD[Int] = sc. ...
分类:
其他好文 时间:
2020-05-28 23:28:27
阅读次数:
71
1.创建数据库(192.168.1.14)create database db_cachecloud;grant all privileges on db_cachecloud.* to cachecloud@'%' identified by 'cachecloud';2.进行安装[root@no ...
分类:
系统相关 时间:
2020-05-28 19:52:12
阅读次数:
108