Power Shell设置代理
# 查看代理 netsh winhttp show proxy # 设置代理 # 需要管理员权限 # 否则 Error writing proxy settings. (5) Access is denied. netsh winhttp set proxy 127.0.0.1:41091 # or netsh winhttp import proxy source=ie $env:HTTP_PROXY="http://127.0.0.1:41091" $env:HTTPS_PROXY="https://127.0.0.1:41091" # 取消代理 netsh winhttp reset proxy
Git设置代理
git config --global http.proxy http://127.0.0.1:1080 git config --global https.proxy http://127.0.0.1:1080 git config --global --unset http.proxy git config --global --unset https.proxy
在Excel中将毫秒级时间戳转换成日期格式。
=TEXT((A2/1000+8*3600)/86400+70*365+19,"yyyy-mm-dd hh:mm:ss")