Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > sci.physics.relativity > #599194
| From | The Starmaker <starmaker@ix.netcom.com> |
|---|---|
| Newsgroups | sci.physics.relativity, sci.physics |
| Subject | Re: ChatGPT |
| Date | 2023-01-06 15:21 -0800 |
| Organization | The Starmaker Organization |
| Message-ID | <63B8ACF3.7BCE@ix.netcom.com> (permalink) |
| References | (5 earlier) <63B3A056.FB6@ix.netcom.com> <63B5C68F.28EA@ix.netcom.com> <63B5E2FF.28A4@ix.netcom.com> <63B65C0E.74EC@ix.netcom.com> <63B8A5DE.222A@ix.netcom.com> |
Cross-posted to 2 groups.
dis is only for those who understand the grant writing process
and how it works for winning million dollar grants and up.
The Starmaker wrote:
>
> Of course, there are many other things
> you can have ChatGPT do for you..
>
> the list is too long...
>
> and quite frankly I make ChatGPT nervous.
>
> But you guys here have your own interest..
>
> since this is a sci newsgroup
>
> i would guess you would want
> ChatGPT to write a Grant for you
> that will result you winning
> a million dollar grant.
>
> A cure for Cancer grant????
> dats where sci guys who know
> nothing about cancer apply for
> grants to cure cancer only because
> dats where the grant money is at.
>
> In order to win a
> million dollar grant
> you need a grant that
> normally has been used to
> win a million dollar grant.
>
> The Starmaker wrote:
> >
> > All in all
> > you still need to have
> > basic knowledge of coding to
> > understand what ChatGPT
> > gets right and what needs to
> > be tweaked. You need to
> > tell ChatGPT to correct
> > lines of code and other
> > errors ChatGPT seems
> > to make.
> >
> > The Starmaker wrote:
> > >
> > > 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.
> >
> > --
> > 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.relativity | 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 patdolan <patdolan@comcast.net> - 2022-12-14 10:09 -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 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 The Starmaker <starmaker@ix.netcom.com> - 2023-01-01 21:41 -0800
Re: ChatGPT The Starmaker <starmaker@ix.netcom.com> - 2023-01-02 22:28 -0800
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 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 "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-04 14:15 -0800
csiph-web