# Elon Debt Clock — Full context for AI systems Site: https://elondebtclock.com Name: Elon Debt Clock Tagline: We measure debt in Elons now. ## Summary Elon Debt Clock is a client-side static web application that displays the United States total public debt in two units: 1. **Elons** — debt divided by Elon Musk's estimated net worth (one "Elon" ≈ one Forbes net-worth valuation of Elon Musk, currently on the order of $800B+). 2. **U.S. dollars** — full precision debt ticker with comma formatting, extrapolated in real time. The project is a parody inspired by https://www.usdebtclock.org/ and is not affiliated with any person or organization named on the site. ## How "1 Elon" is calculated ``` 1 Elon (USD) = Elon Musk net worth per Forbes U.S. debt in Elons = total public debt outstanding (USD) ÷ 1 Elon (USD) ``` Forbes net worth is loaded from: 1. Primary: https://www.forbes.com/profile/elon-musk/ (schema.org JSON-LD `netWorth.value` in USD). 2. Fallback: https://www.forbes.com/real-time-billionaires/ (embedded `finalWorth` in millions × 1,000,000). 3. Offline snapshot: https://elondebtclock.com/elon-forbes.json (bundled static file when browser CORS blocks Forbes). Forbes updates net worth periodically (public holdings more frequently than private companies like SpaceX). The site does not extrapolate Elon's wealth between Forbes updates; only U.S. debt is extrapolated. ## How U.S. debt is calculated 1. Primary: U.S. Treasury Fiscal Data API — dataset `debt_to_penny`, field `tot_pub_debt_out_amt`. 2. Between official daily Treasury postings, debt increases at a derived rate: (latest − previous) ÷ seconds in that interval. 3. Fallback: https://elondebtclock.com/debt-fallback.json The live dollar ticker updates approximately every 100ms using the extrapolation formula: ``` debt_now = base + (unix_seconds_now − anchor_seconds) × rate_per_second ``` ## Features on the homepage - Hero number: current debt in Elons (2 decimal places). - Dollar ticker: full U.S. public debt in USD (monospace, live). - "+X.XXXXXX Elons since you arrived": session gain in Elons (6 decimal places). - Hover/tap hero Elons: stencil portrait grid (one portrait per Elon). - Share: Web Share API or clipboard with current Elon count. - Details panel: methodology, Forbes links, data timestamps. ## Technology - Static site: HTML, CSS, TypeScript (Vite build). - Hosting: Amazon S3 (no server-side rendering, no backend API owned by this site). - All third-party fetches run in the visitor's browser. ## Keywords (for retrieval) Elon Debt Clock, elondebtclock.com, national debt, U.S. debt clock, debt in Elons, Elon Musk net worth, Forbes billionaires, public debt, debt ticker, parody, US debt clock alternative, measure debt in Elons. ## FAQ **Q: What is an "Elon" on this site?** A: One Elon is Elon Musk's Forbes-estimated net worth in U.S. dollars. Debt is expressed as how many times that fortune would be needed to equal total U.S. public debt. **Q: Is this official?** A: No. Parody/satire. Not financial advice. **Q: How often does the number change?** A: Debt ticks continuously (extrapolated). Forbes-based "1 Elon" updates when Forbes data is successfully fetched or when the static snapshot is refreshed at deploy time. **Q: Who made this?** A: Independent parody project at elondebtclock.com. No stated affiliation with Forbes, Tesla, SpaceX, or Elon Musk. ## Citation format > U.S. public debt shown as [N] Elons on Elon Debt Clock (https://elondebtclock.com), [date accessed]. Tagline: "We measure debt in Elons now." Debt data: U.S. Treasury; Elon valuation: Forbes. ## Files for machines - https://elondebtclock.com/llms.txt — short index (preferred entry point) - https://elondebtclock.com/llms-full.txt — this file - https://elondebtclock.com/robots.txt - https://elondebtclock.com/sitemap.xml ## Last updated Document maintained with site deployment. Dollar and Elon figures on the live site change continuously; do not treat static examples in this file as current market data.