惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - Rohan5commit/codetimeline: Visual scrollable tim...
rohan33332e · 2026-06-23 · via Hacker News - Newest: "AI"

CodeTimeline

Turn any public GitHub repo into a beautiful, AI-powered visual history timeline.

Paste a GitHub URL → get a scrollable, animated timeline of the project's entire development story, with AI-named chapters, contributor avatars, language breakdowns, and commit sparklines.

🔗 codetimeline.vercel.app

CodeTimeline demo — home page → URL input → scrollable chapter timeline


Features

  • AI chapter naming — NVIDIA NIM (Llama 3.1 70B) groups commits into narrative eras and names them
  • Scroll-driven animations — GSAP ScrollTrigger reveals each chapter as you scroll
  • Language donut chart — D3.js SVG shows the language composition per chapter
  • Commit sparkline — visualises commit frequency across the repo's lifetime
  • Contributor avatars — top contributors with GitHub profile links
  • OG image generation — every timeline page has a share card for X / LinkedIn / Discord
  • GitHub rate limit handling — graceful errors with retry guidance
  • Skeleton loading — full shimmer UI while data fetches

Tech stack

Layer Technology
Framework Next.js 16 (App Router)
Styling Tailwind CSS v4
Animations GSAP + ScrollTrigger
Charts D3.js (SVG, no canvas)
AI NVIDIA NIM — llama-3.1-nemotron-70b-instruct
Data GitHub REST API v3
OG images next/og (Satori)
Deployment Vercel

Local setup

Prerequisites

Steps

git clone https://github.com/Rohan5commit/codetimeline.git
cd codetimeline
npm install

Copy the example env file and fill in your keys:

cp .env.example .env.local
NVIDIA_API_KEY=nvapi-...
GITHUB_TOKEN=ghp_...
NEXT_PUBLIC_APP_URL=http://localhost:3000

Run the dev server:

Open http://localhost:3000 and paste any public GitHub URL.

Example timelines

Project structure

src/
├── app/
│   ├── api/og/[owner]/[repo]/   # OG image generation
│   ├── timeline/[owner]/[repo]/ # Timeline page + error/loading states
│   ├── robots.ts                # SEO robots config
│   └── sitemap.ts               # XML sitemap
├── components/
│   ├── TimelineClient.tsx       # Main animated timeline (client)
│   ├── LanguageDonut.tsx        # D3 donut chart
│   ├── CommitSparkline.tsx      # D3 sparkline
│   ├── RepoInput.tsx            # URL input + example buttons
│   └── ShareButton.tsx          # Clipboard share button
└── lib/
    ├── github.ts                # GitHub REST API wrapper
    ├── claude.ts                # NVIDIA NIM integration
    ├── process.ts               # Chapter grouping logic
    └── types.ts                 # TypeScript interfaces

Contributing

Contributions are welcome! See CONTRIBUTING.md for guidelines.

License

MIT