上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: =IF(COUNTIF(A:A,B1)=0,"不重复","重复") 阅读全文
posted @ 2020-06-02 13:38 TTonlyV5 阅读(3894) 评论(0) 推荐(0) 编辑
摘要: 1.CentOS7.3 服务端 防火墙端口 服务端配置 2.客户端配置 https://github.com/fatedier/frp https://blog.csdn.net/qq920581171/article/details/100673337 https://www.jianshu.co 阅读全文
posted @ 2020-05-21 22:00 TTonlyV5 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: 1 安装HomeBrew 2 安装docker 可以dmg 、exe或者curl等其他方式 如果运行一个机器运行多个要安装virtualbox https://download.virtualbox.org/virtualbox/6.0.10/VirtualBox 6.0.10 132072 OSX 阅读全文
posted @ 2020-04-22 10:40 TTonlyV5 阅读(153) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zshtiger2414/article/details/77975958 https://dev.mysql.com/doc/refman/5.6/en/spatial relation functions object shapes.html func 阅读全文
posted @ 2020-04-20 14:54 TTonlyV5 阅读(3752) 评论(0) 推荐(0) 编辑
摘要: SQL SERVER 查看所有表名: 查询表的所有字段名: 查询某个表的列名称、说明、备注、类型等 MySql 查询表的所有字段名: ACCESS 查看所有表名: MSysObjects是系统对象,默认情况是隐藏的。通过工具、选项、视图、显示、系统对象可以使之显示出来。 Oracle 查询表字段数 阅读全文
posted @ 2020-01-02 14:06 TTonlyV5 阅读(38950) 评论(0) 推荐(0) 编辑
摘要: ```csharp /// /// 清除文本中Html的标签 /// /// /// protected string ClearHtml(string Content) { Content = ReplaceHtml("&#[^>]*;", "", Content); Content = ReplaceHtml("]*>", "", Content); Content = ReplaceHtml 阅读全文
posted @ 2019-12-23 11:43 TTonlyV5 阅读(280) 评论(0) 推荐(0) 编辑
摘要: ```csharppublic partial class SystemScheduler{ private SystemScheduler() { } public static SystemScheduler CreateInstance() { return new SystemScheduler(); } private ISched... 阅读全文
posted @ 2019-12-10 10:34 TTonlyV5 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 去除 阅读全文
posted @ 2019-11-20 16:06 TTonlyV5 阅读(613) 评论(0) 推荐(0) 编辑
摘要: ``` //分组 8个为一组 List> ArrayList = sArray.Select((x, i) => new { Index = i, Value = x }) .GroupBy(x => x.Index / 8) .Select(x => x.Select(v => v.Value).ToList()) .ToList(); ``` 阅读全文
posted @ 2019-11-14 22:30 TTonlyV5 阅读(4173) 评论(0) 推荐(0) 编辑
摘要: 1. SP1 补丁 2. WIN7安装VS2019需要更新两个补丁才能顺利安装,否则会闪退。 KB4474419 KB4490628 https://zhidao.baidu.com/question/1802676271613411587.html?fr=iks&word=win7+%B0%B2% 阅读全文
posted @ 2019-11-12 16:02 TTonlyV5 阅读(4945) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页