-
Java Class 文件
2021-04-27
(未完待续) 简介 class 文件是二进制格式的,它包含了被 JVM 执行的代码。由于 class 文件是由 JVM 来执行的,所以它不依赖特定硬件和操作系统。class 文件格式中定义了类与接口的表示形式,包括平台相关的一些细节(如字节序,A平台为大端序存储,B平台为小端序存储)…
-
Scheme 环境搭建
2021-04-22
MIT-Scheme 在 Mac 上,使用 homebrew 安装 brew install Caskroom/cask/xquartz brew install mit-scheme 然后执行 Scheme 命令进入 Scheme 解释器 Emacs 另一种方式是安装 emacs,它自带 lisp 解释器 brew cask install emacs 不过 emacs 的使用也需要学习一下,输入命令 emacs 打开它,然后可以直接输入程序,如 (+ 1 2) 将光标移至该行末尾,按下 Ctrl-x Ctrl-e 即可执行改行代码,执行结果…
-
配置SSH快捷连接
2021-04-09
在 ~/.ssh 目录下有个 config 文件,修改该文件添加主机配置: Host * ServerAliveInterval 60 Host 47 HostName 47.114.62.251 User root Port 22 IdentityFile ~/.ssh/id_rsa 即可通过命令 ssh 47 连接至服务器
-
Buffers, Windows, Tabs in Vim
2021-02-14
Most editors, like VSCode, use tabs and windows system. A tab usually means an opened file, and when we close it, the file goes away. Vim use buffers, windows and tabs, and they are different from most editors. Buffer First, let’s look at buffers in vim. A buffer is the in-memory text of a file. When we open a file in vim, it creates a buffer in memory. And what in this buffer is the file’s content. When we edit the file, we edit the buffer. Let’s try to edit a file named file1: vim file1 Vim creates a new buffer for file1 in memory. When we type :q to quit vim, the buffer will be cleared and there will be no file file1 stored on disk because we didn’t write anything to the buffer.…
-
LeetCode - 139.单词拆分
2020-11-04
题目 来源:139.单词拆分 给定一个非空字符串 s 和一个包含非空单词的列表 wordDict,判定 s 是否可以被空格拆分为一个或多个在字典中出现的单词。 说明 拆分时可以重复使用字典中的单词 你可以假设字典中没有重复的单词 示例1 输入: s = "leetcode", wordDict = ["leet", "code"] 输出:…
-
@Scheduled(cron = "") 表达式
2020-09-27
常用 cron 表达式 每隔5秒执行一次:*/5 * * * * ? 每隔10分钟执行一次:0 */10 * * * ? 每天23点执行一次:0 0 23 * * ? 每天凌晨1点执行一次:0 0 1 * * ? 每月1号凌晨1点执行一次:0 0 1 1 * ? 每月最后一天23点执行一次:0 0 23 L * ? 每周星期天凌晨1…
-
摩尔投票算法
2020-09-27
leetcode 169. 多数元素(majority element) 给定一个大小为 n 的数组,找到其中的多数元素。多数元素是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。 你可以假设数组是非空的,并且给定的数组总是存在多数元素。 示例1 输入: [3,2,3] 输出: 3 示例2 输入: [2,2,1,1,1,2,2] 输出: 2 一些常用解法: 遍历…
-
常见排序算法总结
2020-05-19
在我们的编程工作中,经常会对一组数据做排序操作,排序的算法也有很多。这里总结了几个常见的排序算法,以下默认都是升序。 冒泡排序 考虑一组数 [3, 2, 5, 1, 4],我们想让他以升序的方式排序,那么最大的数 5 是要排在最后一个位置,4 排在倒数第二个位置,以此类…
-
Centos8 安装 Docker 过程及错误解决
2020-05-12
yum install -y yum-utils yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo yum install docker-ce docker-ce-cli containerd.io 执行安装命令后报错,提示 containerd.io 版本过低 Error: Problem: package docker-ce-3:19.03.8-3.el7.x86_64 requires containerd.io >= 1.2.2-3, but none of the providers can be installed ... 安装最新的 containerd.io yum install https://download.docker.com/linux/fedora/30/x86_64/stable/Packages/containerd.io-1.2.13-3.1.fc30.x86_64.rpm 然后安装 docker-ce yum install docker-ce docker-ce-cli containerd.io 这个时候又报错,docker-ce 与 podman-manpages 冲突 Error: Transaction check error: file /usr/share/man/man1/docker-attach.1.gz from install of docker-ce-cli-1:19.03.8-3.el7.x86_64 conflicts with file from package podman-manpages-1.4.2-5.module_el8.1.0+237+63e26edc.noarch ... 卸载 podman-manpages yum remove podman-manpages.noarch 卸载后再次执行安装命令…
-
Shell配置代理
2020-02-19
开启 shadowsocks 或 v2ray 代理后,如果要在 shell 里通过代理使用命令行工具,可以按照下述方法 设置 proxy 以 zsh 为例 vim ~/.zshrc 添加代理配置 alias proxy="export all_proxy=socks5://127.0.0.1:1080" alias unproxy="unset proxy" 或者不用 export 设为全局的环境变量,只想在使用某个命令时通过代理,其他命令不通过代理,可以这样设置 alias socks5="http_proxy=socks5://127.0.0.1:7890 https_proxy=socks5://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890 " # 注意最后有个空格 保存退出…