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

推荐订阅源

B
Blog
The Cloudflare Blog
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
L
LangChain Blog
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
I
InfoQ
博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
云风的 BLOG
云风的 BLOG
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
H
Help Net Security
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
GitHub - zozo123/peter-gt-your-org: Rank your GitHub R&D ...
2026-05-18 · via Hacker News

How Many Peters?

Rank your GitHub R&D org against @steipete in one absurd, useful unit: the Peter.

A Next.js demo that takes verified 2026 YTD GitHub activity (commits, PRs, issues) and prices it in Peters — where 1 Peter = @steipete's YTD output as a solo developer. It's part benchmark, part roast, part trust-building exercise about what GitHub-visible metrics can and can't say about an engineering org.

Deploy with Vercel License: MIT Next.js 15 React 19 Tailwind 4

Hero


What you get

Type any org slug (supabase, microsoft, awslabs, vercel, …) and the page renders:

  • Total Peters — your YTD verified GitHub motion ÷ Peter's.
  • Peter Density — Peters per active contributor. Keeps big orgs honest.
  • Momentum — projected year-end totals at current pace.
  • Cohort rank — you're compared against orgs your size, not just the whole field.
  • A diagnosis paragraph — a roast/observation about whether you out-commit Peter, out-collaborate Peter, or quietly lose to Peter on density.

Org leaderboard

Public R&D ranking

Side-by-side comparison

Comparison strip

Share card + category breakdown + methodology

Share, category, trust

Mobile

Mobile view


Quickstart

git clone https://github.com/zozo123/peter-gt-your-org.git
cd peter-gt-your-org
npm install
npm run dev

Open http://localhost:3000. No env vars required — the public preview ships with verified 2026 YTD snapshots for Supabase, Microsoft, Google, AWS, Vercel, Linear and a couple of demo orgs.


Connecting a real org (private coverage)

Public mode counts only what's GitHub-visible. To include private repos for an org you have access to, hand the Next.js server a token:

GITHUB_TOKEN="$(gh auth token)" npm run dev

The token is read server-side only — it is never sent to the browser. It's used to call GET /search/commits, GET /search/issues and GET /orgs/:org against the GitHub REST API.

Environment variables

Var Required What it does
GITHUB_TOKEN (or GH_TOKEN) for live mode Server-only token used to call GitHub Search + Orgs APIs.
GITHUB_ORG for live mode Org slug to live-fetch (e.g. vercel). Added to the leaderboard as a live row.
GITHUB_ORG_ACTIVE_CONTRIBUTORS optional Denominator for Peter Density. If unset, density isn't shown for the live org.
GITHUB_ORG_REPOSITORIES optional Override the repo count surfaced in the trust panel.
GITHUB_ORG_DISPLAY_NAME optional Friendly name shown in the UI. Defaults to the GitHub org's name.

Copy .env.example to .env.local to set these locally.


Methodology

  • Window: 2026 YTD — everything since 2026-01-01.
  • What counts: verified commits, pull requests, and issues created in the window. Reviews and other signals are folded in for orgs where the data is available.
  • Peter baseline: @steipete's public GitHub activity over the same window, treated as 1.0 Peters.
  • Tiers:
    • < 0.1 — GitHub Intern Energy
    • 0.1 – 0.5 — Warming Up
    • 0.5 – 0.9 — Dangerous
    • 0.9 – 1.1 — Peter-Class
    • 1.1 – 2.0 — More Than One Peter
    • 2.0 – 5.0 — Peter Factory
    • ≥ 5.0 — Industrialized Peter
  • What this is not: a productivity score, a hiring signal, a promotion artifact, or a fair comparison across companies of wildly different sizes. The Peter Density metric exists specifically to flag the "we have 5,000 engineers, so of course we out-commit one guy" failure mode.

Deploy

Click the Deploy with Vercel button at the top of this README, or:

npx vercel

Next.js 15 auto-detects on Vercel — no vercel.json needed. To enable private-org coverage in production, set GITHUB_TOKEN in your Vercel project's environment variables.


Tech

  • Next.js 15.5 (App Router, Turbopack)
  • React 19
  • Tailwind CSS v4
  • TypeScript 5
  • No database, no auth, no client-side secrets — the GitHub token (when present) is read on the server and never serialized to the client.

Project layout

app/             Next.js App Router entry + global styles
components/      All UI (Hero, Leaderboard, ComparisonStrip, ...)
lib/
  liveGithub.ts      Server-only GitHub API calls (token+org → live row)
  mockSnapshots.ts   Public-preview fixtures
  peterMath.ts       Peter Index / Density / tiering math
  types.ts           Snapshot / fixture types
docs/screens/    README screenshots

License

MIT — see LICENSE.


Built as a riff on @steipete's legendary solo-developer commit graphs. Peter, if you're reading this: you're the unit. Sorry.