-- 建表 DROP TABLE IF EXISTS `table1`;CREATE TABLE `table1` ( `id` int(11) NULL DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_ ...
分类:
其他好文 时间:
2020-03-29 19:52:37
阅读次数:
99
InnoDB Notes Incompatible Change: The InnoDB storage engine can no longer be disabled. The --skip-innodb option is deprecated and has no effect, and i ...
分类:
数据库 时间:
2020-03-27 21:26:41
阅读次数:
97
UPDATE EmailServerProfile SET IncomingPassword=null UPDATE EmailServerProfile SET OutgoingPassword=null UPDATE Mailbox SET Password=null UPDATE Queue ...
分类:
其他好文 时间:
2020-03-27 17:14:48
阅读次数:
127
旧式的类型转换中有俩种(Effect C++) //C风格 (T)expression(int)a//比如这样子 //函数风格 T(expression)doSomeWork(Widget(15)) 这里15作为一个参数给类Widget,会以转型动作创建一个Widget 而C++提供了四种新式转换。 ...
分类:
编程语言 时间:
2020-03-25 14:56:27
阅读次数:
82
本文参考原文 http://bjbsair.com/2020 03 22/tech info/2813/ njmon ========= njmon = nmon + JSON format + real time push to a stats database + instant graphin ...
分类:
其他好文 时间:
2020-03-24 23:00:37
阅读次数:
123
java.lang.ClassNotFoundException: org.apache.http.util.Args
httpclient版本冲突,maven工程中传递依赖导致的版本冲突
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.13</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.12</version>
</dependency>
分类:
Web程序 时间:
2020-03-23 16:56:17
阅读次数:
102
1. Two-dimensional Wiener Process dS1 = r·S1·dt + σ1·S1·dW1 ; and dS2 = r·S2·dt + σ2·S2·dW2 Solutions: St = S0·exp[(r - σ2 /2 )·t + σ·Wt] 1.1 No Corre ...
分类:
其他好文 时间:
2020-03-20 09:12:58
阅读次数:
55
状压dp,先记录偶数状态,然后直接暴力转移即可。 ...
分类:
其他好文 时间:
2020-03-18 21:55:01
阅读次数:
62
1.DevOps的概念 DevOps(Development和Operations的组合词)是一组过程、方法与系统的统称,用于促进开发(应用程序/软件工程)、技术运营和质量保障(QA)部门之间的沟通、协作与整合。 它是一种重视“软件开发人员(Dev)”和“IT运维技术人员(Ops)”之间沟通合作的文 ...
分类:
其他好文 时间:
2020-03-15 22:15:48
阅读次数:
99
android init.rc中service console option的含义、作用 void service_start(struct service *svc, const char *dynamic_args) needs_console = (svc->flags & SVC_CONSO ...
分类:
移动开发 时间:
2020-03-14 14:46:03
阅读次数:
81