Skip to content

Commit 342943b

Browse files
yayajjiangclaude
andcommitted
feat(resources): add productivity tools, more Twitter accounts, fix names
- Fix 罗浮力 → 罗福莉 (@_LuoFuli) - Remove PaperWeekly (link was invalid) - Add 新智元 WeChat public account - Add Twitter: @deepseek_ai, @karpathy, @ylecun, @DrJimFan, @fchollet, @dotey - Add new "AI Assistants & Productivity" section: Claude/Claude Code, ChatGPT, Cursor, Obsidian, Notion, Zotero, Elicit - Fix papers.ts DeepSeek V4 description (remove hallucinated Huawei/97% NiAH claims) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3b93fd5 commit 342943b

2 files changed

Lines changed: 36 additions & 6 deletions

File tree

src/app/resources/page.tsx

Lines changed: 35 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ interface Resource {
77
desc: string;
88
descZh: string;
99
href: string;
10-
type: "youtube" | "bilibili" | "xiaohongshu" | "wechat" | "newsletter" | "podcast" | "blog" | "tool" | "bookmark" | "twitter" | "github";
10+
type: "youtube" | "bilibili" | "xiaohongshu" | "wechat" | "newsletter" | "podcast" | "blog" | "tool" | "bookmark" | "twitter" | "github" | "productivity";
1111
tags?: string[];
1212
recommended?: boolean;
1313
note?: string;
@@ -58,11 +58,23 @@ const resources: Resource[] = [
5858
desc: "Top Chinese AI media. Fastest news coverage, industry updates.", descZh: "顶级中文 AI 媒体。最快的新闻报道,行业动态。", tags: ["News", "Chinese"] },
5959
{ name: "量子位", href: "https://www.qbitai.com", type: "wechat",
6060
desc: "Chinese AI news + analysis. Covers both research papers and product launches.", descZh: "中文 AI 新闻 + 分析。同时报道研究论文和产品发布。", tags: ["News", "Chinese"] },
61-
{ name: "PaperWeekly", href: "https://www.paperweekly.site", type: "wechat",
62-
desc: "Chinese ML paper summaries and reading groups. Community-driven.", descZh: "中文 ML 论文摘要和读书会。社区驱动。", tags: ["Paper Reading", "Chinese"], recommended: true },
61+
{ name: "新智元", href: "https://www.ainews.com.cn", type: "wechat",
62+
desc: "Major Chinese AI media outlet. Deep coverage of AI research, industry, and policy — especially strong on frontier model releases.", descZh: "重要中文 AI 媒体。深度报道 AI 研究、行业和政策 — 对前沿模型发布覆盖尤为深入。", tags: ["News", "Chinese"], recommended: true },
6363
// X / Twitter
64-
{ name: "罗浮力 (@_LuoFuli)", href: "https://x.com/_LuoFuli", type: "twitter",
65-
desc: "Sharp takes on AI industry trends, startup moves, and product launches from a Chinese tech insider perspective.", descZh: "从中文科技圈视角对 AI 行业动态、创业动向和产品发布的精准点评。", tags: ["Chinese", "Industry", "X"] },
64+
{ name: "DeepSeek (@deepseek_ai)", href: "https://x.com/deepseek_ai", type: "twitter",
65+
desc: "Official DeepSeek account. First-hand announcements of model releases, technical reports, and API updates.", descZh: "DeepSeek 官方账号。第一手的模型发布、技术报告和 API 更新公告。", tags: ["Official", "Research"], recommended: true },
66+
{ name: "Andrej Karpathy (@karpathy)", href: "https://x.com/karpathy", type: "twitter",
67+
desc: "Deep takes on LLMs, AI education, and the future of software. Essential follow for anyone serious about ML.", descZh: "对 LLM、AI 教育和软件未来的深度思考。认真学 ML 的人必关注。", recommended: true, tags: ["LLM", "Education"] },
68+
{ name: "Yann LeCun (@ylecun)", href: "https://x.com/ylecun", type: "twitter",
69+
desc: "Meta AI Chief Scientist. Contrarian views on AGI, strong opinions on architecture and benchmarks. Always worth reading.", descZh: "Meta AI 首席科学家。对 AGI 的反主流观点,对架构和基准的独到见解。", tags: ["Research", "Industry"] },
70+
{ name: "Jim Fan (@drjimfan)", href: "https://x.com/drjimfan", type: "twitter",
71+
desc: "NVIDIA AI researcher. Excellent explainer threads on embodied AI, agents, and frontier model capabilities.", descZh: "英伟达 AI 研究员。关于具身 AI、智能体和前沿模型能力的优质解说帖。", recommended: true, tags: ["Agents", "Embodied AI"] },
72+
{ name: "François Chollet (@fchollet)", href: "https://x.com/fchollet", type: "twitter",
73+
desc: "Keras creator, ARC-AGI benchmark author. Sharp takes on reasoning, generalization, and what intelligence actually means.", descZh: "Keras 创始人,ARC-AGI 基准作者。对推理、泛化和智能本质的深刻见解。", tags: ["Research", "AGI"] },
74+
{ name: "宝玉xp (@dotey)", href: "https://x.com/dotey", type: "twitter",
75+
desc: "High-quality Chinese translations of key AI papers, tweets, and threads. Essential bridge between English AI discourse and Chinese community.", descZh: "高质量中文翻译 AI 论文、推文和长帖。英文 AI 圈和中文社区之间的重要桥梁。", recommended: true, tags: ["Chinese", "Translation"] },
76+
{ name: "罗福莉 (@_LuoFuli)", href: "https://x.com/_LuoFuli", type: "twitter",
77+
desc: "Sharp takes on AI industry trends, startup moves, and product launches from a Chinese tech insider perspective.", descZh: "从中文科技圈视角对 AI 行业动态、创业动向和产品发布的精准点评。", tags: ["Chinese", "Industry"] },
6678
// Blogs — International
6779
{ name: "Lil'Log (Lilian Weng, OpenAI)", href: "https://lilianweng.github.io", type: "blog",
6880
desc: "Deep technical posts on RL, diffusion, and attention. The best technical summaries of entire subfields.", descZh: "关于 RL、扩散模型和注意力机制的深度技术文章。整个子领域最好的技术摘要。", recommended: true, tags: ["Survey", "LLM", "RL"] },
@@ -114,6 +126,22 @@ const resources: Resource[] = [
114126
descZh: "从零理解 LLM 训练,不再黑盒训练 — 通过对照实验彻底理解 LLM 的每个设计选择。",
115127
recommended: true, tags: ["Chinese", "From Scratch", "LLM", "Hands-on"] },
116128

129+
// Productivity
130+
{ name: "Claude / Claude Code", href: "https://claude.ai", type: "productivity",
131+
desc: "Anthropic's AI assistant and Claude Code CLI. Best-in-class for reading papers, writing code, and research workflows. Claude Code integrates directly into your terminal.", descZh: "Anthropic 的 AI 助手和 Claude Code CLI。阅读论文、编写代码和研究工作流的最佳选择。Claude Code 直接集成到终端。", recommended: true, tags: ["AI Assistant", "Coding", "Research"] },
132+
{ name: "ChatGPT", href: "https://chat.openai.com", type: "productivity",
133+
desc: "OpenAI's flagship AI assistant. Strong for brainstorming, drafting, and code explanation. GPT-4o supports multimodal input.", descZh: "OpenAI 的旗舰 AI 助手。擅长头脑风暴、起草和代码解释。GPT-4o 支持多模态输入。", tags: ["AI Assistant", "Multimodal"] },
134+
{ name: "Cursor", href: "https://cursor.sh", type: "productivity",
135+
desc: "AI-native IDE built on VS Code. Fastest way to navigate, edit, and understand large codebases with AI assistance.", descZh: "基于 VS Code 的 AI 原生 IDE。利用 AI 辅助浏览、编辑和理解大型代码库的最快方式。", recommended: true, tags: ["Coding", "IDE"] },
136+
{ name: "Obsidian", href: "https://obsidian.md", type: "productivity",
137+
desc: "Local-first knowledge management with Markdown and bidirectional links. Ideal for building a personal research knowledge base and linking paper notes.", descZh: "基于 Markdown 和双向链接的本地优先知识管理工具。适合构建个人研究知识库和关联论文笔记。", recommended: true, tags: ["Note-taking", "PKM", "Research"] },
138+
{ name: "Notion", href: "https://notion.so", type: "productivity",
139+
desc: "All-in-one workspace for notes, databases, and project management. Useful for organizing reading lists, research projects, and team collaboration.", descZh: "集笔记、数据库和项目管理于一体的工作空间。适合整理阅读清单、科研项目和团队协作。", tags: ["Note-taking", "Collaboration"] },
140+
{ name: "Zotero", href: "https://www.zotero.org", type: "productivity",
141+
desc: "Free, open-source reference manager designed for researchers. Automatically extracts metadata from PDFs, organizes citations, and syncs across devices.", descZh: "免费开源的文献管理工具,专为研究者设计。自动从 PDF 提取元数据,整理引用,多设备同步。", recommended: true, tags: ["Reference Management", "Research", "Free"] },
142+
{ name: "Elicit", href: "https://elicit.com", type: "productivity",
143+
desc: "AI research assistant for finding, summarizing, and synthesizing papers. Useful for literature reviews.", descZh: "AI 研究助手,用于查找、总结和综合论文。适合文献综述。", tags: ["AI Assistant", "Research", "Literature Review"] },
144+
117145
// GitHub
118146
{ name: "TransformerVisualizer", href: "https://github.com/SingularGuyLeBorn/TransformerVisualizer", type: "github",
119147
desc: "Interactive visual walkthrough of the Transformer architecture — attention heads, positional encoding, encoder-decoder flow, built from scratch.",
@@ -145,6 +173,7 @@ const typeConfig: Record<Resource["type"], { label: string; labelZh: string; ico
145173
bookmark: { label: "Bookmarks", labelZh: "收藏", icon: "🔖", color: "bg-amber-100 text-amber-700" },
146174
twitter: { label: "X / Twitter", labelZh: "X / Twitter", icon: "𝕏", color: "bg-slate-100 text-slate-700" },
147175
github: { label: "GitHub", labelZh: "GitHub", icon: "⌥", color: "bg-zinc-100 text-zinc-700" },
176+
productivity: { label: "Productivity", labelZh: "效率工具", icon: "⚡", color: "bg-violet-100 text-violet-700" },
148177
};
149178

150179
const sections: { type: Resource["type"] | Resource["type"][]; title: string; titleZh: string }[] = [
@@ -155,6 +184,7 @@ const sections: { type: Resource["type"] | Resource["type"][]; title: string; ti
155184
{ type: ["wechat", "blog", "twitter"], title: "Blogs, WeChat & X", titleZh: "博客 & 公众号 & X" },
156185
{ type: "podcast", title: "Podcasts", titleZh: "播客" },
157186
{ type: "tool", title: "Tools for Learning & Visualization", titleZh: "学习工具 & 可视化" },
187+
{ type: "productivity", title: "AI Assistants & Productivity", titleZh: "AI 助手 & 效率工具" },
158188
{ type: "github", title: "GitHub & Open Source", titleZh: "GitHub & 开源项目" },
159189
{ type: "bookmark", title: "Bookmarks & Favorites", titleZh: "收藏" },
160190
];

src/lib/papers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const sections: Section[] = [
3131
venue: "Technical Report",
3232
tags: ["MoE", "Efficient Attention", "Long Context", "Code"],
3333
description:
34-
"DeepSeek-V4-Pro: 1.6T-parameter MoE model (49B active) with three key innovations — Compressed Sparse Attention (10% KV cache vs V3), Engram conditional memory (97% NiAH at 1M tokens), and manifold-constrained hyper-connections for stable trillion-scale training. Reaches ~81% SWE-bench Verified on Huawei Ascend chips.",
34+
"DeepSeek-V4-Pro: 1.6T-parameter MoE model (49B active) pre-trained on 32T+ tokens. Innovations: CSA/HCA compressed attention (10% KV cache vs V3.2), mHC Birkhoff-constrained residual connections, and Muon optimizer. 80.6% SWE Verified, 93.5 LiveCodeBench, Codeforces 3206 (Think Max). MIT license, open weights.",
3535
arxiv: "https://huggingface.co/deepseek-ai/DeepSeek-V4-Pro/blob/main/DeepSeek_V4.pdf",
3636
},
3737
],

0 commit comments

Comments
 (0)