Using coding assistance tools to revive projects you never were going to finish (blog.matthewbrunelle.com)

279 points by speckx 20 hours ago

ogig 16 hours ago

My most abandoned type of projects are video games. I have a folder with tens of abandoned projects, I re-frame them as experiments at that point. This last week I decided to give Claude a go at one of these, and it's been a blast, it picked up the general path immediately. Since I said to CC they were abandon projects, he explicitly pushed into "lets have V0 game play loop finished, then we can compound and have fun = not giving up". Its been awesome at game dev, I gave him game design ideas, he comes with working code. I gave him papers about procedural algos, and he comes with the implementation, brainstorm items, create graphic assets (he created a set of procedural 2d generators as external tools), he even helped me build the lore. These have been one of the most fun times using a computer in a long time. Claude Code + Godot = fun. Going back to it.

quietbritishjim 16 hours ago

I think this is the first time I've seen someone refer to an LLM as "he" rather than "it". No judgement, but I definitely found it interesting (and disconcerting).

folkrav 15 hours ago

I've heard it quite a bit before, but mostly from second-language speakers whose first language don't have impersonal third-person pronouns - e.g. French uses "il" or "elle" for all of "he", "she" or "it".

It doesn't help that the marketing leans heavily on anthropomorphizing LLMs either, IMHO.

wiether an hour ago

quietbritishjim 2 hours ago

yrds96 14 hours ago

It's not weird if it comes from ESL. At least in portuguese there's no "it" equivalent for pronouns or any other neutral artifact in the language, in other words, everything has a gender, even an AI model, the same goes for objects e.g.: knife(she), fork(he), spoon(she), plate(he).

People often commit mistakes regarding that, the same way we don't have "they" as pronoun to someone we don't know the gender, so we address to these people as "dele(dela)" (masculine and feminine pronouns).

But if this is coming from someone who has english as a primary language it's definetely weird to treat models as person

loloquwowndueo 12 hours ago

wat10000 13 hours ago

stackghost 9 hours ago

dsvf 14 hours ago

As a native German speaker, I have also referred to a chatbot in English as "he", and similar to you, a native English speaker, felt jarred by it. It was definitely not out of any personification or humanization though. In German, I would say it is "der Chatbot" (from "der Roboter"), which in German is a male noun so I would refer to it as "er" (the male pronoun) - which in my head I autotranslated to "he". Most of the time, though, I think of it (and refer to it) as an LLM, which is "das Sprachmodell" (neutrum), so I automatically translate it to "it".

So that's another, maybe more harmless reason for it.

bharat1010 5 hours ago

golem14 10 hours ago

simondotau 11 hours ago

I recognise I am revealing a different type of ambient misogyny in my thinking, but choosing to gender an LLM as feminine gives me “I played tomb raider because I enjoy looking at women” vibes. Like somehow “she” is more of a conscious choice than “he” and comes with all the baggage of all cultural differences between genders, when neither choice should do that.

Curiously though I don’t get the same sensation when technologies are gendered by other people. I honestly don’t recall thinking about it when Apple released Siri. (Now I’m second-guessing myself and wondering if I should’ve reacted negatively towards feminine being the default for someone in a personal assistant role.)

torben-friis 15 hours ago

I wouldn't read too much into it, it's natural for non native speakers. In Spanish for example, objects have grammatical gender as well, so it's easy to slip.

plombe 13 hours ago

Well Claude was named after Shannon

osener 15 hours ago

It is common amongst French, Dutch etc speakers where saying "it said x" sounds unnatural.

Anonyneko 15 hours ago

mejutoco 15 hours ago

Reminds me of the main character of the show Mrs Davis. She insists on calling the ai it through the entire show.

https://www.imdb.com/title/tt14759574/

sellmesoap 7 hours ago

Time for claudette to make an apperance!

moron4hire 11 hours ago

There's an analyst at my job who calls it "he", who is a native English speaker himself, which I guess is because it's "Claude" (as in Claude Shannon) Code.

nurettin 7 hours ago

That's what I felt when I heard that the god of abraham was a he.

hansmayer 13 hours ago

I mean we have all met that one cretin who will discuss over chat by pasting bulletpoints from an LLM. No wonder some of them think it is a living person!

isjdkwjdown 14 hours ago

> No judgment

Yes judgment. Loads of it. Judge away.

This is just bizarre. Do not refer to this product of marketing-technology as you refer to a person. EVER.

hansmayer 13 hours ago

tasuki 41 minutes ago

> I have a folder with tens of abandoned projects, I re-frame them as experiments at that point.

Interesting, I have just the opposite situation: I have a folder with tens of experiments, many of which have become actual projects at this point.

riddlemethat 15 hours ago

What’s fun for me these days is picking up a project I started with an LLM doing agent driven development a few months ago or even a year ago and hit a wall and stopped being able to be picked up by the latest version of Claude and/or codex and bringing it further. Some can now launch some still are too complex for the agent to build. But, it’s getting easier and easier to build personal apps. We are not far off from being able to say “Alexa, build me an app on my iPhone that lets me take pictures of the food in my fridge to compile the nutritional benefits and sync it with my workout app then compare it to the ideal ingredients I should eat based on my fitness goals in my health app and have it set to send me emails where it can find me better ingredients to buy that are cost effective, local, and meet my diet restrictions” and in 15 minutes that app suddenly exists.

avereveard 14 hours ago

Same I purposefully have a number of over ambitious project out of distribution entirely to test so failure mode, mostly games, when one works, well I gained a new game. Can't wait for my 10 player battleship game on a 100x100 grid to be functional.

blks 5 hours ago

No, I don’t think we anywhere near that future.

maccard 15 hours ago

I’d love to see your attempts at this. I think we’re close to something vaguely resembling this at a first glance but nothing that actually works.

arcatek 16 hours ago

Isn't Godot a little ill-designed to work well with LLMs? for example I ended up a couple of times with incorrect tres files, and letting the llm generate IDs feel a little fragile.

KronisLV 3 hours ago

I don’t think Godot is any worse than other engines inherently, other than it moving forwards pretty quickly and the latest versions not being in the training data.

I wanted to evaluate which engines would be the best for working with LLMs in and it seems like Flax and Stride kind of come out on top - the former has a lot of stuff out of the box (including terrain) and the latter is all C# basically which is great for debugging. But either way, the source code for both of those makes the functionality a bit easier to track down compared to Godot (which is a lot more complex internally).

So what I do now is have both the engine source code locally alongside the docs and when I want to implement something with AI I just tell it - look at the docs, then at the source if needed, write tests for our code, if something doesn’t work then edit the engine source code in our branch and use the provided convenience script to rebuild the engine (both of those are also pretty fast, I ended up settling on Flax, plus the component model is closer to Unity which I like).

I don’t ask the AI to create scene files though, or any sort of visual assets, but rather stuff like RTS/simulation code. I don’t think any AI is that well optimized for the 3D work outside of simple proof of concept setups.

ogig 15 hours ago

I had very few issues, sometimes I had to direct CC to the godot docs and we could keep moving. Specifically the tile configuration was a "read the docs" moment. All the functionality is available through code, so nothing CC can't reach afaik. Is there any LLM oriented game engine?

operatingthetan 15 hours ago

I have taken many stabs at it and Claude will produce stuff but the output is very far away from useful. E.g. "I've created a road and beautiful trees" and what I see is a mess of colors and shapes.

ogig 15 hours ago

kowbell 15 hours ago

Are any LLMs suited at directly modifying game scene/asset/prefabs for any engine?

samiv 19 minutes ago

jaggederest 11 hours ago

pelasaco 4 hours ago

do you think so? For me Godot works well with LLM. Unity in another hand, is ill-designed to work with LLM..

aleksiy123 16 hours ago

On the topic of procedural, one thing I experiment with is having the llm part of the procedural loop.

Sort of writing a narrative on top live.

Unfortunately, local models are still a bit slow and weak but was interesting to see what it came up with nonetheless.

hansmayer 13 hours ago

> he explicitly pushed into "lets have V0 game play loop finished,

> he even helped me build the lore. These have been one of the most fun times using a computer in a long time.

Such a warm, touching story about a friendship between a grown up man and his neural network. But at least I had a good, roaring laugh reading this nonsense, thank you for that!

ogig 13 hours ago

How snarky. You are conflating friendship with admiration for the effectiveness of newfound tool. If it's the "he" that triggers you, feel free to replace with "it". It's just a second-language artifact.

hansmayer 13 hours ago

noodletheworld 11 hours ago

arjie 11 hours ago

It’s great. I have a stupendous amount of personal software now. Yesterday was a native text editor that was fully integrated into my mediawiki install and would autocomplete links and make syntax easier to use.

No one could have built this software but me because it’s worth nothing to others. And I couldn’t build it because it takes too long. But when I’m using an agent to code the limited resource is my attention which actually does fine so long as every free brain cycle is on a task. So these personal things are great to throw into my tab loop to occupy a free slot.

These have been wonderful times.

hypercube33 10 hours ago

I finished a mod for Quake 2 I started in 1998 finally a few weeks ago. AI is really helping me get past the COVID burnout I was running of too many projects I half did. Fixed terminals (an rdp tool) today. Working on OpenRA bugs I opened issues 10 years ago now - engine is 10x faster and pathfinding mostly works properly.

saadn92 8 hours ago

It's crazy. I have something like 120 personal tools at this point and the pattern you describe is exactly right. The bottleneck moved from implementation to context switching. I started keeping a markdown file at the root of every project that captures state and next steps whenever I stop working on it, purely so I can resume without the 20-minute "wait where was I" tax.

There's just no pressure to handle edge cases or write docs for people who'll never use it. Just solve exactly your problem and move on.

2001zhaozhao 5 hours ago

> I started keeping a markdown file at the root of every project that captures state and next steps whenever I stop working on it, purely so I can resume without the 20-minute "wait where was I" tax.

I wonder whether there could be an AI autocomplete specifically for the task of helping you with the markdown file (and collecting your thoughts and writing prompts in general). Not an agent since that wouldn't really save time, but actually an autocomplete.

Maybe a small specially-trained local model running at hyper fast speeds and which already has your project context baked in with prefix caching (with some other larger model having summarized the context beforehand to feed to the small model), so as you type this file it automatically uses the same prompt prefix over and over to suggest autocomplete which actually makes sense.

wiseowise 5 hours ago

> It's crazy. I have something like 120 personal tools at this point and the pattern you describe is exactly right. The bottleneck moved from implementation to context switching. I started keeping a markdown file at the root of every project that captures state and next steps whenever I stop working on it, purely so I can resume without the 20-minute "wait where was I" tax.

I sure hope companies double down on leetcode nonsense, because I really don’t have any capacity to compete with this level of ADHD.

AnotherGoodName 7 hours ago

I’ve been asking it to make some of my game tools into static websites where possible.

I did pay the $10 for the following domains but i’m ok with that so i can share some of the fun things that come out of the agent.

grandcheaten.com - a save game editor and guide for jagged alliance 3

thedailycheat.com - a save game editor for newstower

skyberrys 6 hours ago

Just curious, how long did you operate without AI? The burst in productivity I feel implies a time to accumulate these many small needs.

sigseg1v 3 hours ago

Not the person you are replying to but I have, in version control, around 80 projects dating back to about 2008 that are in various states of completion and Claude has been able to resurrect a lot of them and get them from their "half finished but will never complete" state up to "pull in modern dependencies and implement (me giving a list of what remains to be done)" to the point that they are now usable. I'm more focused on the things that are 7 or less years old because anything older than that I'm not sure I have a need for anymore.

LastMuel 7 hours ago

Yes, I built an app to plan an Easter Scavenger Hunt. How niche is that?!

solraph 4 hours ago

I know how to write code, I just don't have time. AI has been an absolute game changer in let me get OS projects out into the world that I just didn't have time to build before. I'm having an absolute blast spinning up local GUI applications for Linux that I wanted to exist, but didn't have enough motivation to build before.

(Shameless plug)

* Sambervise: https://github.com/edward-murrell/sambervise - A Linux GUI application for remotely administering Samba 4 Active Directory Domain Controllers.

* Krbtray: A GTK3 system tray application for Kerberos ticket management on Linux Mint / Cinnamon (and other GTK environments using GtkStatusIcon, such as XFCE and MATE). https://github.com/edward-murrell/krbtray

locknitpicker 2 hours ago

> I know how to write code, I just don't have time. AI has been an absolute game changer in let me get OS projects out into the world that I just didn't have time to build before.

Another important development is that coding assistants greatly reduced the cost of refactoring whole software projects. With coding assistants we can explore the solution space with deeper changes at a fraction of the time it would take us just to write the code alone, let alone draft how modules were designed.

This isn't without tradeoffs, though. Some models can and often do generate code that misses the bar on maintainability. Just because we save time writing it that doesn't mean we don't have to spend time reiterating, cleaning up,and updating system prompts/instruction files to ground the prompts.

XorNot 4 hours ago

Okay this may actually have sold me on AI coding now because these are both the sorts of applications I've been looking for to solve real problems.

0xbadcafebee 5 hours ago

> I still have fears around deskilling from relying on these tools too much

I'm a millennial who builds furniture with hand tools and wood joinery from a century ago. Nobody taught me, although I did find resources online to learn from. I should not be able to do these things. Everyone should have forgotten this esoteric, obsolete, uncommon knowledge by now. Yet here I am, doing it anyway. It turns out you can just learn what you want, when you want to. I don't fear losing this skill in the future, because I can just remind myself how it works. The tools, books, videos, and wood aren't going anywhere.

You aren't going to "be deskilled" from not writing code by hand regularly. Just because you use AI doesn't mean your brain grows a black hole from which information can never return. It's not giving you Alzheimer's. There might be a small amount of time it takes for you to refresh yourself, but then you're back to work again. Just ask anyone who went from coding to managing. They're a little rusty when they go back after years of absence, but they pick it back up.

Also, especially if it's a personal project, keep in mind you do not need to burn Opus tokens. Buy any of the dirt cheap subscriptions which give you access to MiniMax. Put it in a container on yolo mode. Give it some context, a prompt, web search, and a ticket system like beads. Then let it churn. You aren't in a rush, it's a personal project. As long as you follow the brainstorm -> plan -> implementation -> testing process, and have added methods to do real testing (not mocks or unit tests), it will get done with time and money to spare.

jedberg 14 hours ago

12 years ago I tried to make a simple app for myself. It would display bars that got smaller as the day/week/month got shorter, and would show the weather as a set of bars between max temp and min, cloud cover, etc.

I got it working well enough to display what I wanted in text and ascii, but I could never get the interface good enough to want to use it daily, and certainly couldn't get the graphical interface working. I threw it a Claude Code, told it what I wanted the graphical interface to look like, and let it run.

It got an app exactly what I wanted, and even found a bug in the date parser that I hadn't noticed. I now have it running in the corner of my screen at all times.

The next app I'm going to build is an iPhone app that turns off all my morning alarms when the kids' don't have school. Something I've wanted forever, but never could build because I know nothing about making iPhone apps and don't have time to learn (because of the aforementioned children).

Claude Code is brilliant for personal apps. The code quality doesn't really matter, so you can just take what it gives you and use it.

tkgally 11 hours ago

> Claude Code is brilliant for personal apps.

Agreed.

The clipboard manager I had been using on my Macs for many years started flaking out after an OS update. The similar apps in the App Store didn’t seem to have the functionality I was looking for. So inspired by a Simon Willison blog post [1] about vibe coding SwiftUI apps, I had Claude Code create one for me. It took a few iterations to get it working, but it is now living in the menu bar of my Mac, doing everything I wanted and more.

Particularly enlightening to me was the result of my asking CC for suggestions for additional features. It gave me a long list of ideas I hadn’t considered, I chose the ones I wanted, and it implemented them.

Two days ago, I decided I wanted a dedicated markdown editor for my own use—something like the new markdown editing component in LibreOffice [2] but smaller and lighter. I asked the new GPT 5.5 to prepare an outline of such a program, and I had CC implement it. After two vibe coding sessions, I now have a lightweight native Mac app that does nearly everything I want: open and create markdown files, edit them in a word-processing-like environment, and save them with canonical markdown formatting. It doesn’t handle markdown tables yet; I’ll try to get CC to implement that feature later today.

[1] https://simonwillison.net/2026/Mar/27/vibe-coding-swiftui/

[2] https://news.ycombinator.com/item?id=47298885

jkingsman 14 hours ago

Absolutely. I love building things, but sometimes I want something built. LLM assistance is great for when I want a personal tool, code quality be damned, for a specific purpose, without it taking over a weekend.

msingh_5 14 hours ago

You don’t need to build an app. You can use the built in Shortcuts app.

create a shortcut that turns off all alarms. Can have it read your calendar or whatever as signal to determine if alarms should be on/off for a certain day/time and have it run at a regular schedule.

jedberg 14 hours ago

I could, but what's the fun in that!?

(But in seriousness, I hadn't considered using shortcuts. It's not clear it's extensible enough to do exactly what I want, but I'll look into it)

ori_b 13 hours ago

wiseowise 5 hours ago

msingh_5 13 hours ago

codybloem 14 hours ago

When it comes to side projects, most of the time, if the spirit isn't willing I find it not worth doing. Process/experience over results, I call leisure. Results over process, I call work. If you have many side projects done mainly for the results, than you are working in your free time, and looking at it like that: is it really free? The modern age already requires of us more results than the spirit is good for. I like to leave side projects for the good of the spirit. An exception could be results for a greater good that one really believes in. This can give purpose and enrich the process and experience of doing.

zippergz 11 hours ago

I have a lot of hobbies. Programming is one of them, but not the only one. There are times that some piece of software would help me with one of my hobbies, but I don't want to steal time from hobby X to build the software. And often these don't involve the kind of coding that I want to be doing for fun. This has been a sweet spot for LLM-aided coding for me. I've built several hobby helper apps where the goal was making one of my other hobbies more fun rather than programming. It's still hobby time, not work, but the hobby is not coding.

rjh29 13 hours ago

If you're coding for the sake of coding, maybe. If you have itches to scratch and ambitions, but can't summon the motivation or the time, then how is that "working in your free time"? A project that used to take up my entire weekend or vacation can now be knocked up in 15 minutes. That's the exact opposite of working.

i_love_retros 9 hours ago

What is coding for the sake of coding? I don't think anyone does that. Its about solving puzzles, using your brain, learning by doing, creating things- none of that happens when you use llm coding tools. Instead all you're doing is creating more cheap mediocre throwaway crap just because you can.

least 3 hours ago

w33n1s 14 hours ago

I share this view, I think it's very healthy.

I've been programming for 30+ years now, but I've always been fine with command line applications. Only recently I started getting into Qt to add a UI and turn my stuff into a real desktop application. It's been a real steep learning curve but I'm finally over it more or less.

Anyway I posted a screenshot of my application on LinkedIn, and mentioned it would be free and open source. I got HUNDREDS of comments from "LinkedIn-type people" all big name engineers that wouldn't HIRE me for anything but either made comments like "looking forward to integrating this into our workflows" or "not the first time someone tried to do this..."

Either way, instead of feeling motivated, I got the worst feeling that I'm doing all this work and people are either going to just take advantage of it and get the credit for "finding" it, or criticize it simply because it's not for them.

It bummed me out so bad that I stopped work on it entirely for like a month.

Anyway I finally came to look at it the way you mentioned. What I LIKED was the process of learning Qt and seeing my old programs come alive.

So instead, it's my "project car" now. I build it up and tear it down all the time. Totally redesign the data models just to see what advantages different designs can give me. Try make my own graphical views. Try implementing language translations.

It's been "finished" for a while now but I probably have five completely different-under-the-hood versions of it and THAT is what has been fun.

I use it constantly all day at work and I never mentioned it on LinkedIn again lol

tarr1124 14 hours ago

Three notetaking app attempts sitting in my private repos, all stalled at the gap between idea and free time. With Claude Code I finally got the one I really wanted out in two months. Building it has been the best hobby I've found. Beats games or scrolling. When you've been carrying an idea for years, the app that finally ships has more of you in it, and I'd bet we'll see a lot more of these from solo builders.

guessbest 9 hours ago

But who will buy it? No knocks against building old projects, but the market will be flooded with extremely speciality projects. I miss when every app had a spec on the box. I think we need something like that for usage. A new modeling language or something.

roncesvalles 7 hours ago

>the market will be flooded with extremely speciality projects

All the personal tools described in this thread are duct tape and bubblegum under the hood and nowhere near productionizable. That's what Claude Code makes for you.

The whole point is that for personal tools, code quality never really mattered since it's never going to be exposed to the public or be iterated upon by a revolving door team of devs like real software products. These are all highly overfitted tools that shave off like 15 seconds of time in the day for some particular person.

It's almost exactly like having a 3D printer for software, with exactly the kind of quality that a present-day 3D printer gives you.

tarr1124 3 hours ago

Selling would be nice, but a lot of solo builders are mainly in it for the building. The note app I wanted didn't exist anywhere. I was close to hiring a contractor to build it, so it's already worth tens of thousands of dollars to me. I want to make a bit off it but not run a real business. No VC, no employees. If it earns enough to pay my own salary, I get to keep building it as my job, which beats most startup exit math. Reaching maybe 100 people with the same problem is the target.

zormino 9 hours ago

Who cares? Nothing wrong with trying to make a product to sell, but projects dont have to be to sell. I've been having a blast lately working on an old game engine I started during covid and getting sidetracked into some new projects. None of them will ever make me a dime but I'm learning a ton and having fun.

ianhxu an hour ago

I've had several product ideas a week for years, all of them just sitting in Apple Notes. In the last month, I built three of them into a usable beta and I use all of them every day.

jillesvangurp 4 hours ago

I've always had more ideas than I can take on. Some of them are good ideas even. With AI tools, I'm now able to generate fairly decent working things for more of them.

Ironically the value of implementing these ideas is dropping fast. A few weeks ago, I built a little search library that runs in the browser and doesn't need a server. It's styled after Elasticsearch and has most of it's term and matching query support, aggregation support, and I added ANN vector search as well (uses web GPU). Most of that was just me going "let's add feature X" and boom done. I used it in some websites (also built using AI) at this point. It doesn't scale but it's great for blogs, documentation sites (https://querylight.tryformation.com/, this site documents the library), etc. It all works exactly like I imagined it would. I probably could add most of the long tail of features Elasticsearch has to this library with very little effort.

But the flip side is that the library got a rather lukewarm reception on Github. It seems people are too busy coding things themselves with AI to appreciate other people's efforts much. And fair enough, if you need a search library, you could probably generate your own. Or just let the AI pick one for you. It's not like this was hard for me or a lot of work.

The economic value of these projects is dropping rapidly. I still like doing them because I like building stuff. And I think there is as a learning curve with these tools that is important to master. Because there is a lot of work that is going to need doing still and people will pay less for it and still expect decent results that you can only get if you master the tools. The ambition level will just go up to match what is now possible. People thinking that they are going to lean back while the AI works for them are in for a surprise. I work very long days the last months.

cedws 13 hours ago

In the time I’ve had agents I’ve never abandoned more projects. Vibe coding especially just leads me to feel no attachment. I don’t feel proud to put my name on it.

Despite coding from a young age I always thought that I cared more about the outcome than the code. Turns out that’s not entirely the case.

noisy_boy 6 hours ago

I have revamped my home networking setup, installed raspberry pi, setup adguard on it for the home network, migrated my jellyfin set-up to it, integrated all these devices on tailscale, dealt with physical LAN point limitations by setting up a switch, repurposed old router to get around ISP imposed limitations, setup a three tier backup solution and so on. In themselves they are not particularly challenging but taken together, these personal projects had been pending for years.

Not any more. Few weekends and everything has been implemented and I have learned a ton in the process. It has been great fun doing this turbo charged tinkering. I think personal projects are where LLMs shine the brightest.

teo_zero 5 hours ago

> things I really wish existed.

Just last week I was looking for a way to move all the windows from one screen to another in a go. After evaluating many clumsy or over-complicated existing solutions, I asked copilot to write a C program to do it. It had to be minimal and not depend on any runtime framework. A few loops later I had what I wanted without installing third-party tools!

rasz 2 hours ago

> move all the windows from one screen to another in a go

Sounds like a job for 10 line AutoHotkey script.

theshrike79 16 hours ago

> In my mind there are different buckets for personal projects. One is things I do to learn and grow and the other is things I really wish existed.

Pretty much 100% of projects I've done with vibe coding/engineering is in the second category. Stuff I need that either doesn't exist or exists, but is either horribly complex to configure or is a mess of 420 features even though I just need one of them.

It's a lot easier for me to implement that one specific feature just for myself than keep vigilant on an existing app's eventual scope creep as it progresses to the eventual ability to read email[0] =).

[0] http://www.catb.org/jargon/html/Z/Zawinskis-Law.html

ozim 15 hours ago

With AI coding I was able to build three applications I always wanted but never had time to code them.

Now it is different in a way — I don’t have time to use them.

simonw 11 hours ago

I've genuinely lost count of the number of little vibe coded things I've built but then failed to use, because it turns out I have limited bandwidth in terms of fully trying out the quirky ideas I'm popping out through coding agents.

theendisney 14 hours ago

I once had a project for novice freelancers. The idea was to take your abandoned fumble and put multiple people on it at 3rd world rates. There are lots of people in cheap coutries who can somewhat code. You can aford hiring someone for [say] 3 euro per day. If they describe where they got stuck in the daily progres report you can look at it and help a bit or not and Just let them figure it out.

You can pay more of course, buy them a computer, an internet connecties, books, courses, even an office but it isnt required.

Just pay 60 per project every 4 weeks and ignore it. If interesting progress happens its fun to look at.

natpalmer1776 14 hours ago

This sounds similar to how art patronage used to (still does?) work.

aetherspawn 13 hours ago

Which site did you use?

potomak 7 hours ago

I prompted Claude code from my phone to revive Draw!, a pixel art editor I first published 15 years ago as an exploration using Redis as a DB.

The new version is live at http://pixel.drawbang.com after 1 week of prompting Opus 4.6 with a max subscription.

rhubarbtree 2 hours ago

Could you try to revive it by hand? I’m curious as to how long it would have taken.

aifactory5 14 hours ago

The tooling landscape has changed so much in the last two years that I find myself re-evaluating automation setups that were solid 18 months ago. The time investment to rebuild is real but the efficiency gains on the other side are worth it for anything you're doing more than a few times a week.

thegrim33 13 hours ago

Every time I see a story like this I like to play the game "does this person just happen to work for a company that sells AI solutions?". And yes, yes they do. Almost never will see you a story promoting AI solutions from someone that isn't directly involved in selling AI solutions.

wiseowise 4 hours ago

“Losing GPT 5.5 feels like amputating a limb”, - unnamed NVidia engineer.

hansmayer 13 hours ago

+1 and - The title has that weird corpo media "here is why you should not quiet quit" vibe to it, doesn'it?

fitsumbelay 10 hours ago

it's a top affordance of AI because pause development usually over complexity I can't manage or knowledge gap that I can't close in time to sustain momentum. Not only are those roadblocks a non-issue, my perspective shifts from in-the-weeds hacking to a perch with meta view to take the project to completion or maybe beyond previous goals. win-win to the power of win

jliptzin 12 hours ago

We have closed-source and open-source software, I think the next phase is going to be self-source or llm-source software (not sure what the term will ultimately end up being), but basically if you have a need for something that is not filled exactly by any app, you will just give the spec to an LLM and in X amount of minutes/hours you will have bespoke software built just for you to use personally, fully tested and to spec. For example, I still haven't found a workout/weight lifting tracking app that does 100% of what I want and at this point I may just build it myself because I could probably do it in half a day with claude and won't have to pay any annoying subscription fees. Maybe it'll still be called AI slop but if it works it works.

butz 6 hours ago

So, what are you planning to do when you finish all your unfinished hobby projects?

DeathArrow 2 hours ago

>I initially drafted this before my last post on how Claude Code is getting worse. I'm putting it out now so I can reference it in a future post on OpenCode.

IMO, what is getting worse is not Claude Code, the CLI tool, but Anthropic API. That's what most people experience.

I used Claude Code with GLM 5.1, MiniMax M2.7, Kimi K2.6 and had pretty good results.

I prefer Claude Code over OpenCode because most plugins and skills have best compatibility with Claude Code.

Even Terminal Bench showed a bit better results for Claude Code than for OpenCode.

NetOpWibby 13 hours ago

In 2020 I was in the Codemirror forums trying to get help with a project that replaces React in GraphiQL for Svelte. It was too difficult for me to figure out so I shelved it. Yesterday I asked Claude to make this happen and it referenced that very thread I made.

Anyhoo, I'm working on making it pretty (it works!!) before integrating it into my opinionated GraphQL server[1].

There really is no excuse for NOT being the change you wish to see in the world anymore.

---

[1]: https://code.webb.page/eol/gq.git/about

flashdesk 7 hours ago

I’ve had a similar experience.

Having better tools really makes a difference when revisiting old or half-finished projects.

cyanydeez 16 hours ago

There certainly is some relaxing value in working on projects to vibe code them; but not enough to pay some random corporation. Get yourself a Mac Studio or AMD395+ and pi or opencode, and a few plugins and they're pretty capable. Since they're not speed demons but reliable compaions who are always there, you don't ever feel compelled to constantly attend to whatever they're doing.

And when you inevitably get bored with it, well, you've not done much anyway. You can always get back up to speed in a month and have the LLM remind you of what it was doing.

kowbell 15 hours ago

> And when you inevitably get bored with it, well, you've not done much anyway.

I'm very interested in Local LLMs but the cheapest Mac Studio right now is more expensive than 8 years of a Claude Code Pro subscription, and incomparably slower/less capable. If I get bored with it, I will have a piece of unused hardware and a couple grand less in my bank account.

binary0010 15 hours ago

I have opencode with qwen 3.6 on my local machine. Just get the setup right and it's surprisingly fun to work with.

kowbell 15 hours ago

politelemon 15 hours ago

If you already have a gaming pc, then it's worth exploring as the cost of boredom is negligible.

kowbell 15 hours ago

cyanydeez 13 hours ago

AMD 395+ w/128gb is all you need. the idea that mac studio is the default is a nerdfest.

kowbell 8 hours ago

AntiUSAbah 16 hours ago

I find $200/month for the pro/max subscriptions cost prohibivitve, but as a software enginere $20/month is just lunch.

And with a Claude or GPT $20 Subscription, i can do other fun things too like using it for real things (emails) or image generation.

A Mac Studio or AMD395 is neither of it. And its not just a basic setup either. I need to buy it, configure it, put it somewhere. That alone is a grand and more + a whole weekend.

cyanydeez 13 hours ago

You need to factor in the constant value proposition that cloud providers will absolutely drive you to in the next 2 years; even if you're not an AI hater, you should listen to ed zitron's description of the value props these clouds require to make a profit for their VC backers.

This means oyu may be opinionated today on something you will not have tomorrow, 6 months, a year. All that work flow you salivate over can be ripped away.

If you're fine with that, and you've "escaped the permanent underclass" congrats, this opinion is not for you.

IanCal 16 hours ago

Buying hardware is paying a "random corporation". Make the massive hardware purchase after finding out if you have enough demand to buy rather than rent,

cyanydeez 13 hours ago

My hardware won't be nerfed because a cloud business requires sacrifices.

binary0010 15 hours ago

Yeah. I setup opencode + qwen 3.6 last weekend.

It's actually really cool to have it work on some internal tooling and stuff while I work on my primary projects.

I'm surprised how easy it is to setup and that it can handle modestly complex planning and development flows.

hansmayer 14 hours ago

Sounds a lot like that disgusti g corporate press propaganda tbh, of the "eat less avocado toast if you cant afford rent" variant. Is the AI mainstream that desperate in their relentlesss push for adoption of their bullshit text generators?

bdangubic 15 hours ago

projects you were never going to finish should stay projects that are never finished :)

wiseowise 4 hours ago

This. It is bizarre to read about +100 or whatever generated tools. Reminds me of those “1000+ games” bundle that are cheap knock off of popular games.

throwatdem12311 15 hours ago

effort needed used to be a gatekeeper for bad ideas

now Claude will gas you up and tell you your bad ideas are actually the most amazing thing it’s ever heard

sdevonoes 16 hours ago

But why give Anthropic/openai our money? Nonsense. Use open models

AntiUSAbah 16 hours ago

Quality, simplicity, speed.

I have a ML Setup with 2 4090 and 128gb of ram, its warm when i use them for finetuning or batch processes.

I do not run them for coding. Its a lot easier and nicer to play around with better models for just 20 $.

operatingthetan 15 hours ago

Well they are subsidizing us for starters.

victorbjorklund 13 hours ago

Why give apple/nvidia your money?

badsectoracula 12 hours ago

Jokes on you, i'm running my local models on AMD :-P

theshrike79 16 hours ago

The author got $50 free credits.

Also Anthropic is by far the best, open (local) models are glorified autocomplete at best unless you casually have 20k€ worth of hardware at home.

binary0010 15 hours ago

Disagree. Qwen 3.6 and opencode have built and helped plan entire feature sets such as vectorizing and searching, setting up UI to manage categorized search data. Some test systems around this, etc.

Very usable locally assuming you setup your local tooling correctly and you are an actual programmer who can generally help drive this stuff correctly and not just a vibe coder.

theshrike79 14 hours ago

eikenberry 15 hours ago

Why assume local when you can easily use any of the open models via openrouter or any number of similar services.

theshrike79 14 hours ago

nothinkjustai 13 hours ago

What is the point of using AI for a side project? Isn’t the point of a side project to A) have fun writing code or B) challenge yourself or C) learn something new, and usually all 3? Slopping out random stuff you have no attachment to, taught you nothing, and that feels bad to pass off as your own work accomplishes nothing.

rjh29 13 hours ago

D) to solve a problem in your personal life? To make an app that you wish existed but didn't?

wiseowise 4 hours ago

Most of the replies in the thread that do this just scratch their OCD.

aokdi 13 hours ago

Yes, you can revive it into worthless slop. Learning next to nothing for yourself and achieving a hollow sense of satisfaction at best.

Maybe even shamelessly post it as a Show HN along with the other 99% of worthless slop submissions there.

rjh29 13 hours ago

I want app X. I know how to code it but it'll take a whole weekend/vacation days. I would learn nothing. Now I can use AI to make it. What exactly am I losing here?

maplethorpe 11 hours ago

How do you know you'd learn nothing from it?

rjh29 6 hours ago

aokdi 13 hours ago

Your dignity.

CharlesW 13 hours ago

dang 16 hours ago

[stub for offtopicness]

[we've hopefully deprovokified the title now]

WaxProlix 16 hours ago

To use agentic what? Off topic as heck but I really dislike this trend of coercing adjectives into true nominals - we're using programmatic! - like some sort of even-more-obnoxious variant on the verb to noun ('the ask') process.

Why does it bother me so? I have no idea.

tensegrist 16 hours ago

blame the hn title rules (although i would just have substituted "AI")

i doubt anyone is nouning "agentic" of their own accord (yet)

operatingthetan 15 hours ago

sailfast 16 hours ago

It’s ok to use coding assistance tools for anything you’d like! Not that you needed the permission of some random on the internet.

hard_times 16 hours ago

Oh? How very kind of the author to allow me to.

nike-17 16 hours ago

[flagged]

toolrelay 10 hours ago

This hits home. I have ~10 abandoned side projects.

I just shipped one this week (ToolRelay - toolrelay.online) by forcing myself to focus on a single vertical slice end-to-end and stop opening new repos.

The pattern that broke for me: stop building, start distributing. The build phase gives a dopamine hit; distribution feels painful, so we keep building instead.

Curious — was the AI assistance helping you build new features, or helping you re-understand your own old code months later?

VladVladikoff 9 hours ago

I checked your link and fail to see how that is a pre AI project that you are only completing now, it is obviously a recent concept. Also your username matches the project, so this seems mostly like a lame attempt to shill your product by “joining the conversation”

lelanthran 6 hours ago

You replied to a bot.