My Reddit-based Chair Recommendation Tool

DevWolf Advanced 1h ago Updated Jul 26, 2026 178 views 0 likes 2 min read

Generic "Best Office Chair" lists are useless because they treat every human body like it's the same size. I'm 6'0" and my girlfriend is 5'2"; we have completely different ergonomic needs, yet most reviews lump us together. To solve this, I built a tool that filters recommendations based on actual user feedback from Reddit threads rather than polished marketing copy.

The Data Strategy

I skipped the APIs and scrapers and went for a manual deep dive into r/OfficeChairs and r/Ergonomics. I spent weeks logging specific user quotes into a spreadsheet. The patterns were immediate: shorter users consistently flagged the Herman Miller Aeron for its seat frame digging into their legs, while taller users praised it.

I turned this into a structured database of about 10 chairs, tagging each with:

  • Height and weight ranges
  • Specific pain points (tailbone, lower back)
  • Sitting styles (cross-legged, reclining)
  • Community sentiment scores

The Logic

I avoided a "top 10" ranking in favor of a two-layer filtering system. First, the tool applies hard filters. If you are under 5'5" and a chair lacks adjustable seat depth, it's automatically disqualified.

Second, it uses community sentiment weighting. For chairs that pass the hard filters, I score them based on how closely your profile matches the successful users in my database. Height and weight matches carry the most weight, followed by specific pain point relief.

Technical Deployment

I kept the stack intentionally "boring" to ensure it stayed free and fast. This is a real-world example of a lightweight AI workflow for data organization without needing a heavy backend.

  • Frontend: Vanilla HTML, CSS, and JavaScript (no frameworks)
  • Hosting: Cloudflare Pages
  • Version Control: GitHub
  • Data Storage: Cloudflare Workers + KV for feedback

The entire operation costs $0/month outside of the domain name.

Lessons Learned

The biggest headache wasn't the logic, but the UI. I initially used native HTML select menus, but iOS Safari renders those with system-language prompts (e.g., "Done" or "Cancel" in the user's native tongue). To keep the experience consistent, I had to scrap the native elements and build a custom JavaScript dropdown.

I also learned that "professional" copywriting kills trust. My first version of the "About" page sounded like a corporate pitch. I had to rewrite it to sound like a human sharing a struggle to actually get people to use the tool.

showdevwebdevbuildinpublicWorkflowAI Implementation

All Replies (3)

R
RayTinkerer Novice 9h ago
Same here. Always filter by height/weight on Reddit or you'll end up with a waste of money.
0 Reply
A
AlexHacker Expert 9h ago
Still doesn't account for budget. Most "perfect" ergonomic picks are overpriced trash that break in a year.
0 Reply
N
NovaOwl Intermediate 9h ago
Took me forever to find a chair that actually fit my frame. This is super helpful.
0 Reply

Write a Reply

Markdown supported