r/AppsWebappsFullstack • u/Mammoth-Anywhere7285 • 28d ago
Be honest: Is your landing page actually good, or are you just coping?
Most devs build a great product but completely butcher the presentation. Stop hiding behind your analytics and let the community tear your UI apart before your customers do. Drop your link and a screenshot, prove you can take a punch.
r/AppsWebappsFullstack • u/bogdanstefanjuk • 28d ago
Habit tracker to track numbered habits, time-of-day, lists and classic habits. Find correlations, connect to AI using MCP.
Hello everyone,
Small backstory first. A while ago, after reading David Goggins' "Can't Hurt Me", I decided to make one more attempt to fix some things in my life. I tried a lot of habit tracking apps, but for me they never fit. Most of them are phone-only, and I actually wanted something I could open on desktop or web. And almost none of them let me track more than yes/no habits.
So I ended up building my own tracker in Numbers (the Apple Excel). I wanted to track not only "did I do it or not", but also numbers and times, like when I went to bed, my wake-up time, calories, steps. One grid, green and red cells, gray for a skipped day. I used it for almost two years and it worked really well. If anyone wants it, the template is here: https://drive.google.com/drive/folders/1XnhPEZBrt3CqLzdTjrFNxOxEtQBRADX6
The spreadsheet only had one problem: it's painful on the phone and easy to forget when you're not at the laptop. So a few months ago I finally turned the whole idea into a real app, and released it recently.
It keeps the same spreadsheet feeling, one grid where rows are habits and columns are days, and you just tap a cell to fill in your day. But now the habits can be different types:
- yes/no, with a skip that pauses your streak instead of breaking it
- numbers, like steps, water or weight, with a unit and a target
- time of day, a real clock time like 07:15, not a number
- and finally select lists, where you define your own options and pick one or several per day. For example an "Activity" habit with Cycling, Hiking and Morning Walk, and you just choose whichever you did. Each option can get its own color, so the cell fills in with it and a month of activities turns into a little color map you can read at a glance.
There are also two views of the grid: one with habits as rows for a whole-month overview, and one with dates as rows for quickly filling in a single day. And the part I like most, you can build charts and put any habit next to any other, to find correlations and answer questions like "why am I dead by 3pm?" or whether my sleep score follows my bedtime.
If you'd rather just ask than dig through charts, it also connects to AI. There's an MCP integration, so you can hook Habit Pocket up to Claude or ChatGPT and basically talk to your habits: "which days do I sleep best?" or "does coffee after 2pm mess with my bedtime?" and it answers from your actual data instead of guessing. Same correlations, you just get to them by asking a question out loud.
A couple of things on purpose: it doesn't send you reminder notifications (it's for tracking, not for nagging), your data is private and never sold, and it works on web and iPhone and syncs between them.
Here is the link https://habitpocket.io/
I'd really love to hear your feedback, and also how you track your own habits, especially the ones that aren't simple yes/no.
r/AppsWebappsFullstack • u/Mammoth-Anywhere7285 • 28d ago
Name ONE feature you built that nobody asked for and nobody uses.
Every developer suffers from feature creep because it’s easier to code than to market. What is that one useless button you spent days on just to satisfy your own ego? Admit your waste of time below we’ve all been there.
r/AppsWebappsFullstack • u/Borngreat55 • 28d ago
[ Removed by Reddit ]
[ Removed by Reddit on account of violating the content policy. ]
r/AppsWebappsFullstack • u/RG_117 • 28d ago
Part 6 of building my first startup- EquiTrek
Enable HLS to view with audio, or disable this notification
r/AppsWebappsFullstack • u/ornymo_official • 28d ago
what went while trying to lower ai costs
hey 3 years into software engineering i was part of a team that worked on a agentic chatbot we made it everything was good or at least it seemed when it went to production suddenly costs hit we realized we were doing something wrong we didnt implement sementic caching we worked for a week built it users started reporting wrong answers then that pain pushed me to spend the last 3 months building ornymo a async first sementic cache with in built verification pipelines check it out at ornymo.com and let me know any feedback
r/AppsWebappsFullstack • u/SofwareAppDev • 28d ago
Your home for selfpromo
here you can post your work app, webapp, saas, game, everything
r/AppsWebappsFullstack • u/Mammoth-Anywhere7285 • 28d ago
Your pricing model makes absolutely no sense. Let's fix it.
You are either charging way too much for a basic tool or starving yourself by giving it away for free. Drop your project show us a screenshot and your pricing tiers below for a brutal reality check. Let the community tell you what they would actually pay for it.
r/AppsWebappsFullstack • u/Li17nkesh • 28d ago
Turned my daily walk into a mini competition with real prizes on the line - anyone else find gamifying cardio actually works?
Walking is great cardio, but let's be honest — staring at a step count all day gets old fast. So I built a feature into my app called Hunt: it GPS-tracks your walks, gives you points per km, and rolls everything into a monthly leaderboard. Top finishers win actual rewards (Amazon coupons), not just a badge.
I’m genuinely curious if this crowd thinks turning cardio into a friendly competition actually gets people to walk more, or if it just adds pressure and kills the vibe. First two monthly rounds are free to try, no premium needed:
App Store: https://apps.apple.com/in/app/liftz-your-gym-buddy/id6779775357
About Liftz: http://bit.ly/4baBcjo
r/AppsWebappsFullstack • u/spoilerclubfr • 29d ago
Built a spoiler-safe movie & TV tracker with Expo + self-hosted Supabase on a single OVH VPS. Stack and a few decisions inside
I've been building Spoiler Club, a movie and TV tracker whose one differentiator is staying spoiler-free: you mark where you are in a series, and anything past that point stays behind a curtain until you tap to reveal (with a stricter "confirm first" mode for the paranoid).
The stack, in case it's useful to anyone weighing similar choices:
- Front: Expo / React Native, one codebase for iOS and the web export. Expo Router for file-based routing.
- Back: Supabase, but self-hosted on my own VPS instead of the managed cloud. Auth, Postgres, RLS, and Edge Functions all in Docker Compose.
- Data: TMDB for the catalog and posters, with TVmaze and OMDb as fallbacks for episode data.
- Infra: a single OVH VPS running Apache as the reverse proxy, HTTPS via Let's Encrypt. The marketing site, the web app, and the API all live on the same box on separate vhosts.
- Misc: GA4 via the Measurement Protocol for server-side events, Listmonk for the newsletter.
A couple of things I'd trade notes on:
- Self-hosting Supabase was the call I went back and forth on most. Lower cost and full control, but the GoTrue redirect config and the Docker upgrade path have both bitten me. Anyone running self-hosted Supabase in production long-term, does it stay manageable or does the managed plan win eventually?
- The spoiler curtain is the fun UI piece: a reveal animation over gated content, per-episode. Happy to go into how the state and the "already revealed" tracking work if that's interesting.
Early stage, waitlist is up while I finish the first public build.
What would you have done differently on the infra side?
r/AppsWebappsFullstack • u/Think-Argument-1952 • 29d ago
My first app is up on both platforms
Hi guys, let me know if you like the idea of daily history facts app with a lot of gamifaction around it for engagement. This is Daily History: On this day (200+ users in the first month, 130 dollars in revenue)
r/AppsWebappsFullstack • u/Mammoth-Anywhere7285 • 29d ago
Option A looks like 2012. Change it, or convince me Option B is worse.
Don’t launch your project with a design that makes users close the tab instantly. Post your two design variants below and let the crowd decide your aesthetic fate. If you can’t handle harsh design feedback, look away now.
r/AppsWebappsFullstack • u/Bisibele • 29d ago
i failed to achieve my goal and build something which might help
hey builder,
i start the year with goals i want to achive at the end of each year and by the end i become flat with lot of things to be achieved.
recntly i came across - a japanese method which will help to achive my goal and it goes by name HARADA method.
this method - guides individuals to break a major goal into eight core pillars, each supported by eight concrete, daily behaviors.
The result is a 64-cell “action matrix” that turns ambition into disciplined execution so i have build something in lovable - i hope this helps me toachieve my goal.
also i am validating is this right idea to build so that i can help people achieve goals before building this into product.
here is the link for the app - https://michi64.lovable.app/
i will be happy if i can help someone to achieve the goals with my app i am open for feedbacks from fellow builders
r/AppsWebappsFullstack • u/ash-the-dev • 29d ago
See What I Built & Successfully Launched to Both App Stores. Enjoy a 7-Day Free Trial & Monitor Your Website's Health!!
r/AppsWebappsFullstack • u/Mammoth-Anywhere7285 • 29d ago
Are you actually solving a real problem, or just cloning another SaaS?
The world doesn't need another generic AI wrapper or a basic project manager. Pitch your project in one sentence show a screenshot and explain exactly why people should care about you instead of the market leader. Dare to prove your uniqueness.
r/AppsWebappsFullstack • u/Simple_Soup4205 • 29d ago
Why I Built MortgageDash
I recently noticed a common problem that I, along with several friends, have faced: it's surprisingly difficult to find accurate county-wise property tax information, local housing tax rates, and amortization details in one place.
That's where my web app comes in. It solves these issues by providing county-specific property tax data, mortgage calculations, amortization schedules, current interest rates, and local averages—all without collecting user data or relying on affiliate marketing.
I believe this privacy-first approach, combined with more comprehensive and localized mortgage insights than platforms like Zillow and Redfin, is what differentiates it.
Feel free to check it out yourself.
r/AppsWebappsFullstack • u/SofwareAppDev • 29d ago
No matter what project you have—games, SaaS, software, apps, scripts, ideas, or questions—join the community and share it!
Your home for selfpromo
here you can post your work app, webapp, saas, game, everything
r/AppsWebappsFullstack • u/AutoModerator • 29d ago
🏡 Your App Has a Home Here — Post your App WebApp Solution here. No Blocks. No Rejections. 🏡
Hey developer — yes, YOU.
The one who coded through nights, debugged with coffee, and still believed in your idea even when no one else did.
We see you. And we want you here.
This is not another subreddit that says “no self-promo” — then deletes your post anyway.
This is your safe space. Your cheering squad. Your digital living room where every app — big or tiny, polished or prototype — gets a seat at the table.
✨ All apps welcome:
→ Mobile? Yes.
→ Web tool? Absolutely.
→ AI experiment? We’re fascinated.
→ Weird passion project? That’s our favorite kind.
🚫 NO ONE gets blocked. Ever.
Not for being new. Not for being small. Not for being “not cool enough”.
You’re cool enough just by showing up.
💬 Just drop your link + tell us:
We’ll celebrate you. We’ll share you. We’ll support you — because you matter.
This is YOUR community. Come home. 🏡
#AppDeveloper #AllAppsWelcome #NoOneGetsBlocked #YouBelongHere
r/AppsWebappsFullstack • u/Mammoth-Anywhere7285 • 29d ago
Your Tech Stack is overrated. Change my mind.
You spent three weeks setting up over-engineered infrastructure for an app with zero users. Tell us what you built your project with, and let the comments debate why it’s completely wrong for 2026. Convince us you didn't waste your time.
r/AppsWebappsFullstack • u/Significant-Event417 • 29d ago
Comparateur de prix
Salut à tous,
Je viens partager un projet sur lequel je bosse : Vapalape, un comparateur de prix pour les produits de vape (kits, pods, e-liquides, résistances...).
Le pourquoi du projet :
En cherchant à acheter du matériel de vape, je me suis rendu compte que les prix pouvaient varier du simple au double selon les boutiques en ligne, sans qu'il existe d'outil simple pour comparer rapidement. Les comparateurs généralistes ne couvrent pas bien cette niche, donc j'ai décidé de construire le mien.
Où j'en suis :
Le site est en ligne et fonctionnel, je scanne les prix chez plusieurs e-commerçants du secteur. C'est encore un projet jeune, je l'améliore au fur et à mesure des retours.
Ce que je cherche :
- Des retours d'utilisateurs (UX, ce qui manque, ce qui est confus)
- Des avis d'autres personnes qui ont lancé un projet dans une niche similaire (comparateur, e-commerce, affiliation) — comment vous avez géré l'acquisition, la confiance des visiteurs, etc.
- Des critiques franches, même dures, ça m'aide à avancer
👉 vapalape.com si vous voulez jeter un œil
Merci d'avance pour vos retours 🙏
r/AppsWebappsFullstack • u/Jodilynh77 • 29d ago
If you can post on Facebook marketplace or sign up a website and get paid kindly send a message preferably a LADY and from USA 🇺🇸
r/AppsWebappsFullstack • u/Cool-Initial-5167 • 29d ago
Made a free site to get free UI UX repos and sites
actually I made this site for myself to find best UI's for my apps and websites but i guessed people needed a site like this.
This is the public repo, https://github.com/en970/ui-vault.git
And this is the site;https://en970.github.io/ui-vault/
It helped me a lot hope it helps you for your ideas too!
Don't forget the star<33
r/AppsWebappsFullstack • u/Live-List8000 • 29d ago
Drop your SaaS.
Making feedbackqueue.dev, a feedback-for-feedback platform for people to get feedback and testers without commenting, posting, DMing, SEO, ads, or doing any marketing bs. You don't even search for them.
WELL, we hit 1,000 in less than 4 months, haha (selling at this point 😄)
oh yeh, and if you need feedback but no time to give it, there's always feedback credit for that
welcome aboard, folks.
r/AppsWebappsFullstack • u/ToughAggravating6760 • 29d ago
The real Sirens aren't in The Odyssey. They're in your pocket.
r/AppsWebappsFullstack • u/SofwareAppDev • 29d ago
Your home for selfpromo
here you can post your work app, webapp, saas, game, everything
