摘要: 全屏模式 Host (右边的 Ctrl) + F 无缝模式 Host (右边的 Ctrl) + L 阅读全文
posted @ 2020-07-02 15:34 湖风雨晚晴 阅读(325) 评论(0) 推荐(0) 编辑
摘要: G git S screen 阅读全文
posted @ 2020-06-30 15:57 湖风雨晚晴 阅读(138) 评论(0) 推荐(0) 编辑
摘要: git config --list List all the settings git can find at /etc/gitconfig, ~/.gitconfig, ~/.config/git/config or .git/config. git config --system --list 阅读全文
posted @ 2020-06-30 15:55 湖风雨晚晴 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 修改 IP 和 Gateway esxcli network ip interface ipv4 set -i vmk0 -I 10.124.29.32 -N 255.255.255.0 -g 10.124.29.1 -t static 阅读全文
posted @ 2020-06-24 20:40 湖风雨晚晴 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 1. Bash 概念 主要有 4 种 shell 语言,Bash 是其中一种。四种 shell 分别是: - bash (Bourne Again SHell) - csh (C SHell) - ksh (KornSHell) - zsh 2. Bash 变量 定义变量 VAR="Hello Wo 阅读全文
posted @ 2020-06-24 14:43 湖风雨晚晴 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 1. Array 转 List public class Test { public static void main(String[] args) { List<String> stringA = Arrays.asList("hello", "world", "A"); String[] str 阅读全文
posted @ 2020-06-23 16:28 湖风雨晚晴 阅读(105) 评论(0) 推荐(0) 编辑
摘要: List import java.util.List; 初始化 List<Integer> list = new ArrayList<Integer>();List<Integer> list = new ArrayList<>();for (int i = 0; i < 10; i++) { li 阅读全文
posted @ 2020-06-23 11:24 湖风雨晚晴 阅读(115) 评论(0) 推荐(0) 编辑
摘要: JVM 即时编译器即时编译器 (Just In Time Compiler) 简称JIT JAVA程序最初是通过解释器 (Interpreter) 进行解释执行的,当 JVM 发现某个方法或代码块运行特别频繁的时候,就会认为这是“热点代码” (Hot Spot Code)。为了提高热点代码的执行效率 阅读全文
posted @ 2018-03-27 16:53 湖风雨晚晴 阅读(760) 评论(0) 推荐(0) 编辑
摘要: 一种常见的原因是,程序文件的名字不对。 程序文件的名字不能和 import lib 里的名字冲突。 一个例子: 如果程序文件名字是 docx.py,程序又 from docx import Document 的话,就会出现标题的错误。 阅读全文
posted @ 2018-03-05 22:35 湖风雨晚晴 阅读(2295) 评论(0) 推荐(0) 编辑
摘要: 解决办法:删除项目中所有的 .pyc 文件。 阅读全文
posted @ 2018-03-05 22:32 湖风雨晚晴 阅读(4143) 评论(0) 推荐(0) 编辑