What Is This App?
A satirical academic portal presented as a fictional institution dedicated to cataloguing meaninglessness. "Institutum Nihilitatis" (Latin: Institution of Nothingness) presents itself as a rigorous scholarly apparatus — complete with registrant profiles, course curricula, a research archive, institutional metrics, and a diploma ceremony — all framed around absurdist nihilist philosophy.
The aesthetic is delicate and romantic: falling cherry blossoms, Cormorant Garamond typography, blush-and-sage palette, a gold diploma seal. The contrast between the whimsical visual design and the deadpan existential content is the central joke.
App Behavior
- ❀A spinner loading screen ("Loading the void…") appears while the JSON is fetched; if the fetch fails, a hard-coded fallback data object is used silently — so the app always renders successfully.
- ❀Cherry blossom particles animate continuously across the full viewport via a canvas element — hand-drawn bezier petal shapes in pink/blush tones that drift and wobble naturally.
- ❀A sticky top navigation bar links to five sections: Registrant, Curriculum, Research, Metrics, and Diploma. Active nav links highlight automatically via IntersectionObserver as you scroll.
- ❀Registrant section shows a scholar profile card with avatar, biographical abstract ("A provisional arrangement of atoms temporarily persuaded of its own significance"), and status pills.
- ❀Curriculum section renders core seminars (NIH-101: "Foundations of Metaphysical Futility", −3 credits) and electives in styled course cards with assigned readings.
- ❀Research Archive lists published papers with abstracts and a peer review box showing 0 reviewers, consensus noted as "Silence, interpreted charitably as agreement."
- ❀Metrics section shows four stats (312 aspirations recorded, 311 retracted, 1 remaining illusion) plus an animated entropy bar that fills to 99.9% on a delay after page load.
- ❀Diploma section renders a gold-bordered parchment-style diploma with a seal, degree name ("Doctor of Nothing in Particular"), and a closing inscription.
Unexpected / Issues
Purely Static
Despite looking like a portal, there is no interactivity at all — nothing is clickable, no forms, no state. It's entirely a scrollable display of fetched JSON data.
Negative Credits Unexplained
NIH-204 shows "−3 credits" which is part of the joke, but there's no tooltip or explanation — it just looks like a rendering bug on first glance.
Silent Fallback
If the JSON fetch fails, a hardcoded fallback object is used with no indication to the user — making it impossible to tell if real data loaded or the default did.
Scroll-Activated Nav Lag
The IntersectionObserver threshold is 0.35, meaning nav links don't update until a section is 35% visible — on mobile with short sections this can cause the nav to skip or lag noticeably.