打开菜单Tools>Execute Commands>Edit/Run Script. 并执行下面语句 Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim blankStr blankStr = Space(1) ...
分类:
其他好文 时间:
2020-06-28 20:39:16
阅读次数:
68
https://math.stackexchange.com/questions/326197/the-equivalence-between-cauchy-integral-and-riemann-integral-for-bounded-functio https://zhuanlan.zhih ...
分类:
其他好文 时间:
2020-06-28 00:22:26
阅读次数:
63
是Statement的子接口,可以传入带占位符的sql语句,并且提供了补充占位符变量的方法。 使用Statement需要进行拼写SQL语句,很辛苦,很容易出错。 引号的问题处理很复杂,不利于维护。 可以有效的禁止sql注入。(通过用户输入非法的sql命令) 代码的可读性和可维护性,最大可能的提高性能 ...
分类:
数据库 时间:
2020-06-27 20:21:37
阅读次数:
87
Centos系统请使用以下命令:yum install wget -y && wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && bash auto_disk.sh Ubuntu系统请使用以下命令:wget -O auto ...
分类:
系统相关 时间:
2020-06-27 11:17:00
阅读次数:
207
如何安装scrapy, 以及在安装过程中可能遇到的各种问题的处理方法 ...
分类:
编程语言 时间:
2020-06-27 10:00:47
阅读次数:
96
今天安装docker registry, 并且加上tls证书和用户名密码登录 0. 准备两个vm: node1, node2 两个vm的 /etc/hosts加上 192.168.x.x node1.org node1.org就是registry用的域名。 2020.6.27 node1上操作: 1 ...
分类:
其他好文 时间:
2020-06-27 09:58:18
阅读次数:
83
// 数组倒排 let numArray = [3, 6, 2, 4, 1, 5]; function reverse(array) { let result= []; for(var i = array.length-1; i>= 0; i--) { result.push(array[i]); ...
分类:
编程语言 时间:
2020-06-26 14:29:03
阅读次数:
62
2173569 - Error when opening an RFC connection 问题: Environment SAP Release Independent. Reproducing the Issue Execute a transport tools check; Refresh ...
分类:
其他好文 时间:
2020-06-26 01:35:03
阅读次数:
132
1、可能大家在安装双系统的时候会遇到这样的问题:在安装Win10的情况下,安装CentOS7,然后重启之后,无法进入到win10,直接进入到Linux系统,你说气不气!不要生气,下面就跟随着小编来看看具体的解决方法。 解决方法: 进入到Linux系统,安装epel-release源,yum inst ...
sublime插件 a.安装Package control 1. 直接用自带的选项功能来安装 tools--install packgage control 2. 爬虫脚本安装 import urllib.request,os,hashlib; h = '6f4c264a24d933ce70df5d ...
分类:
其他好文 时间:
2020-06-25 19:54:53
阅读次数:
94