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

    From Marion@21:1/5 to All on Sat Jul 19 09:50:38 2025
    XPost: alt.comp.os.windows-11, 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
    --

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Alan K.@21:1/5 to Marion on Sat Jul 19 09:14:50 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From s|b@21:1/5 to Marion on Sat Jul 19 16:41:37 2025
    XPost: alt.comp.os.windows-11, 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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From MikeS@21:1/5 to All on Sat Jul 19 19:13:19 2025
    XPost: alt.comp.os.windows-11

    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

    Or the Windows calculator has a comprehensive conversion function.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Rob@21:1/5 to Alan K. politely and respectfully on Sat Jul 19 18:00:00 2025
    XPost: alt.comp.os.windows-11, alt.msdos.batch

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


    GUI Vim

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Rob@21:1/5 to All on Sat Jul 19 18:20:00 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Peter Johnson@21:1/5 to [email protected] on Sat Jul 19 19:17:04 2025
    XPost: alt.comp.os.windows-11, alt.msdos.batch

    On Sat, 19 Jul 2025 16:41:37 +0200, "s|b" <[email protected]d> 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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From s|b@21:1/5 to MikeS on Sat Jul 19 20:45:28 2025
    XPost: alt.comp.os.windows-11

    On Sat, 19 Jul 2025 19:13:19 +0100, MikeS wrote:

    Or the Windows calculator has a comprehensive conversion function.

    Why am I being told this just now!? :-O

    (Found it.)

    --
    s|b

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Stan Brown@21:1/5 to Marion on Sat Jul 19 14:25:26 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Stan Brown@21:1/5 to Rob on Sat Jul 19 14:27:47 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Stan Brown@21:1/5 to All on Sat Jul 19 14:33:28 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Hank Rogers@21:1/5 to Rob on Sat Jul 19 17:32:35 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Stan Brown on Sat Jul 19 23:23:31 2025
    XPost: alt.comp.os.windows-11, 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>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John Doe@21:1/5 to Hank Rogers on Sat Jul 19 23:16:43 2025
    XPost: alt.comp.os.windows-11, alt.msdos.batch

    Send the Jews back!

    SeigHeil!

    heil Hitler!

    www.goyimtv.com


    On Jul 19, 2025 at 6:32:35 PM EDT, "Hank Rogers" <[email protected]d> 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Peter Johnson on Sat Jul 19 23:25:11 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Zaidy036@21:1/5 to John Doe on Sun Jul 20 10:03:36 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From s|b@21:1/5 to Stan Brown on Sun Jul 20 17:06:22 2025
    XPost: alt.comp.os.windows-11, 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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to MikeS on Sun Jul 20 15:44:20 2025
    XPost: alt.comp.os.windows-11

    MikeS <[email protected]d> wrote:
    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

    Or the Windows calculator has a comprehensive conversion function.

    Spoilsport! Ruining yet another one of Arlen's 'problems' by pointing
    to a basic tool supplied with his OS! Shame on you!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Stan Brown on Sun Jul 20 15:49:35 2025
    XPost: alt.comp.os.windows-11, alt.msdos.batch

    Stan Brown <[email protected]> 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!?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From J. P. Gilliver@21:1/5 to All on Sun Jul 20 17:43:08 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Frank Slootweg on Sun Jul 20 19:10:05 2025
    XPost: alt.comp.os.windows-11

    On 20 Jul 2025 15:44:20 GMT, Frank Slootweg wrote :


    Or the Windows calculator has a comprehensive conversion function.

    Spoilsport! Ruining yet another one of Arlen's 'problems' by pointing
    to a basic tool supplied with his OS! Shame on you!

    Jesus Christ, Frank.
    The point isn't about what specific script CoPilot wrote for me.

    *The point is that it could write "a script" for you.*
    *And the point was what the "process" was for how it does that.*

    I realize you told us years ago you never graduated from the secondary
    school system in your country but seriously - even you should know this.

    As I clearly said so in multiple posts in this very thread, Frank.
    But you were too busy trying to attack me with your childish ad hominems.

    Why did I post the entire (collapsed) dialog, Frank if the purpose was the
    end result? Even you, with your low IQ Frank, should have figured that out.

    Normally I wouldn't bring up the fact that you were unable to graduate from secondary school Frank, but by attacking me on your absurd misunderstanding
    of the intent of this thread, you asked openly for me to explain it to you.

    To put it bluntly, the point isn't about the script, Frank.
    I feel sorry you failed to properly exit the secondary school system.

    But your inability to comprehend the topic does not constitute "ruining
    another problem" since the issue had *nothing* to do with the conversion.

    It's about what CoPilot can do for you.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Marion on Sun Jul 20 19:32:46 2025
    XPost: alt.comp.os.windows-11

    Marion <[email protected]> wrote:
    On 20 Jul 2025 15:44:20 GMT, Frank Slootweg wrote :

    Or the Windows calculator has a comprehensive conversion function.

    Spoilsport! Ruining yet another one of Arlen's 'problems' by pointing
    to a basic tool supplied with his OS! Shame on you!

    Jesus Christ, Frank.
    The point isn't about what specific script CoPilot wrote for me.

    *The point is that it could write "a script" for you.*
    *And the point was what the "process" was for how it does that.*

    Nope that wasn't the 'problem' set. That was your - unneeded -
    'solution'.

    I realize you told us years ago you never graduated from the secondary
    school system in your country

    I'm sure you can come up with a cite for that, like you always do for
    all of your 'facts'.

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

    but seriously - even you should know this.

    [More backpedaling deleted.]

    It's about what CoPilot can do for you.

    Of course it is. Like you always need a 'problem' to come up with the weirdest 'solutions', enabling you rant for tens to hundreds posts on
    end.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to All on Sun Jul 20 19:17:57 2025
    XPost: alt.comp.os.windows-11, 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!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Frank Slootweg on Sun Jul 20 19:46:29 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Frank Slootweg on Sun Jul 20 20:00:47 2025
    XPost: alt.comp.os.windows-11

    On 20 Jul 2025 19:32:46 GMT, Frank Slootweg wrote :


    *The point is that it could write "a script" for you.*
    *And the point was what the "process" was for how it does that.*

    Nope that wasn't the 'problem' set. That was your - unneeded -
    'solution'.

    Jesus Christ Frank,

    Why do you waste all our time *desperate* to insult me on Usenet, Frank?
    Why don't *you* post the turns you take with CoPilot to write a script?

    I posted the turns in the OP.
    You post yours.

    Then we can talk about your "added helpful value" to this newsgroup, Frank.

    And while you're adding "helpful value" to Usenet, Frank, respond to this.
    <https://i.postimg.cc/sfvLPfxL/tax-implications.jpg>

    You claimed I have no concept of the tax implications, which is absurd.
    Stop wasting everyone's time being *desperate* to insult me, Frank.

    Be helpful for once.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Marion on Mon Jul 21 14:58:09 2025
    XPost: alt.comp.os.windows-11

    Marion <[email protected]> wrote:
    On 20 Jul 2025 19:32:46 GMT, Frank Slootweg wrote :


    *The point is that it could write "a script" for you.*
    *And the point was what the "process" was for how it does that.*

    Nope that wasn't the 'problem' set. That was your - unneeded - 'solution'.

    Jesus Christ Frank,

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

    1) I didn't insult you, I stated a fact. 2) *If* I would insult you,
    it would only be 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.)

    Why don't *you* post the turns you take with CoPilot to write a script?

    Why on earth would I want to do that!? Which particular part of
    "unneeded" don't you understand!?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Marion on Mon Jul 21 15:21:24 2025
    XPost: alt.comp.os.windows-11, alt.msdos.batch

    Marion <[email protected]> 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*!?").

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Kerr-Mudd, John@21:1/5 to Frank Slootweg on Mon Jul 21 17:22:38 2025
    XPost: alt.comp.os.windows-11, alt.msdos.batch

    On 21 Jul 2025 15:21:24 GMT
    Frank Slootweg <[email protected]d> wrote:

    Marion <[email protected]> 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Stan Brown on Tue Jul 22 01:57:06 2025
    XPost: alt.comp.os.windows-11, 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).

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Frank Slootweg on Tue Jul 22 02:04:43 2025
    XPost: alt.comp.os.windows-11

    On 21 Jul 2025 14:58:09 GMT, Frank Slootweg wrote :


    Why don't *you* post the turns you take with CoPilot to write a script?

    Why on earth would I want to do that!?

    AI is relatively new for writing coding where I posted a PSA of CoPilot
    "turns" so others who are interested in using AI for batch coding can
    visualize the process where in about 1/2 hour, you have a working script.

    *What did _you_ post to be purposefully /helpful/ to the group, Frank?*

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Chris on Tue Jul 22 02:15:42 2025
    XPost: alt.comp.os.windows-11

    On Mon, 21 Jul 2025 11:29:41 -0000 (UTC), Chris wrote :


    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.

    What does this off topic boastful set of lies have to do with the topic?

    We've long ago established you're an Apple troll, Chris, who doesn't have a single helpful bone in your body, which is obvious from your OT post above.

    I realized you're butt hurt because you answered this question recently:
    Q: How many helpful tutorials have you written for the ng, Chris?
    A: 0

    The fact you don't possess the IQ to write one doesn't constitute a defense when you are denigrating the very people who happen to write many of them.

    You and Frank Slootweg should get a room together so you can whine that you can't write a tutorial because you have no helpful purpose in your body.

    Back to the topic, this thread shows anyone that they can have CoPilot
    write working scripts using a simple and short 1/2-hour process of...

    a. Tell copilot in natural language what you want written
    b. Test & simply paste the output back to copilot
    c. Copilot will understand and fix the errors

    My example only took longer than about 1/2 hour because I was multiplexing.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Frank Slootweg on Tue Jul 22 02:28:33 2025
    XPost: alt.comp.os.windows-11

    On 21 Jul 2025 15:21:24 GMT, Frank Slootweg wrote :


    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.)

    Jesus Christ Frank,

    I don't like to bring up that you said yourself you couldn't get into
    college, but you're really proving it in spades carrying this on here.

    LOOK AT THE THREAD FOR GOD'S SAKE>
    a. You desperately insulted (I never said a word about you)
    b. You desperately insulted again (where I never said a word about you)
    c. Then you lied about your own actions above, Frank.

    You insulted twice, and on the third response, you brazenly lied.
    Why Frank?

    I'm sorry for you that you couldn't graduate from (what we call in the USA) high school, Frank. I really am. But please stop proving it in every post.

    Get a room with Chris if the only "helpful" contribution is to claim the absurdity that I didn't sign a W2 (which is our income tax form, Frank).

    At least stop being so *desperate* to insult me that you have to fabricate
    that I am not aware that I provided Amazon Vine with my SSN & W2 form.

    Your untoward insults are so absurd as to show your desperation, Frank.
    Get a room with Chris. You can be the girl given how desperate you are.

    TO the others on this newsgroup, I apologize for Frank's & Chris' conduct.
    But I can't allow their untoward brazen insults to stand as they are.

    Neither has ever written a single helpful tutorial in their entire lives.
    They can't. And they hate those that can. That's obvious.

    I just ask the others here to ask them to stay on topic, where the topic
    here is how any user, whether or not they know coding, can, in about 1/2
    hour, ask CoPilot to write a script for them to perform a given task.

    CoPilot will originally produce a non-working script almost every time.
    But then all you do is paste the results - just the results.

    That's key.
    For efficiency.

    You just paste the results.
    And it fixes them.

    This is a boon even to those who have written scripts for decades.
    If you have suggestions for scripts to test, let me know & I'll try them.

    As always, we can all learn together from working together on the results.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Marion on Tue Jul 22 13:46:19 2025
    XPost: alt.comp.os.windows-11

    Marion <[email protected]> wrote:

    Jesus Christ Frank,

    I don't like to bring up that you said yourself you couldn't get into college,

    You clearly *do* like to bring it up, because you keep repeating that
    lie and - after several times - still don't come up with proof/a_cite,
    so:

    [Rewind/repeat:]

    So come up with the cite or shut the fsck up with your lies.

    [End repeat.]

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Frank Slootweg on Tue Jul 22 15:40:04 2025
    XPost: alt.comp.os.windows-11, 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.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Marion@21:1/5 to Marion on Tue Jul 22 16:01:08 2025
    XPost: alt.comp.os.windows-11, 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 <[email protected]d>
    Rob <[email protected]d>
    Hank Rogers <[email protected]d>
    "Kerr-Mudd, John" <[email protected]>
    Chris <[email protected]>

    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 <[email protected]d>
    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 <[email protected]d>
    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 <[email protected]d>
    Damn, is he STILL after you? You should tell your parents.

    From: "Kerr-Mudd, John" <[email protected]>
    Yeahbut he's still getting troll points for the xposts.

    From: Chris <[email protected]>
    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 <[email protected]d>
    Rob <[email protected]d>
    Hank Rogers <[email protected]d>
    "Kerr-Mudd, John" <[email protected]>
    Chris <[email protected]>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)