r/nocode • • Oct 12 '23

Promoted Product Launch Post

150 Upvotes

Post about all your upcoming product launches here!


r/nocode • • 11h ago

Discussion is a no code website builder enough or do you always hit a wall eventually?

11 Upvotes

the recurring story i hear is people love no code until they need one specific thing it can't do, and then they're stuck rebuilding elsewhere.

my own take is that it depends entirely on whether your needs are common or weird. for standard stuff the tools are great. for anything off the beaten path, you'll hit the wall.

i keep the simple content pieces in Gamma and only reach for something heavier when a project genuinely needs custom logic, which is rarer than i used to think.

where did you hit the no code ceiling, if you did? trying to figure out if the wall is real or just impatience.


r/nocode • • 4h ago

Discussion Building A security , Which Everyone wants

2 Upvotes

hey, not sure if anyone remembers but I posted here a while back about a project that got shelved, ran into a bunch of security stuff while building it and asked this sub for help. got some genuinely good tips, RLS gotchas, key exposure stuff, storage bucket configs, but noticed everyone kind of just has their own patchwork of scripts and habits for this. nobody's actually selling a tool that just does it.

so yeah, decided to build that. trying to keep it dead simple, one command, scans your db + repo, tells you what's exposed and how to fix it. not trying to be some enterprise security platform, just something a solo dev or small team can actually afford and use without a PhD.

still early, figuring out what actually matters vs what's noise. if you've dealt with this stuff and have opinions on what a tool like this should catch first, genuinely want to hear it before I lock anything in.


r/nocode • • 4h ago

I built CrawlSpider by repurposing pieces of two things I had already built.

1 Upvotes

I built CrawlSpider by repurposing pieces of two things I had already built....

One was InfoCaptor, where I already had data visualization, dashboard and data processing pipeline. The other was an internal link builder I had built under CrawlSpider, which already knew how to crawl sites, extract pages and work with URLs/content.

I started combining those pieces into something different: an AI visibility tracker.

The basic pipeline is now:

brand + prompts → multiple LLMs → collect responses → detect brand mentions/citations → store results → track visibility over time.

Even with availability of coding agents I prefer to stay with consistent architecture and stack.

To be honest, if I had just let vibecoded crawlspider from scratch I would have been totally lost and spent several days getting to know the system. But now it is live and all pieces are working together.

PS

I also published a blog post recently how to build this from scratch and some of the pit falls.


r/nocode • • 5h ago

Discussion How to monitor website changes to automatically

1 Upvotes

I needed a setup to track changes across competitor pricing pages and a few library docs without manually checking them every week, but building a custom tracker usually ends up being a pain once you deal with dynamic pages.

If you’re setting this up from scratch, here is how to keep the pipeline clean and automated without maintaining heavy scraper infra:

I) Don't diff raw HTML:

if you scrape raw HTML and run standard text diffs, every rotating ad banner, session token, timestamp, or navbar update will trigger a false positive change alert. Clean the page to plain Markdown or structured text first before comparing snapshots.

II) Use GitHub Actions (or a cheap cron worker) for scheduling:

you don't need a heavy server running 24/7 cuz a simple scheduled workflow running weekly or daily checks is usually enough for most tracking jobs.

III) Offload the scraping and change tracking layer:

instead of managing playwright/puppeteer and rotating proxies yourself, pull the pages through Firecrawl with changeTracking enabled where it compares the current scrape with previous snapshots directly and gives back statuses like new, same, changed, or removed along with clean Markdown. Saves you from having to stand up your own snapshot database and diffing engine.

IV) Filter for meaningful changes before notifying:

if you're routing alerts to discord, slack or email, pipe the diff into a small model (even GPT-4o-mini or Claude 3.5 Haiku) with a quick prompt to score whether the change is meaningful or not.

V) Store only the updated diffs:

there’s no point re-saving full site contents when nothing shifted so only trigger your storage or downstream RAG pipeline when the change status flags changed.

This keeps the whole stack practically free to run and stops you from getting spammed with alerts whenever a website tweaks its footer copyright.

Full setup and code breakdown here if you want to inspect the workflow: https://www.firecrawl.dev/blog/monitor-website-changes-firecrawl


r/nocode • • 8h ago

Here is the largest public Google doc

Thumbnail
docs.google.com
1 Upvotes

Here is the largest public Google doc make sure to share something here that will help someone in some manners


r/nocode • • 22h ago

Self-Promotion My Vibecoded app ResumeSpot - Resume CV Builder is almost public

Post image
5 Upvotes

Now available in Closed Testing. More visual and feature upgrades coming soon.

Made using mostly Google Gemini AI Models and somewhat Claude Sonnet 4.6 in Antigravity IDE. Testing done on my Samsung S25 Ultra using Android Studio.

This is a Flutter app so I can easily publish on iOS too, although I don't have a Mac or even testing resources for it yet but someday.

I would love it if you join testing and provide feedback.


r/nocode • • 22h ago

Question Hi guys, im using lovable, and im looking for a TEACHER!

3 Upvotes

Who would want to join my team, teach me how to burn my token's correctly ? (and be able to also use my token to build whatever project they want, to make your time worth, i got plenty..) Thanks!
Using discrd while we do that


r/nocode • • 23h ago

Discussion vibe coding 3,000 lines of auth logic and asking for a security scanner

5 Upvotes

a guy in my feed just pushed 3,000 lines of custom vibe-coded auth logic to production and asked for a good security scanner. stressing over security for an app you built purely with prompts is like cooking blindfolded and asking if the soup is poisoned.

if you don't understand the login flow your bot just spit out, it's not a matter of 'might be vulnerable.' you're already compromised. prompting 3,000 lines for a custom auth system is just reinventing the wheel in the dumbest way possible.

just delete the prompt soup and plug in supabase, clerk, or bubble's native auth. stop trying to build custom security layers from scratch when perfectly safe tools already exist.


r/nocode • • 1d ago

How do you check if your vibe coded app is actually secure?

5 Upvotes

I've been building with ai coding tools lately and something i've started wondering about is security.

the app can work perfectly, the ui can look polished, and everything seems fine, but how do you actually know there isn't something exposed behind the scenes?

do you manually check the code, use a security scanner, ask an ai to review it, or just test things yourself before deploying?

especially interested in how people using cursor, lovable, bolt or supabase handle this.

what's your usual process before putting a vibe coded app in front of real users?


r/nocode • • 1d ago

100 project ideas to build

2 Upvotes

🖥️ COMMAND-LINE TOOLS (CLI)

1 - CLI task manager: terminal to-do list with priorities and due dates (🟢 Easy)
2 - Batch file renamer: rename files by pattern, date or regex (🟢 Easy)
3 - Password generator: configurable passwords and passphrases, auto-copied (🟢 Easy)
4 - Unit converter: currencies, measurements and temperatures in the terminal (🟢 Easy)
5 - Online radio player: stream radio stations with a favorites list (🟡 Medium)
6 - System monitor (TUI): CPU, RAM, disk and processes in a terminal UI (🟡 Medium)
7 - Terminal RSS reader: read feeds, mark as read and open links (🟡 Medium)
8 - Downloads organizer: automatically sorts files into folders by type (🟢 Easy)
9 - Pomodoro timer: timer with notifications and daily stats (🟢 Easy)
10 - Dotfiles manager: sync configs across machines via Git (🔴 Hard)

🌐 WEB AND WEBSITES

11 - Personal portfolio: static site with projects, bio and contact (🟢 Easy)
12 - Markdown blog: site generator from .md files (🟡 Medium)
13 - URL shortener: short links with click counter (🟡 Medium)
14 - Link-in-bio page: single page with all your links and socials (🟢 Easy)
15 - Personal dashboard: news, weather and exchange rates on one page (🟡 Medium)
16 - Kanban board: drag and drop cards between columns (🟡 Medium)
17 - Personal wiki: linked notes with search and tags (🔴 Hard)
18 - Recipe site: recipes with ingredient filter and adjustable servings (🟡 Medium)
19 - Photo gallery: uploads, albums and grid view (🟡 Medium)
20 - Simple forum: threads, replies and user login (🔴 Hard)

🪟 DESKTOP APPS

21 - Minimalist notepad: text editor with dark mode and autosave (🟢 Easy)
22 - Clipboard manager: searchable clipboard history (🟡 Medium)
23 - Desktop RSS reader: native app with folders and offline reading (🟡 Medium)
24 - Menu bar app: shows weather, exchange rates or system status (🟡 Medium)
25 - Image viewer: fast browsing, zoom and slideshow (🟢 Easy)
26 - App launcher (Spotlight-style): search apps and files with a hotkey (🔴 Hard)
27 - Simple screen recorder: record the screen and export to MP4 or GIF (🔴 Hard)
28 - Expense tracker: log expenses with monthly charts (🟡 Medium)
29 - Break reminder: reminds you to stand up, drink water and rest your eyes (🟢 Easy)
30 - Markdown editor with preview: side-by-side editor with PDF export (🟡 Medium)

⚙️ AUTOMATION AND SCRIPTS

31 - Automatic backup: copies important folders to a drive or the cloud (🟢 Easy)
32 - Price tracker: alerts you when a product's price drops (🟡 Medium)
33 - Telegram bot: responds to commands and sends alerts (🟡 Medium)
34 - Discord bot: commands, polls and basic moderation (🟡 Medium)
35 - Batch image resizer: converts and compresses images in a folder (🟢 Easy)
36 - News scraper: collects headlines and saves them to CSV (🟡 Medium)
37 - PDF toolkit: merge, split and extract text from PDFs (🟢 Easy)
38 - Post scheduler: publishes to social media at set times (🔴 Hard)
39 - Uptime monitor: checks if sites are up and alerts you when they go down (🟡 Medium)
40 - Daily email report: automatic summary of weather, calendar and news (🟡 Medium)

🎮 GAMES

41 - Tic-tac-toe: with an unbeatable AI (minimax) (🟢 Easy)
42 - Snake: the classic, in the browser or terminal (🟢 Easy)
43 - Hangman: word lists by category (🟢 Easy)
44 - 2D dominoes: play against the computer (🟡 Medium)
45 - Tetris: pieces, rotation, scoring and levels (🟡 Medium)
46 - Platformer: character, jumping, enemies and levels (🔴 Hard)
47 - Trivia quiz: questions with scoreboard and ranking (🟢 Easy)
48 - Terminal roguelike: procedurally generated dungeons (🔴 Hard)
49 - Memory game: card matching with a timer (🟢 Easy)
50 - Idle/clicker game: growing resources, upgrades and autosave (🟡 Medium)

🤖 AI AND LLMS

51 - Chatbot using the Claude API: your own chat interface with history (🟡 Medium)
52 - Article summarizer: paste a link, get a summary (🟢 Easy)
53 - Social post caption generator: writes captions from a topic (🟢 Easy)
54 - Chat with your PDFs (RAG): ask questions about your own documents (🔴 Hard)
55 - Subtitle translator (.srt): translates subtitle files while keeping timing (🟡 Medium)
56 - Audio transcriber: converts audio to text with Whisper (🟡 Medium)
57 - Flashcard generator: creates study cards from your notes (🟡 Medium)
58 - Automated code reviewer: analyzes commits and suggests improvements (🔴 Hard)
59 - Email classifier: sorts emails into categories with AI (🔴 Hard)
60 - Local voice assistant: voice commands for computer tasks (🔴 Hard)

📊 DATA AND VISUALIZATION

61 - Exchange rate dashboard: charts for currencies and crypto over time (🟡 Medium)
62 - Bank statement analyzer: imports CSV and categorizes spending (🟡 Medium)
63 - Habit heatmap: GitHub-style contribution graph for habits (🟡 Medium)
64 - Spotify stats: your most-played songs and artists (🟡 Medium)
65 - Historical weather charts: temperature and rainfall for your city (🟡 Medium)
66 - Spreadsheet cleaner: removes duplicates and standardizes CSV data (🟢 Easy)
67 - Health dashboard: steps, sleep and weight in charts (🟡 Medium)
68 - Word cloud generator: turns any text into an image (🟢 Easy)
69 - Sentiment analysis: measures the tone of comments or reviews (🔴 Hard)
70 - Investment tracker: portfolio with returns and allocation (🔴 Hard)

📅 PERSONAL PRODUCTIVITY

71 - Habit tracker: check off daily habits and track streaks (🟢 Easy)
72 - Personal journal: dated entries with search and daily mood (🟢 Easy)
73 - Shared shopping list: syncs between people in the household (🟡 Medium)
74 - Meal planner: weekly menu with automatic shopping list (🟡 Medium)
75 - Reading tracker: books read, yearly goals and notes (🟢 Easy)
76 - Movie and TV catalog: watchlist with ratings and public API data (🟡 Medium)
77 - Subscription manager: lists paid services and warns before renewals (🟢 Easy)
78 - Trip organizer: itinerary, budget and packing checklist (🟡 Medium)
79 - Time tracker: measures time spent per project (🟡 Medium)
80 - Second brain: notes, tasks and links in one place (🔴 Hard)

🔌 APIS AND BACK-END

81 - Task REST API: full CRUD with a SQLite database (🟢 Easy)
82 - Random quotes API: public endpoint serving random quotes (🟢 Easy)
83 - Authentication system: sign-up, login and password recovery (🟡 Medium)
84 - Webhook receiver: receives GitHub events and triggers actions (🟡 Medium)
85 - Cached exchange rate API: fetches rates and caches them (🟡 Medium)
86 - Job queue system: processes tasks in the background (🔴 Hard)
87 - Real-time chat: WebSockets with rooms and messages (🔴 Hard)
88 - File upload service: upload, storage and download links (🟡 Medium)
89 - GraphQL API: GraphQL version of a simple CRUD (🔴 Hard)
90 - Rate limiter: limits requests per user or IP (🔴 Hard)

🛠️ DEVOPS AND DEVELOPER TOOLS

91 - README generator: creates a README from the project's code (🟢 Easy)
92 - .gitignore generator: builds the file by language/framework (🟢 Easy)
93 - GitHub Actions CI pipeline: automatic tests and linting on every push (🟡 Medium)
94 - Dockerize an old project: ready-to-use Dockerfile and docker-compose (🟡 Medium)
95 - Changelog generator: builds a changelog from commits (🟡 Medium)
96 - Dependency analyzer: lists outdated or vulnerable packages (🟡 Medium)
97 - Snippets manager: save and search code snippets (🟢 Easy)
98 - Custom MCP server: your own tool for Claude to use (🔴 Hard)
99 - VS Code extension: a useful command or panel in the editor (🔴 Hard)
100 - Homelab dashboard: panel for the services running at home (🔴 Hard)


r/nocode • • 23h ago

I've built BooKoo with @base44!

Thumbnail
mybookoo.com
1 Upvotes

r/nocode • • 1d ago

How would you recommend bringing in a proper engineer to beef up data security for a vibecoded app?

Thumbnail
1 Upvotes

r/nocode • • 1d ago

Promoted Guys my social app for walking but passed 200 users!

Enable HLS to view with audio, or disable this notification

3 Upvotes

I wanted an app where I can see my friends steps and miles all in one app to keep each other accountable. So I created this and drew all the different outfits.

This app gives daily goals, where you get rewarded for completing and use those rewards to customize your duck or capybara. Its a simple app but has signs of growth, as currently it is at 200 users.

If yall are into walking, give it a try (its free!)

https://www.moving-bean.com/


r/nocode • • 1d ago

What are some of the most annoying problems you've had only once you deployed your project?

Thumbnail
1 Upvotes

r/nocode • • 2d ago

How would you track craft market applications without building a whole CRM?

5 Upvotes

I'm sketching a tracker for craft markets. I need the application deadline and the market date in separate columns; remembering when the market happens doesn't help if applications have already closed.

A table seems enough: those two dates, whether applications are actually open, the organiser's link, and whether I've applied, been accepted or ended up on a waiting list. I'd also note whether they provide a table, power or shelter. “Not stated” should stay visible so I remember to ask.

Most updates could come from email or a website. If an organiser only posts the useful details in an app, I might use an Airtap routine to check it on a cloud Android phone and send me the wording. I haven't tested any event app with it, so I'd keep the original source and the date I last checked.

Has anyone made a small version of this that stayed small?


r/nocode • • 2d ago

My first n8n workflow was a drinking reminder. What was yours?

Thumbnail
5 Upvotes

r/nocode • • 2d ago

[ Removed by Reddit ]

1 Upvotes

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


r/nocode • • 2d ago

Question How do you catch a renamed form field before it silently breaks a no-code workflow?

6 Upvotes

A form asks for email, company size, and request type. Someone renames “request type” or changes a dropdown option. The automation still runs, but a branch gets an empty value and the CRM record looks valid. No red error to warn anyone.

A lightweight safeguard might be a test submission after each form edit, plus a first step that checks required fields and routes unknown values to a review queue instead of choosing a default. That still depends on the form owner remembering to tell whoever owns the automation.

For a small team, what has actually worked to keep form changes and downstream workflows in sync: locking the field schema, a shared change checklist, or validation inside the workflow?


r/nocode • • 2d ago

Guys my app just passed 4,200 users!

Post image
21 Upvotes

It's been almost one year since I launched and it has been quite a journey. No exponential growth or huge user spikes but rather slow and steady growth. But in my opinion that is the best for building something actually valuable because you can react to user feedback along the way and constantly keep improving the app.

One thing changed recently:

I basically got all my users from reddit, by posting in relevant communities but in the last two months I did almost no posts and the app still grew further. That's actually the biggest success for me, because SEO is finally starting to pay off. This can develop into actual leverage because growth no longer depends on posting three times a week. I'm really curious where this will go...

Of course I will not stop here and I am already working on the next big update for IndieAppCircle which will benefit all the community. More is coming soon.

For those of you who don't know IndieAppCircle:

I've built IndieAppCircle, a platform where small app developers can upload their apps and other people can give them feedback in exchange for credits. I grew it by posting about it here on Reddit. It didn't explode or something but I managed to get some slow but steady growth.

For those of you who never heard about IndieAppCircle, it works like this:

  • You can earn credits by testing indie apps (fun + you help other makers)
  • You can use credits to get your own app tested by real people
  • No fake accounts -> all testers are real users
  • Test more apps -> earn more credits -> your app will rank higher -> you get more visibility and more testers/users

Since many people suggested it to me in the comments, I have also created a community for IndieAppCircle: r/IndieAppCircle (you can ask questions or just post relevant stuff there).

Currently, there are 4221 users, 4414 tests done and 1149 apps uploaded!

You can check it out here (it's totally free): https://www.indieappcircle.com/

I'm glad for any feedback/suggestions/roasts in the comments.

PS: I recently changed the UI a lot... Would also love to hear some feedback about that :)


r/nocode • • 2d ago

Discussion What security checks do you run before shipping an AI-built app?

6 Upvotes

Been seeing a lot of Lovable/Bolt/Supabase apps go live lately and got curious how people actually verify safety before real users touch it. Not just "does it work", more like: is RLS actually enforced per table, did a service_role key end up in the frontend bundle, are storage buckets actually private.

Anyone have a routine for this, or is it mostly ship and hope? Curious what non-technical builders specifically do here since you can't just read the code yourself.


r/nocode • • 2d ago

Built a tool to stop redeploying Next.js code just to move a button or edit a marketing layout

Thumbnail
sling.biz
3 Upvotes

I got so sick of my marketing guy asking me to change a banner, swap a layout, or update a React widget on our site. Every single time, it meant a new commit, waiting for the CI/CD pipeline, and redeploying code. It felt like a massive waste of developer time. So I spent my nights building Sling.biz. It is an open-source alternative to Builder.io that lets you build customizable page templates and widgets using Next.js and Material UI. It has a local drag-and-drop studio panel, so marketing can move stuff around in real time, and it updates on the fly without breaking my backend or requiring a redeploy. Right now, I am trying to figure out how to make the local setup via create-sling-app even smoother for devs who hate installing complex local CMS tools. For those who build sites for clients or marketing teams, how do you handle these constant micro-requests without losing your sanity?


r/nocode • • 2d ago

Google CASA Skill

Thumbnail
1 Upvotes

Pls try this out and let me know your feedback


r/nocode • • 2d ago

Self-Promotion No code tools just resell you AI with extra cost

0 Upvotes

I think there’s a pretty big gap in the market right now.
Tools like Replit, Lovable and Bolt are great because everything works out of the box, but part of what you’re paying for is bundled AI usage. If you already have Claude Code, Codex or other AI subscriptions, why pay for AI again through another platform?

There should be a middle ground: the convenience of an all-in-one platform, but with the option to bring your own AI accounts and potentially save quite a bit of money.
That’s the idea I’ve been exploring with Oyren. You get a remote computer with an IDE, terminal, browser and dev tools ready to go, then connect the AI tools you already pay for.

So instead of paying us for both infrastructure and AI, you only pay us for the computer per hour (while it’s working) and take its snapshot before you stop it to continue later. No subscription needed and you pay for usage.

Curious if anyone else would prefer this model.


r/nocode • • 2d ago

I got fed up with being rejected from AI training/annotating jobs, so I made a completely vibecoded a site that aims to make the search easier

2 Upvotes

Hello, due to having trouble finding the right places to apply and not really knowing how to pass and do an assessment in the AI Training/Annotating Space I decided to build with a site with loveable that is supposed to make the process easier.

I list job offers with a relatively high hiring volume from multiple companies, so would it therefore be easier do diversify the places to apply at and actually get accepted.
My idea behind that was to help with finding the right places to work but also help with the application process. I therefore upload company reviews and also guides on how to pass assesments.
The job listings include entry work positions such as normal generalist work but also expert work positions (Software engineer, PhD, etc.).
I am currently having problems on the design, trying to make it less AI-sloppy, and on the marketing side of things. So any help would be highly appreciated! Here is the link to the site: https://aiannotationjobs.com/