123npm config set https-proxy socks5://127.0.0.1:7890yarn config set proxy socks5://127.0.0.1:1080 https-proxy、proxy可...
[问题处理]python便携版关联py文件相关问题,同样适用于其他程序
查看了这里解决的 https://www.jianshu.com/p/63a826b63635 其实这是一个命令行参数的问题,默认添加的关联是不带其他参数的,如果熟悉bat等,就不会有相应的疑问。 修改为(首先关联,产生一个错误的注册...
x265 HDR 参数计算方法
HDR 压制参数为 --master-display "G(13250,34500)B(7500,3000)R(34000,16000)WP(15635,16450)L(10000000,1)" --max-cll...
[Javascript]浏览器嗅探
document.writeln("Useragent="+window.navigator.userAgent+""); document.writeln("浏览器原型="+window.navigator.appName+"")...
[Javascript]处理火狐getSelection无法读取文本框及输入框里内容的问题
attention:不仅仅是文本框内的选择会被脚本记录,在本页面内所有的选取都会被记录 function GetSelectedText (){ var userSelection, ta; if (window.getSe...
[Terminal] PowerShell版本更新
Win7 只有升级 PowerShell 之后才能使用[Chocolatey](/Software/Software Update) WinRM(PowerShell Remoute)的参数不兼容 总之就是我看...
[Git]设置和取消代理
1git config --global http.proxy socks5://127.0.0.1:7890 1git config --global --unset http.proxy 吐槽下git的升级连续用了3个裸IPhtt...
[Git]处理 GitHub - Failed to sync this branch 的问题
其实估计跟前段时间乱玩rebase有关,用 git push正常,但是sync就会提示”GitHub - Failed to sync this branch” 打开git shell输入git status 它会提示你原因我这里提示...
在 Linux 下如何强制取消挂载(umount) NFS 目录
这种情况下可以考虑lazy umount即 umount -lf 路径lazy umount是针对busy而提出的,即可以卸载“busy”的文件系统。请注意,该方法并不是完全安全的 另外可以参考下https://blog.minias...