上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页
摘要: 1 先读后写(python3) #!/usr/bin/python import json with open("replayScript.json", "r",encoding='utf-8') as jsonFile: data = json.load(jsonFile) tmp = data[ 阅读全文
posted @ 2020-04-15 09:49 wolbo 阅读(8553) 评论(0) 推荐(0)
摘要: var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutationRecord) { console.log(mutationRecord); }); }); var target 阅读全文
posted @ 2020-04-03 17:27 wolbo 阅读(534) 评论(0) 推荐(0)
摘要: 1 国内镜像配置 https://yq.aliyun.com/articles/29941/ centos需要修改systemd service文件 启动docker-daemon的时候指定registry 2 可以选择最小的镜像 alpine作为基础镜像 阅读全文
posted @ 2020-04-03 10:14 wolbo 阅读(135) 评论(0) 推荐(0)
摘要: 导出: expdp b2-8/xxxxxx@ora12cr2 schemas=b2-8 DIRECTORY=dmp_dir DUMPFILE=b2-8.dmp logfile=temp.log tables="table1,table2" query="where condition" impdp 阅读全文
posted @ 2020-03-23 17:34 wolbo 阅读(138) 评论(0) 推荐(0)
摘要: 设置 Enable annotation processing 阅读全文
posted @ 2020-03-21 20:12 wolbo 阅读(887) 评论(0) 推荐(0)
摘要: #!/bin/bash cd ./tools/patchinstall function handle_int() { kill $BCPID exit } trap handle_int INT ./startpatch-linux.sh & BCPID=$! cd /FIShare/gsclou 阅读全文
posted @ 2020-03-11 18:30 wolbo 阅读(100) 评论(0) 推荐(0)
摘要: 使用find 排除 找到./tools/dbsetup/startlibs/config/suconfig/ 下除了以下文件名的文件 find ./tools/dbsetup/startlibs/config/suconfig/ ! -name 'su_aa.json' \ ! -name 'su_ 阅读全文
posted @ 2020-03-09 12:21 wolbo 阅读(1064) 评论(0) 推荐(0)
摘要: 背景: 有些词汇需要翻译 翻译严谨性不高 一个一个的翻译太累 脚本: var btn=$('#translate-button'); var src=['资产编号', '资产名称', '资产类别', '折旧方法', '资产状态', '资产来源', '资产用途', '入账日期', '所属部门', '资 阅读全文
posted @ 2020-03-02 17:48 wolbo 阅读(687) 评论(0) 推荐(0)
摘要: 1 pad String.prototype.PadLeft = function(totalWidth, paddingChar) { if ( paddingChar != null ) { return this.PadHelper(totalWidth, paddingChar, false 阅读全文
posted @ 2020-02-23 17:26 wolbo 阅读(221) 评论(0) 推荐(0)
摘要: 下载源码分析 是launch4j-maven-plugin 搜索路径的问题 即使安装了jre 配置了环境变量 launch4j只去搜指定位置的注册表 如果只想本地编译使用 将jre 指定为java_home即可 如果想任何电脑都能打开 就打成jar包 用launch4j 打一个jre到exe里 阅读全文
posted @ 2020-02-18 10:01 wolbo 阅读(3086) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页