PEP 20 The Zen of Python Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than compli ...
分类:
编程语言 时间:
2020-01-05 12:06:24
阅读次数:
108
1、 “技术爆炸”是科幻小说《三体》中的用语,本意上主要指智慧生物所拥有的在很长时间内才能实现的科学技术在比原来短得多(有可能远远超出原来的几倍)的时间内以爆炸形式迅速发展的现象。 中文名:技术爆炸外文名:Technology explosion定 义:是科幻小说《三体》中的用语形 式:爆炸形式 文 ...
分类:
其他好文 时间:
2020-01-05 10:11:15
阅读次数:
112
原题链接在这里:https://leetcode.com/problems/guess-the-word/ 题目: This problem is an interactive problem new to the LeetCode platform. We are given a word lis ...
分类:
其他好文 时间:
2020-01-05 10:02:16
阅读次数:
77
主动漏洞利用 主动漏洞将利用特定的主机,运行直至完成,然后退出。 “Brute-force(暴力)”模块将在受害者打开外壳时退出。 如果遇到错误,模块执行将停止。 您可以通过将'-j'传递给exploit命令来强制活动模块进入后台: msf exploit(ms08_067_netapi) > ex ...
分类:
Web程序 时间:
2019-12-31 10:20:01
阅读次数:
133
索引可以提高查询效率,平时按照时间查询经常遇到,所以就会给时间添加索引,但是添加索引怎么用呢? 首先创建一张表test_table 然后给时间字段创建索引 导入大量数据,可以使用存储过程 查看一下表中数据条数 一共78W数据,我们用平常的sql查询2019-12-30号当天的数据 一共891条数据, ...
分类:
数据库 时间:
2019-12-30 19:13:43
阅读次数:
186
报错提示: Sat Oct 21 09:28:33 CST 2019 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5 ...
分类:
数据库 时间:
2019-12-29 14:45:21
阅读次数:
91
查看执行计划除了AUTOTRACE的方法外,还可以使用DBMS_XPLAN Package来查看 1.执行"explain Plan"语法:SQL> Explain plan forTry this command:SQL> explain plan for select * from mtl_sy ...
分类:
数据库 时间:
2019-12-27 10:07:34
阅读次数:
81
We spend a third of our adult lives working and another big chunk preparing for our careers. Historically, work was rarely seen as a source of meaning ...
分类:
其他好文 时间:
2019-12-26 09:23:39
阅读次数:
201
一、EXPLAIN 做MySQL优化,我们要善用 EXPLAIN 查看SQL执行计划。 下面来个简单的示例,标注(1,2,3,4,5)我们要重点关注的数据 type列,连接类型。一个好的sql语句至少要达到range级别。杜绝出现all级别 key列,使用到的索引名。如果没有选择索引,值是NULL。 ...
分类:
数据库 时间:
2019-12-25 17:52:02
阅读次数:
82
Description Description Given two strings S and T. Count the number of distinct subsequences of S which equals T. A subsequence of a string is a new s ...
分类:
其他好文 时间:
2019-12-21 22:46:20
阅读次数:
101