2023年12月14日
摘要: 1、配置用户名、密码 查看配置 $ git config --global -l filter.lfs.clean=git-lfs clean -- %f filter.lfs.smudge=git-lfs smudge -- %f filter.lfs.process=git-lfs filter 阅读全文
posted @ 2023-12-14 09:38 陈-chen 阅读(107) 评论(0) 推荐(0) 编辑
  2022年8月12日
摘要: 参考官方地址 Patch for Chrome login issue (IdentityServer4 + SameSite cookie problem) | ABP 社区 还有vue的项目必须在nginx下跑,我跑在本地,直接有本地的地址打死也不行,用localhost没有问题,后来想到应该是 阅读全文
posted @ 2022-08-12 08:56 陈-chen 阅读(25) 评论(0) 推荐(0) 编辑
  2022年8月5日
摘要: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Security; using System.Security 阅读全文
posted @ 2022-08-05 10:28 陈-chen 阅读(62) 评论(0) 推荐(0) 编辑
  2020年3月5日
摘要: ////////////////////////////////////////////////////////////////////////// var url = "XXX"; var cellphone = "xxx"; var msg = "{\"identys\":[\"" + cell 阅读全文
posted @ 2020-03-05 09:44 陈-chen 阅读(1340) 评论(0) 推荐(0) 编辑
  2018年7月27日
摘要: 找到LicenseType的引用,修改引用的方法直接 如switch(X) x=数字,数字为return的标签,再修改LicenseType的枚举为Runtime。 阅读全文
posted @ 2018-07-27 23:42 陈-chen 阅读(5237) 评论(0) 推荐(0) 编辑
  2018年6月2日
摘要: C:\Users\Chenl>tasklist|findstr "5908"360se.exe 5908 Console 1 150,536 K C:\Users\Chenl>tasklist|findstr "2064"KMService.exe 2064 Services 0 4,052 K C 阅读全文
posted @ 2018-06-02 13:49 陈-chen 阅读(178) 评论(0) 推荐(0) 编辑
  2018年5月6日
摘要: https://blog.csdn.net/zenson_g/article/details/49148407 两天,不知道为什么,用Git提交代码到服务器时,总出现SSL certificate problem: unable to get local issuer certificate whi 阅读全文
posted @ 2018-05-06 17:09 陈-chen 阅读(620) 评论(0) 推荐(0) 编辑
摘要: 最近在做winform的按钮权限,要做的怎么和BS中的一样调用前拦截,参考了网上资料,目前最流行的AOP有3个。 POSTSHARP, 这个用不起要收费,还有一个Mono.ceils,这个不能做调试,而且还要对IL 要熟练,最后一个是大名鼎鼎的Castle, 其中Castle 好像AOP都要使用接口 阅读全文
posted @ 2018-05-06 15:21 陈-chen 阅读(662) 评论(0) 推荐(0) 编辑
  2018年4月4日
摘要: https://blog.csdn.net/chengmodelong/article/details/42870485 /// /// /// 字符串转Unicode /// /// 源字符串 /// Unicode编码后的字符串 public static string String2Unicode(string source) { byte[] bytes = Encodin... 阅读全文
posted @ 2018-04-04 08:33 陈-chen 阅读(11790) 评论(0) 推荐(1) 编辑
  2018年4月3日
摘要: 最近在搞单点登录的设计,在设计中需要一个Token令牌的加密传输,这个令牌在整个连接单点的各个站中起着连接认证作用,如果被仿造将会有不可预计的损失,但是这个Token是要可逆的。所以像那种md5,sha之类的不可逆加密就没法用了,然后可逆的加密主要是分为对称加密和非对称加密。 对称加密:用加密的钥匙 阅读全文
posted @ 2018-04-03 15:17 陈-chen 阅读(256) 评论(0) 推荐(0) 编辑