Power Strings Description Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcde ...
分类:
其他好文 时间:
2021-01-26 11:47:12
阅读次数:
0
删除数据库时提示:message:Database DBname is not empty. One or more tables exist. ##解决方案1: 先删除数据库中的所有表,再删除数据库 ##解决方案2: 强制删除 drop database db_hive cascade; ...
分类:
数据库 时间:
2021-01-26 11:44:00
阅读次数:
0
下载zsh sudo apt-get install zsh sudo apt-get install git 下载oh-my-zsh 因为zsh配置起来太麻烦了,直接安装oh-my-zsh即可,前往oh-my-zsh官网: https://ohmyz.sh 使用命令: $ sh -c "$(cur ...
分类:
系统相关 时间:
2021-01-26 11:42:41
阅读次数:
0
Promise应用 执行流程(宏任务/微任务) 每一个任务(函数)的执行过程都有可能产生宏任务和微任务; 每一个任务执行的最后,需要先执行完所有的微任务,再执行宏任务 Promise.all()失败问题 如果数组中任意一个任务失败,就会导致整个任务失败 对数组中的每一个promise对象都去处理一下 ...
分类:
其他好文 时间:
2021-01-25 11:27:47
阅读次数:
0
CSS Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS. <link href="https://cdn.jsdelivr.net/npm/bootstrap ...
分类:
其他好文 时间:
2021-01-25 11:24:06
阅读次数:
0
EdgeInsets我们看看EdgeInsets提供的便捷方法: fromLTRB(double left, double top, double right, doublebottom):分别指定四个方向的填充。 all(double value) : 所有方向均使用相同数值的填充。 only({ ...
分类:
其他好文 时间:
2021-01-25 11:23:12
阅读次数:
0
Two strings are considered close if you can attain one from the other using the following operations: Operation 1: Swap any two existing characters. F ...
分类:
其他好文 时间:
2021-01-25 11:07:52
阅读次数:
0
1.在被监控主机安装好MySQL 相关步骤省略。 2.创建监控所需要的MySQL账户(MySQL服务器端) 1 2 MariaDB [(none)]>grant usage on *.* to zabbix@192.168.10.100 identified by '123456'; MariaDB ...
分类:
数据库 时间:
2021-01-25 10:58:33
阅读次数:
0
一、长按识别选择 问题:经常会出现英文和数字不能同时复制 方法:(1)ios:在要复制的文本前后再加个空格 (2)安卓:要复制的文本对应的标签增加样式:user-select:all; 二、点击问题 问题:触发不了点击事件,会出现这种情况,一般你使用的机子大概已经很旧很旧了~~ 方法:需要做点击的标 ...
分类:
移动开发 时间:
2021-01-25 10:48:42
阅读次数:
0
通过aws-data-replication-hub实现S3中国区域和全球区域复制 参考链接:https://github.com/awslabs/aws-data-replication-hub AWS Data Replication Hub是一个开源的AWS跨区域跨账号数据复制工具,支持一键部 ...
分类:
其他好文 时间:
2021-01-22 12:28:04
阅读次数:
0