Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > sci.physics > #867652
| Path | csiph.com!news.mixmin.net!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail |
|---|---|
| From | The Starmaker <starmaker@ix.netcom.com> |
| Newsgroups | sci.physics.relativity, sci.physics |
| Subject | Re: ChatGPT |
| Date | Wed, 04 Jan 2023 12:35:11 -0800 |
| Organization | The Starmaker Organization |
| Lines | 312 |
| Message-ID | <63B5E2FF.28A4@ix.netcom.com> (permalink) |
| References | <639A0E35.C2E@ix.netcom.com> <kmm6qht108skvqk0blmrkmssssf1cv65o8@4ax.com> <liuuqhhrp06pjer9f20d7u88p2ilg0ip5j@4ax.com> <63B22F21.36A@ix.netcom.com> <63B28CB0.53E7@ix.netcom.com> <63B3A056.FB6@ix.netcom.com> <63B5C68F.28EA@ix.netcom.com> |
| Reply-To | starmaker@ix.netcom.com |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset=iso-8859-1 |
| Content-Transfer-Encoding | 8bit |
| Injection-Info | reader01.eternal-september.org; posting-host="4ad2725fdfcbbf7308e34ff1d7e8f4d9"; logging-data="2706409"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+csf5GKdN5z8JeZh+P1P6PbbN2jd0x7DM=" |
| Cancel-Lock | sha1:9JO9LW2KOOWjEZXt3k/r/VfMl8M= |
| X-Antivirus-Status | Clean |
| X-Mailer | Mozilla 3.04Gold (WinNT; U) |
| X-Antivirus | Avast (VPS 230104-4, 01/04/2023), Outbound message |
| Xref | csiph.com sci.physics.relativity:599052 sci.physics:867652 |
Cross-posted to 2 groups.
Show key headers only | View raw
There are many good reasons why
it is better to let ChatGPT
make one from scratch.
ChatGPT is knowledgeable about
current cancel codes that
didn't exist 20 years ago.
The Starmaker wrote:
>
> But really, you don't need to give
> ChatGPT a template...
> you are better off
> letting ChatGPT
> create the program ...from scratch.
>
> It's only a matter of knowing
> what words to communicate
> with ChatGPT to get 'him' to
> create a cancel program from scratch.
>
> Pretend ChatGPT is a three year old
> who just happens to know
> How To Code in any computer language,
> and simply tell ChatGPT:
>
> Come to think of it
> i haven't asked ChatGPT
> "How To Blow Up A Planet?"
>
> The Starmaker wrote:
> >
> > To convert the program below
> > just tell ChatGPT:
> >
> > "Convert the given program to python: "
> >
> > The Starmaker wrote:
> > >
> > > Some of yous out there already have the source codes to different versions of hipcrime Newsagent, so
> > > you can use that for a template...
> > >
> > > others can use this barebones and have
> > > ChatGPT convert it for you to Python:
> > >
> > > --------begins here---------------
> > > #! /usr/bin/perl
> > > ## Parse JCL.
> > > $local = 1;
> > > $production = 1;
> > > args: while ( $_ = $ARGV[0], /^-/ ) {
> > > shift;
> > > if ( $_ eq '-debug' ) {
> > > $production = 0;
> > > next args;
> > > }
> > > if ( $_ eq '-global' ) {
> > > $local = 0;
> > > next args;
> > > }
> > > die 'Bad flag\n';
> > > }
> > > $who = shift || die 'Not enough args.\n';
> > > shift && die 'Too many args.\n';
> > >
> > > ## Set header values if we're going to be posting.
> > > if ( $local == 0 ) {
> > > $pathhost = `innconfval pathhost`;
> > > chop($pathhost);
> > > @pw = getpwuid($<);
> > > $canceller = $pathhost . '!' . $pw[0];
> > > ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = gmtime;
> > > $year += 1900;
> > > $monthname = substr('JanFebMarAprMayJunJulAugSepOctNovDec', $mon * 3, 3);
> > > $date = "$mday $monthname $year $hour:$min:$sec GMT";
> > > }
> > >
> > > ## Main loop; process each line.
> > > line: while ( <STDIN> ) {
> > > next line unless ( $paths, $subj, $from, $xdate, $msgid ) = split('\t', $_);
> > > next line unless $from =~ /$who/io;
> > >
> > > if ( $local ) {
> > > foreach ( split(' ', $paths) ) {
> > > unlink $_
> > > || warn "Can't unlink $_ $!";
> > > }
> > > } else {
> > > open(FH, '|rnews') && select FH
> > > if $production;
> > > $myid = $msgid;
> > > $myid =~ s/</<cancel./;
> > > print 'Newsgroups: news.admin
> > > Path: ', $canceller, '
> > > Subject: cmsg cancel ', $msgid, '
> > > Control: cancel ', $msgid, '
> > > From: ', $from, '
> > > Date: ', $date, '
> > > Message-ID: ', $myid, '
> > >
> > > ';
> > > close(FH)
> > > if $production;
> > > }
> > > }
> > > exit(0);
> > >
> > > ## lint noise:
> > > print $isdst + $wday + $yday + $subj + $xdate;
> > >
> > > ------------------ends here--------------------------------
> > >
> > > The Starmaker wrote:
> > > >
> > > > Cancel Wars begins now!
> > > >
> > > > As yous already know the FBI and the CIA infiltrates all the tech
> > > > companies to cancel whoever they want (including the president of the
> > > > united states)
> > > >
> > > > I'll show you how you can begin from scratch with...ChatGPT.
> > > >
> > > > Insert these words in ChatGPT:
> > > >
> > > > "Create a program written in Phyton which allows the user to auto-cancel
> > > > any message on Usenet based on author, subject, organization,
> > > > message-id, and path."
> > > >
> > > > Then 'follow' and 'guide' ChatGPT to your finish cancel program. Test..
> > > > Then cancel me.
> > > >
> > > > Here is more information if needed to feed ChatGPT with:
> > > > https://en.wikipedia.org/wiki/Hipcrime_(Usenet)
> > > >
> > > > go to References 2.(for more deep level information)
> > > >
> > > > Cancel Wars begins now!
> > > >
> > > > Then cancel me.
> > > >
> > > > The Starmaker wrote:
> > > > >
> > > > > How to write a code snippet using AI (OpenAI ChatGPT)
> > > > > https://medium.com/geekculture/writing-code-snippet-using-ai-openai-chatgpt-d96e6073e894
> > > > >
> > > > > ...now, I created from scratch on ChatGPT
> > > > > a new exciting code...and after
> > > > > adjustments and fixing...it works!
> > > > >
> > > > > Here is a small sample:
> > > > >
> > > > > ---------------------------------------------------------------------------
> > > > > # Construct the control message
> > > > > message = "Control: cancel " + message_id + "\nCancel-Key: " +
> > > > > message_id + "\n\n"
> > > > >
> > > > > # Retrieve the article header and body
> > > > >
> > > > > response, header_lines, article_number, message_id, \
> > > > > data = server.article(article_id)
> > > > >
> > > > > # Send the control message to the server
> > > > > # s.post(message)
> > > > >
> > > > > # Cancel the article
> > > > > server.ihave(message_id, data)
> > > > >
> > > > > ------------------------------------------------------------------------
> > > > >
> > > > > I'm now King of Usenet!
> > > > >
> > > > > Okay, let me see...who has been misbehaving here?
> > > > >
> > > > > MY Gawd! You all a bunch of naughty boys!!!!
> > > > >
> > > > > I'm going to have to go back and make some little adjustments here:
> > > > >
> > > > > # Loop through all the articles in the newsgroup and cancel each
> > > > > one...ALL of them!:
> > > > > for article_id in range
> > > > >
> > > > > Hey! WHERE IS EVERYBODY???
> > > > >
> > > > >
> > > > > Isn't ChatGPT cool?
> > > > >
> > > > > Imagine you wake up tomorrow morning and there is no Usenet?
> > > > >
> > > > > Isn't ChatGPT cool?
> > > > >
> > > > > What else can I do wit it?
> > > > >
> > > > > Oh, I can charge yous 'access' to Usenet...I mean, 'allow' you to
> > > > > post.
> > > > >
> > > > > What's the price for ...freedom? I don't think you can put a price on
> > > > > dat.
> > > > >
> > > > > Remember, if you're still here...it's because I ALLOW IT!
> > > > >
> > > > > How about?
> > > > > # Select and Loop through all the newsgroups and remove each
> > > > > one...ALL of them!:
> > > > > for newsgroups in range
> > > > >
> > > > > I'm...GOD!
> > > > >
> > > > > You have been created in My Image!
> > > > >
> > > > > As a reminder, little people, there must be discipline here.
> > > > >
> > > > > Discipline above all!
> > > > >
> > > > > On Wed, 21 Dec 2022 11:14:14 -0800, The Starmaker
> > > > > <starmaker@ix.netcom.com> wrote:
> > > > >
> > > > > >‘Code Red’
> > > > > >
> > > > > >
> > > > > >https://dnyuz.com/2022/12/21/a-new-chat-bot-is-a-code-red-for-googles-search-business/
> > > > > >
> > > > > >
> > > > > >
> > > > > >On Wed, 14 Dec 2022 09:56:05 -0800, The Starmaker
> > > > > ><starmaker@ix.netcom.com> wrote:
> > > > > >
> > > > > >>ChatGPT looks like
> > > > > >>it does a better
> > > > > >>job of
> > > > > >>writing programs
> > > > > >>then all those
> > > > > >>guys out there
> > > > > >>on freelance sites.
> > > > > >>
> > > > > >>ChatGPT doesn't
> > > > > >>ask stupid questions
> > > > > >>like
> > > > > >>"What do you want this for?"
> > > > > >>or
> > > > > >>"This looks illegal."
> > > > > >>
> > > > > >>ChatGPT just
> > > > > >>codes for you without
> > > > > >>a conscious.
> > > > > >>
> > > > > >>Blackhat ChatGPT
> > > > > >>is cool.
> > > > > >>
> > > > > >>It's like asking
> > > > > >>Albert Einstein,
> > > > > >>"Can you build me an atomic bomb?"
> > > > > >>and it might ask...
> > > > > >>
> > > > > >>"Do you want it to be
> > > > > >>launched from a submarine or
> > > > > >>a suitcase?"
> > > > > >>
> > > > > >>Then I might ask ChatGPT...
> > > > > >>
> > > > > >>Make me an extremely powerful bomb of a new type
> > > > > >>constructed to blow up the whole Earth!
> > > > > >>
> > > > > >>and ChatGPT might say:
> > > > > >>
> > > > > >>"Such bombs might very well prove to be too heavy for transportation by
> > > > > >>air. A single bomb of this type, carried by submarine and exploded in a
> > > > > >>port, might very well destroy
> > > > > >>the whole Earth together with some of the surrounding planets."
> > > > > >>
> > > > > >>GO FOR IT BRO!!!!
> > > > > >>
> > > > > >>
> > > > > >>Isn't ChatGPT cool?
> > > > > --
> > > > > The Starmaker -- To question the unquestionable, ask the unaskable,
> > > > > to think the unthinkable, mention the unmentionable, and challenge
> > > > > the unchallengeable.
> > > >
> > > > --
> > > > The Starmaker -- To question the unquestionable, ask the unaskable,
> > > > to think the unthinkable, mention the unmentionable, say the unsayable,
> > > > and challenge
> > > > the unchallengeable.
> > >
> > > --
> > > The Starmaker -- To question the unquestionable, ask the unaskable,
> > > to think the unthinkable, mention the unmentionable, say the unsayable, and challenge
> > > the unchallengeable.
> >
> > --
> > The Starmaker -- To question the unquestionable, ask the unaskable,
> > to think the unthinkable, mention the unmentionable, say the unsayable,
> > and challenge
> > the unchallengeable.
>
> --
> The Starmaker -- To question the unquestionable, ask the unaskable,
> to think the unthinkable, mention the unmentionable, say the unsayable,
> and challenge
> the unchallengeable.
--
The Starmaker -- To question the unquestionable, ask the unaskable,
to think the unthinkable, mention the unmentionable, say the unsayable,
and challenge
the unchallengeable.
Back to sci.physics | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2022-12-14 09:56 -0800
Re: ChatGPT Fabio Brambilla <oaab@llbaboaa.am> - 2022-12-14 18:20 +0000
Re: ChatGPT whodat <whodaat@void.nowgre.com> - 2022-12-14 13:41 -0600
Re: ChatGPT Fabio Brambilla <oaab@llbaboaa.am> - 2022-12-14 18:23 +0000
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2022-12-14 23:31 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2022-12-15 10:04 -0800
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2022-12-14 23:33 -0800
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2022-12-14 23:39 -0800
Re: ChatGPT Sergi o <invalid@invalid.com> - 2022-12-15 12:35 -0600
Re: ChatGPT James McGinn <jimmcginn9@gmail.com> - 2022-12-21 13:09 -0800
Re: ChatGPT Jim Pennino <jimp@gonzo.specsol.net> - 2022-12-21 13:32 -0800
Re: ChatGPT Claudius Denk <claudiusdenk@gmail.com> - 2022-12-21 21:39 -0800
Re: ChatGPT Jim Pennino <jimp@gonzo.specsol.net> - 2022-12-22 07:53 -0800
Re: ChatGPT Solving Tornadoes <solvingtornadoes@gmail.com> - 2022-12-22 12:36 -0800
Re: ChatGPT Jim Pennino <jimp@gonzo.specsol.net> - 2022-12-22 13:08 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2022-12-21 11:14 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2022-12-30 16:51 -0800
Re: ChatGPT whodat <whodaat@void.nowgre.com> - 2022-12-30 19:14 -0600
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-01 17:10 -0800
Re: ChatGPT Jim Pennino <jimp@gonzo.specsol.net> - 2023-01-01 17:38 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-01 19:21 -0800
Re: ChatGPT Jim Pennino <jimp@gonzo.specsol.net> - 2023-01-01 20:26 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-01 21:30 -0800
Re: ChatGPT Jim Pennino <jimp@gonzo.specsol.net> - 2023-01-02 06:50 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-02 08:18 -0800
Re: ChatGPT Jim Pennino <jimp@gonzo.specsol.net> - 2023-01-02 09:19 -0800
Re: ChatGPT Sergi o <invalid@invalid.com> - 2023-01-01 22:51 -0600
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-01 21:41 -0800
Re: ChatGPT Sergi o <invalid@invalid.com> - 2023-01-02 08:22 -0600
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-02 22:28 -0800
Re: ChatGPT Sergi o <invalid@invalid.com> - 2023-01-03 09:54 -0600
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-03 16:39 -0800
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-03 16:36 -0800
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-03 16:39 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-01 18:06 -0800
Re: ChatGPT Jim Pennino <jimp@gonzo.specsol.net> - 2023-01-01 20:28 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-01 21:53 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-02 08:20 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-01 23:50 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-02 08:25 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-02 19:26 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-04 10:33 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-04 12:35 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-04 21:11 -0800
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-05 14:00 -0800
Re: ChatGPT Sergi o <invalid@invalid.com> - 2023-01-05 16:53 -0600
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-06 14:51 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-06 15:21 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-20 10:53 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-02-25 16:13 -0800
Re: ChatGPT Paul Alsing <pnalsing@gmail.com> - 2023-02-25 19:24 -0800
Re: ChatGPT whodat <whodaat@void.nowgre.com> - 2023-02-25 22:20 -0600
Re: ChatGPT Paul Alsing <pnalsing@gmail.com> - 2023-02-25 22:12 -0800
Re: ChatGPT Volney <volney@invalid.invalid> - 2023-02-27 14:19 -0500
Re: ChatGPT whodat <whodaat@void.nowgre.com> - 2023-02-27 15:56 -0600
Re: ChatGPT Dasha Linde <dashalinde@pptp.de> - 2023-02-28 00:23 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-02-25 23:40 -0800
Re: ChatGPT whodat <whodaat@void.nowgre.com> - 2023-02-26 01:54 -0600
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-02-26 17:12 -0800
Re: ChatGPT Connie Scutese <uiin@tssccenc.ne> - 2023-02-27 18:55 +0000
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-02-27 13:12 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-02-26 11:53 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-02-26 21:20 -0800
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-02-26 21:43 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-02-27 12:26 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-02-28 13:05 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-02-28 16:36 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-03-30 11:07 -0700
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-04-01 10:22 -0700
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-04-08 15:29 -0700
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-04-11 10:57 -0700
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-05-27 18:45 -0700
Re: ChatGPT Physfitfreak <Physfitfreak@gmail.com> - 2023-05-27 21:05 -0500
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-05-27 19:40 -0700
Re: ChatGPT Physfitfreak <Physfitfreak@gmail.com> - 2023-05-27 22:03 -0500
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-05-27 22:22 -0700
Re: ChatGPT Physfitfreak <Physfitfreak@gmail.com> - 2023-05-28 03:31 -0500
Re: ChatGPT Physfitfreak <Physfitfreak@gmail.com> - 2023-05-28 18:17 -0500
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-05-27 21:16 -0700
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-02-28 16:57 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-03-01 16:47 -0800
Re: ChatGPT whodat <whodaat@void.nowgre.com> - 2023-03-02 17:24 -0600
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-03-02 16:45 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-03-03 11:18 -0800
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-03-03 12:06 -0800
Re: ChatGPT whodat <whodaat@void.nowgre.com> - 2023-03-03 20:39 -0600
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-03-03 21:22 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-03-03 21:27 -0800
Re: ChatGPT whodat <whodaat@void.nowgre.com> - 2023-03-04 13:51 -0600
Re: ChatGPT whodat <whodaat@void.nowgre.com> - 2023-03-04 13:41 -0600
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-02-12 11:01 -0800
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-04 14:15 -0800
Re: ChatGPT "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-04-01 13:49 -0700
csiph-web