sequenceDiagram B->>C:initConfig C->>D: registerPubKey C-->>C: 缓存 loop 健康检查 王五->王五: 与疾病战斗 end Note right of 王五: 合理 食物 看医生... 李四-->>张三: 很好! 王五->李四: 你怎么 ...
分类:
其他好文 时间:
2020-07-25 09:25:59
阅读次数:
62
1 using System; 2 using System.Net; 3 using System.IO; 4 using System.Text; 5 using System.Text.RegularExpressions; 6 using System.Net.Security; 7 usi ...
分类:
其他好文 时间:
2020-07-25 09:12:50
阅读次数:
65
题意: 每次操作可以输入一个颜色,然后所有这个颜色的点使相邻的点都变成这个颜色,最后输出每个点是什么颜色。 题解: 对每个节点开一个链表,存储与这个节点相邻的节点。 然后对于每次操作,把节点周围的节点全都变成相同颜色的节点,然后清空这些节点对应的链表,把链表接到父节点下。 #include<bits ...
分类:
其他好文 时间:
2020-07-24 22:09:46
阅读次数:
80
Ubuntu系统中安装Mercurial 以支持hg pip install mercurial # 通过 pip 安装 Mercurial hg --version # 查看 Mercurial 版本 hg clone http://hg.openjdk.java.net/jdk8/jdk8 op ...
分类:
系统相关 时间:
2020-07-23 23:25:51
阅读次数:
128
在Flutter编程中,会经常用到".."的语法糖,如下 state.clone() ..splashImg = action.img ..famousSentence = action.famousSentence; 其实以上代码等同于 state.clone() state.splashImg ...
分类:
其他好文 时间:
2020-07-23 22:30:25
阅读次数:
171
gitee pull 完整代码到本地 git clone https://gitee.com/jyycool/rethinkdb.git 到目标目录 cd rethinkdb 编译 ./configure --allow-fetch make 安装 sudo make install 注:http: ...
分类:
数据库 时间:
2020-07-23 22:17:54
阅读次数:
90
一、拉取ubuntu18.04镜像sudodockerpullubuntu:18.04sudodockerrun-it-p80:80-v~/data/vhost/:/var/www--namemyubuntu18.04ubuntu:18.04/bin/bash二、添加阿里源(ubuntu18.04:bionic;20.04:focal)cp/etc/apt/sources.list/etc/apt
分类:
系统相关 时间:
2020-07-23 16:40:05
阅读次数:
107
git reset --soft HEAD^ //用于撤销git commit的内容 git cherry-pick --abort //用于取消从其他分支clone的修改 git stash //缓存当前修改,用于暂时忽略当前修改,提交其他修改 git stash pop //还原stash的修改 ...
分类:
其他好文 时间:
2020-07-23 15:48:02
阅读次数:
69
js 克隆对象 原文:http://www.360doc.com/content/10/0305/13/15055_17649067.shtml note 由于JAVASCRIPT的对象到对象的赋值是传址的,当我需要对两个相同内容对象进行更改与比较时,我就需要把旧对象CLONE出来。 code 定义 ...
分类:
Web程序 时间:
2020-07-21 22:01:08
阅读次数:
82
在新git地址上创建仓库 拉老git仓库上代码下来 git clone --bare ssh://git@gitlab.XXXX/vonechain-cs/vonechain-multiple-ui.git 进入到vonechain-multiple-ui目录 # cd vonechain-mult ...
分类:
其他好文 时间:
2020-07-21 21:51:37
阅读次数:
63