• 1 Post
  • 510 Comments
Joined 1 year ago
cake
Cake day: June 29th, 2023

help-circle
  • I think that’s fair.

    I don’t have AI integration in my ide, mostly by choice -if I pushed for it I could make it happen, but I just don’t think that’s a good idea at this point

    AI can be a crutch . One that limits you to the level of a baby developer. If you can’t effortlessly understand what it gives you, frankly you shouldn’t be using it.

    Bounce ideas of chat gpt. It sounds like you’ve got the right idea - your reaction sounds correct to me, you should never ever trust it… You must only use it, and that’s the tone I get from your post.

    It is a tool, you are a programmer. You exploit tools, you do not trust any tool. You are the one who turns ideas into actions, never forget that and you can use this new tool anywhere it makes your life easier


  • In fairness, about 50% of my code by lines is written by AI these days, and I don’t have it linked into my code base. That claim isn’t ridiculous

    Now, of that 50% is 88% long repetitive crap that I could easily write but find mentally draining, the other 10% is something simple that I would normally copy paste from elsewhere because I forgot the exact syntax (and don’t exactly remember where I used it last) and me giving it a shot with things I don’t want to do, like restyling a page. The last 2% is me giving it a shot with business logic for shits and giggles, occasionally I’ll try to coach it through the solution but usually I just grab bits and pieces and rewrite it myself

    Granted, this is the easiest and most simple and repetitive code, but it’s still a godsend. Now can AI write the other 50%? With a proper setup where it ingests the code base into a vector store it might get up to 75%, if I was willing to coach it through my tasks carefully (taking more time than the task would take me) I could probably get it up to 85% or 90%, but that last 10%? It just can’t, it’s not even close

    It’s not taking my job without a paradigm shifting breakthrough or two on the scale of “all you need is attention”. Even then, it only works if you write your prompts like code… If you don’t understand how to use it and understand the code well enough to communicate the goal explicitly and unambiguously, you’re not going to be able to drive it where you want it to go

    To put it another way, you can build 90% of the system in 10% of the time it takes to complete the last 10%


  • Can confirm. My phone got kicked off when they started sunsetting 3G. They called me (on said phone with no service lol) and said I needed a new phone. I said “no I don’t, put me back on the network”. We went back and forth, then they forwarded me to the tech department

    The tech says “you need a new phone”. I said “no I don’t, I have all but one of the new bands and others with my phone have already gone through this process with you guys”. He said “you can’t believe everything you read online”, I said “be that as it may, I looked at the specs for both my phone and your network, and it meets the requirements”

    He starts telling me there’s nothing he can do on his end, I say he just has to find an override to stop blocking my phone. He says he doesn’t have any options like that, I promise him it’s there

    After getting tired of going in circles, I say if he doesn’t know how to do it he needs to ask someone or pass me to a higher tier. Surprise surprise, my phone instantly shows bars and he tries to gloss over the whole thing


  • Pretty often, but then you can just refactor the code so you can use it for more situations

    What LLMs are good at are the opposite - when the thing you want to do is almost exactly the same, but nearly all the details need to be changed

    Say you want a page to edit account details, and another page to edit community details. And the API paths to do this will be even more similar - but because they’re different things, you’d have to get fancy with the design to make code that works for both… It’s possible, but there will be trade-offs

    LLMs are great at it though… Pass in the account page, give it the object definition for the community details, and it’ll spit it out for you






  • That’s a bit much… It’s just not possible to guarantee that as a developer

    Software is a living thing, and anything useful is made up of layer after layer of ever shifting sand. We do our best, but we are all at the mercy of our dependencies. There are trade-offs, there are bugs we can do nothing about, and sometimes moving forward means dropping support for platforms that are no longer “cheap” enough to afford while also working on the game

    I love this though. I also like the idea of requiring access to earlier builds.

    These mitigate anti consumer practices - dropping support for a platform is more likely to be a technical trade-off or unintentional consequence though





  • Ah, but that’s the beauty of it. Why are they here? If it’s to troll, don’t give them what they want. If it’s for social interaction… Why are they venturing out of their echo chamber?

    Every interaction with a community pulls you slightly closer to the group consensus. You can fight it to some extent, but we’re wired to fit in with the tribe

    Social rejection is wired similar to pain in our brains - it’s far more salient, far more memorable and impactful, than normal interactions.

    The highest form of this is rejection by the community - it hurts most when everyone’s attention is on you and they all reject you. Even a single person quietly reaching out afterwards is like a lifeline - it stands out to you. It takes hundreds or thousands of “normal” interactions to counteract one extreme negative one

    A supportive community back home doesn’t counteract the impacts from an away game. Don’t go to their turf, let them come to ours. Do not feed them - we have better content, they’ll lose members to us, and if we do it right they’ll shrink until their echo chambers can no longer sustain themselves


  • I just pass the create table statements after the instructions. It does pretty good up to 2 or 3 tables, but it will start to make mistakes when things get complicated

    On the plus side, it’ll generate tedious code very well - double checking it is less draining than writing it yourself. Especially because I make more typos than it does - I often use it to get a starting point, then write the business logic myself