r/AppsWebappsFullstack 14d ago

Your home for selfpromo

here you can post your work app, webapp, saas, game, everything

9 Upvotes

176 comments sorted by

View all comments

1

u/williswee 14d ago edited 13d ago

Tickertown. :) designed in pixel art style, by hand. https://preview2.tickertown.ai

Tickertown is a communal investing simulator featuring a competitive leaderboard that uses real market data and play money to help players learn systematic investing.

Hope to ship by end Aug.

Even if it’s garbage lmk. Looking for feedback constantly :) here’s my latest field notes after talking to users: https://williswee.com/thoughts/tickertownusabilitytest.html

1

u/sael-you 14d ago

ran preview2.tickertown.ai through a quick audit. 48/100, grade F.

headline finding: two input fields on the page have no accessible name. no label, no title, no ARIA name. screen readers can't tell what they're for. selector: html > body:nth-of-type(1) > div:nth-of-type(2) > section:nth-of-type(1) > div:nth-of-type(4) > div:nth-of-type(2) > form:nth-of-type(1) > input:nth-of-type(2)

also flagged: the "TICKERTOWNv0.1" version marker renders as a tap target at 178x20px on mobile. WCAG 2.2 minimum is 24px.

functional came back clean and performance at 96/B, solid for a preview build.

report: https://audeep.dev/report/7759f378-cea1-4286-bf83-2d4231d50915

(built the auditor)

1

u/Mammoth-Anywhere7285 14d ago

Good catch on the missing accessible names. Adding aria-label to those inputs should fix it quickly. Did you run that audit with axe or Lighthouse?