摘要:
简介 监控 HTTP(s) / TCP / HTTP(s) 关键字 / HTTP(s) Json 查询 / Ping / DNS 记录 / 推送 / Steam 游戏服务器 / Docker 容器的正常运行时间 通过 Telegram、Discord、Gotify、Slack、Pushover、电子 阅读全文
摘要:
安装 LM Studio 官网: https://lmstudio.ai/ 下载模型:Meta-Llaa-3-8B-Instruet.Q4_KM.gguf 下载地址: https://cdn-lfs-us-1.huggingface.co/repos/79/f2/79f21025e377180e4e 阅读全文
摘要:
背景 由于原生的apscheduler仅支持redis单节点连接,不支持redis集群,所以本人基于原生的RedisJobStore自己修改了一个专门用于连接redis集群的类RedisClusterJobStore 修改点有以下内容: 修改类名RedisJobStore为RedisClusterJ 阅读全文
摘要:
指定具体时间执行 package main import ( "fmt" "time" ) func main() { // 指定执行时间为 2023-11-29 00:00:00 executionTime := time.Date(2023, time.November, 29, 0, 0, 0 阅读全文
摘要:
package pkg import ( "fmt" "log" "log/slog" "os" "time" ) var controlLogger *slog.Logger var fileLogger *slog.Logger const ( timeFormat = "2006-01-02" 阅读全文
摘要:
Python学习笔记-Schema数据结构及类型校验 使用 schema 库来执行数据结构的校验。schema 是一个简单而强大的库,用于定义和验证 Python 数据结构的约束 And And 代表必选,数据结构里必须包含这个 schema,如下方声明了 name ,则代表这个name必须存在与字 阅读全文
摘要:
Centos 7 安装Mongodb社区版 准备环境 操作系统:Centos 7 安装包:https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-7.0.3.tgz windows 可视化工具:Studio 3T(原robot 3t) 阅读全文
摘要:
Centos 7 编译安装Python 环境准备 操作系统:Centos 7 版本:Python 3.12 下载 wget https://www.python.org/ftp/python/3.12.0/Python-3.12.0.tgz 编译安装 # 安装依赖 yum -y install gc 阅读全文
摘要:
Centos 7 安装Mongodb社区版 准备环境 操作系统:Centos 7 安装包:https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-7.0.3.tgz windows 可视化工具:Studio 3T(原robot 3t) 阅读全文
摘要:
准备工作 操作系统:Centos 7.6 容器环境:Docker 所需工具:kubectl,minikube 安装Docker # 安装yum工具包 yum -y install yum-utils # 添加yum源 yum-config-manager --add-repo http://mirr 阅读全文