kubectl is the official Kubernetes CLI and it interacts with your Kubernetes cluster's API server via its API. It is configured by default using the ~ ...
分类:
Web程序 时间:
2021-01-14 10:52:04
阅读次数:
0
之前整理的是PostgreSQL9和PostGIS2的安装手册,最近在安装PostgreSQL13时发现由于版本过新,安装步骤略有不同,这里简单记录一下安装过程. 一 各软件包版本依赖关系检查 检查PostGIS、PostgreSQL、GEOS、GDAL、PROJ等各软件的版本依赖关系 http:/ ...
分类:
数据库 时间:
2021-01-11 11:27:02
阅读次数:
0
插件描述:一款优雅的页面消息提示插件,兼容性良好,无任何依赖。 Qmsg 消息提示插件 使用 兼容IE>=9。 HTML <link rel="stylesheet" href="./css/message.css"> <!-- your html --> <script src="./js/mes ...
分类:
Web程序 时间:
2021-01-08 11:40:56
阅读次数:
0
1.注册gitee账号 2.安装git 配置用户信息 git config --global user.name "your username" 配置用户邮箱信息 git config --global user.email "email.com" 3.进入git bash,输入ssh-keygen ...
分类:
其他好文 时间:
2021-01-06 12:36:18
阅读次数:
0
JAVA: class WordDictionary { private Node head; /** * Initialize your data structure here. */ public WordDictionary() { this.head = new Node(null); } ...
分类:
其他好文 时间:
2021-01-06 12:18:38
阅读次数:
0
JAVA 实现: class Trie { private Node head; /** * Initialize your data structure here. */ public Trie() { this.head = new Node(); } /** * Inserts a word ...
分类:
其他好文 时间:
2021-01-06 12:15:16
阅读次数:
0
Git error The file will have its original line endings in your working directory Git项目提交代码,即执行git add .命令后,报了这个错误有点懵。 参考博客1:https://www.cnblogs.com/dy ...
分类:
其他好文 时间:
2021-01-02 11:05:53
阅读次数:
0
checksec: main: int __cdecl main(int argc, const char **argv, const char **envp) { init(); vulnerable(); return 0; } vulnerable: int vulnerable() { in ...
分类:
其他好文 时间:
2021-01-02 10:38:32
阅读次数:
0
SELECT * FROM `user` LIMIT 4,-1; 使用limit分页的时候,出现一个错误,官方说的是将这个bug修复了,这个以前是可以使用的 ...
分类:
数据库 时间:
2021-01-01 12:00:42
阅读次数:
0
在go1.11之后版本中支持go mod 管理工程文件: src目录下建立github.com目录 在github.com目录下建立project文件夹 project文件夹作为工作目录 在project目录下,执行go mod init github.com/project配置工程环境;在proj ...
分类:
其他好文 时间:
2020-12-31 12:11:43
阅读次数:
0