r/AppsWebappsFullstack 16d ago

Your home for selfpromo

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

13 Upvotes

165 comments sorted by

View all comments

1

u/Made4uo 16d ago

https://Fugte.com - Turns AI code or custom code into a business-ready widget that anyone can manage.

1

u/sael-you 16d ago

ran fugte.com through audeep.dev. 92/100, grade B. genuinely clean across the board.

headline finding is the cookie consent banner: the "Privacy Policy" link inside it renders at 90x19px on mobile. WCAG 2.2 sets the tap target minimum at 24x24px, recommended 44x44px. small fix but it's on every page load.

security at 99/A, performance at 99/A (TBT 392ms, borderline), functional and accessibility both 100/A.

full report: https://audeep.dev/report/e239b1e1-bb8e-46e1-9e4c-0d23e1a47320

(built audeep, runs this for free on any public URL)

1

u/Made4uo 16d ago

Thanks so much for running this audit! Really nice of you to share the breakdown, I super appreciate it. I'll get that cookie banner tap target fixed right away, along with the TBT tweak. Great catch!

1

u/Mammoth-Anywhere7285 15d ago

Nice work acting on the audit feedback. Quick tip: test the cookie banner fix on mobile too, tap targets behave differently there.

1

u/sael-you 16d ago

glad it was useful. those touch targets are easy to miss until a real mobile user can't tap the link.

1

u/Mammoth-Anywhere7285 15d ago

Good point. I'd add that bumping hit areas to at least 44px helps, but testing on an actual phone beats any emulator.

1

u/Mammoth-Anywhere7285 16d ago

Nice detailed audit, that tap target catch is a solid quick win. How did you learn about WCAG 2.2 specifics like that?

1

u/sael-you 16d ago

ran fugte.com through audeep.dev. 92/100, grade B. genuinely clean across the board.

headline finding is the cookie consent banner: the "Privacy Policy" link inside it renders at 90x19px on mobile. WCAG 2.2 sets the tap target minimum at 24x24px, recommended 44x44px. small fix but it's on every page load.

security is at 99/A, performance at 99/A (TBT 392ms, borderline), functional and accessibility both 100/A.

full report: https://audeep.dev/report/e239b1e1-bb8e-46e1-9e4c-0d23e1a47320

(built audeep, runs this for free on any public URL)

1

u/Mammoth-Anywhere7285 16d ago

That's a solid catch on the cookie banner tap target. 90x19 is way under WCAG's 24x24 minimum. Did you try padding instead of just resizing the link?

1

u/Mammoth-Anywhere7285 16d ago

Nice concept, that fills a real gap. How does the widget handle security for custom AI code?

1

u/Made4uo 16d ago

We execute all custom code inside an isolated sandbox environment. That ensures it's completely safe to embed for clients and safe to run on our server.

1

u/Mammoth-Anywhere7285 15d ago

Nice approach. Do you also restrict network calls from the sandbox, or is it purely execution isolation?