wget http://download.savannah.gnu.org/releases/freetype/freetype-2.10.0.tar.bz2 tar -xf freetype-2.10.0.tar.bz2 cd freetype-2.10.0 ./configure --prefi ...
分类:
系统相关 时间:
2021-04-20 14:36:46
阅读次数:
0
1、 > a <- c(1,2,2,2,3,1,1,3) > a [1] 1 2 2 2 3 1 1 3 > unique(a) [1] 1 2 3 > duplicated(a) [1] FALSE FALSE TRUE TRUE FALSE TRUE TRUE TRUE > !duplicate ...
分类:
编程语言 时间:
2021-04-19 15:48:44
阅读次数:
0
项目运行环境 node v12.9.0 npm v6.10.2 cli-service v4.5.0 核心框架版本号 "vue": "^3.0.0", "vue-class-component": "^8.0.0-0", "vue-router": "^4.0.0-0", "vuex": "^4.0 ...
分类:
Web程序 时间:
2021-04-19 14:58:07
阅读次数:
0
pwd,打印当前目录 ls:List information about the FILEs (the current directory by default) -a/--all -d/--directory dir -a 进入如camera的目录后运行dir、ls会卡住(可以ctrl+c退出)。 ...
分类:
移动开发 时间:
2021-04-16 12:10:03
阅读次数:
0
前言:JavaScript原始数据类型主要分为布尔值、数值、字符串、nul、undefined和ES6中的新类型Symbol和BigInt TypeScript中原始数据类型的应用 一、布尔值(boolean) let isDone : boolean = false ; 二、数值(number) ...
分类:
其他好文 时间:
2021-04-12 12:54:06
阅读次数:
0
Pyecharts是百度开源的移植到Python上的可视化工具,里面方法调用起来像是标记性语言,因此代码的可读性很强,一目了然。下面是一个绘制散点图的例子: #%% import pyecharts.options as opts from pyecharts.charts import Scatt ...
分类:
编程语言 时间:
2021-04-12 12:04:59
阅读次数:
0
在python中用insert into写入mysql数据库时,可能会出现如题所示异常。 当然,如何改是属于数据方面的知识,网上有很多,不在这里述说。 本文要解决的是:如何在程序中获取该错误,并进行异常处理。 一、捕获异常。常用方法:当然在程序调试过程中出现该异常,用肉眼来看就行了。在程序中就需要捕 ...
分类:
数据库 时间:
2021-04-10 13:18:43
阅读次数:
0
环境:RAC1:192.168.56.111 (db版本:12.2.0.1)RAC2:192.168.56.112 (db版本:12.2.0.1)DG备库:192.168.56.19 (db版本:12.2.0.1) OGG源库OGG目标库:192.168.56.166 (db版本:11.2.0.4) ...
分类:
其他好文 时间:
2021-04-08 14:02:34
阅读次数:
0
Given a fixed length array arr of integers, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements beyond ...
分类:
其他好文 时间:
2021-03-30 12:46:57
阅读次数:
0
安装docker centos 7 上官网https://docs.docker.com/engine/install/ 进入对应的服务器平台查看相应的方法,这里以centos7 为例:https://docs.docker.com/engine/install/centos/ 第一步: 卸载已安装 ...
分类:
其他好文 时间:
2021-03-17 15:08:56
阅读次数:
0