mycat执行如下脚本报错 :1064 - syntax error, error in :'Id`) USING BTREE DROP TABLE IF EXISTS `score`;CREATE TABLE `score` ( `Id` int(11) NOT NULL AUTO_INCREME ...
分类:
其他好文 时间:
2019-12-31 00:43:17
阅读次数:
127
Objects. A PDF document is a data structure composed from a small set of basic types of data objects. Sub-clause 7.2, "Lexical Conventions," describes ...
分类:
其他好文 时间:
2019-12-30 23:17:46
阅读次数:
87
Generators allow you to use the yield * syntax to yield each iteration of nested iterable as part of the main iterations. This enables you to combine ...
分类:
编程语言 时间:
2019-12-29 15:17:46
阅读次数:
87
编写Models.proto syntax = "proto3"; package Services; message ProdModel { // @inject_tag: json:"pid" int32 ProdID = 1; // @inject_tag: json:"pname" stri... ...
分类:
其他好文 时间:
2019-12-26 21:05:16
阅读次数:
90
本地搭了虚拟机centos 7,想做主机和虚拟机的文件共享,需要安装增强功能,但安装时报下图错误: 度娘上也找了很多文章,基本上讲的都是ubuntu,不适合我的centos 7,没办法,只能只用google去查找解决方法,果然刚找就给我找到了完美的解决方案,具体如下: 1.在本地主机上找到VBoxG ...
分类:
其他好文 时间:
2019-12-25 23:55:20
阅读次数:
142
最近在看算法相关的文档 在时间复杂度环节 遇到一个实例: 导入timeit模块后,通过Timer定时器计算两种不同处理方法的时间复杂度 代码及报错如下图所示: 仔细查阅 发现from__main__import 不是一个连续的变量 而是由 from+__main__+import 三部分组合而成 将 ...
分类:
编程语言 时间:
2019-12-23 17:05:51
阅读次数:
173
详见: https://blog.csdn.net/qq_24880013/article/details/90731617 必须修改的两个yum配置文件: 因为yum使用python2,因此替换为python3后可能无法正常工作,继续使用这个python2.7.5,因此需要修改yum相关配置文件。 ...
分类:
其他好文 时间:
2019-12-23 13:04:41
阅读次数:
108
一.ITerm2简介 1.安装 iTerm2 是一款完全免费的,专为 Mac OS 用户打造的命令行应用。直接在官网上http://iterm2.com/ 下载并安装即可。 2.配置 设置ITerm为默认终端 二.安装 oh-my-zsh 1.查看系统有几个shell cat /etc/shells ...
分类:
系统相关 时间:
2019-12-23 00:09:35
阅读次数:
157
一、前言 Linux下输入命令man ps查看: 加横线是 standard syntax -- 比如ps -elf 不加横线是 BSD syntax -- 比如ps aux To see every process on the system using standard syntax: ps - ...
分类:
系统相关 时间:
2019-12-22 14:46:58
阅读次数:
179
话不多说上代码: 1 2 3 4 5 6 7 8 9 1.判断是不是微信 function is_weixn(){ var ua = navigator.userAgent.toLowerCase(); if(ua.match(/MicroMessenger/i)=="micromessenger" ...
分类:
微信 时间:
2019-12-22 14:15:12
阅读次数:
143