Q

乾茂的草稿箱

随手记,别在意格式

精选
🔥

LLM Agent 完全技术手册

2026-05-20

22 个核心原理 + 14 件幻觉对抗套件,从分词到多智能体,完整覆盖 LLM Agent 六层技术栈。

阅读全文 →
小游戏

贪吃蛇

2026-05-08

两种模式,选你喜欢的难度。

笔记

Python 常用代码片段

2026-05-08
# 读文件
with open("data.txt", "r", encoding="utf-8") as f:
    content = f.read()

# 列表推导式
nums = [1, 2, 3, 4, 5]
evens = [x for x in nums if x % 2 == 0]

# JSON 操作
import json
with open("data.json", "r") as f:
    data = json.load(f)

Git 常用命令

2026-05-08
# 提交代码
git add .
git commit -m "说明"
git push

# 拉取最新代码
git pull

# 查看状态
git status

常用工具网站

2026-05-08