git 配置 git 配置生成key 1ssh-keygen -t rsa -b 4096 -C "your_email@domain.com" 初始操作 进入代码文件夹123456git initgit add .git commit -m "what you want to say"git remote add origin http://github.com/用户 2022-03-31 #system
系统时区配置 改变系统时区改变时区 12sudo timedatectl set-timezone your_time_zone# sudo timedatectl set-timezone A 对于中国来说都设置为 shanghai 1sudo timedatectl set-timezone Asia/Shanghai 更改24h/12h格式 1sudo localectl set-locale LC_TI 2022-03-31 #python
Vim 配置 Vim配置1注意`vim`一般得升级到 vim 8,不然操作会比较复杂 (centos7 可能会有vim7) Script12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 2022-03-31 #system
tmux 配置 tmux 配置在home目录下创建配置文件 ~/.tmux.conf 123456789101112131415161718set -g prefix C-a # 设置前缀按键 Ctrl + A。unbind C-b # 取消 Ctrl + B 快捷键。bind C-a send-prefix 2022-03-31 #system
python 关于linux命令行 python 使用命令行Use python to set env读取环境变量 12345678910# Import os module import os # Iterate loop to read and print all environment variables print("The keys and values of all environment varia 2022-03-31 #system
服务器代理设置 服务器端 12345apt install proxychains4 # 注意默认下载proxychains3, 需要指定4,而且4有报错提示# proxychains4 配置文件优先级为(读取到就不再找下一个)# (1) ./proxychains.conf# (2) $HOME/.proxychains/proxychains.conf# 2022-03-31 #system
zsh 配置 这是关于一些我日常当中使用的 zsh 配置的方式 zsh 配置zsh 配置12$ apt install zsh # for ubuntu$ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 参考链接 一般来说已经切换到默认zsh,但是如果使用vscode 默 2022-03-31 #system
python 修饰符 python 修饰符在 python 程序中经常看见 123@tf_fundef fun1: balabala 可以将修饰符看作是一种函数,这个函数的参数是 被修饰的函数 被修饰函数不带参数1234567891011121314151617def log(func): def wrapper(): print('log开始 ...') 2022-03-30 #python
Hello World Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick 2022-03-30