要将manjaro作为服务器, 开机进入CLI比较好 systemctl set-default multi-user.target 要进入GUI,只需要startx就可以。 从GUI返回到CLI,只需要“注销”,就回到了CLI。想再次修改为默认进入GUI界面, 执行 systemctl set-d ...
分类:
编程语言 时间:
2020-06-19 23:15:08
阅读次数:
328
plant uml是一款画图工具 官方文档地址:http://plantuml.com/zh/guide 1.下载插件 2.下载dot.exe文件 官网下载地址:https://graphviz.gitlab.io/_pages/Download/Download_windows.html 选择ms ...
分类:
其他好文 时间:
2020-06-19 15:52:32
阅读次数:
88
latex 引用(链接)编号颜色设置 在\begin之前插入如命令 \hypersetup{ colorlinks=true, # 链接颜色设置 linkcolor=black, # 链接颜色 citecolor=black, # 引用颜色 anchorcolor=black, urlcolor=b ...
分类:
其他好文 时间:
2020-06-19 12:29:12
阅读次数:
71
顺序执行、选择执行、管道、cut 命令、grep 命令、wc 命令、sort 命令等,高效率使用 Linux 的技巧 顺序执行 只需要在命令间加; sudo apt-get update;sudo apt-get install some-tool 选择执行 另一种是要修上一条执行成功才执行下一条, ...
分类:
系统相关 时间:
2020-06-18 22:01:17
阅读次数:
69
Description HostAgent fails to establish SSH Connection to RedHat EL7 hostThe error reported when the agent attempts to connect to the host matches th ...
分类:
系统相关 时间:
2020-06-18 19:16:06
阅读次数:
459
本文参考了【算法】并查集(Disjoint Set)和并查集详解 并查集原理 并查集是一种用于处理不相交集合之间合并问题的数据结构,例如求连通子图、判断是否存在环、求最小生成树等。 以判断图中是否有环为例,下图是一个无向图。 graph TB; A B A C A D C D C E 首先把每一个顶 ...
分类:
其他好文 时间:
2020-06-17 20:10:17
阅读次数:
53
Mybatis MyBatis简介(了解) MyBatis 本是apache的一个开源项目iBatis, 2010年这个项目由apache software foundation 迁移到了google code,并且改名为MyBatis 。2013年11月迁移到Github。 MyBatis是一个优 ...
分类:
其他好文 时间:
2020-06-17 19:48:47
阅读次数:
53
Generic Programming and Graph 链接:http://ecee.colorado.edu/~siek/boostcon2010bgl.pdf 原文中还介绍了一点boost graph library相关的内容。由于对于boost graph library的介绍比较少。这里 ...
分类:
其他好文 时间:
2020-06-17 19:47:58
阅读次数:
48
图Graph G:(V(顶点),E(边)) 定义 无向图 有向图 有向边(弧) 无向完全图:任意两顶点都有边 n个顶点的无向完全图有n*(n-1)/2条边 有向完全图: n*(n-1)条边 权:与边相关的数 网:带权的图 子图 无向图: 邻接点 度(TD): 顶点相关联边数 边数为各顶点度数和一半 ...
分类:
其他好文 时间:
2020-06-17 18:14:51
阅读次数:
80
from selenium import webdriverimport timedriver = webdriver.Chrome()driver.get("https://www.12306.cn/index/")time.sleep(5)# 去掉元素的readonly属性js = 'docum ...
分类:
Web程序 时间:
2020-06-17 13:14:04
阅读次数:
89