? Microsoft .NET documentation: https://docs.microsoft.com/dotnet ? The .NET API documentation: https://docs.microsoft.com/dotnet/api ? The C# languag ...
分类:
其他好文 时间:
2020-06-16 14:41:42
阅读次数:
63
Delphi XE10 IdFtp 错误:No FTP list parsers have been registered 错误来源:idftp.DirectoryListing 属性 解决方式: uses IdAllFTPListParsers //FTP列表解析器 单元内容: uses IdFT ...
linux中几种安装软件 方法 http://blog.csdn.net/u010509774/article/details/50593231 一、rpm包安装方式步骤:1、找到相应的软件包,比如soft.version.rpm,下载到本机某个目录; 2、打开一个终端,su -成root用户; 3 ...
分类:
系统相关 时间:
2020-06-16 10:22:37
阅读次数:
65
Hbase系统架构图 1、数据热点问题 产生数据热点问题的原因: (1)Hbase的数据是按照字典排序的,当大量连续的rowkey集中写到个别的region,各个region之间实际分布不均衡; (2)创建表时没有提前预分区,创建的表默认只有一个region,大量的数据写入当前region; (3) ...
分类:
其他好文 时间:
2020-06-14 18:51:08
阅读次数:
112
编译安装: 下载:http://nginx.org/download/nginx-1.18.0.tar.gz 解压:tar -zxvf nginx-1.18.0.tar.gz configure: ./configure --prefix=/usr/local/soft/nginx-1.18.0 - ...
分类:
其他好文 时间:
2020-06-14 13:14:28
阅读次数:
63
string = input().split() dic = {} for i in string: dic[i] = dic.get(i,0) + 1 dic = sorted(dic.items(), key=lambda x: x[1],reverse=True) for key,value ...
分类:
其他好文 时间:
2020-06-13 19:26:20
阅读次数:
89
一、基于SNPs和INDELs估计遗传距离 Plink --file --distance-matrix --recode --out Distance.out 生成两个文件: 1. Distance.out.mdist 2. Distance.out.mdist.id 二、接下来基于遗传距离矩阵构 ...
分类:
其他好文 时间:
2020-06-13 13:25:53
阅读次数:
315
42.统计APP应用的DB连接及IP情况 select b.hostname ,a.client_net_address, b.program_name ,count(1) as Qtyfrom sys.dm_exec_connections a(nolock) inner join sys.sys ...
分类:
数据库 时间:
2020-06-13 10:55:12
阅读次数:
75
LeetCode 91 动态规划 Decode Ways 解码方法LeetCodeA message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> ... ...
分类:
其他好文 时间:
2020-06-13 00:18:17
阅读次数:
56