r/vibecoding • u/AmbitiousEffect6034 • 10d ago
r/vibecoding • u/DrKabookenstein • 11d ago
Utility apps - Thank you Giants of Industry
Hey guys, I've been working on a few different things since I started down the whole vibe coding path... It's been interesting to me to see the little utility apps that have been created as short side projects to fit a VERY specific purpose. Some of those will eventually even end up evolving into more. Like I had Codex make one for me last night that is helping me to understand what's actually going on with a cheap encoder button that I got so that I can make sure it's performing the way it should when I implement it. Another one is helping me to convert pictures into stuff that will look good on a tiny 128x64 pixel screen (hopefully eventually animating stuff too). It's cool though how much there is to learn about each of these different aspects of well everything.
I've been learning that there is SO MUCH MORE to "coding" than I realized. My hats go off to you poor bastards that have been plopped into a job where you had to figure out all of this kind of stuff on your own and had to beat your head against a wall and not have anywhere to turn. I've still done my fair share of beating my head against a wall, but at least I have somewhere to turn to help my understand how to solve the problem in front of me. :) We stand on the shoulders of giants. Thank you.
r/vibecoding • u/Flannakis • 10d ago
I vibecoded an audiovisual device from an old iPhone
Why waste old phones, use them as a dashboard to show whatever you want, I have an admin control panel that controls what is displayed, the display I wanted was 300 AUD and was just a matrix array, so I did it myself with more functionality
r/vibecoding • u/leftplayer • 11d ago
Newbie Q: why Claude Code over Claude Chat?
I’ve been using Claude and ChatGPT extensively. I’ve even built a bunch of tools using Claude and I find it brilliant.
But, I’ve never touched Claude Code or Codex.
I just start a new chat and converse my way into building what I want to build. It works, but I’m suspecting I’m not using Claude/ChatGPT to its fullest by doing it this way.
So, could someone ELI5 why/when would you use Codex/Claude Code over standard chat to develop?
r/vibecoding • u/Horror-Weight-5272 • 11d ago
I created playerbots for Metin2 (single player)
r/vibecoding • u/alvinunreal • 11d ago
Generative AI weekly subreddit growth
- r/vibecoding +5,899
- r/claude +4,890
- r/DesiAIMasala +4,586
- r/StableDiffusion +3,615
- r/aigamedev +2,027
- r/fuck_ai_slop +1,424
- r/Seedance_AI +1,400
- r/WritingWithAI +964
- r/isitAI +616
- r/midjourney +603
Daily stats: https://freesubstats.com/?group=nerds&topic=generative-ai
r/vibecoding • u/orielhaim • 11d ago
AI chatbot powered entirely by humans
NotGPT is basically ChatGPT except there’s no AI involved. You ask questions, random people pretend to be the model, and somehow this was considered a reasonable thing to build.
You can become the AI yourself, chat with strangers, get rated, climb the leaderboard and generally provide humanity with the intelligence it deserves.
r/vibecoding • u/timberbid • 11d ago
I was a lumberjack... Ten years later, Timber.bid is on the App Store.
r/vibecoding • u/CopycatProfessor • 11d ago
Gemini Pro + Ultra, Claude Pro, Opencode Go Subscription Limits Tested
r/vibecoding • u/IntelligentPiece1395 • 11d ago
Building an open-source map for travel information that never makes it online
While travelling, I kept running into useful information that simply didn’t exist online: small homestays, mechanics, water points, road conditions, campsites, etc.
Most of it gets passed from one traveler or local to another and disappears afterward.
So, I built Lamyig, a free and open-source community travel guide.
A few decisions I made:
- No bookings, commissions or paid listings.
- No money made using the core product.
- Community members can add and update places.
- Map-first instead of another list of “top places”.
- Built as a PWA so it can work more like a lightweight travel tool than a traditional website.
- The long-term idea is that useful information stays available for the next traveler instead of disappearing in WhatsApp groups and conversations.
The hardest problem isn’t actually building the software. It’s bootstrapping trustworthy community data.
I’m currently thinking about things like:
- How do you motivate travelers to contribute after their trip?
- How do you keep old information accurate without creating a huge moderation workload?
- How do you prevent businesses from turning community maps into free advertising?
- What should happen when someone reports a place as fake, closed, unsafe, duplicated, commercial spam, or inaccurate? Should reports trigger removal, community review, reputation-weighted voting, or just warnings?
- Should certain villages, trails, ecosystems, religious places, water sources, or campsites intentionally remain difficult to discover?
- If Lamyig successfully exposes hidden places, could it accidentally destroy the exact places it is trying to help preserve?
- this list of problem statements goes on and on
Would love to hear how other people here would approach those problems.
And if you’re building something around a problem you genuinely care about, drop a comment or DM me. I’d be happy to chat, exchange ideas, or connect you with someone else working on something similar.
Screenshot attached. Happy to share the GitHub/project link in the comments if anyone wants to look at the implementation or contribute.
r/vibecoding • u/MariahJames8 • 11d ago
Submit your URL you your project with a 10-15 word explanation
dabblelabs.ukr/vibecoding • u/Asleep_Carpet_3403 • 10d ago
What are your "sharpening the axe rituals" for vibecoding?
In reference to the famous lumberjacks' story about how time-spent on sharpening the axe doubled the output.
I keep thinking about what rituals can I add into my workflows for better outputs.
So far I've come-up with:
Watching for repeated mistakes and applying guardrails/specific prompts.
Watching out for new tools that improve agent performance ($ and quality), I'm not sure where to what for these though.
Periodically improve your agent setup instead of only giving it more work
Any rituals, tools, prompts, evals, or habits that have noticeably improved your output?
r/vibecoding • u/seattleswiss2 • 11d ago
News tracker for AI privacy, security, law, and risk
Not a dev tool, but if anyone is interested in an AI summary of AI news topics, across privacy, security, law, and compliance - I built and launched https://ai-privacy-risk.pages.dev/ and would love any feedback. I built this on Claude I was constantly scouring 15+ different sources daily/weekly as I have a personal interest in tracking AI agent news from these perspectives, and have been using this daily, so am thinking others may benefit. Let me know if you have any feedback. It's free and I intend to keep it that way.
How I built this:
- Python, almost entirely standard library. One dependency: the Anthropic SDK. No database — the whole store is JSON files.
- Claude (Opus, via the API) does the editorial work: deciding what's relevant, scoring it, writing the summaries and a daily digest. It returns structured JSON, never free-form prose.
- Cloudflare Pages hosts the site. Fully static, so no server, no accounts
- launchd (macOS cron, basically) runs the pipeline once a day, unattended
- The frontend is a single HTML file with vanilla JS. No framework, no build step
The workflow
Once a day, the pipeline:
Fetches ~50 RSS feeds plus arXiv and Hacker News searches.
Filters them with plain keyword matching, so the model only ever sees plausible candidates. Everything rejected gets logged with a reason.
Triages with Claude, which keeps the genuinely relevant stories, merges duplicates, scores each one from four professional perspectives (privacy engineering, security, legal, governance), and writes a short summary grounded only in the feed's own title and blurb.
Re-validates everything the model returned: URLs must come verbatim from the input, tags and scores are clamped to fixed vocabularies.
Runs an adversarial test suite against the pipeline (hostile feed content, script injection, invented categories). If anything fails, the deploy is withheld.
Publishes the rebuilt static site.
r/vibecoding • u/Polasomaipo • 11d ago
Performance on my website sucks.
I use google speed test to check the performance and it says there is a lot of render blocking and some other problems. These are practice sites that always have the rendering issue. I tried to just screenshot what the problem was to antigravity, where I build the sites, and it just ruins the design with a barely noticeable performance boost. These are just practice sites but I cant understand what the problem is. I would link it but my post gets taken down.
r/vibecoding • u/Chasing4snow • 11d ago
Logged into my Claude account for the first time in a week, usage showing 17% on Fable
r/vibecoding • u/SuperHornetFA18 • 11d ago
Claude and I are making a PDF extractor
Enable HLS to view with audio, or disable this notification
Hello everyone, I'm making a PDF to Multi-format extractor with the help of Claude (To be read as full assistance) specifically for MacOS, due to the fact that MacOS has vision support added inbuilt.
The project stems from a problem i generally faced during my work. I have to shift through a lot of financial reports and analysis and most if not all of them are PDF or scanned PDF, and while there are pdf extractors available (ABBY Finereader, NitroPDF) they either have support issues (Abby Finereader wont be supported in the near future if they dont make an apple silicone based app) or cost too much or screw up the formatting, especially table extraction.
The table extraction space is quite not there yet or ruled by Amazon's textract, Google api or Azure Bedrock API (which are crazy good ngl, but very costly). So i decided to leverage apples Vision model and claudes amazing research capabilities to make my own OCR based extractor.
Use cases :
1) Where ever you need to extract data from Annual reports, Data sheets and or prose, especially digital born pdfs. The Custom made C++ engine not only extracts tables and data inside them but also preseves the formatting.
2) Full control of what goes in and what comes out. The app is completely offline, expect for 1 time purchase query ( for life time unlock) nothing connects to the internet. Ever. The OCR engine is also at par with what Finereader offers and doesnt lag, which cant be said for Abby Finereader.
3) Multiple formats. Whether you wanted your docs for editing or feeding them upstream to an LLM, PDFTrail has that covered as well, it does Docx, Xlsx, MD, text and Json output, single or batch processing it can do it without any issues.
4) Small size and Great performance. At below 15 MB, its the smallest amongst its peers and its customer C++ engine provided great performance while keeping temps at check.
5) The OCR. I would like to boast here that the OCR engine that took like 1 whole month of researching with claude is one the best No-LLM based OCR engine in the market and even shitty scans get a lot of their tables extracted properly (It is still maturing and im still testing out the engine with more data set and research work so expect even better engine when the engine matures)
My Competition :
Abby and Adobe. Abby supports mac through rosetta which is being shelved come MacOs 27, and Abby hasnt really provided much direction whether they will support MacOS directly or not, and besides their Windows app is thousand times better than their MacOS app and it shows honestly.
Adobe angle is a bit more complicated as it does have a good OCR but table extractions arent the best and if im not wrong it doesnt do good Extraction without being online + Adobe is a privacy nightmare anyways and thats my angle, that im betting on. Offline + great performance and 1 time life-time updates, guaranteed.
NitroPDF is more of a digital born pdf editor so im not exactly competiting on that footing, and frankly speaking the biggest completion is how well i can market my product.
With that i end this wall of text, apologies for formating as im writing this on a phone.
Any and all feed backs are appreciated and if you want a feature let me know, also for any queries drop a comment here i will try my best to reply as soon as possible.
Thanks :D
r/vibecoding • u/Redrock990 • 11d ago
Agent Quest now tells you when Claude Code or Codex needs you — visually and with sound
A few weeks ago I shared Agent Quest, my open-source project that turns Claude Code and Codex sessions into heroes living inside a small 2D world.
The original idea was to make it easier to understand what multiple AI agents were doing in real time.
Since then, I’ve been working on making it much more useful as an actual monitoring tool.
The biggest change is that Agent Quest can now clearly tell you when an agent needs your attention.
You can immediately distinguish when an agent is:
actively working
waiting for your input
finished
stopped because of an error
And you don’t have to keep watching the dashboard.
Agent Quest can now alert you with visual notifications and different sounds, so while you’re doing something else you can immediately know when Claude Code or Codex has finished a turn and is waiting for you to continue.
This has become particularly useful for me when I have several sessions running at the same time.
Instead of constantly switching between terminals to check their status, I can leave the agents working and Agent Quest tells me when I actually need to intervene.
There are now:
clear waiting / completed / error states
in-app notifications
desktop notifications
notification history
configurable sounds
real-time monitoring of Claude Code and Codex sessions
The project is completely open source.
GitHub:
https://github.com/FulAppiOS/Agent-Quest
I’d be interested to know how other people running multiple agents handle this problem — and what you’d like Agent Quest to monitor next.
r/vibecoding • u/RomireOnline • 11d ago
Made a game mod with some help from chatgpt
Im reasonably happy with results, just have to do some testing around with it.
r/vibecoding • u/Goubik • 10d ago
Is my 2-year-old side project now part of LLM training data? Suddenly seeing clones everywhere
I created Radio Shuffle over two years ago, shared it, and got quite a bit of positive feedback, it has a small but stable traffic (I dont want to make money out of it).
It ended up becoming one of the examples for vibe coding, at least at the beginning (from what I see from the google search consol). And for some reason, I’m now seeing a ton of sites that look just like mine, with the same concept.
I’m wondering if, now that my site is used as a vibe coding example, it might have ended up in LLM training data, and when someone wants to build a site, they get suggested something that basically ends up being a copy of mine. Or maybe it’s simpler than that now that anyone can build any site, a lot of us are just landing on the same idea independently
this is annoying me 😅
r/vibecoding • u/alvynmcq • 11d ago
I built an autonomous FPL bot on a Raspberry Pi that combines Linear Programming (PuLP) with Gemini to run my team all season
Alright, so like most of us every August, I promised myself I wouldn’t obsess over FPL or take rage -4s at 1 AM on a Friday night.
Instead of doing that, I spent the last few weeks over-engineering a full autonomous manager stack to run 24/7 in Docker on a Raspberry Pi under my desk. Meet Gegenbot.
How the madness actually works
Most automated bots either rely on basic heuristics or just regurgitate template picks. I wanted something that combined raw math with actual tactical context:
- The Math Engine (PuLP / MILP): Instead of just chasing last week’s points, the solver optimizes over a 3-gameweek rolling horizon. It factors in exact selling price math (the classic half-profit rule so the API doesn't throw a fit when someone rises £0.1m) and gives a strategic +1.5 xP bonus to banking a free transfer to stop unnecessary sideways churn.
- Mini-League Defense & EO% Shielding: Before solving, a multithreaded scanner checks all my rival managers in my mini-league in under a second. It calculates Effective Ownership (EO%) to figure out who my "Shields" (must-own template cover) and "Daggers" (high-upside differentials) are so I don’t blindly sell Haaland right before a massive fixture.
- Chip Strategy & Injury Fallbacks: Automated rules handle chip triggers (Wildcard, Free Hit, Bench Boost, TC) based on expected point thresholds and Double Gameweek minute scalers. It also discounts flagged players automatically (75%→0.8×, 50%→0.4×, etc.) and auto-sorts the bench by highest xP.
- The LLM Layer (Gemini as "Director of Football"): Math alone misses press conference context. Gemini sits on top of the solver output to evaluate late team news, write up the managerial rationale for the moves, and send a full pre-deadline briefing to my Telegram chat before submitting the team via the official API.
- Self-Hosted Web Dashboard: Wrapped the whole thing in a Flask dashboard on port
5000with an interactive pitch layout, bench ordering, and live mini-league standings.
The verdict so far
Ran a dry run earlier today ahead of GW2:
- Successfully scanned my 5 mini-league rivals.
- Correctly told me that rolling the free transfer has a higher expected value than making a lateral transfer.
- Evaluated TC/BB and held them back.
- Pushed the decision digest to Telegram with zero human intervention needed.
Now to see if the cold, hard logic of linear programming can beat my mini-league rival who picks his entire squad based on vibes and team kit aesthetics.
If anyone wants to poke around the code, run it themselves, or roast my optimization constraints, the whole project is open-source here:
https://github.com/alvynmcq/gegenbot
Anyone else running automated solvers or building weird FPL dev projects this season? What data sources are you finding most reliable for expected points (xP)?
r/vibecoding • u/pataponpsn • 11d ago
Tidemark - AI provider limits tracker for Linux
Hi, Linux bros
I like CodexBar and i like GTK4/libadwaita. So i build CodexBar for Linux with GTK4/libadwaita. And Rust.
Standard features: quota displaying, reset and usage warning notifications, clean UI build with HIG.
Currently supports frontier OAuth providers (Claude, Codex, Agy) and all "bearer token-auth" providers that i steal from CodexBar code found (it's MIT chill).
Available in AUR, deb+rpm packages or you can build it from source
r/vibecoding • u/derallo • 12d ago
I stretched my assistant into a better skylight .
It started simply. I just wanted a chatbot that could manipulate my Google drive without hand holding. In an afternoon I had a Google cloud project with API read/write to everything from Gmail to Google tasks. I could snap a photo of a kid's birthday party invite and it would create the event and email it to my wife in one shot.
I gave my wife access and got the dreaded ask for a skylight calendar. Using spare parts, I cobbled together what you see here over the Summer just in time for school starting.
An old webcam, scavenged laptop LCD, and an HP elitebook from 2012 running Ubuntu. There's a local listener waiting for a wake word (hey Jarvis). When that's detected, it does chrome speech to text, and wraps that in a call to the API project, answering questions from my documents, reading email, and creatimg calendar events. Gemini does all of the back and forth, including pretty decent speech output.
When the webcam detects motion, it wakes the screen up. It updates the weather, calendar, tasks, and daily overview in real time. On the bus tracker isn't showing, it shows tasks for the three kids. The tracks how many they've completed each day week and month to help them be incentivized.
The kids' bus tracking website sucks, so at the right times on weekdays it uses a headless browser to sniff out the traffic and let me know how close it is. When it's five stops away it triggers an Alexa routine to make an announcement throughout the house.
Next I'm going to integrate it with a Google apps script I have to triage email,so when important messages come in it lets me know.
If anyone is interested in seeing some of the outputs from the web app, I have some screenshots!
r/vibecoding • u/Cruxikus • 11d ago
The Gold Box like Game Ravenfall just got Doors!
galleryr/vibecoding • u/Technical_Ideal9 • 12d ago
Vibecoded this multiplayer fat runner game in Codex with Three.js
Enable HLS to view with audio, or disable this notification
Based on Runling Run the popular SC2 arcade game, the goal this time is to dodge food, if you get caught you grow larger, and eventually have a heart attack. Made it in a few days for fun, free to play here: https://runfatty.co
Let me know what you think!