Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

"I prefer to think that God is not dead, just drunk" -- John Huston


tech / sci.math / Re: For Dan, a test plot and crude algorithm...

SubjectAuthor
* For Dan, a test plot and crude algorithm...Chris M. Thomasson
+- Re: For Dan, a test plot and crude algorithm...Chris M. Thomasson
+* Re: For Dan, a test plot and crude algorithm...Chris M. Thomasson
|`- Re: For Dan, a test plot and crude algorithm...Chris M. Thomasson
`* Re: For Dan, a test plot and crude algorithm...Archimedes Plutonium
 `* Re: For Dan, a test plot and crude algorithm...Chris M. Thomasson
  `* Re: For Dan, a test plot and crude algorithm...Dan joyce
   `* Re: For Dan, a test plot and crude algorithm...Dan joyce
    +- Re: For Dan, a test plot and crude algorithm...Chris M. Thomasson
    `* Re: For Dan, a test plot and crude algorithm...Chris M. Thomasson
     `* Re: For Dan, a test plot and crude algorithm...Dan joyce
      `- Re: For Dan, a test plot and crude algorithm...Dan joyce

1
For Dan, a test plot and crude algorithm...

<u5rq0t$1ecf0$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137216&group=sci.math#137216

  copy link   Newsgroups: sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m....@gmail.com (Chris M. Thomasson)
Newsgroups: sci.math
Subject: For Dan, a test plot and crude algorithm...
Date: Wed, 7 Jun 2023 22:47:08 -0700
Organization: A noiseless patient Spider
Lines: 79
Message-ID: <u5rq0t$1ecf0$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 8 Jun 2023 05:47:09 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="6f3ff3b36175b4a8ca61c5b328805df5";
logging-data="1520096"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19CEAplpeaP0uqfw7MxafxOFyVgL0+MGPQ="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.11.2
Cancel-Lock: sha1:TRrldJMJiGkquWHQpQDVEmlvbUM=
Content-Language: en-US
 by: Chris M. Thomasson - Thu, 8 Jun 2023 05:47 UTC

Not sure if this can help you, however, this is what I got with a crude
test algorithm of mine:

https://i.ibb.co/sbv82dd/image.png

_____________________________
void
ct_test_algo_for_dj(
ct::plot::cairo::plot_2d& scene
) {
// DIRECTION DATA
std::array<direction, 4> directions = { {
{ { 1, 0 }, CT_RGBF(1, 0, 0) }, // right, red
{ { 0, 1 }, CT_RGBF(0, 1, 0) }, // up, green
{ { -1, 0 }, CT_RGBF(0, 0, 1) }, // left, blue
{ { 0, -1 }, CT_RGBF(0, 1, 1) }, // down, cyan
} };

float unit = .1;

glm::vec2 origin = { 0, 0 };
glm::vec2 current = origin;

unsigned long n = 1;

// going up to the right? lol... ;^)
{
unsigned long yn = 60;
float normal_color = 1.f / yn;

for (unsigned long y = 0; y < yn; ++y)
{
float color = normal_color * y;

glm::vec2 dir_mod = { 0, 0 };

unsigned long ymod = y % 4;

if (ymod == 0)
{
dir_mod = { 1, 1 };
n += 2;
}

else if (ymod == 1)
{
dir_mod = { -1, 1 };
n -= 1;
}

else if (ymod == 2)
{
dir_mod = { -1, -1 };
n += 2;
}

else if (ymod == 3)
{
dir_mod = { 1, -1 };
n -= 1;
}

for (unsigned long x = 0; x < n * 2; ++x)
{
direction const& dir = directions[x % 2];
glm::vec2 next = current + dir.m_normal * dir_mod * unit;
plot_arrow_line(scene, current, next, CT_RGBF(color, 1
- color, 1), 3);
current = next;
}
}
}
_____________________________

Look okay to you? This is just a crude first try. I can do better. :^)

Re: For Dan, a test plot and crude algorithm...

<u5rqhf$1ecf0$2@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137217&group=sci.math#137217

  copy link   Newsgroups: sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m....@gmail.com (Chris M. Thomasson)
Newsgroups: sci.math
Subject: Re: For Dan, a test plot and crude algorithm...
Date: Wed, 7 Jun 2023 22:55:59 -0700
Organization: A noiseless patient Spider
Lines: 15
Message-ID: <u5rqhf$1ecf0$2@dont-email.me>
References: <u5rq0t$1ecf0$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 8 Jun 2023 05:55:59 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="6f3ff3b36175b4a8ca61c5b328805df5";
logging-data="1520096"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/3pxBrgU38BlE/HITihzriQqpRfyPfP98="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.11.2
Cancel-Lock: sha1:wBnH3lrJ0+qcwcgCZU8yByJrfAc=
In-Reply-To: <u5rq0t$1ecf0$1@dont-email.me>
Content-Language: en-US
 by: Chris M. Thomasson - Thu, 8 Jun 2023 05:55 UTC

On 6/7/2023 10:47 PM, Chris M. Thomasson wrote:
> Not sure if this can help you, however, this is what I got with a crude
> test algorithm of mine:
>
> https://i.ibb.co/sbv82dd/image.png
>
> _____________________________
> [...
> Look okay to you? This is just a crude first try. I can do better. :^)

I can get it dense, fitting within any circle:

https://i.ibb.co/TMtBFDF/image.png

;^)

Re: For Dan, a test plot and crude algorithm...

<u5rrgi$1ehl2$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137218&group=sci.math#137218

  copy link   Newsgroups: sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m....@gmail.com (Chris M. Thomasson)
Newsgroups: sci.math
Subject: Re: For Dan, a test plot and crude algorithm...
Date: Wed, 7 Jun 2023 23:12:31 -0700
Organization: A noiseless patient Spider
Lines: 93
Message-ID: <u5rrgi$1ehl2$1@dont-email.me>
References: <u5rq0t$1ecf0$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 8 Jun 2023 06:12:34 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="6f3ff3b36175b4a8ca61c5b328805df5";
logging-data="1525410"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19nWPXE73ENbG5w0Ci9/bujUen/gtwQpR0="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.11.2
Cancel-Lock: sha1:t0VFtNMAkMxGhmseO4jowHwgjpk=
Content-Language: en-US
In-Reply-To: <u5rq0t$1ecf0$1@dont-email.me>
 by: Chris M. Thomasson - Thu, 8 Jun 2023 06:12 UTC

On 6/7/2023 10:47 PM, Chris M. Thomasson wrote:
> Not sure if this can help you, however, this is what I got with a crude
> test algorithm of mine:
>
> https://i.ibb.co/sbv82dd/image.png
[...]

Fwiw, tightened up the algorithm a bit:
___________________________________________
float
ct_test_algo_for_dj(
ct::plot::cairo::plot_2d& scene,
float unit,
bool plot,
unsigned long yn
) {
float max_dis = 0;

// DIRECTION DATA
std::array<direction, 4> directions = { {
{ { 1, 0 }, CT_RGBF(1, 0, 0) }, // right, red
{ { 0, 1 }, CT_RGBF(0, 1, 0) }, // up, green
{ { -1, 0 }, CT_RGBF(0, 0, 1) }, // left, blue
{ { 0, -1 }, CT_RGBF(0, 1, 1) } // down, cyan
} };

// DIRECTION MOD DATA
std::array<direction_mod, 4> direction_mods = { {
{ { 1, 1 }, 2 },
{ { -1, 1 }, -1 },
{ { -1, -1 }, 2 },
{ { 1, -1 }, -1 }
} };

glm::vec2 origin = { 0, 0 };
glm::vec2 current = origin;

unsigned long n = 1;
float normal_color = 1.f / yn;

for (unsigned long y = 0; y < yn; ++y)
{
float color = normal_color * y;
direction_mod const& dmod = direction_mods[y %
direction_mods.size()];
n += dmod.m_addend;

for (unsigned long x = 0; x < n * 2; ++x)
{
direction const& dir = directions[x % (directions.size() / 2)];
glm::vec2 next = current + dir.m_normal * dmod.m_normal * unit;

float dis = glm::length(next);

max_dis = glm::max(max_dis, dis);

if (plot)
{
plot_arrow_line(scene, current, next, CT_RGBF(color, 1
- color, 1), 3);
}

current = next;
}
}

return max_dis;
} ___________________________________________

This may be of use to you. It produces:

https://i.ibb.co/cJLpGNQ/image.png

When called with:
___________________________________________
{ float unit = 1;
unsigned long yn = 32;

float max_dis = ct_test_algo_for_dj(scene, unit, false, yn);
unit = unit / max_dis;

ct_test_algo_for_dj(scene, unit, true, yn);
} ___________________________________________

As you can see, I can set yn to anything I want to. There are several
more improvements than can be made. However, am I on the right track
with this, Dan?

Thanks.

Re: For Dan, a test plot and crude algorithm...

<u5rrvf$1ehlb$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137219&group=sci.math#137219

  copy link   Newsgroups: sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m....@gmail.com (Chris M. Thomasson)
Newsgroups: sci.math
Subject: Re: For Dan, a test plot and crude algorithm...
Date: Wed, 7 Jun 2023 23:20:31 -0700
Organization: A noiseless patient Spider
Lines: 38
Message-ID: <u5rrvf$1ehlb$1@dont-email.me>
References: <u5rq0t$1ecf0$1@dont-email.me> <u5rrgi$1ehl2$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Thu, 8 Jun 2023 06:20:32 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="6f3ff3b36175b4a8ca61c5b328805df5";
logging-data="1525419"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+qeuhmIRkQ8587lEbioSfnZP8rsQqy9fQ="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.11.2
Cancel-Lock: sha1:FBocA5NhPHNLJ7mWTUsz9FlfoOc=
In-Reply-To: <u5rrgi$1ehl2$1@dont-email.me>
Content-Language: en-US
 by: Chris M. Thomasson - Thu, 8 Jun 2023 06:20 UTC

On 6/7/2023 11:12 PM, Chris M. Thomasson wrote:
> On 6/7/2023 10:47 PM, Chris M. Thomasson wrote:
>> Not sure if this can help you, however, this is what I got with a
>> crude test algorithm of mine:
>>
>> https://i.ibb.co/sbv82dd/image.png
> [...]
>
> Fwiw, tightened up the algorithm a bit:
> ___________________________________________
[snip my code]
> This may be of use to you. It produces:
>
> https://i.ibb.co/cJLpGNQ/image.png
>
> When called with:
> ___________________________________________
> {
>     float unit = 1;
>     unsigned long yn = 32;
>
>     float max_dis = ct_test_algo_for_dj(scene, unit, false, yn);
>     unit = unit / max_dis;
>
>     ct_test_algo_for_dj(scene, unit, true, yn);
> }
> ___________________________________________
>
> As you can see, I can set yn to anything I want to. There are several
> more improvements than can be made. However, am I on the right track
> with this, Dan?
>
> Thanks.

Its pretty dense here... ;^)

https://i.ibb.co/JFysgXQ/image.png

Re: For Dan, a test plot and crude algorithm...

<47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137221&group=sci.math#137221

  copy link   Newsgroups: sci.math
X-Received: by 2002:ad4:4f41:0:b0:61b:5dd8:e623 with SMTP id eu1-20020ad44f41000000b0061b5dd8e623mr75976qvb.3.1686205960581;
Wed, 07 Jun 2023 23:32:40 -0700 (PDT)
X-Received: by 2002:a81:450d:0:b0:569:e04a:239d with SMTP id
s13-20020a81450d000000b00569e04a239dmr4072963ywa.0.1686205960290; Wed, 07 Jun
2023 23:32:40 -0700 (PDT)
Path: i2pn2.org!i2pn.org!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: Wed, 7 Jun 2023 23:32:39 -0700 (PDT)
In-Reply-To: <u5rq0t$1ecf0$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=2600:387:f:e12:0:0:0:a;
posting-account=fsC03QkAAAAwkSNcSEKmlcR-W_HNitEd
NNTP-Posting-Host: 2600:387:f:e12:0:0:0:a
References: <u5rq0t$1ecf0$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>
Subject: Re: For Dan, a test plot and crude algorithm...
From: plutoniu...@gmail.com (Archimedes Plutonium)
Injection-Date: Thu, 08 Jun 2023 06:32:40 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 7150
 by: Archimedes Plutonium - Thu, 8 Jun 2023 06:32 UTC

Moscow▂▄▅█████████▅▄▃▂ Beijing mushroom cloud, Xi as Putin's stooge when Russia vaporizes Beijing with its RS-28 Sarmat "Satan II", all because Xi was too dumb to realize you can never trust an insane person

Chris Thomasson testing Sarmat from London flat. Yeh, Chris, what was the wind pressure??

Pentcho Valev spamming as China under Russian Sarmats. Does it remind Pentcho of Nero fiddling while Rome burnt???

Shanghai, Beijing, Shenzhen, Guangzhou, Chongqing, Tianjin, Chengdu, Hangzhou, Nanjing, Wuhan, Xi'An, Suzhou, Harbin, Shenyang, Qingdao, Zhengzhou, Dongguan, Foshan, Dalian, Jinan, Changchun, Hefei

Shenzhen▂▄▅█████████▅▄▃▂ Xi as Putin's stooge when Russia vaporizes Shenzhen with its RS-28 Sarmat "Satan II", all because Xi was too dumb to realize you can never trust an insane person

On Thursday, March 30, 2023 at 11:56:20 PM UTC-5, Volney wrote:
> Botfly of Math and Blowfly of Physics "Putin's stooge"
>"wasn't bolted down too tight in the first place"

On Friday, September 9, 2022 at 1:16:55 AM UTC-5, Michael Moroney wrote:
> "Imp of Science"
>"not one single marble of commonsense in my entire brain"




& wrote:
> _And as the Baby Xi grew up, surrounded by concubines, from the rice paddies and reeds of Outer


> Manchuria, stolen by the Naxi and Zani Dictator Putin in Moscow, Xi
> learned in school in chemical engineering that Taiwan was 1/28 the size
> of Outer Manchuria, Emperor Qing's homeland, now occupied by homeless Russians drinking vodka, as Putin bombs Ukraine. And the nascent Xi orders
> 1,000 divisions to the Outer Manchuria border to regain back the stolen

> > Why Putin is 2X smarter than Xi as dictators// SCIENCE COUNCIL RULES EARTH, not petty dictators
> > 2m views
> >
> >
3> If Putin pushes nuclear buttons, he drags down China along with Russia into a nuclear ash waste pile, and this means Xi is a inferior junior partner to Putin. Putin will drag down Xi's China, never the reverse.
> >
4> So, one can look at the present situation on Earth and ask several logical questions about the 2 dictators of Putin's Russia and China's Xi.
> >
> > It is little wonder that both Russia and China dictators are combative towards the West. Because dictators never want to give up on power but stay in power all their life long. So they oppose the West because the West has grown up to democracy-- let the people have power, not one single idiot having power all his life time.
> >
5 > Naturally, Putin will want to keep the Russian people suppressed and have Russia be a second rate government as a dictator. Same goes for China-- they never want to give up power so the people themselves choose their leader.
> >
> > But can we find differences in Putin and Xi themselves? Well in the West we call the Chinese inscrutable-- meaning -- little logical commonsense. And is this a valid description?? Yes of course, considering that Russia had stolen the lands of Outer Manchuria, some 28 times larger of a land mass than is Taiwan island. Yet there is Xi, spending so much time on wanting to invade Taiwan, when it is Outer Manchuria and Vladivostok (Haishenwai) that he should be focusing attention upon. And while Putin is distracted with Ukraine, is the time for Xi to recapture Outer Manchuria, the Qing dynasty empire, Qing's Manchurian homeland.
> >
> > What does Xi do instead??? He focuses on Taiwan and befriends Russia. Why, at this rate, if Russia takes Inner Manchuria, we can expect Xi and the Chinese Communist Party to become even more loving of Russia for stealing more land of China.
> >
> > And there is Xi, whose China has become rich with trading with the West, yet every day, Xi foaming at the mouth in hatred of the West.
> >
> > So yes, Putin is 2X smarter as a dictator than is Xi, as if Putin has Xi in his side pocket.
> >
> > Is there some scientific explanation as to why Xi is 2X dumber than Putin?? Perhaps, in that China is densely populated and the air pollution over all of China is worse than most countries. That Xi probably has 1/2 of his brain filled with CO and CO2 isomers and lead, and mercury and nitrous oxide and sulfur dioxide from just living in that air polluted hellhole of Beijing. Xi studied chemistry and should know this. Whereas Putin likely detox...s every evening with breathing in pure oxygen at his residence and takes oxygen breathing tanks to office and work. This easily can explain the light-headed reasoning that Xi and his foreign diplomats Wang Yi display, where Putin plays them like a chess game, --- checkmate in 7 moves.
> >
> > This explains why Xi hates the West for not stealing any Chinese lands and making China rich in trade, while loving Putin for stealing Outer Manchuria, and proposing having Russia push nuclear buttons, making both Russia and China a nuclear waste site after ICBMs wipe China off the map.
> >
> > Xi's brain is full of air pollution toxins from the nasty Chinese air. They still build a new coal fired plant in China every day. The air in China is the worst air in the entire world.
> >
6 > Why Putin is 2X smarter than Xi as dictators// SCIENCE COUNCIL RULES EARTH, not petty dictators.

Pentcho is this what happens to China when they follow the insane Putin, tag-a-long, tag-a-long and then all of a sudden--- dragged into a mushroom cloud

Re: For Dan, a test plot and crude algorithm...

<u5rtsh$1ep6j$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137223&group=sci.math#137223

  copy link   Newsgroups: sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m....@gmail.com (Chris M. Thomasson)
Newsgroups: sci.math
Subject: Re: For Dan, a test plot and crude algorithm...
Date: Wed, 7 Jun 2023 23:53:05 -0700
Organization: A noiseless patient Spider
Lines: 11
Message-ID: <u5rtsh$1ep6j$1@dont-email.me>
References: <u5rq0t$1ecf0$1@dont-email.me>
<47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Thu, 8 Jun 2023 06:53:05 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="6f3ff3b36175b4a8ca61c5b328805df5";
logging-data="1533139"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/EsMFuOoPCZSRW1zBwH9CXNBwffA/7ZoE="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.11.2
Cancel-Lock: sha1:vAr4lR1t37loFLarw1LKRqpNBIQ=
Content-Language: en-US
In-Reply-To: <47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>
 by: Chris M. Thomasson - Thu, 8 Jun 2023 06:53 UTC

On 6/7/2023 11:32 PM, Archimedes Plutonium wrote:
> Moscow▂▄▅█████████▅▄▃▂ Beijing mushroom cloud, Xi as Putin's stooge when Russia vaporizes Beijing with its RS-28 Sarmat "Satan II", all because Xi was too dumb to realize you can never trust an insane person
[...]

Do you have an 8-bit mentality?

https://youtu.be/cRAmtrnOXWc

Btw, I think the voice in this is computed generated. All on an 8-bit
computer?

Re: For Dan, a test plot and crude algorithm...

<5c4959d4-7d3d-41b7-ac69-4dd3c8b90dd8n@googlegroups.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137238&group=sci.math#137238

  copy link   Newsgroups: sci.math
X-Received: by 2002:a05:622a:1a14:b0:3f6:aaac:6fe4 with SMTP id f20-20020a05622a1a1400b003f6aaac6fe4mr1470544qtb.4.1686220701798;
Thu, 08 Jun 2023 03:38:21 -0700 (PDT)
X-Received: by 2002:a81:7e07:0:b0:561:b8d1:743b with SMTP id
o7-20020a817e07000000b00561b8d1743bmr4459570ywn.10.1686220701405; Thu, 08 Jun
2023 03:38:21 -0700 (PDT)
Path: i2pn2.org!i2pn.org!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: Thu, 8 Jun 2023 03:38:21 -0700 (PDT)
In-Reply-To: <u5rtsh$1ep6j$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=32.221.202.28; posting-account=MMV3OwoAAABxhPndZPNv6CW6-fifDabn
NNTP-Posting-Host: 32.221.202.28
References: <u5rq0t$1ecf0$1@dont-email.me> <47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>
<u5rtsh$1ep6j$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <5c4959d4-7d3d-41b7-ac69-4dd3c8b90dd8n@googlegroups.com>
Subject: Re: For Dan, a test plot and crude algorithm...
From: danj4...@gmail.com (Dan joyce)
Injection-Date: Thu, 08 Jun 2023 10:38:21 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2288
 by: Dan joyce - Thu, 8 Jun 2023 10:38 UTC

On Thursday, June 8, 2023 at 2:53:14 AM UTC-4, Chris M. Thomasson wrote:
> On 6/7/2023 11:32 PM, Archimedes Plutonium wrote:
> > Moscow▂▄▅█████████▅▄▃▂ Beijing mushroom cloud, Xi as Putin's stooge when Russia vaporizes Beijing with its RS-28 Sarmat "Satan II", all because Xi was too dumb to realize you can never trust an insane person
> [...]
>
> Do you have an 8-bit mentality?
>
> https://youtu.be/cRAmtrnOXWc
>
> Btw, I think the voice in this is computed generated. All on an 8-bit
> computer?
You are on the right track but you have to close in that outward path.
The first instruction RU is only run once --
RU=1 --- then the next 4 instructions LD =2, RD=1,RU=3, LU=2, --- Now again in the same order--
LD=4, RD=3,RU=5,LU=4 --- again in the same order ---- taking each integer from the outgiong
sequence. As simple as that.
I believe now you got it.

Re: For Dan, a test plot and crude algorithm...

<40fde20e-e339-45ef-9152-aca11fd4c533n@googlegroups.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137272&group=sci.math#137272

  copy link   Newsgroups: sci.math
X-Received: by 2002:a05:6214:8e8:b0:626:23b2:44ba with SMTP id dr8-20020a05621408e800b0062623b244bamr260368qvb.9.1686247204877;
Thu, 08 Jun 2023 11:00:04 -0700 (PDT)
X-Received: by 2002:a25:41ce:0:b0:bb1:446f:1d00 with SMTP id
o197-20020a2541ce000000b00bb1446f1d00mr199461yba.10.1686247204597; Thu, 08
Jun 2023 11:00:04 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!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, 8 Jun 2023 11:00:04 -0700 (PDT)
In-Reply-To: <5c4959d4-7d3d-41b7-ac69-4dd3c8b90dd8n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=32.221.202.28; posting-account=MMV3OwoAAABxhPndZPNv6CW6-fifDabn
NNTP-Posting-Host: 32.221.202.28
References: <u5rq0t$1ecf0$1@dont-email.me> <47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>
<u5rtsh$1ep6j$1@dont-email.me> <5c4959d4-7d3d-41b7-ac69-4dd3c8b90dd8n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <40fde20e-e339-45ef-9152-aca11fd4c533n@googlegroups.com>
Subject: Re: For Dan, a test plot and crude algorithm...
From: danj4...@gmail.com (Dan joyce)
Injection-Date: Thu, 08 Jun 2023 18:00:04 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Dan joyce - Thu, 8 Jun 2023 18:00 UTC

On Thursday, June 8, 2023 at 6:38:25 AM UTC-4, Dan joyce wrote:
> On Thursday, June 8, 2023 at 2:53:14 AM UTC-4, Chris M. Thomasson wrote:
> > On 6/7/2023 11:32 PM, Archimedes Plutonium wrote:
> > > Moscow▂▄▅█████████▅▄▃▂ Beijing mushroom cloud, Xi as Putin's stooge when Russia vaporizes Beijing with its RS-28 Sarmat "Satan II", all because Xi was too dumb to realize you can never trust an insane person
> > [...]
> >
> > Do you have an 8-bit mentality?
> >
> > https://youtu.be/cRAmtrnOXWc
> >
> > Btw, I think the voice in this is computed generated. All on an 8-bit
> > computer?
> You are on the right track but you have to close in that outward path.
> The first instruction RU is only run once --
> RU=1 --- then the next 4 instructions LD =2, RD=1,RU=3, LU=2, --- Now again in the same order--
> LD=4, RD=3,RU=5,LU=4 --- again in the same order ---- taking each integer from the outgiong
> sequence. As simple as that.
> I believe now you got it
..
For the sake of argument here. Say a picture of a large square lattice with thousands of cells was
shown to you and the person said, can you duplicate this lattice useing a pencil without crossing
a line or retracing a line and at no time not lifting the pencil from the paper. What would you say to
him. Oh yeah it can be done or it is impossible?
Just wondering.

Re: For Dan, a test plot and crude algorithm...

<u5t7r7$1jfil$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137276&group=sci.math#137276

  copy link   Newsgroups: sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m....@gmail.com (Chris M. Thomasson)
Newsgroups: sci.math
Subject: Re: For Dan, a test plot and crude algorithm...
Date: Thu, 8 Jun 2023 11:49:11 -0700
Organization: A noiseless patient Spider
Lines: 41
Message-ID: <u5t7r7$1jfil$1@dont-email.me>
References: <u5rq0t$1ecf0$1@dont-email.me>
<47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>
<u5rtsh$1ep6j$1@dont-email.me>
<5c4959d4-7d3d-41b7-ac69-4dd3c8b90dd8n@googlegroups.com>
<40fde20e-e339-45ef-9152-aca11fd4c533n@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Thu, 8 Jun 2023 18:49:12 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="6f3ff3b36175b4a8ca61c5b328805df5";
logging-data="1687125"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+eHAlf6ZIV4WMLtgYWHWapSs3FZlsu9n8="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.11.2
Cancel-Lock: sha1:XcQdXwvV9/YLUyPH3XPSaT+tGG0=
Content-Language: en-US
In-Reply-To: <40fde20e-e339-45ef-9152-aca11fd4c533n@googlegroups.com>
 by: Chris M. Thomasson - Thu, 8 Jun 2023 18:49 UTC

On 6/8/2023 11:00 AM, Dan joyce wrote:
> On Thursday, June 8, 2023 at 6:38:25 AM UTC-4, Dan joyce wrote:
>> On Thursday, June 8, 2023 at 2:53:14 AM UTC-4, Chris M. Thomasson wrote:
>>> On 6/7/2023 11:32 PM, Archimedes Plutonium wrote:
>>>> Moscow▂▄▅█████████▅▄▃▂ Beijing mushroom cloud, Xi as Putin's stooge when Russia vaporizes Beijing with its RS-28 Sarmat "Satan II", all because Xi was too dumb to realize you can never trust an insane person
>>> [...]
>>>
>>> Do you have an 8-bit mentality?
>>>
>>> https://youtu.be/cRAmtrnOXWc
>>>
>>> Btw, I think the voice in this is computed generated. All on an 8-bit
>>> computer?
>> You are on the right track but you have to close in that outward path.
>> The first instruction RU is only run once --
>> RU=1 --- then the next 4 instructions LD =2, RD=1,RU=3, LU=2, --- Now again in the same order--
>> LD=4, RD=3,RU=5,LU=4 --- again in the same order ---- taking each integer from the outgiong
>> sequence. As simple as that.
>> I believe now you got it
> .
> For the sake of argument here. Say a picture of a large square lattice with thousands of cells was
> shown to you and the person said, can you duplicate this lattice useing a pencil without crossing
> a line or retracing a line and at no time not lifting the pencil from the paper. What would you say to
> him. Oh yeah it can be done or it is impossible?
> Just wondering.

Not sure. I need to create the other path that goes from the end point
back to the origin point. This is the key that can create the squares
our of the spiral, I think...? Let me start small. This is only 18
iterations:

The circle in red is the origin, the one in green is the end:

https://i.ibb.co/R70XGkz/image.png

So, after this spiral, I would want to go from green to red in the
closing spiral. The anti-spiral, so to speak...? ;^)

Fair enough? Or am I somehow "missing" your main point?

Thanks. I only have perhaps two hours to work on your work today. Sorry!

Re: For Dan, a test plot and crude algorithm...

<u5t81j$1ji5f$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137277&group=sci.math#137277

  copy link   Newsgroups: sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m....@gmail.com (Chris M. Thomasson)
Newsgroups: sci.math
Subject: Re: For Dan, a test plot and crude algorithm...
Date: Thu, 8 Jun 2023 11:52:35 -0700
Organization: A noiseless patient Spider
Lines: 34
Message-ID: <u5t81j$1ji5f$1@dont-email.me>
References: <u5rq0t$1ecf0$1@dont-email.me>
<47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>
<u5rtsh$1ep6j$1@dont-email.me>
<5c4959d4-7d3d-41b7-ac69-4dd3c8b90dd8n@googlegroups.com>
<40fde20e-e339-45ef-9152-aca11fd4c533n@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Thu, 8 Jun 2023 18:52:35 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="6f3ff3b36175b4a8ca61c5b328805df5";
logging-data="1689775"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19frEmUhDIQJkBaUkpCEMpwUUOfKIQ+tSo="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.11.2
Cancel-Lock: sha1:SWMhtCgD6zJUZUzihLV2IaZv+UI=
In-Reply-To: <40fde20e-e339-45ef-9152-aca11fd4c533n@googlegroups.com>
Content-Language: en-US
 by: Chris M. Thomasson - Thu, 8 Jun 2023 18:52 UTC

On 6/8/2023 11:00 AM, Dan joyce wrote:
> On Thursday, June 8, 2023 at 6:38:25 AM UTC-4, Dan joyce wrote:
>> On Thursday, June 8, 2023 at 2:53:14 AM UTC-4, Chris M. Thomasson wrote:
>>> On 6/7/2023 11:32 PM, Archimedes Plutonium wrote:
>>>> Moscow▂▄▅█████████▅▄▃▂ Beijing mushroom cloud, Xi as Putin's stooge when Russia vaporizes Beijing with its RS-28 Sarmat "Satan II", all because Xi was too dumb to realize you can never trust an insane person
>>> [...]
>>>
>>> Do you have an 8-bit mentality?
>>>
>>> https://youtu.be/cRAmtrnOXWc
>>>
>>> Btw, I think the voice in this is computed generated. All on an 8-bit
>>> computer?
>> You are on the right track but you have to close in that outward path.
>> The first instruction RU is only run once --
>> RU=1 --- then the next 4 instructions LD =2, RD=1,RU=3, LU=2, --- Now again in the same order--
>> LD=4, RD=3,RU=5,LU=4 --- again in the same order ---- taking each integer from the outgiong
>> sequence. As simple as that.
>> I believe now you got it
> .
> For the sake of argument here. Say a picture of a large square lattice with thousands of cells was
> shown to you and the person said, can you duplicate this lattice useing a pencil without crossing
> a line or retracing a line and at no time not lifting the pencil from the paper. What would you say to
> him. Oh yeah it can be done or it is impossible?
> Just wondering.

This is just me drawing on my result trying to sketch my way back in
through the spiral. I think I got it?

https://i.ibb.co/4ZVTwtf/image.png

Humm... Any thoughts?

Thanks. :^)

Re: For Dan, a test plot and crude algorithm...

<313b1cce-e04e-4da3-9c70-b6a098284087n@googlegroups.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137370&group=sci.math#137370

  copy link   Newsgroups: sci.math
X-Received: by 2002:a05:6214:18ea:b0:625:aa48:dddf with SMTP id ep10-20020a05621418ea00b00625aa48dddfmr377345qvb.11.1686336147757;
Fri, 09 Jun 2023 11:42:27 -0700 (PDT)
X-Received: by 2002:a81:c14b:0:b0:568:f589:2b4e with SMTP id
e11-20020a81c14b000000b00568f5892b4emr1451018ywl.0.1686336147452; Fri, 09 Jun
2023 11:42:27 -0700 (PDT)
Path: i2pn2.org!i2pn.org!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: Fri, 9 Jun 2023 11:42:27 -0700 (PDT)
In-Reply-To: <u5t81j$1ji5f$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=32.221.202.28; posting-account=MMV3OwoAAABxhPndZPNv6CW6-fifDabn
NNTP-Posting-Host: 32.221.202.28
References: <u5rq0t$1ecf0$1@dont-email.me> <47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>
<u5rtsh$1ep6j$1@dont-email.me> <5c4959d4-7d3d-41b7-ac69-4dd3c8b90dd8n@googlegroups.com>
<40fde20e-e339-45ef-9152-aca11fd4c533n@googlegroups.com> <u5t81j$1ji5f$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <313b1cce-e04e-4da3-9c70-b6a098284087n@googlegroups.com>
Subject: Re: For Dan, a test plot and crude algorithm...
From: danj4...@gmail.com (Dan joyce)
Injection-Date: Fri, 09 Jun 2023 18:42:27 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 4069
 by: Dan joyce - Fri, 9 Jun 2023 18:42 UTC

On Thursday, June 8, 2023 at 2:52:45 PM UTC-4, Chris M. Thomasson wrote:
> On 6/8/2023 11:00 AM, Dan joyce wrote:
> > On Thursday, June 8, 2023 at 6:38:25 AM UTC-4, Dan joyce wrote:
> >> On Thursday, June 8, 2023 at 2:53:14 AM UTC-4, Chris M. Thomasson wrote:
> >>> On 6/7/2023 11:32 PM, Archimedes Plutonium wrote:
> >>>> Moscow▂▄▅█████████▅▄▃▂ Beijing mushroom cloud, Xi as Putin's stooge when Russia vaporizes Beijing with its RS-28 Sarmat "Satan II", all because Xi was too dumb to realize you can never trust an insane person
> >>> [...]
> >>>
> >>> Do you have an 8-bit mentality?
> >>>
> >>> https://youtu.be/cRAmtrnOXWc
> >>>
> >>> Btw, I think the voice in this is computed generated. All on an 8-bit
> >>> computer?
> >> You are on the right track but you have to close in that outward path.
> >> The first instruction RU is only run once --
> >> RU=1 --- then the next 4 instructions LD =2, RD=1,RU=3, LU=2, --- Now again in the same order--
> >> LD=4, RD=3,RU=5,LU=4 --- again in the same order ---- taking each integer from the outgiong
> >> sequence. As simple as that.
> >> I believe now you got it
> > .
> > For the sake of argument here. Say a picture of a large square lattice with thousands of cells was
> > shown to you and the person said, can you duplicate this lattice useing a pencil without crossing
> > a line or retracing a line and at no time not lifting the pencil from the paper. What would you say to
> > him. Oh yeah it can be done or it is impossible?
> > Just wondering.
> This is just me drawing on my result trying to sketch my way back in
> through the spiral. I think I got it?
>
> https://i.ibb.co/4ZVTwtf/image.png
>
> Humm... Any thoughts?
>
> Thanks. :^)
I have just made a correction. The top part where it ends going out 2 lines can be elliminated
to draw a rectangular border around this lattice nothing will protrude beyond the border as
it does in your rendering and mine. The last integer (n) in the first sequence is reduced by n=n-1
Also the correction has to go over to the coming in sequence (2nd sequence) first integer (n)
has to be reduces by n=n-1
I didn't actually try this yet but I believe it should correct the protruding portion of this lattice.
Giving a nice, close to square, border around this lattice with no protruding cells..
How is it going with the going in lines?

Re: For Dan, a test plot and crude algorithm...

<9647a05d-a0da-4f46-8177-165185f67be0n@googlegroups.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=137379&group=sci.math#137379

  copy link   Newsgroups: sci.math
X-Received: by 2002:a05:622a:1a12:b0:3f6:aaac:6fe4 with SMTP id f18-20020a05622a1a1200b003f6aaac6fe4mr810621qtb.4.1686341816492;
Fri, 09 Jun 2023 13:16:56 -0700 (PDT)
X-Received: by 2002:a81:b712:0:b0:568:ee6d:3364 with SMTP id
v18-20020a81b712000000b00568ee6d3364mr1323205ywh.4.1686341816224; Fri, 09 Jun
2023 13:16:56 -0700 (PDT)
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: Fri, 9 Jun 2023 13:16:55 -0700 (PDT)
In-Reply-To: <313b1cce-e04e-4da3-9c70-b6a098284087n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=32.221.202.28; posting-account=MMV3OwoAAABxhPndZPNv6CW6-fifDabn
NNTP-Posting-Host: 32.221.202.28
References: <u5rq0t$1ecf0$1@dont-email.me> <47b27107-44ef-4f68-b359-4edf9b3966aan@googlegroups.com>
<u5rtsh$1ep6j$1@dont-email.me> <5c4959d4-7d3d-41b7-ac69-4dd3c8b90dd8n@googlegroups.com>
<40fde20e-e339-45ef-9152-aca11fd4c533n@googlegroups.com> <u5t81j$1ji5f$1@dont-email.me>
<313b1cce-e04e-4da3-9c70-b6a098284087n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <9647a05d-a0da-4f46-8177-165185f67be0n@googlegroups.com>
Subject: Re: For Dan, a test plot and crude algorithm...
From: danj4...@gmail.com (Dan joyce)
Injection-Date: Fri, 09 Jun 2023 20:16:56 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 5162
 by: Dan joyce - Fri, 9 Jun 2023 20:16 UTC

On Friday, June 9, 2023 at 2:42:32 PM UTC-4, Dan joyce wrote:
> On Thursday, June 8, 2023 at 2:52:45 PM UTC-4, Chris M. Thomasson wrote:
> > On 6/8/2023 11:00 AM, Dan joyce wrote:
> > > On Thursday, June 8, 2023 at 6:38:25 AM UTC-4, Dan joyce wrote:
> > >> On Thursday, June 8, 2023 at 2:53:14 AM UTC-4, Chris M. Thomasson wrote:
> > >>> On 6/7/2023 11:32 PM, Archimedes Plutonium wrote:
> > >>>> Moscow▂▄▅█████████▅▄▃▂ Beijing mushroom cloud, Xi as Putin's stooge when Russia vaporizes Beijing with its RS-28 Sarmat "Satan II", all because Xi was too dumb to realize you can never trust an insane person
> > >>> [...]
> > >>>
> > >>> Do you have an 8-bit mentality?
> > >>>
> > >>> https://youtu.be/cRAmtrnOXWc
> > >>>
> > >>> Btw, I think the voice in this is computed generated. All on an 8-bit
> > >>> computer?
> > >> You are on the right track but you have to close in that outward path.
> > >> The first instruction RU is only run once --
> > >> RU=1 --- then the next 4 instructions LD =2, RD=1,RU=3, LU=2, --- Now again in the same order--
> > >> LD=4, RD=3,RU=5,LU=4 --- again in the same order ---- taking each integer from the outgiong
> > >> sequence. As simple as that.
> > >> I believe now you got it
> > > .
> > > For the sake of argument here. Say a picture of a large square lattice with thousands of cells was
> > > shown to you and the person said, can you duplicate this lattice useing a pencil without crossing
> > > a line or retracing a line and at no time not lifting the pencil from the paper. What would you say to
> > > him. Oh yeah it can be done or it is impossible?
> > > Just wondering.
> > This is just me drawing on my result trying to sketch my way back in
> > through the spiral. I think I got it?
> >
> > https://i.ibb.co/4ZVTwtf/image.png
> >
> > Humm... Any thoughts?
> >
> > Thanks. :^)
> I have just made a correction. The top part where it ends going out 2 lines can be elliminated
> to draw a rectangular border around this lattice nothing will protrude beyond the border as
> it does in your rendering and mine. The last integer (n) in the first sequence is reduced by n=n-1
> Also the correction has to go over to the coming in sequence (2nd sequence) first integer (n)
> has to be reduces by n=n-1
> I didn't actually try this yet but I believe it should correct the protruding portion of this lattice.
> Giving a nice, close to square, border around this lattice with no protruding cells..
> How is it going with the going in lines?

I just made the above corrections and it worked the first time so it gives a nice almost square
lattice with no protruding cells beyond the drawn border around the lattice..
By the way, When drawing a lattice in this manner and putting a border around it creates a
rectanglear shape of 9 * 11.25 or that ratio.
The exact measurement for a lattice with 32 cells and each cell measures 1X1 then the
exact border around that lattice is --- 5.6565542... * 7.0710678... =40 minus the spaces added
up =8 within the border that are not within any 1*1 cells = 32 cells within the border
So it is really not a square lattice the way it is constructed. Many more of these longer and longer
rectangular lattices with shorter and shorter ends can be constructed with out lifting the pencil.


tech / sci.math / Re: For Dan, a test plot and crude algorithm...

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor