摘要: system("touch dj.txt"); system("chattr +i dj.txt"); system("mkdir dj"); system("chattr +a dj"); 阅读全文
posted @ 2024-03-12 16:14 快乐的提千万 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 163yum源: 1)备份当前yum源防止出现意外还可以还原回来 cd /etc/yum.repos.d/ cp /CentOS-Base.repo /CentOS-Base-repo.bak 2)使用wget下载163yum源repo文件 wget http://mirrors.163.com/. 阅读全文
posted @ 2024-03-12 16:11 快乐的提千万 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 直接git clone的话,查看本地分支,会只有默认主分支,可能是master,也可以能是设置的。 查看所有分支 git branch -a * master remotes/origin/HEAD -> origin/master remotes/origin/branch1 remotes/or 阅读全文
posted @ 2023-12-06 16:34 快乐的提千万 阅读(34) 评论(0) 推荐(0) 编辑
摘要: OxygenNotIncluded_Data(E:\SteamLibrary\steamapps\common\OxygenNotIncluded\OxygenNotIncluded_Data) 文件夹下创建一个文本文档(.txt格式),将其命名为debug_enable.txt,创建完成后即可在游 阅读全文
posted @ 2023-11-02 10:42 快乐的提千万 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 下载PicGo https://github.com/Molunerfinn/PicGo/releases/tag/v2.3.1 七牛云配置 1、AccessKey和SecretKey:可以在七牛云控制台,秘钥管理页面找到你的配置 2、存储空间名:填写前面创建的空间名称 3、访问地址:你的域名 4、 阅读全文
posted @ 2023-11-02 10:34 快乐的提千万 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `Flutter`是谷歌出品的移动应用SDK,性能卓越、体验精美、跨平台、HotReload等等这些特点。 `Dart`是谷歌推出的编程语言。支持即时编译`JIT`(Just In Time)、`HotReload`(热加载)和事前编译`AOT`(Ahead of Time)。 所以搜索语法要用da 阅读全文
posted @ 2023-09-07 21:02 快乐的提千万 阅读(186) 评论(0) 推荐(0) 编辑
摘要: ### Docker 以下纯属个人理解: 1. Docker就是一种虚拟机,将环境打包成镜像,等于做了一个Linux系统裁剪。 2. 镜像就是我们安装系统的镜像,里面包含了你的代码和环境。 3. 容器就是一个虚拟机,你可以用一个镜像创建多个容器,等于就是安装了多个虚拟机。 4. 然后用docker 阅读全文
posted @ 2023-09-04 20:15 快乐的提千万 阅读(18) 评论(0) 推荐(0) 编辑
摘要: ``` 先运行docker镜像 # 进入 docker 容器 mynginx 是容器名 docker exec -i -t mynginx /bin/bash #安装vim apt-get install vim # 修改 hosts 文件 vi /etc/hosts # 添加域名解析规则 192. 阅读全文
posted @ 2023-09-04 20:13 快乐的提千万 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 每分钟接口访问次数的前200条统计 not request_uri : "/heartbeat.html" | SELECT time_series(time, '1m', '%H:%i:%s' ,'0') as time,request_uri,COUNT(*) as number GROUP B 阅读全文
posted @ 2023-03-16 10:26 快乐的提千万 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 验单返回数据格式 老版本IOS返回 { "receipt": { "original_purchase_date_pst": "2016-12-03 01:11:01 America/Los_Angeles", "purchase_date_ms": "1480756261254", "unique 阅读全文
posted @ 2023-03-16 09:46 快乐的提千万 阅读(196) 评论(0) 推荐(0) 编辑