wonder
|
12da7a6974
|
feat: 新增垃圾回收专题 gc-special/gc-deep-dive 50题(单选/填空/判断/多选/简答各10)
Deploy Examination / deploy (push) Successful in 4s
|
2026-09-03 14:56:31 +08:00 |
|
wonder
|
b3075350ff
|
fix: 修复复制按钮在非 HTTPS 环境下报错的问题
Deploy Examination / deploy (push) Successful in 43s
navigator.clipboard 在非安全上下文下为 undefined,
改为优先使用 Clipboard API,不可用时回退到 execCommand。
Co-Authored-By: Claude Code <noreply@anthropic.com>
|
2026-09-02 21:49:29 +08:00 |
|
wonder
|
df63692a18
|
feat: add 180 questions (90 sc + 90 fb) for networking subtopics
Deploy Examination / deploy (push) Successful in 31s
Cover 9 subtopics from the computer networking documentation:
- http-handshake: TCP/TLS/HTTP2/HTTP3 handshakes
- http-connection-cost: connection resource overhead & million concurrency
- connection-pooling: pool reuse, HTTP/1.1 vs HTTP/2
- http-keepalive: Keep-Alive principle, head-of-line blocking
- keepalive-scenarios: when to enable/disable Keep-Alive
- domain-sharding: HTTP/1.1 hack, HTTP/2 obsolescence
- cdn: edge nodes, caching, DDoS protection
- cors: same-origin policy, preflight requests
- go-build-strip: -s -w flags, binary size optimization
|
2026-09-02 21:33:09 +08:00 |
|
wonder
|
0fbdefb626
|
docs: 更新 README,删除 docs/ 目录
Deploy Examination / deploy (push) Successful in 36s
- README 重写:补充实际目录结构、当前题目清单、部署方式、设计原则
- 删除 docs/architecture.md 和 docs/requirements.md(内容已整合到 README)
|
2026-09-02 21:09:10 +08:00 |
|
wonder
|
7e226ffb6b
|
feat: 滚动时 banner 动态压缩释放更多内容空间
Deploy Examination / deploy (push) Successful in 30s
- header 改为 flex 布局驱动,滚动超过 60px 自动压缩为紧凑模式
- 压缩态:标题字号缩小、副标题隐藏、添加底部阴影
- body 改为 flex column 布局,去掉硬编码高度计算
- 去除 ResizeObserver 反馈循环,消除滚动抖动
Co-Authored-By: Claude Code <noreply@anthropic.com>
|
2026-09-02 20:27:47 +08:00 |
|
wonder
|
3ee95adfb0
|
fix: 修复右栏滚动后底部空白的布局问题
Deploy Examination / deploy (push) Successful in 27s
将 .app 容器从 min-height 改为 height,使左右两栏严格限制在视口内独立滚动,
移除 .main 多余的 max-height 约束。
Co-Authored-By: Claude Code <noreply@anthropic.com>
|
2026-09-02 20:19:18 +08:00 |
|
wonder
|
890d75cf00
|
feat: 添加复制题目提示词与导入页 AI 生成提示词模板
Deploy Examination / deploy (push) Successful in 22s
- 题目卡片新增「📋 复制题目」按钮,按题型组织提示词复制到剪贴板
- 导入弹窗新增可折叠的 AI 生成提示词区域,支持 7 种题型切换与复制
- 更新 architecture.md 和 requirements.md 文档
Co-Authored-By: Claude Code <noreply@anthropic.com>
|
2026-09-02 20:12:32 +08:00 |
|
wonder
|
71ceeaf704
|
feat: 添加 Gitea Actions 自动部署流水线
Deploy Examination / deploy (push) Successful in 24s
- nginx:alpine 托管静态站点
- push 到 main 自动构建并部署到 30000 端口
|
2026-09-02 19:40:42 +08:00 |
|
wonder
|
b567cca425
|
refactor: 目录结构增加 Topic 层级 topics/qunar-ai-fullstack/
子主题目录从 topics/{slug} 移至 topics/qunar-ai-fullstack/{slug}
前端 fetch 路径改用 subtopic.path 字段
Co-Authored-By: Claude Code <noreply@anthropic.com>
|
2026-09-02 19:32:58 +08:00 |
|
wonder
|
10a464eea4
|
feat: 添加 Topic-SubTopic 层级结构与 Accordion 侧边栏
- topics/index.json 重构为嵌套模型(topic → subtopics)
- 侧边栏改为 Accordion 交互:默认折叠、同时只展开一个
- 展开/折叠状态通过 localStorage 持久化
- 更新架构文档同步数据模型变更
Co-Authored-By: Claude Code <noreply@anthropic.com>
|
2026-09-02 19:10:14 +08:00 |
|
wonder
|
273b88219a
|
feat: 前端优化 - 明暗模式、题型Tab分隔、移除统计
- 支持明暗主题切换,用户选择持久化到 localStorage
- 题型通过 Tab 按钮分隔展示,支持过滤
- 移除正确/错误统计和进度条
- 题型颜色通过 CSS 变量集中管理(--type-*)
- JS 抽取 QUESTION_TYPES 常量,便于扩展
- 更新架构文档反映上述变更
Co-Authored-By: Claude Code <noreply@anthropic.com>
|
2026-09-02 18:40:50 +08:00 |
|
wonder
|
d3cba0e23c
|
feat: 初始化 CS 知识应试强化系统
- 纯 HTML/CSS/JS 单页应用,支持填空题和选择题交互
- 5 个主题共 100 道题(GC/JVM、AI 结构化输出、记忆管理、幻觉、工具链)
- 按主题组织、按题型拆分的 JSON 数据结构
- JSON Schema 校验 + 提示词模板 + 题型模板
- 自定义导入功能(粘贴/上传 JSON)
- 项目文档(需求 + 架构)
Co-Authored-By: Claude Code <noreply@anthropic.com>
|
2026-09-02 18:22:20 +08:00 |
|
wonder
|
cf589b12f4
|
Initial commit
|
2026-09-02 17:34:15 +08:00 |
|