readMe

“Casual Notes of a Programmer, Thanks to My Friends for Their Continued Support and Help” A Kai Hugo PaperMod 宇霞信息 黑豹科技

October 26, 2024 · 聂俊勇

Search

October 26, 2024 · 聂俊勇

Git 文件太大无法上传

git push 推送代码时提示 fatal: the remote end hung up unexpectedly 在项目目录 .git/config 中添加一下代码 [http] postBuffer = 524288000

November 1, 2024 · 聂俊勇

jq 的一种新奇用法

原始 curl 请求结果 安装 jq yum install jq 将 curl 返回结果通过管道发送给 jq curl 'http://localhost:8001/system/clear/help_info?id=1' | jq 过 jq 格式化 curl 请求结果

October 31, 2024 · 聂俊勇

Hugo 入门

创建新站点 hugo new site blog 添加主题 git submodule add \n https://github.com/theNewDynamic/gohugo-theme-ananke.git \n themes/ananke 设置主题 echo "theme = 'ananke'" >> hugo.toml 添加新文章 hugo new content content/go/p-1.md hugo new content content/go/p-2.md hugo new content content/about/a-1.md hugo new content content/about/a-2.md 开启导航菜单 sectionPagesMenu = 'main' 调试模式(热重载) hugo server --disableFastRender 打包 hugo

October 26, 2024 · 聂俊勇

adb 命令及实用的快捷键

快捷键 电源键 adb shell input keyevent 26 返回键 adb shell input keyevent 4 HOME键 adb shell input keyevent 3 实用命令 查看手机版本号 adb shell getprop|grep release 查看运行的软件包名 1. 先执行 2. adb shell am monitor, 3. 然后打开想要查看宝软件, 观察终端输入的包名 删除系统自带应用 adb shell pm uninstall -k --user 0 包名

August 30, 2024 · 聂俊勇

docker 运维常用命令

清理 docker 容器产生的日志 cd /var/lib/docker/containers cat /dev/null > 容器ID-json.log 下载其他系统镜像 docker pull --platform linux/amd64 镜像名称 制作一个 linux 最小化 docker image 1. Dockerfile FROM alpine:latest # 设置阿里云镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories # 安装插件 RUN apk add --no-cache tzdata RUN apk add --no-cache curl RUN apk add --no-cache busybox-extras # telnet 包 # 配置系统时区 RUN ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo Asia/Shanghai > /etc/timezone 2. 执行命令 docker build -t yhc-go:2024-10-20 -f ./Dockerfile . 3. ps: yhc-go 镜像名称, 可以随意修改 2024-10-20 镜像版本号, 可以随意修改

July 30, 2024 · 聂俊勇

Nginx 配置 vue 伪静态

nginx 中添加 location / { try_files $uri $uri/ /index.html; } nginx 允许 header 携带下划线 在 nginx.conf 中 http 内添加 underscores_in_headers on;

July 4, 2024 · 聂俊勇