Public Key Infrastructure (PKI) provides the means to establish trust by binding public keys and identities, thus giving reasonable assurance that we’ ...
分类:
其他好文 时间:
2020-11-10 10:39:11
阅读次数:
4
有些时候,为了图省力,我们没准会这样的调用一个函数 unordered_map< pair<int, int>, int > mp; 但是很显然的是,这样的写法是会报错的,因为pair还没有HASH键值。 error: call to implicitly-deleted default const ...
分类:
其他好文 时间:
2020-11-06 02:18:29
阅读次数:
20
1.Auto Rename Tag (标签插件) 2.Bracket Pair Colorizer(对代码中的括号添上一抹亮色) 3.Chinese language Pack for Visual Studio Code(vscode中文插件) 4.Code Spell Checker(TS和JS ...
分类:
其他好文 时间:
2020-11-04 17:38:33
阅读次数:
19
##常见的敏感信息路径: Windows系统 c:\boot.ini // 查看系统版本 c:\windows\system32\inetsrv\MetaBase.xml // IIS配置文件 c:\windows\repair\sam // 存储Windows系统初次安装的密码 c:\Progra ...
分类:
Web程序 时间:
2020-11-02 10:31:08
阅读次数:
27
docker0详解 docker0:https://blog.csdn.net/kubailing/article/details/87936501 veth pair详解:https://www.cnblogs.com/bakari/p/10613710.html docker网络模式详解:htt ...
分类:
其他好文 时间:
2020-11-02 09:50:51
阅读次数:
16
Markdown学习 标题 三级标题 四级标题 (####+空格+四级标题) 字体 hello,world! hello,world! hello,world! hello,world! 引用 从学习到放弃 (>) 分割线 ( ) (***) 图片 本地图片 网络图片 超链接 点击跳转百度 列表 a ...
分类:
其他好文 时间:
2020-10-29 09:28:16
阅读次数:
18
第一种: 1 #include <iostream> 2 #include <unordered_set> 3 #include <utility> 4 #include <vector> 5 6 using namespace std; 7 8 using KEY = pair<int,int>; ...
分类:
编程语言 时间:
2020-10-21 20:48:00
阅读次数:
22
#include <bits/stdc++.h> #include <bits/extc++.h> using namespace std; using namespace __gnu_pbds; typedef pair<int,int> pii; tree<pii,null_type,less< ...
分类:
其他好文 时间:
2020-10-21 20:30:50
阅读次数:
25
1.vue微博回调空页面 注:微博回调空页面为: http://127.0.0.1:8888/oauth/callback/ 1.1 页面路径 components\oauth.vue <template> <div> <p>跳转中....</p> </div> </template> <scrip ...
分类:
其他好文 时间:
2020-10-13 16:52:40
阅读次数:
17
0.学习目标 了解商品规格数据结构设计思路 实现商品规格查询 了解SPU和SKU数据结构设计思路 实现商品查询 了解商品新增的页面实现 独立编写商品新增后台功能 1.商品规格数据结构 乐优商城是一个全品类的电商网站,因此商品的种类繁多,每一件商品,其属性又有差别。为了更准确描述商品及细分差别,抽象出 ...
分类:
数据库 时间:
2020-10-10 16:41:40
阅读次数:
25