建立表空间并设置为默认表空间(最大32GB) 1. create temporary tablespace test tempfile '/home/oracle/oradata/abc/test.dbf' size 50m autoextend on next 50m maxsize 20480m ...
分类:
数据库 时间:
2021-01-29 12:21:20
阅读次数:
0
Chapter 6 - Other Popular Machine Learning Methods Segment 2 - A neural network with a Perceptron Perceptron A perceptron is a neural network with jus ...
分类:
编程语言 时间:
2021-01-27 13:05:55
阅读次数:
0
git clone过大的仓库时会报以下错误 remote: aborting due to possible repository corruption on the remote side. fatal: protocol error: bad pack header 解决办法是分层clone $ ...
分类:
其他好文 时间:
2021-01-26 12:41:49
阅读次数:
0
Chapter 4 - Clustering Models Segment 3 - DBSCan clustering to identify outliers DBSCAN for Outlier Detection Unsupervised method that clusters core s ...
分类:
数据库 时间:
2021-01-26 11:57:37
阅读次数:
0
Chapter 7 - Collaborative Analytics with Plotly Segment 2 - Creating statistical charts Setting up to use Plotly within Jupyter import numpy as np imp ...
分类:
编程语言 时间:
2021-01-25 11:18:24
阅读次数:
0
结论:偏置的方向为曲线方向与拉伸方向的向量叉乘。 在UF_MODL_create_extrusion帮助中有这么一句话:Note that the offset direction is determined by the cross product of the direction vector ...
分类:
其他好文 时间:
2021-01-25 10:41:13
阅读次数:
0
取本机的第一个IP地址 ip addr | awk '/^[0-9]+: / {}; /inet.*global/ {print gensub(/(.*)\/(.*)/, "\\1", "g", $2)}' | awk 'NR==1' 取最大值,最小值 awk '{for(x=1;x<=NF;x++ ...
分类:
其他好文 时间:
2021-01-21 10:31:54
阅读次数:
0
ssh公钥生成 ssh-keygen 设置邮箱账号 git config --global user.email "you@example.com" 设置码云昵称 git config --global user.name "Your Name" ...
分类:
其他好文 时间:
2021-01-19 11:59:24
阅读次数:
0
参考: https://oi-wiki.org/ds/li-chao-tree/ 例题: P4097 [HEOI2013]Segment #include<bits/stdc++.h> #define db double const int p=39989; using namespace std; ...
分类:
其他好文 时间:
2021-01-18 11:39:35
阅读次数:
0
对结构体排序 ''' #include<iostream> #include<algorithm> using namespace std; const int si= 101; struct segment { int l, r; bool operator < (const segment v) ...
分类:
编程语言 时间:
2021-01-18 11:05:01
阅读次数:
0