This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Profile
Jason Warren
neurosocialist.bsky.social
did:plc:ftjqf7uamfmavcx2ffw5m6e2
```ts
function describe(
adhd: boolean,
dose: number,
): TMI {
return `${
adhd && dose < 70 ?
"Neurodivergent Anarchosocialist Loudmouth" :
"Software Dev Apprentice"
}`
}
const me = describe(true, 70);
```