Jargon File

The Jargon File is a glossary and usage dictionary of slang used by computer programmers. The original Jargon File was a collection of terms from technical cultures such as the MIT AI Lab, the Stanford AI Lab and others of the old ARPANET AI/LISP/PDP-10 communities. wikipedia

We translated our version from html. github

pages/jargon-file

8/4/26 Initial version 8/6/26 Links 8/6/26 Backlinks 8/7/26 External Links 8/7/26 Multiple Paragraphs 8/7/26 Trim Titles ?? Significant Trailing -

2000 New Slugs Indexed When Jargon File Publish

Let's look at the sitemap to see if we have all of the pages we want and vice versa. So far I see punctuation errors.

CLICK NEIGHBORS jargon CODE check CLICK POPUP state CLICK CODE format missing PREVIEW synopsis items CLICK CODE format surplus PREVIEW synopsis items

export function check() { const infos = this.neighborhood.filter(info => info.slug != 'missing-jargon-file-links') const h = (set, info) => set.add(info.slug) const l = info => Object.keys(info.links??{}) const w = (set, info) => set.union(new Set(l(info))) const have = infos.reduce(h,new Set()) const want = infos.reduce(w,new Set()) this.missing = [...want.difference(have)].sort() this.surplus = [...have.difference(want)].sort() return `have ${have.size}, want ${want.size}` }

export function format(kind) { const stuff = this[kind] const links = stuff .map(l => `${l}`) .join('<br>') this.items = [ `<h1>${kind}</h1>`, `<table><tr><td>${links}</table>` ] return stuff.length }