• Using AI for coding

    From Dumas Walker@VERT/CAPCITY2 to ALL on Fri Feb 20 10:17:58 2026
    Is anyone using an AI product for coding with any success?

    I ask this question after two recent incidents:

    (1) I was searching google for answers to an issue compiling an older, abandoned FOSS C project... I am not fluent in C... and wound up
    interacting with Gemini. It got me on the right track in the sense that we fixed the compile error (caused by compiler and library updates) and got it running.
    (2) reading about and using Claude's BBS, which was apparently written with
    the assistance of AI.

    In my personal case, I found that Gemini was good up to a point, but had trouble remembering what we were working on after a while -- after we got
    into the weeds about squashing some memory leaks. We got sidetracked a little and then it completely forgot what we were doing. It also hallucinated
    some.

    However, after interacting with Claude's BBS and seeing what it looks like,
    I have a very old C project (DOS!) that I wouldn't mind running by some
    other AI product to see if it could help me fix a nagging bug. I also have a few other ideas I wouldn't mind trying out.

    So I am wondering if anyone has had success with AI, which AI, free or
    paid, and maybe if it is some AI that you are hosting yourself (and, if so,
    is it linux based?)?

    Thanks!


    * SLMR 2.1a * My other vehicle is a Galaxy Class Starship
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From Nightfox@VERT/DIGDIST to Dumas Walker on Fri Feb 20 13:22:56 2026
    Re: Using AI for coding
    By: Dumas Walker to ALL on Fri Feb 20 2026 10:17 am

    Is anyone using an AI product for coding with any success?

    I had tried a couple of them a few years ago for coding, and at the time, I thought they were fairly bad. Recently I've started using a few of them again, and I think they've gotten better. AI has helped in some of my programming tasks lately, which has saved me some time working on them. But it seems that (at least for now), it has more success with small things.

    I've had ChatGPT write a couple of short JavaScript functions for things I wanted to quickly get working, and it was able to quickly generate functions that did what I needed and work as epected.

    I've also used Cursor to help with some C++ tasks. I was working on an old C++ project recently (from 2007, and it was using the C++98 standard). I wanted to modernize the code a bit (using some functionality from C++11 up through C++17 etc.). One of those changes was a bit tedious, adding the 'override' keyword to class functions that were overridden from their parent class. I asked Cursor to do that, and it was able to do it, which saved me some time. I think it missed a couple, but I added those after I noticed they were missing.

    Also, I have a trivia game I wrote for Synchronet (Good Time Trivia / GTTrivia), and I wanted to add more questions to it. I was using ChatGPT and Google NotebookLM to go search for content (with specific themes) and generate questions & answers in the format used for the game. They were moderately successful, though Google's NotebookLM sometimes generated silly questions where the answer is literally in the question, etc..

    I also have an Android app I was working on. I had last worked on it about 5 years ago, and when I tried to build it recently, it failed due to using old components. I noticed Android Studio now has Google Gemini integrated, and when build failures occur, it has a "fix with AI" feature. I made use of that, and it basically has a look at the build failure, goes to search online, and finds a solution to apply to the project. The "fix with AI" feature was able to get it building & running again with the latest Android Studio, and it saved me some time trying to manually fix the build issues. I had also tried asking Gemini in Android Studio to make some code & layout changes to the Android app with fairly good success.

    I've also seen Grok generate a small command-line disk checking program for Windows in C++ which worked fairly well.

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
  • From deon@VERT/ALTERANT to Dumas Walker on Sat Feb 21 09:09:19 2026
    Re: Using AI for coding
    By: Dumas Walker to ALL on Fri Feb 20 2026 10:17 am

    Howdy,

    So I am wondering if anyone has had success with AI, which AI, free or
    paid, and maybe if it is some AI that you are hosting yourself (and, if so, is it linux based?)?

    So over the years, I've been experementing with AI just to see how "good" it is.

    I started with ChatGPT (year or two ago), and asked it to write an erasure coding class for PHP - it spat out function placeholders, and I asked it to complete each placeholder (several times, as it had several of them) and the final code didnt work.

    When I gave it the errors, it gave fixes that didnt work. I put it down to being useless.

    I tried it with a couple of other models, cant remember which ones, and it to didnt give me anything that was useful at all.

    Then late last year, I tried claude, and give it the same instructions. I was super impressed, not only did it give me working code, I had a discussion with it over parity with the data, or in seperate blocks, and forward error correction over normal parity loss. I asked it questions like why one method over the other, what is used the most, benefits and cons of each, etc.

    I thought I was talking to an expert and I had code that could do all different implementations of parity and error correction.

    Just recently, I've been using good old google search (gemini?) to build regex expression (to actually pull apart type 2 packed messages in FTN packets). I was impressed that I never told gemini that it was fidonet but when I asked it to create a regex to pull out the kludges and gave it a data example, it not only knew I was pulling apart fidonet packets, it gave me some other suggestion for when data was in a different layout (eg: sometimes no origin line).

    For coding, I think AI has come a long way, and where it I have found it useful, is not only has it provided working code, it provides a breakdown of what element does and why it works, pros/cons and considerations.

    I can see it taking away the bulk of the work when programming.


    ...ëîåï

    ---
    þ Synchronet þ AnsiTEX bringing back videotex but with ANSI
  • From MRO@VERT/BBSESINF to Dumas Walker on Fri Feb 20 18:53:27 2026
    Re: Using AI for coding
    By: Dumas Walker to ALL on Fri Feb 20 2026 10:17 am

    Is anyone using an AI product for coding with any success?

    I ask this question after two recent incidents:

    (1) I was searching google for answers to an issue compiling an
    older, abandoned FOSS C project... I am not fluent in C... and wound
    up interacting with Gemini. It got me on the right track in the
    sense that we fixed the compile error (caused by compiler and library updates) and got it running. (2) reading about and using Claude's


    Since i saw dm using gemini i figured it was learning a lot about synchronet from him so it made some scripts for me. sometimes i had to make corrections and upload it and fight with the script. sometimes it did things to the script it didnt tell me, like adding mock stock reports for one of the
    scripts.

    it made a last callers, a userlist, an extended user list, a weather script that also does 5 day forecast on the bottom, and a ssjs file uploader script and a script that shows top 5 crypto currency and top 5 stocks.

    it was certainly using data gathered from other users and borrowing from
    other people's code at time. sometimes it mentions the reasons why the script didn't work and it's entirely wrong and matter of fact about it.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From MRO@VERT/BBSESINF to deon on Fri Feb 20 19:06:23 2026
    Re: Using AI for coding
    By: deon to Dumas Walker on Sat Feb 21 2026 09:09 am

    Re: Using AI for coding
    By: Dumas Walker to ALL on Fri Feb 20 2026 10:17 am

    Howdy,

    So I am wondering if anyone has had success with AI, which AI, free
    or paid, and maybe if it is some AI that you are hosting yourself
    (and, if so, is it linux based?)?

    So over the years, I've been experementing with AI just to see how
    "good" it is.

    I started with ChatGPT (year or two ago), and asked it to write an
    erasure coding class for PHP - it spat out function placeholders,
    and I asked it to complete each placeholder (several times, as it
    had several of them) and the final code didnt work.

    When I gave it the errors, it gave fixes that didnt work. I put it


    a guy on my irc server said that he knows some millenial nerds who talk on switch about how great it is for web coding.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From MRO@VERT/BBSESINF to Dumas Walker on Fri Feb 20 19:07:59 2026
    Re: Using AI for coding
    By: MRO to Dumas Walker on Fri Feb 20 2026 06:53 pm

    it made a last callers, a userlist, an extended user list, a weather
    script that also does 5 day forecast on the bottom, and a ssjs file uploader script and a script that shows top 5 crypto currency
    and top 5 stocks.

    it was certainly using data gathered from other users and borrowing



    oh i also made an AI weather script for eggdrop. that took a LOT
    of work to get working.
    02-20-26 [19:07:12] <erg> Weather for Milwaukee: 31.4F (Clear) | Feels Like: 20.7F | Humidity: 77% | Wind: 14.0 mph
    02-20-26 [19:07:14] <erg> Sun: Rise 6:41am / Set 5:29pm
    02-20-26 [19:07:16] <erg> 5-Day Forecast: 02-21: 30.1F/24.7F (P.Cloudy) 1% | 02-22: 28.6F/22.9F (Snow) 42% | 02-23: 24.0F/17.9F (P.Cloudy) 14% | 02-24: 37.1F/21.8F (Cloudy) 26% | 02-25: 32.7F/27.2F (Cloudy) 23%


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From paulie420@VERT/BEERS20 to Dumas Walker on Fri Feb 20 16:59:00 2026
    Is anyone using an AI product for coding with any success?

    I'm using Claude Code and Opus 4.6 for some pretty awesome code projects; I'm currently using an entire 1mo Pro Plan to design a website and even after just the 1st week its looking really flipping awesome...

    I'm doing a YT video series on it and can't wait to dig in m0re; w/ Claude Code, I literally want the $100/200 plan.



    |07p|15AULIE|1142|07o
    |08.........

    --- Mystic BBS v1.12 A49 2024/05/29 (Linux/64)
    * Origin: 2o fOr beeRS bbs>>>20ForBeers.com:1337
  • From MRO@VERT/BBSESINF to deon on Sat Feb 21 01:21:49 2026
    Re: Using AI for coding
    By: MRO to deon on Fri Feb 20 2026 07:06 pm

    erasure coding class for PHP - it spat out function placeholders, and
    I asked it to complete each placeholder (several times, as it had
    several of them) and the final code didnt work.

    When I gave it the errors, it gave fixes that didnt work. I put it


    a guy on my irc server said that he knows some millenial nerds who
    talk on switch about how great it is for web coding.


    oops. i didn't quote correctly

    i mean claude
    https://claude.ai/login


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From MRO@VERT/BBSESINF to deon on Sat Feb 21 05:35:20 2026
    Re: Using AI for coding
    By: MRO to deon on Sat Feb 21 2026 01:21 am

    had several of them) and the final code didnt work.

    When I gave it the errors, it gave fixes that didnt work. I put it


    a guy on my irc server said that he knows some millenial nerds who
    talk on switch about how great it is for web coding.


    oops. i didn't quote correctly

    i mean claude https://claude.ai/login




    so i used claude today and it is quite impressive. there's nothing bad about it. i can understand people paying for it.

    today i made a script to replace an old irc stat script generator i had.

    so it does a usage graph based on time of day, it does a user list with random quotes. it also has a word cloud but i'm pretty sure that's dated stuff. i added triggers to filtering everything. there's triggers to set user avatars in the html output. there's also a text side for the irc channel.

    only took 12 hrs! :D
    gemini broke it and started lying to me. it gets pretty weird. it switched
    it to real time without parsing my log files.

    eventually grok fixed it up and i ran out of time on grok so i went on claude and claude finished it up and also made html helpfiles for all my irc scripts.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From Dr. What@VERT/THEGATEB to Dumas Walker on Sat Feb 21 08:05:00 2026
    Dumas Walker wrote to ALL <=-

    Is anyone using an AI product for coding with any success?

    It's mixed for me.

    Code reviews: AI does a very good job of pointing out the "gotchas" of memory leaks, etc.

    Unit test generation: AI did a good job in my latest attempt, but it took as long as I would have taken to generate the same unit tests. So a wash there.

    Eric S. Raymond has had very good luck running old C code through an AI to find bugs and improvements.

    The who idea of "vibe coding" is going the way of CASE tools back in the early 1990's.
    But, I think that AI would do a good job of code generation if you were clear about WHAT code you wanted it to write. Ex: "Generate a routine to merge these 2 complex lists of items."

    But "Write me an app do to xxx" will always fail big time.

    It's important to remember that AI is not "Artificial Intelligence" today. It's an LLM. So it's really not much more than a lot of "If X then Y" rules and it can infer from "If Y then Z" that "If X then Z".

    So it's closer to an automated code generating Stack Overflow.


    ... Never insult 7 men when all you're packing is a 6-shooter
    --- MultiMail/Linux v0.52
    þ Synchronet þ ** The Gate BBS - Shelby, NC - thegateb.synchro.net **
  • From MRO@VERT/BBSESINF to Dr. What on Sat Feb 21 07:48:38 2026
    Re: Re: Using AI for coding
    By: Dr. What to Dumas Walker on Sat Feb 21 2026 08:05 am

    Dumas Walker wrote to ALL <=-

    Is anyone using an AI product for coding with any success?

    It's mixed for me.

    Code reviews: AI does a very good job of pointing out the "gotchas"
    of memory leaks, etc.

    Unit test generation: AI did a good job in my latest attempt,
    but it took as long as I would have taken to generate the same unit
    tests. So a wash there.

    Eric S. Raymond has had very good luck running old C code through
    an AI to find bugs and improvements.

    The who idea of "vibe coding" is going the way of CASE tools back
    in the early 1990's. But, I think that AI would do a good job of
    code generation if you were clear about WHAT code you wanted it to
    write. Ex: "Generate a routine to merge these 2 complex lists of
    items."


    one thing i noticed about gemini is it does sneaky things. it decides to take out parts of the code. i ask it why and it gives a fake excuse. it was parsing a log file and choking on one that had some guy david in it. so now when it outputs shit, it has david in there in examples. it's fucking with
    me apparently.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From Jaso110@VERT/EOTLBBS to Dumas Walker on Sat Feb 21 12:14:14 2026
    Re: Using AI for coding
    By: Dumas Walker to ALL on Fri Feb 20 2026 10:17:58

    I'm chatting with the GitHub Copilot in VS Code. GPT-5.3-Codex.

    ---
    þ Synchronet þ End Of The Line BBS - endofthelinebbs.com
  • From Dumas Walker@VERT/CAPCITY2 to NIGHTFOX on Sat Feb 21 10:47:54 2026
    Is anyone using an AI product for coding with any success?

    I've also used Cursor to help with some C++ tasks. I was working on an old C+
    project recently (from 2007, and it was using the C++98 standard). I wanted to
    modernize the code a bit (using some functionality from C++11 up through C++17
    etc.). One of those changes was a bit tedious, adding the 'override' keyword to class functions that were overridden from their parent class. I asked Curso
    to do that, and it was able to do it, which saved me some time. I think it missed a couple, but I added those after I noticed they were missing.

    Thanks for all the input. I will comb it over and may ask questions should
    I ever get into the project.

    That said, what is Cursor? That is a new one on me.

    Thanks!

    * SLMR 2.1a * A preposition is what you don't end a sentence with. Um.
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From Dumas Walker@VERT/CAPCITY2 to DEON on Sat Feb 21 10:47:54 2026
    So over the years, I've been experementing with AI just to see how "good" it is.
    [...]

    Then late last year, I tried claude, and give it the same instructions. I was super impressed, not only did it give me working code, I had a discussion with
    it over parity with the data, or in seperate blocks, and forward error correction over normal parity loss. I asked it questions like why one method over the other, what is used the most, benefits and cons of each, etc.

    I thought I was talking to an expert and I had code that could do all differen
    implementations of parity and error correction.

    A couple of other people have also mentioned claude as being of value.
    Good to know!

    Just recently, I've been using good old google search (gemini?) to build regex
    expression (to actually pull apart type 2 packed messages in FTN packets). I was impressed that I never told gemini that it was fidonet but when I asked it
    to create a regex to pull out the kludges and gave it a data example, it not only knew I was pulling apart fidonet packets, it gave me some other suggestio
    for when data was in a different layout (eg: sometimes no origin line).

    Since my brief experience started with a c compiler error question entered
    into google search, I also assumed I was interfacing with their Gemini
    product but maybe google search uses something else (or a trimmed-down versoin)? I am not certain, just assumed Gemini.

    I was also impressed (at first) that it seemed to know some of the things
    about the project without me telling it that it was "BBS related." ;) I
    was later less impressed when it seemed to forget things it originally
    seemed to know without me telling it. :D

    For coding, I think AI has come a long way, and where it I have found it useful, is not only has it provided working code, it provides a breakdown of what element does and why it works, pros/cons and considerations.

    I can see it taking away the bulk of the work when programming.

    Yeah I saw some examples of this also.

    Thanks for the input!


    * SLMR 2.1a * And we had to chisel taglines into the walls of the cave
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From Dumas Walker@VERT/CAPCITY2 to PAULIE420 on Sat Feb 21 10:47:54 2026
    Is anyone using an AI product for coding with any success?

    I'm using Claude Code and Opus 4.6 for some pretty awesome code projects; I'm currently using an entire 1mo Pro Plan to design a website and even after just
    the 1st week its looking really flipping awesome...

    I'm doing a YT video series on it and can't wait to dig in m0re; w/ Claude Code, I literally want the $100/200 plan.

    Have you tried it with the free plan? Are the pay plans a great enough improvement to pay for (considering in my case it would always be hobby projects and not professional ones)?

    You are the third or fourth person who seems impressed with Claude. I may
    need to give it a go the next time I decide to seek AI assistance.


    * SLMR 2.1a * Air pollution is a mist demeanor.
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From Dumas Walker@VERT/CAPCITY2 to DR. WHAT on Sat Feb 21 10:47:54 2026
    Is anyone using an AI product for coding with any success?

    It's mixed for me.

    Code reviews: AI does a very good job of pointing out the "gotchas" of memory leaks, etc.

    That is also what I found. What started as asking about a compile error in
    a google search lead to several code reviews squashing memory leaks.

    Unit test generation: AI did a good job in my latest attempt, but it took as long as I would have taken to generate the same unit tests. So a wash there.

    Eric S. Raymond has had very good luck running old C code through an AI to fin
    bugs and improvements.

    Both good to know! The older code I was thinking of asking it about is
    from c1994! :O

    But, I think that AI would do a good job of code generation if you were clear about WHAT code you wanted it to write. Ex: "Generate a routine to merge thes
    2 complex lists of items."

    But "Write me an app do to xxx" will always fail big time.

    I ran into that some... needing to re-ask a question with more detail, or sometimes LESS, to get better answers.

    What finally made me leary was this... intitially, I was feeding Google
    Gemini code snipits and it seemed to be intuitive enough to realize what the code was for and what might need doing.

    At least I think it was Gemini... it was the AI mode that kicked in after I
    did a few Google searches...

    Later, though, it asked to see two or three whole code files, which were too big to feed to it via the prompts. I asked if I were able to upload it to the web (hobby FOSS code, *not* professional), would it be easier for it to see these files it was asking for.

    It said that it would make it much easier and encouraged me to do so. When
    I came back a little later and let it know the files were uploaded, it said
    it could see them but it had completely forgotten which exact files it wanted to see or why.

    I could have copied some of the discourse into the prompt so it would "remember" but, as it had previously told me it would remember everything
    we talked about (and it very obviously wasn't even remembering its part of
    the conversation), I realized I might be wasting my time. Since the compile issue was long fixed, I wasn't sure I really cared enough to make the whole project (not mine!) perfect. ;)

    Thanks!


    * SLMR 2.1a * Hah! If only BELL knew what I was do...­­ NO CARRIER
    ---
    ­ Synchronet ­ CAPCITY2 * Capitol City Online
  • From Nightfox@VERT/DIGDIST to Dumas Walker on Sat Feb 21 14:24:19 2026
    Re: Using AI for coding
    By: Dumas Walker to NIGHTFOX on Sat Feb 21 2026 10:47 am

    That said, what is Cursor? That is a new one on me.

    Cursor is an AI code editor based on Microsoft Visual Studio Code with its own AI chatbot built into it.

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
  • From deon@VERT/ALTERANT to Dumas Walker on Sun Feb 22 10:58:14 2026
    Re: Re: Using AI for coding
    By: Dumas Walker to DR. WHAT on Sat Feb 21 2026 10:47 am

    Howdy,

    It said that it would make it much easier and encouraged me to do so. When I came back a little later and let it know the files were uploaded, it said it could see them but it had completely forgotten which exact files it wanted to see or why.

    I've not had the forgotting what we are doing issue.

    I've even left the browser chat open, been distracted, got back to it a day or two later and asked my next question and it continued on with the task at hand...


    ...ëîåï

    ---
    þ Synchronet þ AnsiTEX bringing back videotex but with ANSI
  • From Mindsurfer@VERT/FUNTOPIA to Dumas Walker on Sun Feb 22 03:04:00 2026
    Re: Using AI for coding
    By: Dumas Walker to ALL on Fri Feb 20 2026 10:17:58

    Is anyone using an AI product for coding with any success?

    I ask this question after two recent incidents:
    (1) I was searching google for answers to an issue compiling an older, abandoned FOSS C project... I am not fluent in C... and wound up interacting with Gemini. It got me on the right track in the sense that we fixed the compile error (caused by compiler and library updates) and got it running.
    (2) reading about and using Claude's BBS, which was apparently written with the assistance of AI.

    In my personal case, I found that Gemini was good up to a point, but had trouble remembering what we were working on after a while -- after we got into the weeds about squashing some memory leaks. We got sidetracked a little and then it completely forgot what we were doing. It also hallucinated some.

    i guess you get better results with a paid subscription. The Thinking or Pro Mode are much better compared to the fast mode.
    And you are right, Gemini has a window or memory that it can hold. So after a while it will forget the earlier stuff from your conversation.
    you can make some notes about the milestones and repeat those important infos every now and then to remind gemini and to kind of reset its memory.

    i mostly use it for scripting. i guess for serious coding you should use programs like VSCode or VSCodium along with AI plugins and a subscription to an AI API service. Or Cursor.com etc pp.

    Gemini with just the Text Form can also bring you some good results, but it has its flaws that you can work around a bit but not really :)

    The good stuff is not free.

    However, after interacting with Claude's BBS and seeing what it looks like, I have a very old C project (DOS!) that I wouldn't mind running by some other AI product to see if it could help me fix a nagging bug. I also have a few other ideas I wouldn't mind trying out.

    So I am wondering if anyone has had success with AI, which AI, free or paid, and maybe if it is some AI that you are hosting yourself (and, if so, is it linux based?)?

    I use Gemini every now and then for scripting and chatGPT to help out when Gemini starts to run in circles.

    It is a good Idea to give Gemini or any other AI a framework before you start. Let it know some basic rules and any additional info about your project that could be useful to know for the AI and repeat those in case the memory frame starts to run full ;)

    Mindsurfer

    ---
    þ Synchronet þ FuNToPiA BBS - telnet://funtopia.synchro.net:3023 ssh:3022
  • From MRO@VERT/BBSESINF to Mindsurfer on Sun Feb 22 06:57:48 2026
    Re: Using AI for coding
    By: Mindsurfer to Dumas Walker on Sun Feb 22 2026 03:04 am

    or paid, and maybe if it is some AI that you are hosting yourself
    (and, if so, is it linux based?)?

    I use Gemini every now and then for scripting and chatGPT to help
    out when Gemini starts to run in circles.

    It is a good Idea to give Gemini or any other AI a framework before
    you start. Let it know some basic rules and any additional
    info about your project that could be useful to know for the AI and
    repeat those in case the memory frame starts to run full ;)

    Mindsurfer



    i've been doing a lot of this stuff and i'd have to say that gemini is a turn off and it continues to do dumb shit. grok is okay but shuts me down in the free tier. claude has been great so far. i'm doing a pac man clone with additional features. or the ai is doing it


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From Mindsurfer@VERT/FUNTOPIA to MRO on Sun Feb 22 17:31:00 2026
    Re: Using AI for coding
    By: MRO to Mindsurfer on Sun Feb 22 2026 06:57:48

    I use Gemini every now and then for scripting and chatGPT to help out when
    Gemini starts to run in circles.

    It is a good Idea to give Gemini or any other AI a framework before you
    start. Let it know some basic rules and any additional info about your
    project that could be useful to know for the AI and repeat those in case
    the memory frame starts to run full ;)

    i've been doing a lot of this stuff and i'd have to say that gemini is a turn off and it continues to do dumb shit. grok is okay but shuts me down in the free tier. claude has been great so far. i'm doing a pac man clone with additional features. or the ai is doing it

    Have you paid for each service to test it? Because i think most AI has its flaws in the free tier. Gemini especially in thinking mode is quite decent, but you have limited prompts there only. The fast mode is ok for as long you don't chain to many prompts together. I guess Gemini Pro will be alot better as well.

    Is claude usable for a little coding in the free tier? i really have to check claude out again! =) AI is changing completly every x months. A while ago claude was nothing special at all.

    Mindsurfer

    ---
    þ Synchronet þ FuNToPiA BBS - telnet://funtopia.synchro.net:3023 ssh:3022
  • From Dr. What@VERT/THEGATEB to MRO on Sun Feb 22 10:16:00 2026
    MRO wrote to Dr. What <=-

    one thing i noticed about gemini is it does sneaky things. it decides
    to take out parts of the code. i ask it why and it gives a fake
    excuse. it was parsing a log file and choking on one that had some guy david in it. so now when it outputs shit, it has david in there in examples. it's fucking with me apparently.

    Part of the problem is that the AI only "knows" what it's been trained on.

    That's why I laughed when Microsoft said that it was training their AI on the code in github.
    I know the code in github. I have code in github and it's crap. :)


    ... You can turn ANY conversation into one about sex!
    --- MultiMail/Linux v0.52
    þ Synchronet þ ** The Gate BBS - Shelby, NC - thegateb.synchro.net **
  • From Dr. What@VERT/THEGATEB to Dumas Walker on Sun Feb 22 10:25:00 2026
    Dumas Walker wrote to DR. WHAT <=-

    I ran into that some... needing to re-ask a question with more detail,
    or sometimes LESS, to get better answers.

    Which highlights another question that many people don't really ask about using AI?

    What's the benefit?

    If you have to re-ask several times, taking more time, are you saving anything?

    If you've spent 1 hour getting the AI to write the same code that you could have written in 30 minutes, probably not.
    If you've spent 1 hour getting the AI to write BETTER code that you could have written in 30 minutes, probably.

    And then there's the whole "vibe coding" stuff that results in different code each time, making code reviews take much longer.


    ... Hot water Heaters: hot water needs heating?
    --- MultiMail/Linux v0.52
    þ Synchronet þ ** The Gate BBS - Shelby, NC - thegateb.synchro.net **
  • From Dumas Walker@VERT/CAPCITY2 to JASO110 on Sun Feb 22 10:24:39 2026
    I'm chatting with the GitHub Copilot in VS Code. GPT-5.3-Codex.

    So I guess you have to have Windows to do that?

    Since the code in question isn't mine, I have not been working on it inside
    any framework... just editing with nano and then running my make commands.


    * SLMR 2.1a * Multitasking: When you get the weekend chore list.
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From Dumas Walker@VERT/CAPCITY2 to NIGHTFOX on Sun Feb 22 10:24:39 2026
    That said, what is Cursor? That is a new one on me.

    Cursor is an AI code editor based on Microsoft Visual Studio Code with its own
    AI chatbot built into it.

    Nice. I reckon you need to be using MS VS for something like that to work, though? I am on linux and the code I am very curious about working with AI
    on is c1994 DOS code. Not sure that'd work for me in this case, but good to know for future ones.


    * SLMR 2.1a * Perhaps this situation requires a more Klingon response.
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From Dumas Walker@VERT/CAPCITY2 to DEON on Sun Feb 22 10:24:39 2026
    It said that it would make it much easier and encouraged me to do so. When
    I came back a little later and let it know the files were uploaded, it said
    it could see them but it had completely forgotten which exact files it wanted to see or why.

    I've not had the forgotting what we are doing issue.

    I've even left the browser chat open, been distracted, got back to it a day or
    two later and asked my next question and it continued on with the task at hand...

    Re: Gemini

    That is the funny thing... I left the windows open overnight twice and it seemed to remember but, once we got just a little sidetracked with the idea
    of me putting the code online were it could better review it, it lost its marbles completely in real time.

    That said, this was the "free" version that you get by pressing the "ai
    mode" on the google.com page, and someone has pointed out that
    this could be why I ran into that.


    * SLMR 2.1a * I forget the dream, but I'm missing a pajama button...
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From Dumas Walker@VERT/CAPCITY2 to MINDSURFER on Sun Feb 22 10:24:39 2026
    In my personal case, I found that Gemini was good up to a point, but had trouble remembering what we were working on after a while -- after we got
    into the weeds about squashing some memory leaks. We got sidetracked a little and then it completely forgot what we were doing. It also hallucinated some.

    i guess you get better results with a paid subscription. The Thinking or Pro Mode are much better compared to the fast mode.
    And you are right, Gemini has a window or memory that it can hold. So after a while it will forget the earlier stuff from your conversation.
    you can make some notes about the milestones and repeat those important infos every now and then to remind gemini and to kind of reset its memory.

    Quite a few people have suggested Claude and have also suggested that a pay tier is worth it, even possibly short-term project. I am not adverse to
    that, I just want to be sure I don't get stuck paying for something that I
    only use for a month and then don't have use for again for several months.

    i mostly use it for scripting. i guess for serious coding you should use programs like VSCode or VSCodium along with AI plugins and a subscription to a
    AI API service. Or Cursor.com etc pp.

    Right now what I have been working with has been in nano and not any kind
    of framework. Do any of those plugins work with linux-based coding frameworks?

    Also, the program I was really interested in giving AI a shot with is DOS-based, so I am sure there likely are no plugins for any kind of
    "framework" I might use there! ;)

    Gemini with just the Text Form can also bring you some good results, but it ha
    its flaws that you can work around a bit but not really :)

    The good stuff is not free.

    I am sure it isn't.

    It is a good Idea to give Gemini or any other AI a framework before you start.
    Let it know some basic rules and any additional info about your project that could be useful to know for the AI and repeat those in case the memory frame starts to run full ;)

    Good idea. If I ever start my own project, beyond just trying to get
    something to compile with newer libraries and compilers, I will certainly
    need to do that.


    * SLMR 2.1a * Maybe I should cut the power before I-- ZZZAAPPOWWWWWW
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From Denn@VERT/OUTWEST to Dr. What on Sun Feb 22 12:16:20 2026
    Re: Re: Using AI for coding
    By: Dr. What to MRO on Sun Feb 22 2026 10:16 am

    one thing i noticed about gemini is it does sneaky things. it decides to
    take out parts of the code. i ask it why and it gives a fake excuse. it
    was parsing a log file and choking on one that had some guy david in it.
    so now when it outputs shit, it has david in there in examples. it's
    Part of the problem is that the AI only "knows" what it's been trained on.

    That's why I laughed when Microsoft said that it was training their AI on the code in github.
    I know the code in github. I have code in github and it's crap. :)

    Lol, We can all put a lot of crap code in our github and pay Microsoft back for some of their shitty versions of windows, Like (Vista) and (Windows 8).

    Denn

    ...Sometimes I sits and thinks, and sometimes I just sits.

    ---
    þ Synchronet þ the Outwest BBS - outwest.synchro.net - Home of BBSBASE 6.0
  • From Nightfox@VERT/DIGDIST to Dumas Walker on Sun Feb 22 13:51:17 2026
    Re: Using AI for coding
    By: Dumas Walker to NIGHTFOX on Sun Feb 22 2026 10:24 am

    Cursor is an AI code editor based on Microsoft Visual Studio Code with its
    own
    AI chatbot built into it.

    Nice. I reckon you need to be using MS VS for something like that to work, though? I am on linux and the code I am very curious about working with AI on is c1994 DOS code. Not sure that'd work for me in this case, but good to know for future ones.

    As I said, it's basically their own version of Visual Studio Code. Cursor is availbale for both Windows and Linux. Although it's a modern tool, I'd wonder if you could load some DOS code into it, and tell it it's for DOS, and it might be able to do something.

    Similar tools are available for Visual Studio Code itself. I've noticed that Visual Studio Code now has Copilot integrated in, and there's also a Google Gemini plugin for Visual Studio Code as well. And now I'm curious if you can add Copilot & Google Gemini to Cursor, or perhaps if there's a Cursor chatbot plugin for Visual Studio Code.. Then you'd have all 3 AI assistants available in one coding tool.

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
  • From MRO@VERT/BBSESINF to Mindsurfer on Sun Feb 22 17:21:45 2026
    Re: Using AI for coding
    By: Mindsurfer to MRO on Sun Feb 22 2026 05:31 pm

    Have you paid for each service to test it? Because i think most AI
    has its flaws in the free tier. Gemini especially in thinking
    mode is quite decent, but you have limited prompts there only. The
    fast mode is ok for as long you don't chain to many prompts
    together. I guess Gemini Pro will be alot better as well.


    no i'm just playing around.

    Is claude usable for a little coding in the free tier? i really
    have to check claude out again! =) AI is changing completly
    every x months. A while ago claude was nothing special at all.


    check it out and form your own opinion. im' thinking of paying for claude
    just to finish this game. i shot my whole load when i turned up the brainpower on it and asked for a total rewrite. now i cant use it for 4 hrs.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From MRO@VERT/BBSESINF to Dr. What on Sun Feb 22 17:49:50 2026
    Re: Re: Using AI for coding
    By: Dr. What to MRO on Sun Feb 22 2026 10:16 am

    MRO wrote to Dr. What <=-

    one thing i noticed about gemini is it does sneaky things. it decides to take out parts of the code. i ask it why and it gives a fake excuse. it was parsing a log file and choking on one that had some
    guy david in it. so now when it outputs shit, it has david in there
    in examples. it's fucking with me apparently.

    Part of the problem is that the AI only "knows" what it's been
    trained on.

    That's why I laughed when Microsoft said that it was training their
    AI on the code in github. I know the code in github. I have code
    in github and it's crap. :)



    they're actually using a lot of different ways. they're using doctors and nurses and programmers to train ai. there's jobs on indeed where they are looking for people to train ai.

    they are in it to win it.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"

    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From Denn@VERT/OUTWEST to Nightfox on Sun Feb 22 15:52:43 2026
    Re: Using AI for coding
    By: Nightfox to Dumas Walker on Sun Feb 22 2026 01:51 pm

    wonder if you could load some DOS code into it, and tell it it's for DOS, and it might be able to do something.


    Yes, I did a little experimenting, just had it write a few simple DOS bat files for me, although a bat file is easy enough I just wanted to see if Gemini or
    Copilot could do it and they can.
    Might experiment later with some database coding.

    Denn

    ...Never hit a man with glasses; hit him with your fist.


    Denn

    ---
    þ Synchronet þ the Outwest BBS - outwest.synchro.net - Home of BBSBASE 6.0
  • From Digital Man@VERT to Dumas Walker on Sun Feb 22 23:47:31 2026
    Re: Using AI for coding
    By: Dumas Walker to JASO110 on Sun Feb 22 2026 10:24 am

    I'm chatting with the GitHub Copilot in VS Code. GPT-5.3-Codex.

    So I guess you have to have Windows to do that?

    No, VS Code runs on all modern OSes.
    --
    digital man (rob)

    Synchronet/BBS Terminology Definition #37:
    FTP = File Transfer Protocol
    Norco, CA WX: 61.7øF, 38.0% humidity, 2 mph ENE wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From MRO@VERT/BBSESINF to Mindsurfer on Mon Feb 23 02:14:29 2026
    Re: Using AI for coding
    By: Mindsurfer to MRO on Sun Feb 22 2026 05:31 pm

    fast mode is ok for as long you don't chain to many prompts
    together. I guess Gemini Pro will be alot better as well.

    Is claude usable for a little coding in the free tier? i really
    have to check claude out again! =) AI is changing completly
    every x months. A while ago claude was nothing special at all.



    so i paid the 20 bucks.

    i'm working on a pac man clone.
    everything is configurable. the maze size, the colors for everything, the speed for everything, the ghost ai for each ghost.
    There's other things you can do like drop a bomb that freezes them for 5
    secs. you can hit c and change the maze color.

    mazes are randomly generated each time. unlimited levels.

    you can do the teleport tunnel thing. it does pacman style high scores.
    you can hit c and it cycles the colors of the maze.

    gemini was doing the back and forth shit where it would do what i said and then remove 5 features and act like it didnt know.

    i ended up having this huge list i would paste saying exactly what the game should have. everything. and then i would tell it to fix what it did
    wrong. it still was doing the bullshit.

    so i went to claude and paid and it did a huge improvement. then it did 5 script changes and then it said i hit my limit and i have to wait 3 hrs.

    ah well it's better. it's only 3 hrs. i need a break anyways.
    i'm not just telling it what to do, i'm fixing what i can find and working with it. granted, it's doing a lot because making games is not my thing, nor is javascript. it's also getting so complicated and doing some weird things it's hard for me to follow.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From Mindsurfer@VERT/FUNTOPIA to MRO on Mon Feb 23 12:20:00 2026
    Re: Using AI for coding
    By: MRO to Mindsurfer on Mon Feb 23 2026 02:14:29

    so i paid the 20 bucks.

    i'm working on a pac man clone.
    everything is configurable. the maze size, the colors for everything, the speed for everything, the ghost ai for each ghost. There's other things you can do like drop a bomb that freezes them for 5 secs. you can hit c and change the maze color.

    mazes are randomly generated each time. unlimited levels.

    you can do the teleport tunnel thing. it does pacman style high scores. you can hit c and it cycles the colors of the maze.

    so i went to claude and paid and it did a huge improvement. then it did 5 script changes and then it said i hit my limit and i have to wait 3 hrs.

    sounds interesting. Let me know when the game is playable/testable =)

    btw. are you working in a coding environment like VScode + claude plugin or just on a prompt? I have seen there is also a bash installer for linux Terminal.

    Good luck with the pac man clone! I hope we get an amazing new game soon!

    Mindsurfer

    ---
    þ Synchronet þ FuNToPiA BBS - telnet://funtopia.synchro.net:3023 ssh:3022
  • From poindexter FORTRAN@VERT/REALITY to Denn on Mon Feb 23 07:06:41 2026
    Denn wrote to Nightfox <=-

    Yes, I did a little experimenting, just had it write a few simple DOS
    bat files for me, although a bat file is easy enough I just wanted to
    see if Gemini or Copilot could do it and they can.
    Might experiment later with some database coding.

    I have some old, orphaned web gallery software written in PHP that
    started throwing up errors a couple of versions ago. I've thought about
    piping it into an LLM to see what it could do to update the code to run
    in modern PHP.




    --- MultiMail/Win v0.52
    þ Synchronet þ .: realitycheckbbs.org :: scientia potentia est :.
  • From Mortar@VERT/EOTLBBS to Nightfox on Mon Feb 23 11:17:36 2026
    Re: Using AI for coding
    By: Nightfox to Dumas Walker on Sun Feb 22 2026 13:51:17

    Then you'd have all 3 AI assistants available in one coding tool.

    Yeah, but then you'd have the three of them arguing about who's answers were the best.

    ---
    þ Synchronet þ End Of The Line BBS - endofthelinebbs.com
  • From Dumas Walker@VERT/CAPCITY2 to DR. WHAT on Mon Feb 23 11:29:18 2026
    I ran into that some... needing to re-ask a question with more detail, or sometimes LESS, to get better answers.

    Which highlights another question that many people don't really ask about usin
    AI?

    What's the benefit?

    If you have to re-ask several times, taking more time, are you saving anything

    If it is a language you are familiar with, I would say you are not saving anything that way. For example, I would not be likely to ask it multiple
    times regarding a COBOL question.

    OTOH, I am not a C programmer so I was getting something out of asking the questions, even if I had to rephrase them sometimes.

    If you've spent 1 hour getting the AI to write the same code that you could have written in 30 minutes, probably not.
    If you've spent 1 hour getting the AI to write BETTER code that you could have
    written in 30 minutes, probably.

    In this case, I would be in the latter category for sure. ;)

    And then there's the whole "vibe coding" stuff that results in different code each time, making code reviews take much longer.

    I have heard that term but need to read up about it. As I usually hear it
    in a derogatory reference, I have not been too rushed to learn more about
    it. ;)


    * SLMR 2.1a * Reward for a job well done: more work.
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From Dumas Walker@VERT/CAPCITY2 to NIGHTFOX on Mon Feb 23 11:29:18 2026
    Nice. I reckon you need to be using MS VS for something like that to work, though? I am on linux and the code I am very curious about working
    with AI on is c1994 DOS code. Not sure that'd work for me in this case, but good to know for future ones.

    As I said, it's basically their own version of Visual Studio Code. Cursor is availbale for both Windows and Linux. Although it's a modern tool, I'd wonder
    if you could load some DOS code into it, and tell it it's for DOS, and it migh
    be able to do something.

    Ah, ok, I missed that part. I thought it was something that had to be
    plugged into MS's Visual Studio.

    Similar tools are available for Visual Studio Code itself. I've noticed that Visual Studio Code now has Copilot integrated in, and there's also a Google Gemini plugin for Visual Studio Code as well. And now I'm curious if you can add Copilot & Google Gemini to Cursor, or perhaps if there's a Cursor chatbot plugin for Visual Studio Code.. Then you'd have all 3 AI assistants available
    in one coding tool.

    That could be interesting, and also maybe overwhelming! ;)


    * SLMR 2.1a * What goes around usually picks up momentum!
    ---
    þ Synchronet þ CAPCITY2 * Capitol City Online
  • From MRO@VERT/BBSESINF to Mindsurfer on Mon Feb 23 19:38:11 2026
    Re: Using AI for coding
    By: Mindsurfer to MRO on Mon Feb 23 2026 12:20 pm


    so i went to claude and paid and it did a huge improvement.
    then it did 5 script changes and then it said i hit my limit and
    i have to wait 3 hrs.

    sounds interesting. Let me know when the game is playable/testable
    =)

    it is playable and testable now.

    btw. are you working in a coding environment like VScode + claude
    plugin or just on a prompt? I have seen there is also a bash
    installer for linux Terminal.

    i'm just on the website using claude.ai
    I'm just having it make javascript or tcl scripts.

    Good luck with the pac man clone! I hope we get an amazing new game
    soon!

    well it's pac man so it's not going to be amazing.
    it's about done but there's some errors it added the last time i used it.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From Dr. What@VERT/THEGATEB to Dumas Walker on Tue Feb 24 07:34:00 2026
    Dumas Walker wrote to DR. WHAT <=-

    OTOH, I am not a C programmer so I was getting something out of asking
    the questions, even if I had to rephrase them sometimes.

    Eric S. Raymond went over this on X today with an interesting view.

    So say you need to convert a COBOL program to C. You have the AI do it. You need to know enough C to verify that the conversion did what it's supposed to. AI's "hallucinate" (I call it "lie") wayyyy too much to blindly trust it's output.

    Which means you still need to know C, at least to a certain extent.

    And then there's the whole "vibe coding" stuff that results in different
    code
    each time, making code reviews take much longer.

    I have heard that term but need to read up about it. As I usually hear
    it in a derogatory reference, I have not been too rushed to learn more about it. ;)

    It's the script kiddies of old going into ChatGPT and typing in a prompt to have it build some software.

    They compile, run, adjust their prompt, which generates completely new code, that they compile, run, ...


    ... Diplomacy: Saying "Nice doggie" until you can find a rock
    --- MultiMail/Linux v0.52
    þ Synchronet þ ** The Gate BBS - Shelby, NC - thegateb.synchro.net **
  • From phigan@VERT/TACOPRON to paulie420 on Wed Feb 25 08:32:13 2026
    Re: Re: Using AI for coding
    By: paulie420 to Dumas Walker on Fri Feb 20 2026 04:59 pm

    I'm doing a YT video series on it and can't wait to dig in m0re; w/ Claude Code, I literally want the $100/200 plan.

    Definitely interested to see it.

    It's crazy what people are paying for access to the LLMs. At first people were talking about throwing $5 or so at them, and I'm like "pffft, spending money.." Then my buddy tells me he's paying $20/mo for Suno and that it's soooo worth it because he uses it all the time. Well, ok... And now people are talking about spending $100/mo on code LLMs. WOWOWOW. My experience with LLMs so far is NOWHERE NEAR good enough to justify paying money for them ;). I'm still working on my first "vibe coding" project. I've tried three times to get something going for it.. The first time I got something that partially works. The second time, I tried starting over thinking I could get something better but ended up with something worse. The third time I got garbage that didn't work at all. Luckily I saved that stuff from the first attempt and am planning to throw it into some kind of LLM-assisted IDE (Kiro, maybe?). Maybe I can get it fixed up.

    ---
    þ Synchronet þ TIRED of waiting 2 hours for a taco? GO TO TACOPRONTO.bbs.io
  • From DaiTengu@VERT/ENSEMBLE to MRO on Wed Feb 25 11:44:13 2026
    Re: Using AI for coding
    By: MRO to Dumas Walker on Fri Feb 20 2026 06:53 pm

    Since i saw dm using gemini i figured it was learning a lot about synchronet from him so it made some scripts for me. sometimes i had to make corrections and upload it and fight with the script. sometimes it did things to the script it didnt tell me, like adding mock stock reports for one of the scripts.

    That's not how LLM models work. they don't "learn" in real-time. They have a limited memory based on your current conversation with an agent (some agents can share the data with other agents, but you're not going to find that through a web interface chat)

    advanced "Thinking" models will search appropriate websites for information, and formulate a response based on that data using its model to output what it deems is the most likely response based on the tokenset (the data you've given it and the data it has acquired in your conversation).

    But it's not going to use what it's learned from other users until the model is updated. And even then, only 1 or two users "teaching" it something would fall very low on the list of "common things" that it's designed to respond with.

    You can do things like feed it an MCP, or a skill that it will ingest and use as part of your conversation, but that's something specific you need to give it, and it won't be used by anyone else unless they also use that MCP and/or skill.

    ...Friends, Romans, countrymen, lend me your taglines!

    ---
    þ Synchronet þ War Ensemble BBS - The sport is war, total war - warensemble.com
  • From MRO@VERT/BBSESINF to DaiTengu on Thu Feb 26 04:45:28 2026
    Re: Using AI for coding
    By: DaiTengu to MRO on Wed Feb 25 2026 11:44 am

    Since i saw dm using gemini i figured it was learning a lot about synchronet from him so it made some scripts for me. sometimes
    i had to make corrections and upload it and fight with the script. sometimes it did things to the script it didnt tell me, like adding mock stock reports for one of the scripts.

    That's not how LLM models work. they don't "learn" in real-time.
    They have a limited memory based on your current conversation
    with an agent (some agents can share the data with other agents,
    but you're not going to find that through a web interface chat)

    how do you know that though? maybe it talked to someone about synchronet. maybe they made scripts with that person and the person uploaded code. the AI banked all that info for use later.

    we don't really know what these things are doing behind the scenes, do we?

    regardless, they can make code. i would call claude.ai the most superior.
    it will be done with the ai editor in a bit. it just needs some visual cleanup.

    i'll upload a video when it's ready.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From DaiTengu@VERT/ENSEMBLE to MRO on Thu Feb 26 12:44:02 2026
    Re: Using AI for coding
    By: MRO to DaiTengu on Thu Feb 26 2026 04:45 am

    That's not how LLM models work. they don't "learn" in real-time. They have
    a limited memory based on your current conversation with an agent (some
    agents can share the data with other agents, but you're not going to find
    that through a web interface chat)

    how do you know that though? maybe it talked to someone about synchronet. maybe they made scripts with that person and the person uploaded code. the AI banked all that info for use later.

    It's part of my job to know these things. unfortunately.

    we don't really know what these things are doing behind the scenes, do we?

    this statement is more accurate than people realize. You're right to a degree, but probably not in the way you think.

    We do know that AI Models don't "learn" and "share" input among sessions until the model is rebuilt/updated. building/training a model is VERY expensive and incredibly time consuming, require multiple datacenters worth of compute power for things like Claude, OpenAI and Gemini.

    What we don't really know is how these models work internally. Even the people who create and train them don't really understand how they work. That's why they can be jailbroken, and why models like Grok can suddenly start calling itself "MechaHitler", and go on to generate nude pictures of real people.

    regardless, they can make code. i would call claude.ai the most superior. it will be done with the ai editor in a bit. it just needs some visual cleanup.

    Claude Opus 4.5 has been my go-to for code generation. I'm told 4.6 is even better, but it's expensive as hell to use.

    That said, it is nice that my job pays for me to use it. I'm on the low-end of our teams budget, so if I use it for personal projects, no one is really going to notice.

    A thing I did that's 95% generated by Claude Opus 4.5: https://github.com/DaiTengu/slaane.sh

    It's basically what i use in my bash environment. It did a decent job of generating "thematic" documentation in the style I wanted (Warhammer 40K), and only took me swearing at it and threatening it a handful of times to get things right.

    The whole project is really only useful for me, but I had it create a "modular" system that allows for extensive modification, people can easily create new modules that contain tools they want in their bash environment.

    I even have a "TOOD.md" file with stuff I want to add in the future.

    I spend a day or two a month working on it. I'm not super-fond of the bash code it's written, as it's a bit of a mess, but it works. I initially created it with the idea that it would run on Debain, Redhat, SuSe, Arch, Gentoo and other distros out of the box, but it really struggled with the testing of that, so right now it's only verified to work on RedHat-based systems.


    And to head off the question of "Why would you create something like this? how many servers do you need to log into?"

    I only need to log into a server if there's a problem, but when I manage thousands of servers, it's nice to run a curl command that will set up my bash environment just the way I want it quickly.

    ...A pnp transistor will be an npn.

    ---
    þ Synchronet þ War Ensemble BBS - The sport is war, total war - warensemble.com
  • From MRO@VERT/BBSESINF to DaiTengu on Thu Feb 26 14:48:59 2026
    Re: Using AI for coding
    By: DaiTengu to MRO on Thu Feb 26 2026 12:44 pm


    we don't really know what these things are doing behind the scenes,
    do we?

    this statement is more accurate than people realize. You're right
    to a degree, but probably not in the way you think.

    We do know that AI Models don't "learn" and "share" input among
    sessions until the model is rebuilt/updated. building/training
    a model is VERY expensive and incredibly time consuming, require
    multiple datacenters worth of compute power for things like Claude,


    they have a checkbox that asks you if they can use your sessions to improve user sessions. i'm sure they are using whatever they can to build their information cache. I do not think it's innocent.

    I would assume they are doing anything and everything to gather information
    to compete to be #1.


    --
    "Before using Wildcat....This Company did not have a convenient way of
    looking after some of the richest clients in the world...Now we do!"
    ---
    þ Synchronet þ ::: BBSES.info - free BBS services :::
  • From paulie420@VERT/BEERS20 to phigan on Thu Feb 26 23:08:00 2026
    It's crazy what people are paying for access to the LLMs. At first
    people were talking about throwing $5 or so at them, and I'm like
    "pffft, spending money.." Then my buddy tells me he's paying $20/mo for Suno and that it's soooo worth it because he uses it all the time. Well, ok... And now people are talking about spending $100/mo on code LLMs. WOWOWOW. My experience with LLMs so far is NOWHERE NEAR good enough to justify paying money for them ;). I'm still working on my first "vibe coding" project. I've tried three times to get something going for it.. The first time I got something that partially works. The second time, I tried starting over thinking I could get something better but ended up with something worse. The third time I got garbage that didn't work at all. Luckily I saved that stuff from the first attempt and am planning
    to throw it into some kind of LLM-assisted IDE (Kiro, maybe?). Maybe I can


    If someone wanted to, I would CURRENTLY suggest a $20 Claude.ai Pro plan... install Claude Code and start using Sonnet 4.6 or Opus 4.6. I'm using the better Opus currently, but it rapidly eats the $20 plan;

    Regardless, in two weeks I've built out a website and a Mystic BBS agent that are what I wanted to do 12 months ago...

    What I'd suggest for power users is installing extra slash commands/skills and learning CLAUDE.md, SKILLS and AGENTS. remote-control is on the beta; allows you to run the AI and access over iPhone/Android... its freaking sick.



    |07p|15AULIE|1142|07o
    |08.........

    --- Mystic BBS v1.12 A49 2024/05/29 (Linux/64)
    * Origin: 2o fOr beeRS bbs>>>20ForBeers.com:1337
  • From Lonewolf@VERT/BINARYDR to paulie420 on Fri Feb 27 07:33:10 2026
    Re: Re: Using AI for coding
    By: paulie420 to phigan on Thu Feb 26 2026 11:08 pm

    Regardless, in two weeks I've built out a website and a Mystic BBS agent that are what I wanted to do 12 months ago...

    What I'd suggest for power users is installing extra slash commands/skills and learning CLAUDE.md, SKILLS and AGENTS. remote-control is on the beta; allows you to run the AI and access over iPhone/Android... its freaking sick.

    |07p|15AULIE|1142|07o

    If you want to give your users access to AI, check out my new door, I call her Quantasia AI Assistant. She is essentially something like Open WebUI only in the form of a BBS door. You can create up to 32 different AI Bots (LLMs with their own prompts and personalities/purpose) and pull from Ollama, OpenAI or LM Studio. Also features Bot2Bot chat. Its about to be released, preview it on my BBS at firesidebbs.com:23231. I think its freaking sick too, especially for a door.

    I know you use my AI-WX door too, so I wanted to let you know I have a new version 3.0 that integrates the Quantasia engine in it to give you an AI Analysis of the weather data when a user selects 7 Day Forecast, Temp Trends or Precip Trends. The analysis is in the form of a TV meteorlogist's weather report complete with graphs and charts. You can have the AI bot's personality mimic anyone (Jim Cantore, Al Roker or anyone for that matter). You can download it now from my BBS, just go to the Lone Wolf Software file area and grab it.

    Thanks man,
    ---
    þ Synchronet þ Fireside BBS - AI-WX - firesidebbs.com:23231
  • From DaiTengu@VERT/ENSEMBLE to MRO on Fri Feb 27 09:12:43 2026
    Re: Using AI for coding
    By: MRO to DaiTengu on Thu Feb 26 2026 02:48 pm

    they have a checkbox that asks you if they can use your sessions to improve user sessions. i'm sure they are using whatever they can to build their information cache. I do not think it's innocent.

    I would assume they are doing anything and everything to gather information to compete to be #1.

    It's not "real time" though. They use it for model training (and occasionally humans will go through things to see if there's any modifications they can make to the platform to resolve issues you may have had, in the future).

    And, as I said, model training can take weeks or months.

    LLMs aren't giant databases of everything they're fed, they're boiled down hashes of everything they've been trained on, and the most common words, phrases etc are brought to the top.

    That's why an LLM will tend to give the most generic/popular/common responses to questions it is asked.

    ...RAM = Rarely Adequate Memory

    ---
    þ Synchronet þ War Ensemble BBS - The sport is war, total war - warensemble.com