zwei1121

博客园 首页 新随笔 联系 订阅 管理

2021年2月23日 #

摘要: CefSharp 阅读全文
posted @ 2021-02-23 10:12 zwei 阅读(84) 评论(0) 推荐(0) 编辑

2020年11月13日 #

摘要: https://www.jianshu.com/p/9c74ff7da451 阅读全文
posted @ 2020-11-13 11:33 zwei 阅读(93) 评论(0) 推荐(0) 编辑

2020年11月2日 #

摘要: <style type="text/css"> .layui-laydate-content > .layui-laydate-list { padding-bottom: 0px; overflow: hidden; } .layui-laydate-content > .layui-laydat 阅读全文
posted @ 2020-11-02 15:04 zwei 阅读(75) 评论(0) 推荐(0) 编辑

2020年10月16日 #

摘要: var t = new Timer(TimerCallback); // Figure how much time until 4:00 DateTime now = DateTime.Now; DateTime fourOClock = DateTime.Today.AddHours(16.0); 阅读全文
posted @ 2020-10-16 09:28 zwei 阅读(250) 评论(0) 推荐(0) 编辑

2020年9月1日 #

摘要: <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script> <script type="text/javascript"> var ua = navigator.userA 阅读全文
posted @ 2020-09-01 16:12 zwei 阅读(162) 评论(0) 推荐(0) 编辑

2020年5月9日 #

摘要: https://letsencrypt.osfipin.com/ https://www.myssl.cn/tools/merge-pfx-cert.html 阅读全文
posted @ 2020-05-09 11:04 zwei 阅读(156) 评论(0) 推荐(0) 编辑

2020年4月16日 #

摘要: Install-Package AutoMapper -Version 9.0.0 Install-Package CSRedisCore Install-Package Microsoft.Extensions.Configuration.Binder Install-Package Micros 阅读全文
posted @ 2020-04-16 15:28 zwei 阅读(172) 评论(0) 推荐(0) 编辑

摘要: 这种用处很大,比如权限、执行状态等,都可以用一个int型保存到数据库中,C#中使用枚举可以处理这个问题。 [Flags] public enum Permission { create = 1, read = 2, update = 4, delete = 8, } C#对该类型的操作如下: Per 阅读全文
posted @ 2020-04-16 13:15 zwei 阅读(423) 评论(0) 推荐(0) 编辑

2020年4月9日 #

摘要: https://marketplace.visualstudio.com/items?itemName=MLNET.07 https://gitee.com/linyee/MLBot https://www.c-sharpcorner.com/article/getting-started-with 阅读全文
posted @ 2020-04-09 17:46 zwei 阅读(164) 评论(0) 推荐(0) 编辑

2020年4月7日 #

摘要: 1.mysql mysql:ufw statusdocker exec -it mysql /bin/bashmysql -u root -p123456 CREATE USER 'root'@'%' IDENTIFIED BY '123456';alter user 'root'@'%' iden 阅读全文
posted @ 2020-04-07 11:51 zwei 阅读(125) 评论(0) 推荐(0) 编辑