加载中
git 提交规范

参考文档 文档二 文档三 格式 [optional scope]: [optional body] [optional footer(s)] type feat: 新增/修改功能 (feature)。 fix: 修補 bug (bug fix)。 docs: 文件 (documentation)。 st...

linux 命令学习记录

查找磁盘最大文件 du -h --max-depth=1 /var | sort -h -r | head -n 10 du -sh . # s 表示 summary,查看总的大小 小鹤 ofyu 圆圈数字 i3wm xprop windows 下杀死进程 jps // 查看 java 进程...

CentOS 7 镜像源更新

国内镜像: sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* sed -i 's|#baseurl=http://mirror.centos.org|baseurl=https://mirrors.aliyun.com|g' /etc/yum.repos.d/CentO...

08/22 10:44
65
Nginx 静态资源 缓存配置 与 gzip 处理

server { server_name domain.com; client_max_body_size 1000m; root /www/ooxx/dist; gzip_static on; gzip_proxied any; location / { index index.html index.htm; ......

aws 自定义监控

准备工作:命令行工具的安装与初始化 略。参考链接 1 配置文件保存位置 AWS Systems Manager>Parameter Store 2 配置文件内容 { "agent": { "metrics_collection_interval": 60, "run_as_us...

flutter 自定义下拉刷新组件的3种实现方式

1 RefreshIndicator ① 监听 ScrollNotification,获取下拉偏移量 ② 构建 Stack 组件。将下拉溢出后顶部的动画和列表叠放在一起。 ③ 自定义 Physics 组件,使得滚动的列表偏移到顶部动画的...

《花满楼》歌词

[Verse 1] 月光洒满青石板的长街 夜色里弥漫着淡淡的花香 我独自一人漫步在回忆里 寻找那曾经遗失的时光 [Chorus] 花满楼,春意浓 思念如风吹不散的云朵 倚窗望,夜未央 月光下,我在等你归航...

zsh 启动速度很慢

执行下面的命令 rm -rf /private/var/log/asl/*.asl

03/19 09:09
11
gradle 配置镜像

文件位置:./gradle/init.gradle def repoConfig = { all { ArtifactRepository repo -> if (repo instanceof MavenArtifactRepository) { def url = repo.url.toString() i......

小程序获取内容区高度

console.log(windowInfo.windowHeight, "windowHeight"); console.log(windowInfo.screenHeight, "screenHeight"); console.log(windowInfo.safeArea, "safeArea"); console.log(windowInfo....

01/16 09:17
59
reactjs 中使用 useMemo 缓存数据计算过程

示例1: function TodoList({ todos, filter }) { const [newTodo, setNewTodo] = useState(''); // ✅ This is fine if getFilteredTodos() is not slow. const visibleTodos = getFiltered...

k8s 搭建文件服务器

k8s 配置文件 本地创建 /data 目录 # 部署 apiVersion: apps/v1 kind: Deployment metadata: name: file-deploy namespace: xxxx labels: app: file spec: replicas: 1 selector: matchLabe...

2023/11/28 18:25
87
aws 零停机部署脚本

脚本 #!/bin/bash logdir="/var/log/deploy" logfile="$logdir/qa.log" if [ ! -d "$logdir" ]; then mkdir $logdir fi targetGroup="arn:aws:elasticloadbalancing:xxx" targets="Id=i-xxx,...

macos 使用 gem 安装 cocoapods

gem install -n /usr/local/bin cocoapods

2023/08/31 11:56
59
flutter windows 窗口居中

bool Win32Window::Create(const std::wstring& title, const Point& origin, const Size& size) { Destroy(); const wchar_t* window_class = Wi......

2023/08/26 23:23
129

没有更多内容

加载失败,请刷新页面

返回顶部
顶部