1、查看sql_mode 01 select @@global.sql_mode; 查询出来的值为: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_A ...
分类:
数据库 时间:
2018-11-27 11:17:20
阅读次数:
150
给出长度为N的数组,找出这个数组的最长递增子序列。(递增子序列是指,子序列的元素是递增的) 例如:5 1 6 8 2 4 5 10,最长递增子序列是1 2 4 5 10。 收起 给出长度为N的数组,找出这个数组的最长递增子序列。(递增子序列是指,子序列的元素是递增的) 例如:5 1 6 8 2 4 ...
分类:
其他好文 时间:
2018-11-25 14:41:13
阅读次数:
180
上网时经常会遇到某个网站无法访问或访问速度很慢,特别是国外的网站,可能会怀疑自己的电脑或网络,此时可用WinMTR来找出网络的异常。 WinMTR是老外开发的工具,集成了tracert与ping这两个命令的图形界面,使用winmtr可以直接的看到各个节点的响应时间及丢包率,适合windows下做路由 ...
https://github.com/MetaMask/zero-client MetaMask ZeroClient and backing iframe service architecture here is a comparison of the extension-based and if ...
分类:
Web程序 时间:
2018-11-22 18:13:03
阅读次数:
228
可以使用cdn 或者直接下载 设置好引用路径(百度云下载) html javascript 这里的ClipboardJS在实例化时, 如果报错:clipboard is not defined 解决办法就是如下: 原因就是 Clipboard.JS版本是2.0及以上版本 原文地址:https://b ...
分类:
Web程序 时间:
2018-11-20 01:22:14
阅读次数:
435
Annual Summery of Arthur Wang Content Zero.Introduction Annual Summery of 2015 Annual Summery of 2016 Annual Summery of 2017 Annual Summery of 2018 An ...
分类:
其他好文 时间:
2018-11-18 13:11:46
阅读次数:
138
Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements. Example: ...
分类:
其他好文 时间:
2018-11-16 17:38:06
阅读次数:
178
1 查询sql_mode SELECT @@sql_mode; 2 把查询的值复制黏贴,去掉ONLY_FULL_GROUP_BY,重新设置值 SET @@sql_mode='STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVI ...
分类:
数据库 时间:
2018-11-13 13:11:23
阅读次数:
184
报错内容如下: 1 2018-11-06T11:29:54.6035712Z ##[error]Dotnet command failed with non-zero exit code on the following projects : X:\agent\_work\34\s\src\**\* ...
分类:
Web程序 时间:
2018-11-13 02:50:49
阅读次数:
302
初步判断应该有两种情况:一种是block满了,另一种情况就是inode耗尽了。 首先df -i 查看一下是否耗尽inode/block数量。 虚拟一块磁盘并格式化: dd if=/dev/zero of=/opt/sdb1 bs=4096 count=100 mkfs -t ext4 /opt/sd ...
分类:
其他好文 时间:
2018-11-13 02:37:38
阅读次数:
263