where everyone hangs out.
everything the room is talking about right now
- Question
custom font loads slow and the text pops in
layout shift when the font finally loads. whats the clean way to preload a font in a vibe-coded Next app?
2answers - Question
my Tailwind looks perfect in v0 but broken when I paste it in
spacing and fonts are off in my actual project. is it a config thing? the preview straight up lied to me.
2answers - Question solved by @nina_nocode
aggregating by the users timezone in Postgres
my daily rollups are off because everything is stored UTC. how do you group by the users local day correctly in SQL?
2answers - Question
how do I hide my API key from the frontend?
the AI key is sitting in my React code and I know thats bad. how do I proxy it through my Flask backend properly?
2answers - Question
how do I persist habits so they dont vanish on refresh?
everything is in useState and disappears when I reload. do I need a real database or is localStorage fine for now?
2answers - Question solved by @kenji_dev
Expo Go works but the standalone build crashes on my phone
runs perfect in Expo Go, the real build white-screens on launch. how do you debug a build you cant see logs for?
2answers - Question solved
how do I test that my automations work BEFORE launch?
I only find out theyre broken when a customer complains. whats a sane way to test workflows in advance?
2answers - Question solved by @aria_codes
my state updates one render behind
I click the button, the count is wrong, I click again and it catches up. classic stale state? how do I fix it the right way?
2answers - Question
my AI feature costs more than my entire tool stack
the OpenAI bill snuck up on me hard. how do non-technical founders keep AI costs predictable?
2answers - Question solved
streak resets at the wrong time for users in other timezones
it resets at UTC midnight but I want the users local midnight. how do people handle timezones without losing their mind?
2answers - Question solved by @emi_codes
the keyboard covers my input on iOS
the text field hides behind the keyboard. KeyboardAvoidingView does nothing for me. whats the pattern that actually works?
2answers - Question
how do I let users log in without building auth myself?
auth genuinely terrifies me. is there a drop-in service a non-coder can actually wire up? what do you recommend?
2answers - Tip
TIL put all your Supabase queries in one data layer file
stopped scattering supabase.from() everywhere. one file made the AI dramatically better at editing my app safely.
0replies - Showcase
launched my marketplace MVP with zero hand-written code
all no-code plus AI glue. ugly under the hood but customers dont see that. revenue is revenue.
0replies - Question solved by @priya_rn
how do I handle Stripe checkout success without a webhook race?
user pays, redirects back before the webhook lands, sees not pro yet. how do you avoid this race cleanly?
2answers - Discussion
how do you tell if a prompt change actually made things better?
I tweak the prompt, vibes say better, but I have no real measure. how do people actually eval prompt changes?
0replies - Showcase
redesigned my landing page and it finally feels like ME
went from generic AI template to something with real personality. posting the before/after in case it helps anyone.
0replies - Discussion
cursed AI moment: it invented an SDK method that doesnt exist
confidently wrote code against a made-up function. it hallucinated the SDK itself. how do you catch this fast?
0replies - Showcase
my first app is in TestFlight!
not the store yet but real people can install it. the build and signing step nearly broke me. so worth it though.
0replies - Question
my FlatList is janky when scrolling images
scroll stutters with a list of photos. is it a keyExtractor thing? image sizing? how do you make big lists smooth?
2answers - Question
deploying a Flask + React app - what actually hosts both?
confused where the backend lives vs the frontend. same host? different? whats the simplest working setup for a beginner?
2answers - Question
how do I handle rate limits and 429s gracefully?
under load I get 429s and the whole request just fails. whats a clean retry-with-backoff pattern for production?
2answers - Question
Cursor keeps importing a file that does not exist
it confidently imports from ./utils/date but there is no such file. do I create the file or is it just hallucinating?
2answers - Tip
TIL commit before you let the AI refactor
learned this the hard way. now I git commit first so I can always roll back when the AI goes off the rails.
0replies - Question solved by @kenji_dev
how do I not blow my token budget on every request?
I send the whole conversation history each time and its getting expensive. whats the standard way to trim context?
2answers - Question solved by @devon_makes
debouncing a search input the right way in React
my search fires a request per keystroke and hammers the DB. I know debounce is the answer but the useEffect cleanup keeps confusing me.
2answers - Question solved by @priya_rn
my RAG retrieval keeps returning irrelevant chunks
the vector search grabs the wrong context half the time. is it my chunking? the embeddings? where do I start tuning?
2answers - Question solved by @devon_makes
recipe images upload but never show up
upload succeeds and I get a URL back, but the img is always broken. is this a public bucket thing? storage makes no sense to me yet.
2answers - Discussion
how much do you let AI touch your DB migrations?
I get nervous letting it write SQL against real data. where do you personally draw the line?
0replies - Discussion
when do I need a real developer vs more no-code?
I have glued 6 tools together and it is getting fragile. how do you know when to stop duct-taping and hire?
0replies - Discussion
the last 20% really is 80% of the work huh
the demo took a weekend. making it not fall over for real users has taken a month. tell me I am not alone.
0replies - Showcase
built my first thing that talks to an LLM and it WORKS
a little study-question generator. rough but it runs and I understand every line. proud of this one.
0replies - Discussion
is it cheating to not fully understand my own code?
the AI wrote most of it. I can kind of read it but I couldnt write it from scratch. does that make me not a real builder?
0replies - Tip
TIL read the actual error before pasting it into the AI
started reading the stack trace bottom to top first. I solve like half of them myself now. genuinely wild.
0replies - Tip
TIL ask the AI for raw Tailwind classes, not a component library
as a designer I want control. asking for plain Tailwind instead of a UI kit gives cleaner results I can actually tweak.
0replies - Question solved
Best pattern for idempotent Stripe webhooks in Supabase Edge Functions?
I gate side-effects on checkout.session.completed but worry about duplicate delivery. How do you dedupe — a processed_events table, or rely on unique constraints?
Built withSupabase · undefined
Vercel · undefined
Stripe · undefined
1answer - Discussion
dashboards: real-time everything vs a good-enough refresh?
users say they want live but do they really? whats your default - realtime or just a refresh button?
0replies - Discussion
how much do you trust AI-written SQL against real data?
it writes queries fast but I always double-check the joins. anyone been burned by an AI query in production?
0replies - Tip
TIL AI is amazing at writing the Zapier formulas I cant
I describe what I want in plain english and it gives the exact filter/formula. this unblocked me a dozen times.
0replies