vs2019 product key

摘要: Visual Studio 2019 Enterprise BF8Y8-GN2QH-T84XB-QVY3B-RC4DF Visual Studio 2019 Professional NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y 亲测可用 阅读全文
posted @ 2019-05-01 17:01 willhuo 阅读(3652) 评论(0) 推荐(0) 编辑

dotnet core瘦身发布

摘要: 需要安装nuget包Microsoft.Packaging.Tools.Trimming然后利用如下命令发布dotnet publish -r win10-x64 -c release --self-contained true /p:TrimUnusedDependencies=true发布完成之 阅读全文
posted @ 2019-03-23 23:03 willhuo 阅读(489) 评论(0) 推荐(0) 编辑

Android studio项目预览的时候提示错误ActionBarOverlayLayout

摘要: android studio打开项目(别人的demo),提示页面没法预览。截图如下 根据查询,是主题没法正常显示,需要修改样式。样式文件的路径为res\values\styles.xml,截图如下。 发现这里有好几个styles.xml,打开文件 在Theme前边加上Base. 这三个文件全部都依次 阅读全文
posted @ 2018-03-22 14:58 willhuo 阅读(255) 评论(0) 推荐(0) 编辑

流媒体服务器搭建

摘要: 环境:树莓派做流媒体服务器,摄像头是RTSP协议的,ffmpeg做推流工具nginx-rtmp-module官方github地址:https://github.com/arut/nginx-rtmp-module可以直接下载zip包,下载地址:https://codeload.github.com/ 阅读全文
posted @ 2018-03-20 09:36 willhuo 阅读(3952) 评论(0) 推荐(0) 编辑

netcore问题总结

摘要: 1. webclient在在netcore异步文件下载的时候,下载进度为空,只有最后下载完了,进度才会是100%,但是在netframework中就没有这个问题,异步文件下载进度会正常提醒。 2. netcore在使用IO.Compression.zipfile解压缩的时候,相同的编码设置。netc 阅读全文
posted @ 2018-03-20 09:31 willhuo 阅读(202) 评论(0) 推荐(0) 编辑

Linux(Debian)网卡设置

摘要: debian IP地址配置 vim /etc/network/interface 配置网卡eth0的IP地址 auto eth0 表示网卡随系统自动请 iface eth0 inet static 表示网卡为静态ip地址 address 192.168.2.147 表示设置ip地址 netmask 阅读全文
posted @ 2018-03-19 13:22 willhuo 阅读(15590) 评论(0) 推荐(0) 编辑

windows服务器让WEB通过防火墙的问题

摘要: 服务器环境:windows server 2012 X64WEB服务器:IIS开放8080,PHPSduty开放80如果关闭防火墙的情况下,不论是IIS还是安装的其他的WEB服务器,都可以正常访问。但是如果一旦开始了防火墙,不管是IIS还是其他Web服务器都不能正常访问。然后看防火墙规则,添加了ph 阅读全文
posted @ 2018-03-18 22:20 willhuo 阅读(457) 评论(0) 推荐(0) 编辑