摘要: 体验 CPRet 立即访问我们的在线演示平台,亲身体验 CPRet 强大的算法题检索功能: 在线体验: https://www.cpret.online/ 欢迎大家把这个网站推荐给同学/老师。 很高兴向大家介绍我的本科毕业设计项目——CPRet,一个专为编程竞赛和算法题目设计的智能检索工具,目前总搜 阅读全文
posted @ 2025-07-18 03:23 Cold_Chair 阅读(843) 评论(4) 推荐(4)
摘要: 最近呢因专业课程到 MT 实习,入职的时候发台办公笔记本,可以在 Macbook 和 Surface 之间选,本人之前从未使用过 Macbook 产品,为了体验一下,就选了 Macbook 而非 Surface,在这里记录一下想法。 本人之前的生产力工具: 台式机:无 笔记本:ROG 幻15 202 阅读全文
posted @ 2024-07-06 20:58 Cold_Chair 阅读(377) 评论(0) 推荐(1)
摘要: 闲来无事整理下六年 OI 时期出过的还行的题——一位自认出题能力>>做题能力的 OIer 1. 约数国王(2016年,初一) 用途:2016年东莞市小学生邀请赛 链接:https://gmoj.net/junior/#main/show/2043 题目大意: 定义一个数 \(x\) 是约数国王,当且 阅读全文
posted @ 2024-05-29 01:01 Cold_Chair 阅读(442) 评论(0) 推荐(0)
摘要: 在做 LLM-as-a-Judge 的多并发请求时,我一开始以为自己已经把并发开起来了:调度层允许同一轮内多个比较并发、同一比较内多个模型也并发,请求端看起来也是 asyncio。但实际跑下来很奇怪,单模型明明配置了 16 并发,API 后台看到的 RPM 却只有 8 左右,一轮常常要十分钟以上。 阅读全文
posted @ 2026-05-07 13:30 Cold_Chair 阅读(5) 评论(0) 推荐(0)
摘要: invalid_encrypted_content The encrypted content gAAA...GEUF could not be verified. Reason: Encrypted content could not be decrypted or parsed. 原因:消息开头 阅读全文
posted @ 2026-05-03 20:59 Cold_Chair 阅读(98) 评论(0) 推荐(0)
摘要: 通过任意一种方式安装好 codex 以后(cli / app / plugin),~ 下会有一个 .codex 目录,不同方式安装的 codex 会共享这个配置目录。 参考:https://zhuanlan.zhihu.com/p/2025255230749590320 在 ~/.codex/con 阅读全文
posted @ 2026-04-12 19:48 Cold_Chair 阅读(2150) 评论(0) 推荐(0)
摘要: 折腾了一圈,分享一套我目前最顺手的论文构建方案。核心逻辑:专业工具管同步,AI 管脏活累活。 1. 码字环境:Overleaf + Dropbox + Cursor 配置: 利用 Dropbox 同步 Overleaf 到本地,用 Cursor 直接编辑。 爽点: 告别网页端卡顿。Cursor 处理 阅读全文
posted @ 2026-03-26 01:28 Cold_Chair 阅读(57) 评论(1) 推荐(0)
摘要: docker 安装: curl -fsSL https://get.docker.com -o get-docker.sh && sudo sh get-docker.sh 添加用户权限: sudo usermod -aG docker $USER newgrp docker docker 换镜像源 阅读全文
posted @ 2026-03-20 19:33 Cold_Chair 阅读(12) 评论(0) 推荐(0)
摘要: 目标:配置一个每日arxiv机器人发文档到飞书群里 参考: https://bytedance.larkoffice.com/docx/MFK7dDFLFoVlOGxWCv5cTXKmnMh model 配置: 注意点:model cost 的单位是 xx/1M token 例如 gpt 5.4: 阅读全文
posted @ 2026-03-12 00:46 Cold_Chair 阅读(122) 评论(0) 推荐(0)
摘要: If you encounter a "400 Bad Request" or "Header Field Too Long" error while logging into Zoom via CUHK SSO, it is likely due to corrupted or oversized 阅读全文
posted @ 2026-02-27 17:59 Cold_Chair 阅读(14) 评论(0) 推荐(0)
摘要: https://github.com/astral-sh/uv 伟大无需多言 阅读全文
posted @ 2026-02-08 02:39 Cold_Chair 阅读(14) 评论(0) 推荐(1)
摘要: import nltk import os conda_path = os.path.join(os.environ["CONDA_PREFIX"], "nltk_data") nltk.download('wordnet', download_dir=conda_path) print(nltk. 阅读全文
posted @ 2025-12-16 22:53 Cold_Chair 阅读(23) 评论(0) 推荐(0)
摘要: 参考:https://docs.vllm.ai/en/latest/getting_started/installation/gpu/#pre-built-wheels 例如(我的是 cu126 驱动的 H100): pip install vllm --extra-index-url https: 阅读全文
posted @ 2025-12-16 00:45 Cold_Chair 阅读(284) 评论(0) 推荐(0)