摘要: 1.git bash 窗口右键,选择 Options ->Text,选择zh_CN、UTF-8 ![image](https://img2023.cnblogs.com/blog/1447060/202308/1447060-20230817155309243-1562471512.png) 2.g 阅读全文
posted @ 2023-08-17 15:55 _DC 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 使用create index创建 ``` create index on tablename (columnname(限制长度)) ``` 使用alter table创建 ``` ALTER TABLE tableName ADD INDEX indexName(columnName); ``` 创 阅读全文
posted @ 2023-05-31 22:14 _DC 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 查看自己bash的版本 /bin/bash --version 下载bash5.0版本 wget http://ftp.gnu.org/gnu/bash/bash-5.0.tar.gz 解压 tar zxvf bash-5.0.tar.gz 进入目录 cd bash-5.0 编译 ./configu 阅读全文
posted @ 2023-04-23 22:35 _DC 阅读(166) 评论(0) 推荐(0) 编辑
摘要: nodejs和npm版本不匹配导致的。 卸载nodejs重装,卸载node会卸载不干净,需要手动删除npm相关文件夹 C:\Users\【用户】\AppData\Roaming 删除npm 和npm-cache 目录 重新安装nodejs 阅读全文
posted @ 2022-11-10 11:00 _DC 阅读(1986) 评论(0) 推荐(0) 编辑
摘要: 1.DHCP(默认) vi /etc/netplan/50-cloud-init.yaml 配置文件如下: network: ethernets: ens33: dhcp4: yes addresses: [] version: 2 2.静态IP vi /etc/netplan/50-cloud-i 阅读全文
posted @ 2022-02-10 20:51 _DC 阅读(945) 评论(0) 推荐(0) 编辑
摘要: CSV简介 逗号分隔值(Comma-Separated Values,CSV,有时也称为字符分隔值,因为分隔字符也可以不是逗号),其文件以纯文 本形式存储表格数据(数字和文本)。 示例代码 import java.io.BufferedOutputStream; import java.io.IOE 阅读全文
posted @ 2021-05-17 22:03 _DC 阅读(322) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/01f68d03daf5 阅读全文
posted @ 2021-04-01 17:44 _DC 阅读(79) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/12e0f22be83c?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation 阅读全文
posted @ 2021-04-01 17:43 _DC 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 1.下载镜像 docker pull yrzr/gitlab-ce-arm64v8 2.创建容器 docker run \ --detach \ --restart always \ --name gitlab-ce \ --privileged \ --memory 4096M \ --publi 阅读全文
posted @ 2021-03-30 15:26 _DC 阅读(2373) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/7ad7ab2745af 官方文档:http://react-guide.github.io/react-router-cn/docs/Introduction.html 阅读全文
posted @ 2021-03-05 20:02 _DC 阅读(73) 评论(0) 推荐(0) 编辑