• I just asked CoPilot AI to write a grams-to-ounces batch script for me

    From Marion@marion@facts.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 09:50:38 2025
    From Newsgroup: alt.msdos.batch

    This is an example, for the record, of the current state of AI on Windows.

    I was doing a review for Amazon Vine <https://amazon.com/about/vine> who
    had sent me a hose fitting to review (where I do about 8 reviews a day for free products Amazon Vine sends to my home) so I had to ask a bunch of questions of CoPilot to get to know the product details better, and at some point I needed to convert grams to ounces, so I asked CoPilot to write the Windows batch script for me.

    Having programmed since the days of Fortran IV (before Fortran 77) and
    COBOL & PL/1 and IBM Assembly Language, and learning to hate programming, I prefer to let the AI write the programs for me.

    Below is the verbatim interaction with CoPilot, for others to benefit,
    where it's interesting how SIMILAR AI is in making the same mistakes we all made when we were LEARNING how to program - but - and this is key - but AI recovers from those many sophormorish mistakes thousands of times FASTER
    than we would recover from them. Which is why it works so well as a team.

    10 The AI puts out garbage
    20 The human tests that garbage & tells AI to fix what didn't work
    30 AI fixes it (goto 10)

    See below for details...

    User: ght is how many tpi
    Copilot: GHT (Garden Hose Thread) has 11.5 threads per inch (TPI). It's the standard thread used for garden hoses in North America.

    User: there are only about 1/4 inch of threads in the female hose fitting though, which at 11.5TPI is only about (how many threads)?
    Copilot: ...2.875 threads, which rounds up to about 3 threads total. The threads hold the fitting together; it's the washer that prevents leaks.

    User: by way of contrast, the male ends measured at a full half inch, which at 11.5 TPI is about (how many threads)?
    Copilot: That equals 5.75 threads, or about 5 to 6 full threads.

    User: the female garden hose thing (is it a nut?) has 8 sides. Why not 6? Copilot: Yes, it's a nut-specifically a swivel nut. The 8 sides give better grip angles, reduce rounding off, and increase tool compatibility.

    User: the hose fitting is very heavy. Over 500 grams. Can you write a batch file for window that asks for input of the number of grams and then it converts that to cooking ounces in fractions no smaller than 1/8, and where it loops to ask for the next conversion but if you type q it will quit.
    Copilot: [Provides initial batch script to convert grams to ounces with loop and fraction rounding.]

    User: Enter number of grams (or type 'q' to quit): 1395
    Copilot: Error messages occur due to non-integer math and letters in input like "1395g".

    User: Can you fix it?
    Copilot: [Provides updated script using integer math and input validation.]

    User: Enter number of grams (or type 'q' to quit): 23
    Copilot: Incorrectly flagged as invalid. Validation needs tweaking.

    User: Can you fix the funky characters?
    Copilot: Save the batch file as ANSI instead of UTF-8 to eliminate stray symbols like .

    User: Can you give me the script in ascii so I can copy it using GVIM to g2oz.bat?
    Copilot: [Provides script using plain ASCII characters, tilde replaced with ~.]

    User: Can you fix the output to omit "0" when less than one ounce and format 14-1/4 ounces style?
    Copilot: [Updates script formatting accordingly.]

    User: Can you make the output read like: "23 grams (or about 7/8 ounces)"? Copilot: [Adds formatted output with optional pounds & suggests plurals.]

    User: Oh, yes, I didn't think of plurals. Yes please.
    Copilot: [Updates script with correct pluralization: ounce/ounces, pound/pounds.]

    User: how long did this conversation take?
    Copilot: From your first message to this one, the conversation has been going for about 1 hour and 40 minutes. And we've covered quite a bit - garden hose threads, wrench geometry, rounding fractions in cooking conversions, ASCII-safe scripting, pluralization, and even how to copy your chat. Productive and charming, I'd say. Want me to compile the final batch script one more time for easy pasting? Or do you feel like cooking up something totally different now?

    User: yes. Please do. Also, how do I copy this whole conversation?
    Copilot: Instructions for selecting and copying manually, or using GVIM.

    User: Yuck. Too much formatting. Can you convert this whole conversation into pure ascii text so I can paste it into GVim?
    Copilot: [You're reading the result!]

    @echo off
    REM 20250719 g2oz.bat convert grams to ounces, kitchen rounding
    setlocal enabledelayedexpansion

    :Start
    set /p grams=Enter number of grams (numeric only, or type 'q' to quit):
    if /i "%grams%"=="q" exit /b

    REM Validate input
    echo.%grams%| findstr /R "^[0-9][0-9]*$" >nul
    if errorlevel 1 (
    echo Please enter a valid number with no letters or symbols.
    goto Start
    )

    REM Convert grams to total eighths of an ounce
    set /a total_eighths=(%grams% * 8 + 14) / 28
    set /a total_ounces=!total_eighths! / 8
    set /a eighths=!total_eighths! %% 8

    REM Build fraction string
    set fraction=
    if !eighths!==1 set fraction=1/8
    if !eighths!==2 set fraction=1/4
    if !eighths!==3 set fraction=3/8
    if !eighths!==4 set fraction=1/2
    if !eighths!==5 set fraction=5/8
    if !eighths!==6 set fraction=3/4
    if !eighths!==7 set fraction=7/8

    REM Calculate pounds
    set /a pounds=!total_ounces! / 16
    set /a ounces=!total_ounces! %% 16

    REM Determine pluralization
    set oz_label=ounce
    if !ounces! GTR 1 set oz_label=ounces
    if !eighths! GTR 0 set oz_label=ounces

    set lb_label=pound
    if !pounds! GTR 1 set lb_label=pounds

    REM Build final output
    set about=
    if !total_ounces! LSS 1 (
    if defined fraction (
    set about=%fraction% !oz_label!
    ) else (
    set about=less than 1 ounce
    )
    ) else (
    if !pounds! GEQ 1 (
    if defined fraction (
    set about=!pounds! !lb_label! !ounces!-!fraction! !oz_label!
    ) else (
    if !ounces!==0 (
    set about=!pounds! !lb_label!
    ) else (
    set about=!pounds! !lb_label! !ounces! !oz_label!
    )
    )
    ) else (
    if defined fraction (
    set about=!ounces!-!fraction! !oz_label!
    ) else (
    set about=!ounces! !oz_label!
    )
    )
    )

    echo %grams% grams (or about !about!)
    goto Start
    --
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Alan K.@alan@invalid.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 09:14:50 2025
    From Newsgroup: alt.msdos.batch

    On 7/19/25 5:50 AM, Marion wrote:
    This is an example, for the record, of the current state of AI on Windows.

    I was doing a review for Amazon Vine <https://amazon.com/about/vine> who
    had sent me a hose fitting to review (where I do about 8 reviews a day for free products Amazon Vine sends to my home) so I had to ask a bunch of questions of CoPilot to get to know the product details better, and at some point I needed to convert grams to ounces, so I asked CoPilot to write the Windows batch script for me.

    Having programmed since the days of Fortran IV (before Fortran 77) and
    COBOL & PL/1 and IBM Assembly Language, and learning to hate programming, I prefer to let the AI write the programs for me.

    Below is the verbatim interaction with CoPilot, for others to benefit,
    where it's interesting how SIMILAR AI is in making the same mistakes we all made when we were LEARNING how to program - but - and this is key - but AI recovers from those many sophormorish mistakes thousands of times FASTER
    than we would recover from them. Which is why it works so well as a team.

    10 The AI puts out garbage
    20 The human tests that garbage & tells AI to fix what didn't work
    30 AI fixes it (goto 10)

    See below for details...

    User: ght is how many tpi
    Copilot: GHT (Garden Hose Thread) has 11.5 threads per inch (TPI). It's the standard thread used for garden hoses in North America.

    User: there are only about 1/4 inch of threads in the female hose fitting though, which at 11.5TPI is only about (how many threads)?
    Copilot: ...2.875 threads, which rounds up to about 3 threads total. The threads hold the fitting together; it's the washer that prevents leaks.

    User: by way of contrast, the male ends measured at a full half inch, which at 11.5 TPI is about (how many threads)?
    Copilot: That equals 5.75 threads, or about 5 to 6 full threads.

    User: the female garden hose thing (is it a nut?) has 8 sides. Why not 6? Copilot: Yes, it's a nut-specifically a swivel nut. The 8 sides give better grip angles, reduce rounding off, and increase tool compatibility.

    User: the hose fitting is very heavy. Over 500 grams. Can you write a batch file for window that asks for input of the number of grams and then it converts that to cooking ounces in fractions no smaller than 1/8, and where it loops to ask for the next conversion but if you type q it will quit.
    Copilot: [Provides initial batch script to convert grams to ounces with loop and fraction rounding.]

    User: Enter number of grams (or type 'q' to quit): 1395
    Copilot: Error messages occur due to non-integer math and letters in input like "1395g".

    User: Can you fix it?
    Copilot: [Provides updated script using integer math and input validation.]

    User: Enter number of grams (or type 'q' to quit): 23
    Copilot: Incorrectly flagged as invalid. Validation needs tweaking.

    User: Can you fix the funky characters?
    Copilot: Save the batch file as ANSI instead of UTF-8 to eliminate stray symbols like |+.

    User: Can you give me the script in ascii so I can copy it using GVIM to g2oz.bat?
    Copilot: [Provides script using plain ASCII characters, tilde replaced with ~.]

    User: Can you fix the output to omit "0" when less than one ounce and format 14-1/4 ounces style?
    Copilot: [Updates script formatting accordingly.]

    User: Can you make the output read like: "23 grams (or about 7/8 ounces)"? Copilot: [Adds formatted output with optional pounds & suggests plurals.]

    User: Oh, yes, I didn't think of plurals. Yes please.
    Copilot: [Updates script with correct pluralization: ounce/ounces, pound/pounds.]

    User: how long did this conversation take?
    Copilot: From your first message to this one, the conversation has been going for about 1 hour and 40 minutes. And we've covered quite a bit - garden hose threads, wrench geometry, rounding fractions in cooking conversions, ASCII-safe scripting, pluralization, and even how to copy your chat. Productive and charming, I'd say. Want me to compile the final batch script one more time for easy pasting? Or do you feel like cooking up something totally different now?

    User: yes. Please do. Also, how do I copy this whole conversation?
    Copilot: Instructions for selecting and copying manually, or using GVIM.

    User: Yuck. Too much formatting. Can you convert this whole conversation into pure ascii text so I can paste it into GVim?
    Copilot: [You're reading the result!]

    @echo off
    REM 20250719 g2oz.bat convert grams to ounces, kitchen rounding
    setlocal enabledelayedexpansion

    :Start
    set /p grams=Enter number of grams (numeric only, or type 'q' to quit):
    if /i "%grams%"=="q" exit /b

    REM Validate input
    echo.%grams%| findstr /R "^[0-9][0-9]*$" >nul
    if errorlevel 1 (
    echo Please enter a valid number with no letters or symbols.
    goto Start
    )

    REM Convert grams to total eighths of an ounce
    set /a total_eighths=(%grams% * 8 + 14) / 28
    set /a total_ounces=!total_eighths! / 8
    set /a eighths=!total_eighths! %% 8

    REM Build fraction string
    set fraction=
    if !eighths!==1 set fraction=1/8
    if !eighths!==2 set fraction=1/4
    if !eighths!==3 set fraction=3/8
    if !eighths!==4 set fraction=1/2
    if !eighths!==5 set fraction=5/8
    if !eighths!==6 set fraction=3/4
    if !eighths!==7 set fraction=7/8

    REM Calculate pounds
    set /a pounds=!total_ounces! / 16
    set /a ounces=!total_ounces! %% 16

    REM Determine pluralization
    set oz_label=ounce
    if !ounces! GTR 1 set oz_label=ounces
    if !eighths! GTR 0 set oz_label=ounces

    set lb_label=pound
    if !pounds! GTR 1 set lb_label=pounds

    REM Build final output
    set about=
    if !total_ounces! LSS 1 (
    if defined fraction (
    set about=%fraction% !oz_label!
    ) else (
    set about=less than 1 ounce
    )
    ) else (
    if !pounds! GEQ 1 (
    if defined fraction (
    set about=!pounds! !lb_label! !ounces!-!fraction! !oz_label!
    ) else (
    if !ounces!==0 (
    set about=!pounds! !lb_label!
    ) else (
    set about=!pounds! !lb_label! !ounces! !oz_label!
    )
    )
    ) else (
    if defined fraction (
    set about=!ounces!-!fraction! !oz_label!
    ) else (
    set about=!ounces! !oz_label!
    )
    )
    )

    echo %grams% grams (or about !about!)
    goto Start

    I missed it. What is GVIM?
    --
    Linux Mint 22.1, Thunderbird 128.12.0esr, Mozilla Firefox 140.0.4
    Alan K.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From s|b@me@privacy.invalid to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 16:41:37 2025
    From Newsgroup: alt.msdos.batch

    On Sat, 19 Jul 2025 09:50:38 -0000 (UTC), Marion wrote:

    at some
    point I needed to convert grams to ounces, so I asked CoPilot to write the Windows batch script for me.

    Why? There's dozens of sites that can do that already.

    Startpage > convert gram to ounce
    --
    s|b
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Rob@invalid@invalid.invalid to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 18:00:00 2025
    From Newsgroup: alt.msdos.batch

    On 19/07/2025 14:14, Alan K. politely and respectfully asked:
    What is GVIM?


    GUI Vim



    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Johnson@peter@parksidewood.nospam to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 19:17:04 2025
    From Newsgroup: alt.msdos.batch

    On Sat, 19 Jul 2025 16:41:37 +0200, "s|b" <me@privacy.invalid> wrote:

    On Sat, 19 Jul 2025 09:50:38 -0000 (UTC), Marion wrote:

    at some
    point I needed to convert grams to ounces, so I asked CoPilot to write the >> Windows batch script for me.

    Why? There's dozens of sites that can do that already.

    Startpage > convert gram to ounce

    The weight and mass option of Windows calculator will do it as well
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Rob@invalid@invalid.invalid to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 18:20:00 2025
    From Newsgroup: alt.msdos.batch

    On 19/07/2025 15:41, s|b wrote:
    On Sat, 19 Jul 2025 09:50:38 -0000 (UTC), Marion wrote:

    at some
    point I needed to convert grams to ounces, so I asked CoPilot to write the >> Windows batch script for me.

    Why? There's dozens of sites that can do that already.

    Startpage > convert gram to ounce


    Don't be silly. There's no fun in that. If you can do the hard way why
    do the easy way!

    Marion, a.k.a Arlen, is only interested to attract young boys who he can
    abuse sexually. He currently works at some YMCA where he can meet many
    young boys but that's not enough for him.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Stan Brown@someone@example.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 14:25:26 2025
    From Newsgroup: alt.msdos.batch

    On Sat, 19 Jul 2025 09:50:38 -0000 (UTC), Marion wrote:
    I was doing a review for Amazon Vine <https://amazon.com/about/vine> who
    had sent me a hose fitting to review (where I do about 8 reviews a day for free products Amazon Vine sends to my home)


    They're not really free. We have to declare them on our income tax
    return, at full price, and pay tax on them.
    --
    After using my real address in 37 years of Usenet articles,
    I am now reluctantly posting a fake address because of the
    large number of sites scraping Usenet articles without
    permission and putting them on their own pretend forum sites.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Stan Brown@someone@example.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 14:27:47 2025
    From Newsgroup: alt.msdos.batch

    On Sat, 19 Jul 2025 18:00:00 +0000, Rob wrote:
    On 19/07/2025 14:14, Alan K. politely and respectfully asked:
    What is GVIM?


    GUI Vim

    The Vim install install both the command-line version and the GUI
    version.

    <https://www.vim.org/>
    --
    After using my real address in 37 years of Usenet articles,
    I am now reluctantly posting a fake address because of the
    large number of sites scraping Usenet articles without
    permission and putting them on their own pretend forum sites.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Stan Brown@someone@example.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 14:33:28 2025
    From Newsgroup: alt.msdos.batch

    On Sat, 19 Jul 2025 16:41:37 +0200, s|b wrote:
    On Sat, 19 Jul 2025 09:50:38 -0000 (UTC), Marion wrote:

    at some
    point I needed to convert grams to ounces, so I asked CoPilot to write the Windows batch script for me.

    Why? There's dozens of sites that can do that already.

    Startpage > convert gram to ounce


    Or use Calculator. After opening it, click the hamburger and scroll
    down to "Weight and mass".

    Or, just type in the number of grams, then append "*16/454" and hit
    Enter, because 16 ounces is 454 grams.

    Or, enter a Google search like "85 g in oz" (without quotes). Google
    has all the common conversions built in, since long before AI.
    --
    After using my real address in 37 years of Usenet articles,
    I am now reluctantly posting a fake address because of the
    large number of sites scraping Usenet articles without
    permission and putting them on their own pretend forum sites.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Hank Rogers@Hank@nospam.invalid to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 17:32:35 2025
    From Newsgroup: alt.msdos.batch

    Rob wrote on 7/19/2025 1:20 PM:
    On 19/07/2025 15:41, s|b wrote:
    On Sat, 19 Jul 2025 09:50:38 -0000 (UTC), Marion wrote:

    at some
    point I needed to convert grams to ounces, so I asked CoPilot to write the >>> Windows batch script for me.

    Why? There's dozens of sites that can do that already.

    Startpage > convert gram to ounce


    Don't be silly. There's no fun in that. If you can do the hard way why
    do the easy way!

    Marion, a.k.a Arlen, is only interested to attract young boys who he can abuse sexually. He currently works at some YMCA where he can meet many
    young boys but that's not enough for him.


    Damn, is he STILL after you? You should tell your parents.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From John Doe@john.doe@myemail.invalid to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 23:16:43 2025
    From Newsgroup: alt.msdos.batch

    Send the Jews back!

    SeigHeil!

    heil Hitler!

    www.goyimtv.com


    On Jul 19, 2025 at 6:32:35rC>PM EDT, "Hank Rogers" <Hank@nospam.invalid> wrote:

    Rob wrote on 7/19/2025 1:20 PM:
    On 19/07/2025 15:41, s|b wrote:
    On Sat, 19 Jul 2025 09:50:38 -0000 (UTC), Marion wrote:

    at some
    point I needed to convert grams to ounces, so I asked CoPilot to write the >>>> Windows batch script for me.

    Why? There's dozens of sites that can do that already.

    Startpage > convert gram to ounce


    Don't be silly. There's no fun in that. If you can do the hard way why
    do the easy way!

    Marion, a.k.a Arlen, is only interested to attract young boys who he can
    abuse sexually. He currently works at some YMCA where he can meet many
    young boys but that's not enough for him.


    Damn, is he STILL after you? You should tell your parents.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Marion@marion@facts.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 23:23:31 2025
    From Newsgroup: alt.msdos.batch

    On Sat, 19 Jul 2025 14:25:26 -0700, Stan Brown wrote :


    I was doing a review for Amazon Vine <https://amazon.com/about/vine> who
    had sent me a hose fitting to review (where I do about 8 reviews a day for >> free products Amazon Vine sends to my home)


    They're not really free.

    Are you in Amazon Vine, Stan?

    Have you seen the new "Insightfulness" score they're rating us on?
    <https://i.postimg.cc/k5FYJQc7/amazon-score.jpg>


    What do you think of it given it goes into effect on September 1st.
    They're trying to increase the trust people put in our reviews.
    <https://i.postimg.cc/3x3nL4h6/amazon-trust.jpg>
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Marion@marion@facts.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sat Jul 19 23:25:11 2025
    From Newsgroup: alt.msdos.batch

    On Sat, 19 Jul 2025 19:17:04 +0100, Peter Johnson wrote :


    On Sat, 19 Jul 2025 09:50:38 -0000 (UTC), Marion wrote:

    at some
    point I needed to convert grams to ounces, so I asked CoPilot to write the >>> Windows batch script for me.

    Why? There's dozens of sites that can do that already.

    Startpage > convert gram to ounce

    The weight and mass option of Windows calculator will do it as well

    The main point is what AI can do, not the one thing that it did.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Zaidy036@Zaidy036@air.isp.spam to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sun Jul 20 10:03:36 2025
    From Newsgroup: alt.msdos.batch

    On 7/19/2025 7:16 PM, John Doe wrote:
    Send the Jews back!

    SeigHeil!

    heil Hitler!

    www.goyimtv.com

    If that is how you feel I hope you are not using anything "the Jews"
    have helped develop. That includes every operating system, GPS, mapping programs, and CPU.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From s|b@me@privacy.invalid to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sun Jul 20 17:06:22 2025
    From Newsgroup: alt.msdos.batch

    On Sat, 19 Jul 2025 14:33:28 -0700, Stan Brown wrote:

    Or use Calculator. After opening it, click the hamburger and scroll
    down to "Weight and mass".

    I never knew that until a few days ago. Never too old to learn...
    --
    s|b
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Frank Slootweg@this@ddress.is.invalid to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sun Jul 20 15:49:35 2025
    From Newsgroup: alt.msdos.batch

    Stan Brown <someone@example.com> wrote:
    On Sat, 19 Jul 2025 09:50:38 -0000 (UTC), Marion wrote:
    I was doing a review for Amazon Vine <https://amazon.com/about/vine> who had sent me a hose fitting to review (where I do about 8 reviews a day for free products Amazon Vine sends to my home)

    They're not really free. We have to declare them on our income tax
    return, at full price, and pay tax on them.

    Well, you don't expect Arlen, with his 'extremely high IQ' and
    'excellent education' to be able to figure that out, do you!?
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From J. P. Gilliver@G6JPG@255soft.uk to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sun Jul 20 17:43:08 2025
    From Newsgroup: alt.msdos.batch

    On 2025/7/20 15:3:36, Zaidy036 wrote:
    On 7/19/2025 7:16 PM, John Doe wrote:
    Send the Jews back!

    SeigHeil!

    heil Hitler!

    www.goyimtv.com

    If that is how you feel I hope you are not using anything "the Jews"
    have helped develop. That includes every operating system, GPS, mapping programs, and CPU.


    I wouldn't worry. For an claimed Hitlerite, he doesn't even know how to
    spell victory.
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()AL-IS-Ch++(p)Ar@T+H+Sh0!:`)DNAf

    Q. Why did the chicken cross the Mobius strip?
    A. To get to the same side.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Marion@marion@facts.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sun Jul 20 19:17:57 2025
    From Newsgroup: alt.msdos.batch

    On Sun, 20 Jul 2025 17:06:22 +0200, s|b wrote :


    Or use Calculator. After opening it, click the hamburger and scroll
    down to "Weight and mass".

    I never knew that until a few days ago. Never too old to learn...

    I never knew it either, but the point of this thread was never how to
    convert but that CoPilot could write a script for you from scratch.

    But... and this is critical... CoPilot uses the same iterative process we
    all used when we learned our 1st programming language (Fortran IV for me).

    Why do you think I provided the back-and-forth turns in the OP?

    It's because the topic was NOT the calculation - but the process of getting CoPilot to write the batch scripts for you - which is an iterative process.

    100 You ask CoPilot to write a batch script for you
    200 CoPilot cheerfully produces crap
    300 You test that crap and just post the output! <=== this is CRITICAL!
    400 CoPilot goes back to 200 to produce (better) crap.

    The huge advantage of this process is you only need to use human language
    in the original request. The rest is simply a post of the output produced.

    That's really IMPORTANT.
    I don't think anyone understood that based on the responses to date.

    This is super EFFICIENT!
    a. You post your request and CoPilot produces a script
    b. You test it & only paste back the OUTPUT of that script! <=== KEY!
    c. Then CoPilot INTERPRETS that output - and fixes the script!

    If people didn't get that critical point, then I was remiss in the OP.

    The critical information I'm imparting to you here, is NOT what the script
    does (as I would only have posted the result if that is what mattered).

    The critical information is how EFFICIENT the process is.
    1. You only have to speak to the robot as a human in the 1st turn.
    2. The rest of the time you only need to post the script output.

    That's really efficiently kewl don't you think!
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Marion@marion@facts.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Sun Jul 20 19:46:29 2025
    From Newsgroup: alt.msdos.batch

    On 20 Jul 2025 15:49:35 GMT, Frank Slootweg wrote :


    I was doing a review for Amazon Vine <https://amazon.com/about/vine> who >>> had sent me a hose fitting to review (where I do about 8 reviews a day for >>> free products Amazon Vine sends to my home)

    They're not really free. We have to declare them on our income tax
    return, at full price, and pay tax on them.

    Well, you don't expect Arlen, with his 'extremely high IQ' and
    'excellent education' to be able to figure that out, do you!?

    Jesus Christ Frank,

    Why do you waste all our time *desperate* to insult me on Usenet, Frank?

    Click this link before you embarrass yourself again, please.
    <https://i.postimg.cc/sfvLPfxL/tax-implications.jpg>
    Stan, if he's been invited to Amazon Vine, can confirm that's the GUI.

    I realize you told all of us long ago you never could graduate from
    secondary school in the Netherlands (I think that's where you are),
    but why do you brazenly lie about my understanding of US taxes?

    We have entire threads on this Vine-tax topic for Christ sake, Frank.

    It's obvious you're so *desperate* to find something (anything!) to attack
    me with that you sink to lower & lower levels (and lower) levels, Frank.

    Given the forms I have to submit to accept the Vine invitation clearly
    discuss taxes & given the VINE GUI shows your tax implication, why are you
    so *desperate* to attack me that you claim I am unaware of what I signed?

    As Stan can attest to (if he was invited to be a Vine reviewer), when you
    go to the Amazon Vine account page, it gives you the spreadsheets, Frank.
    <https://i.postimg.cc/sfvLPfxL/tax-implications.jpg>

    I don't like to bring up the fact you couldn't get into college Frank, but you're so *desperate* to attack me, I have to bring up your IQ to respond.

    Stop making me waste my valuable time responding to your *desperation* in attacking me with childish ad hominem attacks which aren't even correct.

    Do you really think I didn't know about the tax implications Frank?
    <https://i.postimg.cc/sfvLPfxL/tax-implications.jpg>

    Find something else to insult me with Frank. Seriously. Jesus Christ.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Chris@ithinkiam@gmail.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Mon Jul 21 11:29:41 2025
    From Newsgroup: alt.msdos.batch

    Marion <marion@facts.com> wrote:
    On Sun, 20 Jul 2025 17:06:22 +0200, s|b wrote :


    Or use Calculator. After opening it, click the hamburger and scroll
    down to "Weight and mass".

    I never knew that until a few days ago. Never too old to learn...

    I never knew it either, but the point of this thread was never how to
    convert but that CoPilot could write a script for you from scratch.

    This is not news. People have been doing this for several years.

    This was simply an attempt to stroke your own ego. Like your willingness to work for Amazon for free you just want to patted on the head and told
    you're a good boy. It was also off-topic in all the ngs you posted it to.

    I created a python script with it last year. The difference being I didn't
    have the need to inappropriately tell a bunch of strangers about it.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Frank Slootweg@this@ddress.is.invalid to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Mon Jul 21 15:21:24 2025
    From Newsgroup: alt.msdos.batch

    Marion <marion@facts.com> wrote:
    On 20 Jul 2025 15:49:35 GMT, Frank Slootweg wrote :


    I was doing a review for Amazon Vine <https://amazon.com/about/vine> who >>> had sent me a hose fitting to review (where I do about 8 reviews a day for
    free products Amazon Vine sends to my home)

    They're not really free. We have to declare them on our income tax
    return, at full price, and pay tax on them.

    Well, you don't expect Arlen, with his 'extremely high IQ' and
    'excellent education' to be able to figure that out, do you!?

    Jesus Christ Frank,

    Why do you waste all our time *desperate* to insult me on Usenet, Frank?

    As I said in my other response: to return the favour, as you insult
    me/us all the time for no good reason. (And no, your medical condition
    is not an excuse.)

    As to "waste all our time": If anyone is doing that, it's *you*, with
    your fabricated 'problems'/'solutions' resulting in tens to hundreds of
    posts.

    Can't do the time, ...

    Click this link before you embarrass yourself again, please.
    <https://i.postimg.cc/sfvLPfxL/tax-implications.jpg>
    Stan, if he's been invited to Amazon Vine, can confirm that's the GUI.

    No need to look at that screenshot. It doesn't prove that you realize
    the consequences of your bragging (that is, if there's any truth in your bragging).

    I realize you told all of us long ago you never could graduate from
    secondary school in the Netherlands (I think that's where you are),

    You said that before, but until now - and until that hot place freezes
    over - you didn't provide the cite which proves I ever said such a
    thing.

    And, as you always dishonestly, 'conveniently' silently snip your correspondent's (counter) arguments/comments, I repeat:

    <repeat>
    N.B. Not that *I* am looking down on (or up to) anyone's education.
    </repeat>

    So come up with the cite or shut the fsck up with your lies ("Yeah, *right*!?").
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Kerr-Mudd, John@admin@127.0.0.1 to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Mon Jul 21 17:22:38 2025
    From Newsgroup: alt.msdos.batch

    On 21 Jul 2025 15:21:24 GMT
    Frank Slootweg <this@ddress.is.invalid> wrote:

    Marion <marion@facts.com> wrote:
    On 20 Jul 2025 15:49:35 GMT, Frank Slootweg wrote :

    []

    So come up with the cite or shut the fsck up with your lies ("Yeah, *right*!?").

    If you want to continue this argument, at least cut the xposts.

    FU to acow11 only.
    --
    Bah, and indeed Humbug.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Marion@marion@facts.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Tue Jul 22 01:57:06 2025
    From Newsgroup: alt.msdos.batch

    On Sat, 19 Jul 2025 14:27:47 -0700, Stan Brown wrote :


    What is GVIM?

    GUI Vim

    The Vim install install both the command-line version and the GUI
    version.

    <https://www.vim.org/>

    Sorry - I didn't see this until now.
    I'm having issues with my nntp scripts.

    Yes, Stan & Rob are correct that GVim is one of the editors on Windows.
    <https://www.vim.org/download.php>
    <https://github.com/vim/vim-win32-installer/releases>

    Most of us from the Unix days (now Linux) learned how to use it long ago.
    ed > em > ex > ed > vi (1976-1979) > vim (1991-1993) > gvim (1991-1993)

    Our finger memory allows us to be extremely efficient using it on Windows. (It's even on Android but the "escape" sequence is obnoxious on Android.)

    You can almost instantly tell the experience of Windows users simply by watching them edit a text file where their choice of editors tells all.

    1. NotePad (Windows' default for text editing)
    2. NotePad++ (often used by folks NOT from the UNIX/Linux world)
    3. GVim (often used by folks who came from the UNIX/Linux world)

    Others are Emacs, VS, Sublime Text, Atom, Nano/Pico, TextMate (macOS).
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Marion@marion@facts.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Tue Jul 22 15:40:04 2025
    From Newsgroup: alt.msdos.batch

    On 22 Jul 2025 13:46:19 GMT, Frank Slootweg wrote :


    still don't come up with proof

    It's obvious in *everything* you post, Frank, why you failed to graduate.
    You brought it up in this newsgroup - I only responded to your desperation.

    Your claim I had no idea whatsoever of Vine tax implications is absurd.
    Amazon spends pages (& pages!) explaining all the tax ramifications, Frank.
    <https://i.postimg.cc/SQDyBnjR/vine-tax-info.jpg>

    You have to sign a W2 form, Frank. And they impute taxable income daily.
    <https://i.postimg.cc/sfvLPfxL/tax-implications.jpg>

    In addition, they rate you daily on how insightful your reviews are
    compared to everyone else in the world who is writing Amazon reviews.
    <https://i.postimg.cc/k5FYJQc7/amazon-score.jpg>

    This is because a Vine Reviewer is invited because they are trustworthy.
    If you don't continually write insightful reviews, they kick you off.
    <https://i.postimg.cc/3x3nL4h6/amazon-trust.jpg>

    All this needed not to be said had you not repeatedly tried to insult me. Simply because you have always *hated* that you lack formal education.

    Same as Kerr-Mudd John lacks any and all formal education, Frank.
    All of you with vastly substandard IQs can only troll those who add value.

    You're nothing but an ignorant uneducated unhelpful worthless troll, Frank.
    One who *hates* himself because, as you know, you couldn't earn a degree.

    Hence, you attack others simply because you *hate* your low IQ, Frank.
    Where I deserve an apology from you for that - but I do not expect it.

    Since you brought me up in this public thread out of nowhere, it behooves
    you to apologize to the group publicly for claiming I am ignorant of taxes.

    But you will never apologize because you *hate* that you lack education.
    It's clear you are *desperate* to attack those who clearly are educated.

    In a word - you hate that you were born with a substandard IQ, Frank.

    The proof is your *desperation* to claim on Usenet publicly that I didn't
    sign a W2 which gives Amazon my Social Security Number (which is what we
    use for taxes here in the USA, Frank) and which gives the IRS the income.
    <https://i.postimg.cc/sfvLPfxL/tax-implications.jpg>

    The fact you claim I don't understand what an IRS W2 form does is a clear indicator of why you lamented that you could never graduate high school.

    Also showing why you lamented your lack of education, Frank, is the fact
    that you feel that this information isn't known to me when it clearly is.
    <https://i.postimg.cc/L6jnqvHj/amazon-vine-home.jpg>

    I'm sorry you were born with a very low IQ Frank, as you can't fix that.
    And I'm sorry as a direct result that you were unable to become educated.

    You said I didn't understand what an IRS W2 form is. Which is absurd.
    You're *desperate* to insult me because you *hate* your own substandard IQ.

    Either apologize or shut up because you are the one wasting our time.
    The fact you hate that you're uneducated is no reason to attack others.

    Deal with it on your own without bringing me into your lack of education.
    Leave me out of your problems & I won't have to publicly respond to you.

    I'm nothing like you uneducated ignorant trolls who hate anyone who adds
    value to this newsgroup to the point of claiming I don't understand my W2.

    An apology would be the honorable thing to do, Frank.
    But you won't as you *hate* that you can't ever add any value to this ng.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Marion@marion@facts.com to alt.comp.os.windows-10,alt.comp.os.windows-11,alt.msdos.batch on Tue Jul 22 16:01:08 2025
    From Newsgroup: alt.msdos.batch

    On Tue, 22 Jul 2025 15:40:04 -0000 (UTC), Marion wrote :


    The proof is your *desperation* to claim on Usenet publicly that I didn't sign a W2 which gives Amazon my Social Security Number (which is what we
    use for taxes here in the USA, Frank) and which gives the IRS the income.
    <https://i.postimg.cc/sfvLPfxL/tax-implications.jpg>

    Correction: I signed the W4. Amazon sends me & the IRS the W2. Mea culpa.

    Note: I'm not like those common trolls Frank, Chris & Kerr-Mudd in that I
    am open about what I know and what I don't know and how I can help people because I'm purposefully helpful (that's why I write the tutorials).

    Those common trolls *hate* that they can never add any value so they try to insult people, where I'm simply responding to their untoward insults.

    If Frank hadn't claimed *multiple times* that I didn't understand the
    Amazon Vine agreement, I wouldn't be wasting our time with this garbage.

    Tell Frank Slootweg to shut the fuck up and stop trolling as I must respond
    to his untoward unprovided absurd allegations out of his sheer desperation.

    All these trolls *hate* that they are incapable of adding any value.
    Frank Slootweg <this@ddress.is.invalid>
    Rob <invalid@invalid.invalid>
    Hank Rogers <Hank@nospam.invalid>
    "Kerr-Mudd, John" <admin@127.0.0.1>
    Chris <ithinkiam@gmail.com>

    None have added any value to this ng in their entire lives.
    (Note I'm aware it could all be the same person trolling us.)

    Here is a verbatim example of what these trolls posted in this thread
    (where, for all we know, they're all of Frank Slootweg's many nyms).

    From: Frank Slootweg <this@ddress.is.invalid>
    We have to declare them on our income tax
    return, at full price, and pay tax on them.
    Well, you don't expect him, with his 'extremely high IQ' and
    'excellent education' to be able to figure that out, do you!?

    From: Rob <invalid@invalid.invalid>
    He is only interested to attract young boys who he
    can abuse sexually. He currently works at some YMCA where
    he can meet many young boys but that's not enough for him.

    From: Hank Rogers <Hank@nospam.invalid>
    Damn, is he STILL after you? You should tell your parents.

    From: "Kerr-Mudd, John" <admin@127.0.0.1>
    Yeahbut he's still getting troll points for the xposts.

    From: Chris <ithinkiam@gmail.com>
    This was simply an attempt to stroke your own ego.
    Like your willingness to work for Amazon for free you just want
    to patted on the head and told you're a good boy. It was also
    off-topic in all the ngs you posted it to (even though it's
    CoPilot - which is only on Windows & a way to write batch
    which is related to the batch newsgroup so Chris is a troll).

    These are facts which are easily proven in this thread:
    a. I posted value related to (Windows) CoPilot & batch scripting
    b. These common trolls posted nothing but their off topic insults
    c. Which I am forced to respond to as this is a public forum

    If you don't want these trolls to post their off-topic insults,
    please ask them to stop complaining that they can't add value.

    That's really what the problem is, where I deserve an apology
    from each - but - trust me - I do not expect them to be adults.

    They're common trolls, which is proven by what they wrote here.
    Frank Slootweg <this@ddress.is.invalid>
    Rob <invalid@invalid.invalid>
    Hank Rogers <Hank@nospam.invalid>
    "Kerr-Mudd, John" <admin@127.0.0.1>
    Chris <ithinkiam@gmail.com>

    --- Synchronet 3.21a-Linux NewsLink 1.2