▲ | carpo a day ago | |||||||||||||
I'm the complete opposite. After being burnt out and feeling an almost physical repulsion to starting anything new, using AI has renewed my passion. I've almost finished a side project I started 4 weeks ago and it's been awesome. Used AI from the beginning for a Desktop app with a framework I'd never heard of before and the learning curve is almost non-existent. To be able to get the boring things done in minutes is amazing. | ||||||||||||||
▲ | crm9125 21 hours ago | parent | next [-] | |||||||||||||
Similar sentiment here. I taught myself python a decade ago after college, and used it in side projects, during my masters degree, in a few work projects. So it's been handy, but also required quite a bit of time and effort to learn. But I've been using Claude to help with all kinds of side projects. One recently was to help create and refine some python code to take the latest Wikipedia zipped XML file and transform/load it locally into a PostgreSQL DB. The initial iteration of the code took ~16 hours to unzip, process, and load into the database. I wanted it to be faster. I don't know how to use multiple processes/multi-threading, but after some prompting, iterating, and persistent negotiations with Claude to refine the code (and an SSD upgrade) I can go from the 24gb zip file to all cleaned/transformed data in the DB in about 2.5 hours. Feels good man. Do I need to know exactly what's happening in the code (or at lowers levels, abstracted from me) to make it faster? not really. Could someone who was more skilled, that knew more about multi-threading, or other faster programming languages, etc..., make it even faster? probably. Is the code dog shit? it may not be production ready, but it works for me, and is clean enough. Someone who better knew what they were doing could work with it to make it even better. I feel like LLMs are great for brainstorming, idea generation, initial iterations. And in general can get you 80%+ the way to your goal, almost no matter what it is, much faster than any other method. | ||||||||||||||
| ||||||||||||||
▲ | theshrike79 16 hours ago | parent | prev | next [-] | |||||||||||||
I'm on this boat. I can use LLMs to skip the boring bits like generating API glue classes or simple output functions. Example: I'm building a tool to grab my data from different sites like Steam, Imdb, Letterboxd and Goodreads. I know perfectly well how to write a parser for the Goodreads CSV output, but it doesn't exactly tickle my brain. Cursor or Cline will do it in minutes. Now I've got some data to work with, which is the fun bit. Again if I want to format the output to markdown for Obsidian, the LLM can do it in a few minutes and maybe even add stuff I didn't think about at first. | ||||||||||||||
| ||||||||||||||
▲ | FeepingCreature 17 hours ago | parent | prev | next [-] | |||||||||||||
Same for me. The lack of effort to get started is amazing, as well as the ability to farm the parts I don't like out to the AI. (As opposed to me, it's actually passable at graphical design.) | ||||||||||||||
▲ | ManuelKiessling 17 hours ago | parent | prev [-] | |||||||||||||
I'm very much in the same camp as you. I'm having the time of my (professional) live right now. |