通过编译选项去除路径信息:
makefile可以增加以下编译选项:
1 | -U__FILE__ -D__FILE__='"$(notdir $<)"' -Wno-builtin-macro-redefined |
Chrome浏览器的默认缓存路径一般是:
C:\Users\用户名\AppData\Local\Google\Chrome\User Data\Default\Cache
1 | sudo apt install certbot |
1 | sudo certbot certonly --standalone -d example.com --agree-tos --email [email protected] |
生成公私钥:
1 | ssh-keygen -t rsa -C '[email protected]' -f ~/.ssh/github_id_rsa |