查看当前系统JupyterLab支持的所有字体 from matplotlib.font_manager import FontManager mpl_fonts = set(f.name for f in FontManager().ttflist) print('all font list ge ...
分类:
其他好文 时间:
2021-05-04 16:05:28
阅读次数:
0
%load_ext autoreload %autoreload 2 %matplotlib inline %config InlineBackend.figure_format='retina' from __future__ import absolute_import, division, p ...
分类:
编程语言 时间:
2021-05-03 12:48:31
阅读次数:
0
一、原生字符串(raw string literals) 比如我们写硬盘上一个文件的访问路径:"C:\Program Files\Microsoft.NET\ADOMD.NET",你需要把它写成以下格式 string path = "C:\\Program Files\\Microsoft.NET\ ...
分类:
编程语言 时间:
2021-05-03 12:40:02
阅读次数:
0
Serverless deployment is a key consideration when starting to write software using Function-as-a-Service services such as AWS Lambda. In the beginning ...
分类:
其他好文 时间:
2021-05-03 11:50:17
阅读次数:
0
1.校验邮箱格式 reg=/^([\w+\.])+@\w+([.]\w+)+$/; 2. 正则判断是否包含用.* (是否包含数字 reg = /.*\d.*/g; reg = /\d+/g; reg = /[0-9]/;)3. 正则判断是否包含连续重复字符用 \1 (是否包含连续重复字母 /([a- ...
分类:
其他好文 时间:
2021-05-03 11:41:56
阅读次数:
0
一般我们从网上下载的PDF资料都会加密,这也是为了文档版权的保护和其他考虑。如果PDF文档可以正常打开,只是打印、复制、编辑或者转换时提示加密,这种是可以通过一些方法接触密码的。 PDF的解密工具和方法比较多,一般比较常见的就是在线解密和软件解密,分别从两种工具的使用方法来说明。 在线解密比较简单, ...
分类:
其他好文 时间:
2021-04-30 12:43:15
阅读次数:
0
1、安装 npm install postcss-plugin-px2rem --save-dev 2、引入配置 // vue.config.js const px2rem = require("postcss-plugin-px2rem"); module.exports = { css: { l ...
分类:
其他好文 时间:
2021-04-30 12:39:06
阅读次数:
0
安装cargo curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh vscode插件 ext install rust-lang.rust ext install vadimcn.vscode-lldb 调试配置 launsh ...
分类:
其他好文 时间:
2021-04-29 12:07:59
阅读次数:
0
##环境描述 系统:win10 版本:sonarqube8.8.0.4 启动StartSonar.bat出现如下错误 ##错误信息1 --> Wrapper Started as Console Launching a JVM... Wrapper (Version 3.2.3) http://wr ...
分类:
其他好文 时间:
2021-04-29 12:02:49
阅读次数:
0
经常接触各种电子文档的人对于PDF肯定特别熟悉,但对于另一部分日常更多使用office的人来说,PDF格式相对陌生,那么如何才能打开PDF文件查看呢? 打开PDF文档的工具一般包含PDF阅读器和编辑器,如果我们打开PDF仅是为了查看,那么只需要用到PDF阅读器就足够了。 首先需要先下载并安装极速PD ...
分类:
其他好文 时间:
2021-04-29 11:51:19
阅读次数:
0