MySQL基础

MySQL基础

March 21, 2025 · 43 min · 9135 words · Atticus Wilde

Linux常用命令

Linux常用命令

March 20, 2025 · 21 min · 4377 words · Atticus Wilde

15 Kubernetes核心技术Helm

15 Kubernetes核心技术Helm

March 17, 2025 · 4 min · 675 words · Atticus Wilde

Ansible

Ansible

March 13, 2025 · 8 min · 1615 words · Atticus Wilde

MySQL 事务

MySQL 事务

March 12, 2025 · 13 min · 2670 words · Atticus Wilde

Python 50 个正则表达式写法

Python 50 个正则表达式写法

March 10, 2025 · 3 min · 450 words · Atticus Wilde

MySQL性能参数调优

MySQL性能参数调优

March 8, 2025 · 1 min · 55 words · Atticus Wilde

grep常见用法

grep常见用法

March 7, 2025 · 1 min · 153 words · Atticus Wilde

hexo博客部署

hexo 博客完整部署以及魔改记录 前期基础部署 1.下载安装git Git - Downloads (git-scm.com) 安装完成可在鼠标右键看到Git Bash 常用命令 1 2 3 git config -l //查看所有配置 git config --system --list //查看系统配置 git config --global --list //查看用户(全局)配置 配置用户名和邮箱 1 2 git config --global user.name "你的用户名" git config --global user.email "你的邮箱" 2.下载安装node.js Node.js中文官网 (nodejs.org) 推荐使用nvm安装,后续如果涉及node版本更换,更为方便 nvm安装 进入官网http://nvm.uihtm.com/ 下载 解压安装,一直下一步 基础命令 nodejs历史版本下载页面 https://www.fomal.cc/posts/e593433d.html 1 2 3 4 5 6 7 8 9 10 11 12 查询版本号 nvm -v 查询可以下载的node版本 nvm list available 安装指定版本 nvm install xxx 查看已经安装的node版本 nvm list 切换node版本(如果失败那就用管理员身份打开cmd进行切换) nvm use xxx nodejs这里安装的是跟视频博主一样的版本,12.19.0 修改npm源 ...

March 4, 2025 · 79 min · 16731 words · Atticus Wilde

SpringBoot2学习笔记

SpringBoot2学习笔记

March 4, 2025 · 56 min · 11928 words · Atticus Wilde