#!/bin/bash bash_path=$(cd "$(dirname "$0")";pwd) source $bash_path/base.config echo "该脚本将会把" $serverA "机器上的" $document "目录同步到" $serverB "机器上"; read - ...
分类:
其他好文 时间:
2020-04-27 13:33:48
阅读次数:
69
软解析(soft prase)和硬解析(hard prase)以及 Soft Soft Parse 每个sql会产生两个share cursor 父游标(parent cursor)和子游标(child cursor) ,缓存在库缓存区的对象都是以一种叫库缓存对象句柄(library cache o ...
分类:
数据库 时间:
2020-04-26 17:15:09
阅读次数:
80
//循环修改tree Key 值 mapTree(org) { const haveChildren = Array.isArray(org.childCategories) && org.childCategories.length > 0; return { //分别将我们查询出来的值做出改变他 ...
分类:
其他好文 时间:
2020-04-26 15:30:07
阅读次数:
129
样式重置 html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, sam ...
分类:
移动开发 时间:
2020-04-26 13:53:42
阅读次数:
533
技术选型 采用react框架开发移动端的话,一般的架构是Preact + antd-mobile + react-hammerjs + iscroll。 Preact Preact是React的3kb轻量化方案,拥有同样的ES6 API,其拥有以下优点: 1. 体积小,React V16.0有34. ...
分类:
移动开发 时间:
2020-04-25 18:46:22
阅读次数:
97
常量使用关键词const修饰,一经定义,不能改变 常量的使用规则 定义后,应该马上赋初始值 不能用public、private、protected修饰 在本类,可用self::name 类名::name访问;在子类中,可用parent::name self::name 类名::name访问 clas ...
分类:
Web程序 时间:
2020-04-25 12:57:13
阅读次数:
334
# -*- coding: utf-8 -*- """ Created on Sun Jun 11 09:56:39 2017 @author: Raghav Bali """ """ This script visualizes data using matplotlib ``Execute`` ...
分类:
其他好文 时间:
2020-04-25 12:34:36
阅读次数:
51
并查集模版(Java) 初始化,找集合老大,合并集合 public class UnionFind { public int[] parent; public int n,m,sum; //开始时每个集合只有自己,所以集合老大也是自己 public void Init() { for(int i = ...
分类:
编程语言 时间:
2020-04-25 01:15:27
阅读次数:
81
下拉框 根据官网提示:要使用需要导入popper.js,popper.js包含在了 bootstrap.bundle.js中,我导入了bootstrap.bundle.js但是仍然提示我没有popper.js。 所以我决定下载一个popper.js,安装过程请参考这篇:https://www.cnb ...
分类:
Web程序 时间:
2020-04-24 20:18:52
阅读次数:
114
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #parent{ width: 200px; height: 200px; background-color: # ...
分类:
其他好文 时间:
2020-04-24 09:14:45
阅读次数:
77