1、Git下载 官网地址:https://git-scm.com/ 2、Git安装 选择Git安装位置,然后next 使用默认配置,然后next 默认,next 使用默认的Vim编辑器 默认分支名设置,这里选择默认的Let Git decide,然后next 修改 Git 的环境变量,选第一个,不修 ...
分类:
其他好文 时间:
2021-04-27 14:33:05
阅读次数:
0
MySQL备份的4种方式 总结: 备份方法备份速度恢复速度便捷性功能一般用于 cp 快 快 一般、灵活性低 很弱 少量数据备份 mysqldump 慢 慢 一般、可无视存储引擎的差异 一般 中小型数据量的备份 lvm2快照 快 快 一般、支持几乎热备、速度快 一般 中小型数据量的备份 xtrabac ...
分类:
数据库 时间:
2021-04-26 13:07:02
阅读次数:
0
CSS Copy-paste the stylesheet <link> into your <head> before all other stylesheets to load our CSS. <link href="https://cdn.jsdelivr.net/npm/bootstrap ...
分类:
其他好文 时间:
2021-01-25 11:24:06
阅读次数:
0
I'm back.I've get an offer from my current job,as a developer. Also, I decide to maintian my hobby to write down what I've learnt during my closing ti ...
分类:
其他好文 时间:
2021-01-14 10:42:08
阅读次数:
0
package LeetCode_1688 /** * 1688. Count of Matches in Tournament https://leetcode.com/problems/count-of-matches-in-tournament/ You are given an intege ...
分类:
其他好文 时间:
2020-12-18 12:33:00
阅读次数:
2
关于IDisposable接口,我相信大家都很熟悉了,下面是微软官方文档的介绍: IDisposable Interface Implement a Dispose method 在C# 8.0中,微软引入了IAsyncDisposable接口,下面是微软官方文档的介绍: IAsyncDisposa ...
分类:
其他好文 时间:
2020-07-21 13:59:49
阅读次数:
73
一 代码及执行结果 ex30.py 1 people = 14 2 cars = 15 3 trucks = 10 4 5 if cars > people: 6 print("We should take the cars.") 7 elif cars < people: 8 print("We ...
分类:
其他好文 时间:
2020-07-13 13:46:48
阅读次数:
67
代码 /** * This file is part of ORB-SLAM2. * * Copyright (C) 2014-2016 Raúl Mur-Artal <raulmur at unizar dot es> (University of Zaragoza) * For more inf ...
分类:
其他好文 时间:
2020-06-21 20:10:49
阅读次数:
118
7.5 Dealing with Return Values 7.5 处理返回值 For return values, you can also decide between returning by value or by reference. However, returning referen ...
分类:
其他好文 时间:
2020-05-03 17:01:23
阅读次数:
90
7.3 Using std::ref() and std::cref() 7.3 使用std::ref()和std::cref() Since C++11, you can let the caller decide, for a function template argument, whethe ...
分类:
其他好文 时间:
2020-05-02 19:21:26
阅读次数:
82