CSV文件读取 javacsv 读取 引入依赖 <!-- https://mvnrepository.com/artifact/net.sourceforge.javacsv/javacsv --> <dependency> <groupId>net.sourceforge.javacsv</gro ...
分类:
其他好文 时间:
2021-05-24 10:39:35
阅读次数:
0
import matplotlib.pyplot as plt # 第一种,在savefig函数那里设置像素 plt.figure(figsize=(5, 5)) #设置画布尺寸——正方形 plt.scatter(data[:, 0], data[:, 1],label="your label") ...
分类:
其他好文 时间:
2021-05-24 08:25:15
阅读次数:
0
##1.使用ansible的playbook实现自动化安装httpd 配置ansible主机文件 [root@localhost ~]# vim /etc/ansible/hosts [websrvs] 10.50.100.8 配置ansible与管理端的ssh连接 [root@localhost ...
分类:
Web程序 时间:
2021-05-24 07:09:02
阅读次数:
0
What will I be benefited with on reading the book ''Computer Systems: A Programmer's Perspective''? Randy Bryant , works at Carnegie Mellon University ...
分类:
其他好文 时间:
2021-05-04 16:35:11
阅读次数:
0
untrack表示是新文件,没有被add过,是为跟踪的意思。 not staged 表示add过的文件,即跟踪文件,再次修改没有add,就是没有暂存的意思 具体看: https://git-scm.com/book/zh/v2/Git-%E5%9F%BA%E7%A1%80-%E8%AE%B0%E5% ...
分类:
其他好文 时间:
2021-05-04 15:14:56
阅读次数:
0
[20210428]改进pr.sql脚本.txt--//tanel poder提供一个脚本pr.sql,用来实现显示信息的纵向显示。例子:SCOTT@book> select * from dept where deptno=10 2 @ prPivoting output using Tom Ky ...
分类:
数据库 时间:
2021-04-29 11:47:01
阅读次数:
0
howtohunt https://kathan19.gitbook.io/howtohunt/ HackTricks https://book.hacktricks.xyz/pentesting-web/2fa-bypass https://github.com/EdOverflow/bugbou ...
分类:
其他好文 时间:
2021-04-26 13:24:15
阅读次数:
0
一、过滤 SELECT * FROM mytable WHERE col IS NULL 二、排序 SELECT * FROM mytable ORDER BY col1 DESC, col2 ASC 注: ASC:升序(默认) DESC:降序 ...
分类:
数据库 时间:
2021-04-20 14:08:18
阅读次数:
0
c#字符显示转换{0:d} C#:String.Format数字格式化输出 : int a = 12345678; //格式为sring输出 // Label1.Text = string.Format("asdfadsf{0}adsfasdf",a); // Label2.Text = "asdf ...
分类:
其他好文 时间:
2021-04-19 14:32:39
阅读次数:
0
var Book = {} var name = ''; Object.defineProperty(Book, 'name', { set: function (value) { name = value; console.log('你取了一个书名叫做' + value); }, get: fun ...
分类:
其他好文 时间:
2021-04-14 11:55:37
阅读次数:
0