摘要:
server { listen 443; #https默认端口不是80,而是443 server_name www.test.com; ssl on; ssl_certificate cert/2142977640231.pem; ssl_certificate_key cert/2142977640231.ke... 阅读全文
摘要:
引用nuget包: 注意:Geckofx45 nuget包必须是最后引用,否则初始化会出错 简单示例: 阅读全文
摘要:
首先,管理分辨率RDM的软件这里下载: http://pan.baidu.com/s/1bpjL07P 在终端输入: curl -o ~/enable-HiDPI.sh https://raw.githubusercontent.com/syscl/Enable-HiDPI-OSX/master/e 阅读全文
摘要:
if (!window.atob) { var tableStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; var table = tableStr.split(""); window.atob = function (bas... 阅读全文
摘要:
添加映射: netsh interface portproxy add v4tov4 listenport=9888 connectaddress=192.168.20.5 connectport=9888 删除映射: netsh interface portproxy delete v4tov4 阅读全文
摘要:
i5 6500内置HD 530显卡,装好Sierra显卡驱动不太正常。 先下载Clover configurator 用Clover configurator加载 EFI (Mount EFI)分区 然后用Clover configurator打开EFI/CLOVER/config.plist 设置 阅读全文
摘要:
安装nginx: curl -o nginx.rpm http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm rpm -ivh nginx.rpm yum install n 阅读全文
摘要:
cd /etc/profile.d/ 创建一个sh文件 vi dotnetpath.sh 内容如下: export PATH=$PATH:/opt/dotnet 保存,重启,这就有了一个永久的环境变量 阅读全文
摘要:
.net core的bitmap使用的是以下类库,但无法在linux运行 https://github.com/CoreCompat/CoreCompat 在linux运行需要安装runtime.linux-x64.CoreCompat.System.Drawing https://www.nuge 阅读全文
摘要:
有些centos 没有 lsof命令,需要安装 yum install lsof -y 使用: lsof -i:端口号 阅读全文