william

Keep Calm and Markdown.

ubuntu ctp 中文问题

1 2 terminate called after throwing an instance of 'std::runtime_error' what(): locale::facet::_S_create_c_locale name not valid 需要安装中文包支持,因为 CTP 采用了中文接口 1 2 3 4 5 # Set the locale RUN apt-get clean && \ apt-get update && \ apt-get install -y locales locales-all && \ locale-gen zh_CN.GB18030

nginx 部署小记

1 2 3 4 5 6 yum remove nginx-mod* yum install nginx-mod* yum install nginx systemctl enable nginx systemctl start nginx

fzf 配置指南

配置 快捷键 ctr-n 向下移动 ctr-p 向上移动 tmux zsh ctr-t ctr-r alt-c vim vim ** <tab>: 进入模糊匹配 ;ff 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 "fzf " This is the
0%