Revamp profile README: About / Games / Blog - #1
Merged
Conversation
Agent-Logs-Url: https://github.com/cppup/cppup/sessions/d9cc29a6-d15a-49fa-b6f5-3cdf3ffbc97c Co-authored-by: cppup <13392193+cppup@users.noreply.github.com>
Agent-Logs-Url: https://github.com/cppup/cppup/sessions/d9cc29a6-d15a-49fa-b6f5-3cdf3ffbc97c Co-authored-by: cppup <13392193+cppup@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Revamp GitHub profile README for clarity and structure
Revamp profile README: About / Games / Blog
Apr 28, 2026
cppup
marked this pull request as ready for review
April 28, 2026 15:56
Review Summary by QodoRevamp profile README with clean About/Games/Blog layout
WalkthroughsDescription• Restructured README with clean About/Games/Blog sections • Removed placeholder text and joke lines for professionalism • Added Games section linking to terminal 2048 game • Introduced Blog section with comment block for future updates • Kept Ideas Collection with minor formatting improvements Diagramflowchart LR
Old["Old cluttered README<br/>with placeholders"] -- "Remove joke lines<br/>and Misc section" --> Clean["Clean three-section<br/>layout"]
Clean -- "About section" --> About["Speech Synthesis<br/>Ukulele<br/>Collaborations"]
Clean -- "Games section" --> Games["2048 Terminal<br/>GitHub Pages link"]
Clean -- "Blog section" --> Blog["Comment block<br/>for future updates"]
Clean -- "Ideas Collection" --> Ideas["GitHub annual summary<br/>with formatting fixes"]
File Changes1. README.md
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Profile README was cluttered with placeholder text, joke lines, and an unused Misc section. Replaces it with a clean, minimal three-section layout.
Changes
???,LISKISS,💒https://cppup.github.io/games/(terminal-style 2048, to be published separately)BLOG-POST-LISTcomment block with placeholder — swap inner content with one line when blog goes livexxx)Original prompt
Goal
Revamp the GitHub profile README (
cppup/cppup) to be clean, minimal ("less is more"), and include three sections: About, Games, and Blog.Current README
New README Requirements
Structure
Three clean sections: About · Games · Blog
About
Keep the spirit of the original bullets but trim to essentials. Remove placeholder/joke lines (
???,LISKISS,💒). Keep:Games
Link to
https://cppup.github.io/games/— this will be a terminal-style 2048 game hosted on GitHub Pages (repocppup/games, not yet live but the link should be there as-is).Display as a simple table or inline link. Example:
Blog
Placeholder for a future self-hosted blog. Use a simple comment block so it can be swapped out later with one line change:
Link target should be
https://cppup.github.io(placeholder, will be updated to custom domain later).Style
## Miscand???)File to modify
README.mdin the root ofcppup/cppup(branch:master)Notes
cppup/gamesrepo andcppup/light-c2048repo are both private/separate — do not reference themThe following is the prior conversation context from the user's chat exploration (may be truncated):
User: 查看我的 github 个人主页,做有趣的改造。除了介绍,还需要 blog 、 游戏板块。考虑 blog 的工作流,如何上传,如何支持把 c2048 里类似终端皮肤的 2048 游戏放进去,注意小程序相关的部分、个人敏感账号信息隐去。纯前端可以放进去,考虑到没有后端,可以先不放。能实现否规划下。注意哪些地方是 public、哪些是 private。
Assistant: 好,已经把你的仓库情况摸清楚了,现在给你完整规划。
🗺️ 总体规划
现状梳理
cppup/cppupcppup/light-c2048cppup/DayFlow🔐 Public / Private 边界
必须保持 Private 的
light-c2048整体 —— 原因:project.private.config.json里含小程序 AppID/Secret 等私密配置server/里有 Go 后端逻辑,不宜公开需要新建 Public 仓库的
cppup/games—— 存放纯前端 Web 版 2048,挂 GitHub Pagescppup/blog(或直接用cppup.github.io)—— 存放博客,挂 GitHub Pages📐 改造方案
1. Profile README 结构重设计
2. 🎮 Games 板块 —— 纯前端 Web 2048
可行性:完全可以实现,纯前端。
思路:新建
cppup/games(Public),用 HTML + CSS + JS 重写 2048 游戏(复刻light-c2048/src/里的 C 逻辑),启用 GitHub Pages,地址变成:然后在 README 里这样呈现:
注意:
light-c2048/src/*.c里的游戏核心逻辑(移动、合并、分数)完全可以用 JS 重写,不需要引用私有仓库任何代码,因此完全独立、安全。3. 📝 Blog 板块 —— 工作流方案
无后端情况下推荐:GitHub Pages + Markdown 文件工作流
方案 A:单独
cppup.github.io仓库(推荐)上传工作流:
YYYY-MM-DD-title.mdgit add + commit + push→ GitHub Actions 自动构建 Jekyll → 发布https://cppup.github.ioProfile README 里可以自动拉取最新文章(用 GitHub Actions 定时跑脚本更新 README):
方案 B:用 GitHub Issues 当博客(最简单)
不建新仓库,直接在
cppup/cppup的 Issues 里写文章,README 手动维护链接列表。没有部署压力,但 URL 不够优雅。4. 🔧 README 改造预览