ssh免密登录 1.切入/root/.ssh路径下,使用 ssh-keygen获取主机key。 注:直接回车即可,无需输入任何信息。 [root@likeadmin ~/.ssh]# ssh-keygen Generating public/private rsa key pair. Enter f ...
分类:
其他好文 时间:
2020-05-16 00:38:49
阅读次数:
64
爬取电商网站的商品信息: URL为: https://www.zhe800.com/ju_type/baoyou 抓取不同分类下的商品数据 抓取内容为商品的名称, 价格数字, 商品图片 将商品图片二进制流, 商品名称和价格数字一同存储于MongoDB数据库 存储数据结构为: { ‘name’: ‘懒 ...
分类:
数据库 时间:
2020-05-15 20:11:44
阅读次数:
90
--> yum search java | grep openjdk --> yum install java-1.8.0-openjdk-headless.x86_64 --> yum install java-1.8.0-openjdk-devel.x86_64 --> update-alter ...
分类:
其他好文 时间:
2020-05-15 15:28:43
阅读次数:
330
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <stdbool.h> 4 5 typedef struct { 6 int val; 7 struct MyLinkedList *next; 8 } MyLinkedList; 9 10 ...
分类:
其他好文 时间:
2020-05-15 11:37:56
阅读次数:
65
To make a duplicate copy of a file, use the command cp. For example, to create an exact copy of the file called firstfile, you would type: cp firstfil ...
分类:
其他好文 时间:
2020-05-15 09:38:36
阅读次数:
50
Description: You are given a sorted array consisting of only integers where every element appears exactly twice, except for one element which appears ...
分类:
其他好文 时间:
2020-05-15 00:27:32
阅读次数:
77
题目 A graph which is connected and acyclic can be considered a tree. The height of the tree depends on the selected root. Now you are supposed to find ...
分类:
其他好文 时间:
2020-05-14 19:42:49
阅读次数:
68
GC垃圾收集算法 堆空间 分代: 年轻代: Eden区: 对象创建的区域: gc最频繁,99%的对象都是在这里创建和销毁的,经过一次youngGC,Eden区基本就空了 Survival区: from: 经过一次youngGC,Eden和to区还存活的对象放入from区, from和to区角色互换 ...
分类:
编程语言 时间:
2020-05-14 19:39:29
阅读次数:
73
1.普通变量赋值为深拷贝 结果 2.普通变量的引用赋值为浅拷贝 结果 3.对象的赋值为浅拷贝 结果 4.对象的clone为深拷贝 结果 ...
分类:
Web程序 时间:
2020-05-14 15:23:05
阅读次数:
62
Visual Studio is waiting for an operation to complete. If you regularly encounter this delay during normal usage please report this problem to Microso ...
分类:
其他好文 时间:
2020-05-14 12:51:58
阅读次数:
108