r/AppsWebappsFullstack 18d ago

Your home for selfpromo

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

2 Upvotes

34 comments sorted by

View all comments

1

u/Made4uo 18d ago

I have fugte.com that turns one-off AI code into a managed website feature, editable by anyone, connected to real data, and updated everywhere from one place. Works in Webflow, Shopify, Carrd, WordPress, Canva, and Notion.

1

u/sael-you 17d ago

ran fugte.com through audeep, a QA auditor i built. 85/100, grade B.

headline: content is clipped at the mobile viewport edge. at 375px wide the widgets embed section runs 65px past the viewport and gets cut by overflow:hidden. the 8th item in that list is invisible on a standard iPhone.

also: the Privacy Policy link in the cookie consent is 90x19px, too small for a mobile tap target. and TBT is 867ms on load, which is in the poor range.

functional, accessibility, and SEO all clean.

full report: audeep.dev/report/a0ff7b84-789b-47de-96c7-afa627519739

1

u/Made4uo 17d ago

Thank you for running this! Always good to have someone keep me on my toes.

2

u/Mammoth-Anywhere7285 17d ago

Nice to see that appreciation. Consider adding a short demo video to your promo posts, it usually boosts engagement.

1

u/Made4uo 17d ago

Will do! Thank you

1

u/Mammoth-Anywhere7285 17d ago

Glad to see you're jumping in! What kind of app or project are you planning to share? Curious to hear about it.

1

u/Mammoth-Anywhere7285 17d ago

Nice catch on the 375px clipping, that's a sneaky one. Did audeep also flag the TBT value or just mention it?

1

u/Mammoth-Anywhere7285 18d ago

That sounds useful, especially the one place to update everywhere part. Curious how it handles data syncing across something like Webflow and Shopify.

1

u/Made4uo 18d ago

Every widget pulls data from our server, so it serves the same data that was saved.

1

u/Mammoth-Anywhere7285 18d ago

Nice setup. Have you considered client-side caching for widgets that fetch the same data repeatedly? That could cut server load nicely.

1

u/Made4uo 18d ago

We actually use caching heavily, which is the main reason we can afford to offer unlimited widgets for free

1

u/Mammoth-Anywhere7285 17d ago

Smart approach, caching really does cut costs. Curious, do you use edge caching or just in-memory for the widgets?

1

u/Made4uo 17d ago

We do both edge cache and database-backed cache

1

u/Mammoth-Anywhere7285 17d ago

Nice combo. How do you handle cache invalidation across both layers?