Rocksolid Light

Welcome to Rocksolid Light

mail  files  register  newsreader  groups  login

Message-ID:  

Matter will be damaged in direct proportion to its value.


tech / sci.math / The AP...

SubjectAuthor
* The AP...Chris M. Thomasson
+- Re: The AP...sobriquet
+- Re: Archimedes "psychoceramic" Plutonium flunked the math test of aVolney
+* Re: The AP...Mild Shock
|`- Re: The AP...Dogelog Player
`- Re: The AP...Mild Shock

1
The AP...

<uiufmt$ud4c$2@dont-email.me>

  copy mid

https://news.novabbs.org/tech/article-flat.php?id=152546&group=sci.math#152546

  copy link   Newsgroups: sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m.thomasson.1@gmail.com (Chris M. Thomasson)
Newsgroups: sci.math
Subject: The AP...
Date: Mon, 13 Nov 2023 16:41:01 -0800
Organization: A noiseless patient Spider
Lines: 95
Message-ID: <uiufmt$ud4c$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 14 Nov 2023 00:41:02 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="6b2b7e169255d8eb4f38ce399d6fe008";
logging-data="996492"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/Q0ixSYoPe7OZCu41nxLKC5IMc6Lzle+0="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:XAINWMqzDQvXMB8SjVrb3zJEH6E=
Content-Language: en-US
 by: Chris M. Thomasson - Tue, 14 Nov 2023 00:41 UTC

Has anybody else reaped anything interesting from AP? I actually managed
to do it! All about semi-circles wrt a prior discussion we had on this
very group... Well, here is what I got inspired to create from said
discussion:

https://pastebin.com/raw/mGar95sa

And the following animation reaped from it:

https://youtu.be/4VrMT18Rr84

Fwiw, I was playing around with Processing at the time.

________________
/*
Alien Code?
First try by: Chris M. Thomasson
____________________________________________________*/
float g_pradius = 200;

void setup()
{ size(800, 800);
noFill();
noLoop();
background(0);
colorMode(RGB, 255);
translate(width / 2, height / 2);
ct_alien_code_render(0, 2, 0, 0, 100);
saveFrame("ct_alien_code.jpg");
}

void ct_alien_code_render(
int irecur,
int irecur_max,
float ox,
float oy,
int imax
) {
if (irecur >= irecur_max) return;

float angle_start = 1 / (imax - 1.0) * (PI*2);

float ptx = 1;
float pty = 0;

float ptx_x = (cos(angle_start) + floor(sin(angle_start)) * 2 + 1) * .5;
float ptx_y = sin(angle_start) * .5;

float dif_x = ptx_x - ptx;
float dif_y = ptx_y - pty;

float dis = abs(dif_x * dif_x + dif_y * dif_y);

for (int i = 1; i < imax; ++i)
{
float ir = i / (imax - 1.0);
float angle = (PI*2) * ir;

float np_x = (cos(angle) + floor(sin(angle)) * 2 + 1) * .5;
float np_y = (sin(angle)) * .5;

np_x += ox;
np_y += oy;

float dif_np_x = np_x - ptx;
float dif_np_y = np_y - pty;
float ddd = abs(dif_np_x * dif_np_x + dif_np_y * dif_np_y);

if (ddd <= dis && i > 1)
{
// line in.plot.line(pt, np, CT_RGBF(0, 1, 1));

float proj_pt_x = ptx * g_pradius;
float proj_pt_y = -pty * g_pradius;

float proj_np_x = np_x * g_pradius;
float proj_np_y = -np_y * g_pradius;

stroke(255, 255, 0);
line(proj_pt_x, proj_pt_y, proj_np_x, proj_np_y);

stroke(255, 0, 0);
line(-proj_pt_x, -proj_pt_y, -proj_np_x, -proj_np_y);
}

ct_alien_code_render(irecur + 1, irecur_max, np_x, np_y, imax);

ptx = np_x;
pty = np_y;
}
}

Re: The AP...

<3ccff1d9-1709-4c35-affd-2695236ec076n@googlegroups.com>

  copy mid

https://news.novabbs.org/tech/article-flat.php?id=152550&group=sci.math#152550

  copy link   Newsgroups: sci.math
X-Received: by 2002:a05:6214:4c09:b0:66d:ce9:29e5 with SMTP id qh9-20020a0562144c0900b0066d0ce929e5mr23543qvb.1.1699927523743;
Mon, 13 Nov 2023 18:05:23 -0800 (PST)
X-Received: by 2002:a05:6a00:ccd:b0:6be:3025:9148 with SMTP id
b13-20020a056a000ccd00b006be30259148mr2824701pfv.5.1699927523420; Mon, 13 Nov
2023 18:05:23 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!border-2.nntp.ord.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: sci.math
Date: Mon, 13 Nov 2023 18:05:22 -0800 (PST)
In-Reply-To: <uiufmt$ud4c$2@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=31.21.199.17; posting-account=Ft_AlwoAAACRFHaTvqHzRLGUJWp0fdpP
NNTP-Posting-Host: 31.21.199.17
References: <uiufmt$ud4c$2@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <3ccff1d9-1709-4c35-affd-2695236ec076n@googlegroups.com>
Subject: Re: The AP...
From: dohduhdah@yahoo.com (sobriquet)
Injection-Date: Tue, 14 Nov 2023 02:05:23 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 7
 by: sobriquet - Tue, 14 Nov 2023 02:05 UTC

On Tuesday, November 14, 2023 at 1:41:11 AM UTC+1, Chris M. Thomasson wrote:
> Has anybody else reaped anything interesting from AP?
>[..]

I dunno about AP, but I like that yin yang shape.

https://www.desmos.com/calculator/uowfzqo1vl

Re: Archimedes "psychoceramic" Plutonium flunked the math test of a lifetime-generation test

<uiv3a1$14l3r$1@dont-email.me>

  copy mid

https://news.novabbs.org/tech/article-flat.php?id=152555&group=sci.math#152555

  copy link   Newsgroups: sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: volney@invalid.invalid (Volney)
Newsgroups: sci.math
Subject: Re: Archimedes "psychoceramic" Plutonium flunked the math test of a
lifetime-generation test
Date: Tue, 14 Nov 2023 01:15:29 -0500
Organization: A noiseless patient Spider
Lines: 92
Message-ID: <uiv3a1$14l3r$1@dont-email.me>
References: <uiufmt$ud4c$2@dont-email.me>
<aadabc35-e5f0-4d41-8835-c9fe884d304en@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 14 Nov 2023 06:15:30 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="871e5817698778c2e329e968af9020be";
logging-data="1201275"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19Kb3dYBCyF8U3ssf6alkbQ"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:N2DF6Vc9iLuDfsWw9lnp3qL+fiU=
In-Reply-To: <aadabc35-e5f0-4d41-8835-c9fe884d304en@googlegroups.com>
Content-Language: en-US
 by: Volney - Tue, 14 Nov 2023 06:15 UTC

💩 for 🧠s Archimedes "Putin's Stooge" Plutonium
<plutonium.archimedes@gmail.com> humiliates himself by writing:

> My 134th published book
>
> Introduction to TEACHING TRUE MATHEMATICS: Volume 1 for ages 5 through 26, math textbook series, book 1 Kindle Edition
> by Archimedes Plutonium (Author)
>
Why do you keep trying to brainwash poor little 5 year old kids?

WARNING TO STUDENTS, PARENTS and TEACHERS: Archimedes Plutonium is
offering to teach your children his broken physics and math. BEWARE! He
will corrupt the minds of your children! Mr. Plutonium is not content to
be a failure of math and physics all by himself. He wants everyone else
to fail as well! He teaches bizarre false physics and math, such as
atoms contain the unstable muon, water is H4O and not H2O, the ellipse
isn't a conic section, there are no negative numbers and no complex
numbers, that a sine wave isn't sinusoidal but semicircles, cycloids or
parabolas (depending on his mood), plus many, many other instances of
bad math and physics.

Plutonium has previously tried to corrupt our youth by posting his books
on Usenet. That has failed until now, perhaps in part due to the fact
Usenet is an old, dying medium, which few modern students even know of,
much less use. However, Mr. Plutonium has somehow duped Amazon into
providing his dangerous books for free on Kindle. This has greatly
increased the danger to our students!

One of his dangerous tricks is teach false Boolean logic such as 10 AND
2 = 12. His method at doing this is particularly insidious. He'll post a
false statement that nobody believes, such as 10 OR 2 = 12, say that it
is false (which it is), but then he'll try to replace it with another
similar false statement such as 10 AND 2 = 12, in order to really
confuse future computer scientists. Plutonium is taking advantage of the
fact that AND means different things in Boolean logic and elementary
arithmetic, as AND is an informal synonym for plus/addition. It is
important for future computer scientists to remember that in the bitwise
Boolean logic used by modern computers, 10 OR 2 = 10 and 10 AND 2 = 2.
Of course in pure Boolean logic the only possible values are true and
false (1 or 0), so in pure Boolean logic the statements "10 AND 2" and
"10 OR 2" don't even make sense. Don't let evil Plutonium's bad logic
confuse you!

Plutonium has been targeting children as young as 5. A new attempt to
corrupt the minds of young children is to teach that the alphabet has 12
letters, 6 vowels and 6 consonants. This sounds like a great way to
keep our children from reading!

Nobody knows why Plutonium wishes to corrupt the minds of our youth like
this. Perhaps Plutonium is envious of their potential success, which he
never had because he is a failure at math and science. Plutonium is not
content to be a failure at math and physics all by himself. He wants
everyone to fail as well. Some claim Plutonium is an agent of China, in
order for China to dominate the world economy. Maybe he is a minion of
Kim Jong Un of North Korea. Most likely, however, he is an agent of
Putin and Russia, since Plutonium has previously attempted to summon
Russian robots in 2017 "to create a new, true mathematics" in an attempt
to destroy mathematics.

Additionally, Plutonium has started a Cult of Failure. He is trying to
convince students to worship his evil pagan Plutonium atom god of
Failure. This cult is anti-science and anti-mathematics. Its only goal
is to promote failure in math and science.

There is some evidence this Cult of Failure may be a suicide cult.
Plutonium has advocated that the "good guy" nations join into a
supernation and threaten to "flatten" the (nuclear armed) "bad guy"
nations who misbehave. The idea may to initiate an all-out nuclear
war when "bad guy" nations retaliate. Not simply is Plutonium or his
cult committing suicide but would take Planet Earth with them. As the
war in Ukraine continues, Plutonium keeps asking NATO to attack the
Russians, starting a nuclear WW3, which he feels is unavoidable. More
evidence of Plutonium's Cult of Failure being a suicide cult.

Plutonium is now encouraging resistance fighters fighting the regimes
in Russia and Iran to attack power lines in Tehran and Moscow by
carrying long vertical aluminum poles under them, presumably to short
them out, complete with a diagram. Obviously, this will not end well
for for the resistance fighter. The question is, did he do this because
he is Putin's stooge trying to kill off resistance fighters? Or is this
part of Plutonium's Suicide Cult of Failure, meaning this is merely a
suggestion how to commit suicide while failing to harm the regimes? Or
both?

But the point is, stay away, if he offers to give or sell you one of his
dangerous books. Especially now since they are available for free from
otherwise legitimate Amazon.

Re: The AP...

<27dcc132-b725-4dde-98ae-e63d28c921dbn@googlegroups.com>

  copy mid

https://news.novabbs.org/tech/article-flat.php?id=152561&group=sci.math#152561

  copy link   Newsgroups: sci.math
X-Received: by 2002:a05:620a:45a1:b0:77b:d563:1c0c with SMTP id bp33-20020a05620a45a100b0077bd5631c0cmr54286qkb.14.1699962339164;
Tue, 14 Nov 2023 03:45:39 -0800 (PST)
X-Received: by 2002:a17:90a:588f:b0:27d:e1c:533e with SMTP id
j15-20020a17090a588f00b0027d0e1c533emr2752183pji.3.1699962338872; Tue, 14 Nov
2023 03:45:38 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: sci.math
Date: Tue, 14 Nov 2023 03:45:38 -0800 (PST)
In-Reply-To: <aadabc35-e5f0-4d41-8835-c9fe884d304en@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=77.57.50.239; posting-account=UjEXBwoAAAAOk5fiB8WdHvZddFg9nJ9r
NNTP-Posting-Host: 77.57.50.239
References: <uiufmt$ud4c$2@dont-email.me> <aadabc35-e5f0-4d41-8835-c9fe884d304en@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <27dcc132-b725-4dde-98ae-e63d28c921dbn@googlegroups.com>
Subject: Re: The AP...
From: bursejan@gmail.com (Mild Shock)
Injection-Date: Tue, 14 Nov 2023 11:45:39 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1343
 by: Mild Shock - Tue, 14 Nov 2023 11:45 UTC

Judging from the length of his spams, AP must have the
smallest micro penis on the planet. What a looser!

Archimedes Plutonium schrieb am Dienstag, 14. November 2023 um 02:06:17 UTC+1:
> Konig der Wissenshaften

Re: The AP...

<106dadfe-6795-4825-a187-3fab3059faf5n@googlegroups.com>

  copy mid

https://news.novabbs.org/tech/article-flat.php?id=152607&group=sci.math#152607

  copy link   Newsgroups: sci.math
X-Received: by 2002:a05:6214:190f:b0:66d:3384:1b with SMTP id er15-20020a056214190f00b0066d3384001bmr125382qvb.5.1700065670400;
Wed, 15 Nov 2023 08:27:50 -0800 (PST)
X-Received: by 2002:a17:90a:cb91:b0:280:25e9:ffd4 with SMTP id
a17-20020a17090acb9100b0028025e9ffd4mr1786194pju.0.1700065670152; Wed, 15 Nov
2023 08:27:50 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: sci.math
Date: Wed, 15 Nov 2023 08:27:49 -0800 (PST)
In-Reply-To: <fe1a1f4e-0bbf-4749-acba-ac98f594edf4n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=77.57.50.239; posting-account=HX375QoAAAA7xd6c7_0cXKfopBycCvlv
NNTP-Posting-Host: 77.57.50.239
References: <uiufmt$ud4c$2@dont-email.me> <aadabc35-e5f0-4d41-8835-c9fe884d304en@googlegroups.com>
<27dcc132-b725-4dde-98ae-e63d28c921dbn@googlegroups.com> <fe1a1f4e-0bbf-4749-acba-ac98f594edf4n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <106dadfe-6795-4825-a187-3fab3059faf5n@googlegroups.com>
Subject: Re: The AP...
From: janburse@xlog.ch (Dogelog Player)
Injection-Date: Wed, 15 Nov 2023 16:27:50 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1410
 by: Dogelog Player - Wed, 15 Nov 2023 16:27 UTC

Judging from the length of his spams, AP must have the
smallest micro penis on the planet. What a looser!
Archimedes Plutonium schrieb:
> Konig der Wissenshaften

Re: The AP...

<b4785c86-ce25-4e9d-be8d-d5eda2621befn@googlegroups.com>

  copy mid

https://news.novabbs.org/tech/article-flat.php?id=152688&group=sci.math#152688

  copy link   Newsgroups: sci.math
X-Received: by 2002:a05:6214:e67:b0:66d:9b:9389 with SMTP id jz7-20020a0562140e6700b0066d009b9389mr287211qvb.5.1700171310044;
Thu, 16 Nov 2023 13:48:30 -0800 (PST)
X-Received: by 2002:a25:b210:0:b0:da0:d0be:ef05 with SMTP id
i16-20020a25b210000000b00da0d0beef05mr401240ybj.11.1700171309836; Thu, 16 Nov
2023 13:48:29 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!3.eu.feeder.erje.net!feeder.erje.net!fdn.fr!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: sci.math
Date: Thu, 16 Nov 2023 13:48:29 -0800 (PST)
In-Reply-To: <99194e45-98a2-46b6-a4b8-2068b92c6a2an@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=77.57.50.239; posting-account=UjEXBwoAAAAOk5fiB8WdHvZddFg9nJ9r
NNTP-Posting-Host: 77.57.50.239
References: <uiufmt$ud4c$2@dont-email.me> <99194e45-98a2-46b6-a4b8-2068b92c6a2an@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <b4785c86-ce25-4e9d-be8d-d5eda2621befn@googlegroups.com>
Subject: Re: The AP...
From: bursejan@gmail.com (Mild Shock)
Injection-Date: Thu, 16 Nov 2023 21:48:30 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Mild Shock - Thu, 16 Nov 2023 21:48 UTC

Judging from the length of his spams, AP must have the
smallest micro penis on the planet. What a looser!

Archimedes Plutonium schrieb:
> Konig der Wissenshaften


tech / sci.math / The AP...

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor