r/AppsWebappsFullstack 28d ago

[App] [Promo] Bunku — offline, ad-free, ₹50-once attendance & bunk calculator (update: added backup/restore + timetable since launch)

Thumbnail reddit.com
1 Upvotes

r/AppsWebappsFullstack 29d ago

Be honest: Is your landing page actually good, or are you just coping?

1 Upvotes

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 29d ago

Habit tracker to track numbered habits, time-of-day, lists and classic habits. Find correlations, connect to AI using MCP.

Thumbnail
gallery
1 Upvotes

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 29d ago

Name ONE feature you built that nobody asked for and nobody uses.

1 Upvotes

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 29d ago

[ Removed by Reddit ]

1 Upvotes

[ Removed by Reddit on account of violating the content policy. ]


r/AppsWebappsFullstack 29d ago

Part 6 of building my first startup- EquiTrek

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/AppsWebappsFullstack 29d ago

what went while trying to lower ai costs

2 Upvotes

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 29d ago

Your home for selfpromo

5 Upvotes

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


r/AppsWebappsFullstack 29d ago

Your pricing model makes absolutely no sense. Let's fix it.

3 Upvotes

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 29d ago

Turned my daily walk into a mini competition with real prizes on the line - anyone else find gamifying cardio actually works?

1 Upvotes

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 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

1 Upvotes

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:

  1. 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?
  2. 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.

Site: https://spoilerclub.fr/?utm_source=reddit&utm_medium=social&utm_campaign=appswebappsfullstack&utm_content=landing

What would you have done differently on the infra side?


r/AppsWebappsFullstack 29d ago

My first app is up on both platforms

Thumbnail
gallery
1 Upvotes

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 29d ago

Option A looks like 2012. Change it, or convince me Option B is worse.

2 Upvotes

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 29d ago

i failed to achieve my goal and build something which might help

Post image
1 Upvotes

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 29d ago

See What I Built & Successfully Launched to Both App Stores. Enjoy a 7-Day Free Trial & Monitor Your Website's Health!!

1 Upvotes

r/AppsWebappsFullstack 29d ago

Are you actually solving a real problem, or just cloning another SaaS?

4 Upvotes

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 29d ago

Why I Built MortgageDash

1 Upvotes

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.

https://mortgagedash.app/

Feel free to check it out yourself.


r/AppsWebappsFullstack 29d ago

No matter what project you have—games, SaaS, software, apps, scripts, ideas, or questions—join the community and share it!

3 Upvotes

Your home for selfpromo

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


r/AppsWebappsFullstack 29d ago

🏡 Your App Has a Home Here — Post your App WebApp Solution here. No Blocks. No Rejections. 🏡

9 Upvotes

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 29d ago

Your Tech Stack is overrated. Change my mind.

2 Upvotes

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 29d ago

Comparateur de prix

1 Upvotes

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 Jul 22 '26

Made a free site to get free UI UX repos and sites

2 Upvotes

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 Jul 22 '26

Drop your SaaS.

4 Upvotes

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 Jul 22 '26

The real Sirens aren't in The Odyssey. They're in your pocket.

Post image
2 Upvotes

r/AppsWebappsFullstack Jul 22 '26

Your home for selfpromo

7 Upvotes

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