Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

"What the scientists have in their briefcases is terrifying." -- Nikita Khrushchev


tech / sci.electronics.design / Skybuck's Universal Memory Architecture

SubjectAuthor
* Skybuck's Universal Memory Architectureskybuck2000
+* Re: Skybuck's Universal Memory ArchitectureEdward Hernandez
|`* Re: Skybuck's Universal Memory ArchitectureJohn Doe
| +- Re: Skybuck's Universal Memory ArchitectureEdward Hernandez
| `- Re: Skybuck's Universal Memory ArchitectureDecadentLinuxUserNumeroUno
+* Re: Skybuck's Universal Memory ArchitectureDecadentLinuxUserNumeroUno
|+* Re: Skybuck's Universal Memory Architectureskybuck2000
||+* Re: Skybuck's Universal Memory ArchitectureEdward Hernandez
|||`* Re: Skybuck's Universal Memory ArchitectureJohn Doe
||| `- Re: Skybuck's Universal Memory ArchitectureEdward Hernandez
||`- Re: Skybuck's Universal Memory ArchitectureDecadentLinuxUserNumeroUno
|`* Re: Skybuck's Universal Memory ArchitectureJohn Doe
| `* Re: Skybuck's Universal Memory ArchitectureEdward Hernandez
|  `* Re: Skybuck's Universal Memory ArchitectureJohn Doe
|   `* Re: Skybuck's Universal Memory ArchitectureEdward Hernandez
|    `* Re: Skybuck's Universal Memory ArchitectureJohn Doe
|     `- Re: Skybuck's Universal Memory ArchitectureEdward Hernandez
`- Re: Skybuck's Universal Memory Architectureskybuck2000

1
Skybuck's Universal Memory Architecture

<66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79718&group=sci.electronics.design#79718

  copy link   Newsgroups: sci.electronics.design
X-Received: by 2002:a05:6214:2307:: with SMTP id gc7mr27799363qvb.34.1634590982981;
Mon, 18 Oct 2021 14:03:02 -0700 (PDT)
X-Received: by 2002:a25:3104:: with SMTP id x4mr31788765ybx.512.1634590982742;
Mon, 18 Oct 2021 14:03:02 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!news.mixmin.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.electronics.design
Date: Mon, 18 Oct 2021 14:03:02 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=84.25.28.171; posting-account=np6u_wkAAADxbE7UBGUIOm-csir6aX02
NNTP-Posting-Host: 84.25.28.171
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com>
Subject: Skybuck's Universal Memory Architecture
From: skybuck2...@hotmail.com (skybuck2000)
Injection-Date: Mon, 18 Oct 2021 21:03:02 +0000
Content-Type: text/plain; charset="UTF-8"
 by: skybuck2000 - Mon, 18 Oct 2021 21:03 UTC

Skybuck's Universal Memory Architecture (Invention by Skybuck Flying on 18 october 2021)

The Problem:

To use Universal Fields (Universal Codes) memory needs to be able to grow.

Currently no architecture exists which allows data fields/memory fields to grow.

The Solution:

Imagine the film tron where these motor cycles draw these walls/lines the motorcyclist has to draw these walls/lines and trap the other player
by making him slam into a wall. There is also a computer game based on it called "snake", where snakes grow by eating pixels. As the snake grows
it describes a line, the snake is free to move left, right, up, down but may not end up on a square already taken by any other snake.

Imagine storing a data bit on each square as the snake grows.

These lines/walls that are formed by the snake/motor cyclist can be considered a "data tape".
Alan Turning described the need for an imaginary data tape of endless length to be able to do "universal computing" and "universal machines".

To be able to know where the snake originated, the start of data tape has to be recorded. This would be a 2D or 3D or ND coordinate.

For example SnakeSourceX,SnakeSourceY this would be the tail of the snake, which can also be described as SnakeTailX,SnakeTailY

To be able to know where the head of the snake is so it can be made to grow, the end of the data tape has to be recorded.

For example SnakeDestX,SnakeDestY this would be the head of the snake, which can also be described as SnakeHeadX,SneakHeadY.

A processor could number the snakes and refer to them by numbers, basically each snake is a data field.

To encode instructions for the processor, the instructions codify on which snake/data field the instruction operates.

To store these data fields there could be an additional memory structure which stores these snake coordinates as follows:

SnakeReferenceMemoryStructure:

SnakeNumber, SnakeSourceX, SnakeSourceY, SnakeDestX, SnakeDestY

For example:
0, 100, 500, 40, 30
1, 10, 20, 100, 200
2, 60, 70, 30, 40
3, 101, 302, 35, 67
4, 56, 75, 45, 34

The processor can then refer to data fields by SnakeNumber, so that instructions stay consist and entire snakes can be moved around in memory in case a snake crashes
into a wall.

To store data bits into the snake each memory cell/unit has to have the following properties:

DataBit On/Off (1 transistor)
DirectionBit0 On/Off (1 transistor)
DirectionBit1 On/Off (1 transistor)
ConnectedBit On/Off (1 transistor) (optional)

Each 2D memory cell therefore consists out of these 4 transistors.

The data bit transistor records the information data bit 0 or 1.

The DirectionBit0 and DirectionBit1 describe in which direction the snake grew and therefore to which other memory cell the current memory cell is "connected".
DirectionBit0, DirectionBit1
00 = up
01 = right
10 = down
11 = left

The connected bit is optional, based on universal codes the software itself could decide if another snake cell follows the last read snake cell, however for allocation
purposes/algorithms it may be usefull to codify this information directly into the memory units and thus ConnectedBit describes if any cell follows the current one.

ConnectedBit
0 = head of snake/last cell
1 = intermediate cell

The challenge for the computer systems and memory manager is to allocate snakes as efficiently as possible, basically to play the game snakes as efficiently as possible.
Algorithms could be developed or perhaps already exist that excell in this. Different allocations, direction strategies and starting points could be tried.

In the event that a snake/data tape crashes into a wall, can no longer grow an "exception" like mechanism is thrown.

The processor or memory manager which is responsible for the growing of data tapes/snakes throws an exception like event:

Describing which snake crashed, plus optionally source and dest information for quick reference or it can be looked up later in the snake memory reference structure by
snake number.

Event generated:
Snake X crashed

Or more advanced event:
Snake X, SnakeSourceX,SnakeSourceY,SnakeDestX,SnakeDestY crashed.

however to make sure the information is consistent perhaps it's better to consult the snake memory reference in the event handler to be sure, perhaps
this would make programmers of such event handlers feel more at ease that they have the correct/most recent information, it is more of an emotional
consideration, but could also prevent race conditions/race information in case maybe something else modified it in between the event generation and event handler.
Preferably none of the snake information/structures/data is changed in between event firing and event handling.

A computer instruction could be encoded as follows, just an example:

Operation Codes
No Operation = 0
Copy = 1
Addition = 2
Subtraction = 3
Multiply = 4
Division = 5
Jump = 6

Addressing Modes
0 = constants
1 = direct addressing
2 = indirect addressing

Instructions:
Operation Code, Source Addressing Mode, Source Data Field, Dest Addressing Mode, Dest Data Field

The following pascal pseudo code will be translated into instructions below:

var
Counter : TDataField;
Value : TDataField;

begin
Counter := 0;
Value := 5;

while true do
begin
Counter := Counter + Value;
end;

end;

Compiler outputs:

Counter = data field 0
Value = data field 1

Assembly instructions:

// copy constant 0 to data field 0
copy, 0, 0, 1, 0

// copy constant 5 to data field 1
copy, 5, 0, 1, 1

// add value to counter
add, 1, 1, 1, 0

// jump to previous instruction
jump -1

Hardware wise each "memory unit" must be readable, writeable and addressable. Each memory unit contains 4 transistors as described above.

I imagine a grid of memory units each with 4 transistors. Each memory unit is connected to a memory bus and address busses, one address bus for each coordinate/dimension.

To manipulate a memory unit the hardware has to be able to do the following:

put coordinate x on the x bus.
put coordinate y on the y bus.
read/write the transistors, this would imply a 4 data bit bus, or just a 1 data bit bus and each transistor is read in sequence.

A more complex memory unit could be constructed so that a processor only read/write 1 bit at a time, like a pci express lane, software is responsible for
decoding the communication.

A benefit of this could be less wires on motherboards, and more placement of individual memory chips, possibly for multi-core/many-core scenerios where each
core has access to it's own memory, or possibly excess to multiple memory units.

The idea here is to also spread heat across a large surface area/multiple chips, also to allow more cooling solutions to be placed on these chips.

Further inspiration was derived from the movie Chappie, the game worms, vectorization algorithms, vga pixel graphics bouncing like water of of logos, intersections/intersection map,
Alan Turing's imaginary ticker/data tape, redcode/corewars.

Bye for now,
Skybuck Flying ! =D

P.S.: Also see my other inventions such a Skybuck's Universal Code, Skybuck's Universal Data Structure

Re: Skybuck's Universal Memory Architecture

<XfobJ.738253$r4y9.609590@usenetxs.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79735&group=sci.electronics.design#79735

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx13.ams4.POSTED!not-for-mail
From: dtgame...@gmail.com (Edward Hernandez)
Subject: Re: Skybuck's Universal Memory Architecture
Newsgroups: sci.electronics.design
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <skkufv$fq7$7@dont-email.me>
Lines: 18
Message-ID: <XfobJ.738253$r4y9.609590@usenetxs.com>
X-Complaints-To: https://www.astraweb.com/aup
NNTP-Posting-Date: Tue, 19 Oct 2021 00:25:27 UTC
Date: Tue, 19 Oct 2021 00:25:27 GMT
X-Received-Bytes: 1186
 by: Edward Hernandez - Tue, 19 Oct 2021 00:25 UTC

The John Doe troll stated the following in message-id
<sdhn7c$pkp$4@dont-email.me>:

> The troll doesn't even know how to format a USENET post...

And the John Doe troll stated the following in message-id
<sg3kr7$qt5$1@dont-email.me>:

> The reason Bozo cannot figure out how to get Google to keep from
> breaking its lines in inappropriate places is because Bozo is
> CLUELESS...

And yet, the clueless John Doe troll has itself posted yet another
incorrectly formatted USENET posting on Mon, 18 Oct 2021 23:03:27 -0000
(UTC) in message-id <skkufv$fq7$7@dont-email.me>.

7xvG+FXvOfJs

Re: Skybuck's Universal Memory Architecture

<skl3hu$b5g$3@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79744&group=sci.electronics.design#79744

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: always.l...@message.header (John Doe)
Newsgroups: sci.electronics.design
Subject: Re: Skybuck's Universal Memory Architecture
Date: Tue, 19 Oct 2021 00:29:50 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 63
Message-ID: <skl3hu$b5g$3@dont-email.me>
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <skkufv$fq7$7@dont-email.me> <XfobJ.738253$r4y9.609590@usenetxs.com>
Injection-Date: Tue, 19 Oct 2021 00:29:50 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2bf5202d2fd96fd8e4dd96829269951a";
logging-data="11440"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/yRqBKNCXICHRw/UV8bFGGOG6Cm5RQqyI="
User-Agent: Xnews/2006.08.05
Cancel-Lock: sha1:ix1Z86pUijRe5/n4otc8vg7saTI=
 by: John Doe - Tue, 19 Oct 2021 00:29 UTC

A nym-shifting stalker, usually "Corvid" also "Charger Boy".
Was spanked hard in (sci.electronics.repair)...

see also...
=?UTF-8?Q?C=c3=b6rvid?= <bl@ckbirds.org>
=?UTF-8?B?8J+QriBDb3dzIGFyZSBOaWNlIPCfkK4=?= <nice@cows.moo>
Banders <snap@mailchute.com>
Covid-19 <always.look@message.header>
Corvid <bl@ckbirds.net>
Corvid <bl@ckbirds.org>
Cows Are Nice <cows@nice.moo>
Cows are nice <moo@cows.org>
Cows are Nice <nice@cows.moo>
dogs <dogs@home.com>
Edward H. <dtgamer99@gmail.com>
Edward Hernandez <dtgamer99@gmail.com>
Great Pumpkin <pumpkin@patch.net>
Jose Curvo <jcurvo@mymail.com>
Local Favorite <how2recycle@palomar.info>
Peter Weiner <dtgamer99@gmail.com>
Sea <freshness@coast.org>
Standard Poodle <standard@poodle.com>
triangles <build@home.com>
and others...

--
Edward Hernandez <dtgamer99@gmail.com> wrote:

> Path: eternal-september.org!reader02.eternal-september.org!news.uzoreto.com!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx13.ams4.POSTED!not-for-mail
> From: Edward Hernandez <dtgamer99@gmail.com>
> Subject: Re: Skybuck's Universal Memory Architecture
> Newsgroups: sci.electronics.design
> References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <skkufv$fq7$7@dont-email.me>
> Lines: 18
> Message-ID: <XfobJ.738253$r4y9.609590@usenetxs.com>
> X-Complaints-To: https://www.astraweb.com/aup
> NNTP-Posting-Date: Tue, 19 Oct 2021 00:25:27 UTC
> Date: Tue, 19 Oct 2021 00:25:27 GMT
> X-Received-Bytes: 1186
> Xref: reader02.eternal-september.org sci.electronics.design:649665
>
> The John Doe troll stated the following in message-id
> <sdhn7c$pkp$4@dont-email.me>:
>
>> The troll doesn't even know how to format a USENET post...
>
> And the John Doe troll stated the following in message-id
> <sg3kr7$qt5$1@dont-email.me>:
>
>> The reason Bozo cannot figure out how to get Google to keep from
>> breaking its lines in inappropriate places is because Bozo is
>> CLUELESS...
>
> And yet, the clueless John Doe troll has itself posted yet another
> incorrectly formatted USENET posting on Mon, 18 Oct 2021 23:03:27 -0000
> (UTC) in message-id <skkufv$fq7$7@dont-email.me>.
>
> 7xvG+FXvOfJs
>
>
>

Re: Skybuck's Universal Memory Architecture

<elqbJ.1027446$6P3.243968@usenetxs.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79752&group=sci.electronics.design#79752

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx03.ams4.POSTED!not-for-mail
From: dtgame...@gmail.com (Edward Hernandez)
Subject: Re: Skybuck's Universal Memory Architecture
Newsgroups: sci.electronics.design
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <skkufv$fq7$7@dont-email.me> <XfobJ.738253$r4y9.609590@usenetxs.com> <skl3hu$b5g$3@dont-email.me>
Lines: 18
Message-ID: <elqbJ.1027446$6P3.243968@usenetxs.com>
X-Complaints-To: https://www.astraweb.com/aup
NNTP-Posting-Date: Tue, 19 Oct 2021 02:47:38 UTC
Date: Tue, 19 Oct 2021 02:47:38 GMT
X-Received-Bytes: 1255
 by: Edward Hernandez - Tue, 19 Oct 2021 02:47 UTC

The John Doe troll stated the following in message-id
<sdhn7c$pkp$4@dont-email.me>:

> The troll doesn't even know how to format a USENET post...

And the John Doe troll stated the following in message-id
<sg3kr7$qt5$1@dont-email.me>:

> The reason Bozo cannot figure out how to get Google to keep from
> breaking its lines in inappropriate places is because Bozo is
> CLUELESS...

And yet, the clueless John Doe troll has itself posted yet another
incorrectly formatted USENET posting on Tue, 19 Oct 2021 00:29:50 -0000
(UTC) in message-id <skl3hu$b5g$3@dont-email.me>.

dXLr2ttmwhGR

Re: Skybuck's Universal Memory Architecture

<sklhr0$hgp$2@gioia.aioe.org>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79775&group=sci.electronics.design#79775

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!aioe.org!5U2ooNuM5UP0Ynf/GmOnCg.user.46.165.242.91.POSTED!not-for-mail
From: Decadent...@decadence.org
Newsgroups: sci.electronics.design
Subject: Re: Skybuck's Universal Memory Architecture
Date: Tue, 19 Oct 2021 04:33:37 -0000 (UTC)
Organization: Aioe.org NNTP Server
Message-ID: <sklhr0$hgp$2@gioia.aioe.org>
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com>
Injection-Info: gioia.aioe.org; logging-data="17945"; posting-host="5U2ooNuM5UP0Ynf/GmOnCg.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Xnews/5.04.25
X-Notice: Filtered by postfilter v. 0.9.2
 by: Decadent...@decadence.org - Tue, 19 Oct 2021 04:33 UTC

skybuck2000 <skybuck2000@hotmail.com> wrote in news:66879f56-52f1-4df4-
8663-4703fd9c0e3fn@googlegroups.com:

> The Problem:
>

The problem is you posting off topic stupid shit in our group.

You were told to leave, so get the fuck out, troll punk motherfucker.

Re: Skybuck's Universal Memory Architecture

<skml3p$gvm$1@gioia.aioe.org>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79793&group=sci.electronics.design#79793

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!rocksolid2!i2pn.org!aioe.org!5U2ooNuM5UP0Ynf/GmOnCg.user.46.165.242.91.POSTED!not-for-mail
From: Decadent...@decadence.org
Newsgroups: sci.electronics.design
Subject: Re: Skybuck's Universal Memory Architecture
Date: Tue, 19 Oct 2021 14:35:37 -0000 (UTC)
Organization: Aioe.org NNTP Server
Message-ID: <skml3p$gvm$1@gioia.aioe.org>
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <skkufv$fq7$7@dont-email.me> <XfobJ.738253$r4y9.609590@usenetxs.com> <skl3hu$b5g$3@dont-email.me>
Injection-Info: gioia.aioe.org; logging-data="17398"; posting-host="5U2ooNuM5UP0Ynf/GmOnCg.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Xnews/5.04.25
X-Notice: Filtered by postfilter v. 0.9.2
 by: Decadent...@decadence.org - Tue, 19 Oct 2021 14:35 UTC

John Doe <always.look@message.header> wrote in news:skl3hu$b5g$3@dont-
email.me:

You going behind others' posts and then posting a full header quote
and an inane retarded dumbfuck troll comment has to be the most stupid
behavior in Usenet followed closey by the idiot you keep stalking the
posts of.

The only thing more stupid than Donald John Trump is a Trump
supporter. But you... You, DoeTard are a special case of extreme
stupidity.

Re: Skybuck's Universal Memory Architecture

<fd0bdafb-37d7-4cc2-9e45-7204215b1175n@googlegroups.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79795&group=sci.electronics.design#79795

  copy link   Newsgroups: sci.electronics.design
X-Received: by 2002:a05:6214:20a2:: with SMTP id 2mr341373qvd.13.1634654897174;
Tue, 19 Oct 2021 07:48:17 -0700 (PDT)
X-Received: by 2002:a25:bcd1:: with SMTP id l17mr10262695ybm.449.1634654896852;
Tue, 19 Oct 2021 07:48:16 -0700 (PDT)
Path: i2pn2.org!rocksolid2!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: sci.electronics.design
Date: Tue, 19 Oct 2021 07:48:16 -0700 (PDT)
In-Reply-To: <sklhr0$hgp$2@gioia.aioe.org>
Injection-Info: google-groups.googlegroups.com; posting-host=84.25.28.171; posting-account=np6u_wkAAADxbE7UBGUIOm-csir6aX02
NNTP-Posting-Host: 84.25.28.171
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <fd0bdafb-37d7-4cc2-9e45-7204215b1175n@googlegroups.com>
Subject: Re: Skybuck's Universal Memory Architecture
From: skybuck2...@hotmail.com (skybuck2000)
Injection-Date: Tue, 19 Oct 2021 14:48:17 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 16
 by: skybuck2000 - Tue, 19 Oct 2021 14:48 UTC

On Tuesday, October 19, 2021 at 6:33:42 AM UTC+2, DecadentLinux...@decadence.org wrote:
> skybuck2000 <skybu...@hotmail.com> wrote in news:66879f56-52f1-4df4-
> 8663-4703...@googlegroups.com:
>
> > The Problem:
> >
>
> The problem is you posting off topic stupid shit in our group.

How come transistors are off topic in this group ?! You gonna have to explain that one !

:P

Send me picture of your motherfucking face so I can tell if you get anything going for you.

Bye Bye,
Skybuck.

Re: Skybuck's Universal Memory Architecture

<skmtnq$cnf$3@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79796&group=sci.electronics.design#79796

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: always.l...@message.header (John Doe)
Newsgroups: sci.electronics.design
Subject: Re: Skybuck's Universal Memory Architecture
Date: Tue, 19 Oct 2021 17:02:50 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 30
Message-ID: <skmtnq$cnf$3@dont-email.me>
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org>
Injection-Date: Tue, 19 Oct 2021 17:02:50 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2619a853a7012ccbdfe0a95e385d1e4b";
logging-data="13039"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/JAVfPi9oe1fkD5SyBha42xi8m8wKYB+k="
User-Agent: Xnews/2006.08.05
Cancel-Lock: sha1:304812I0es+1qLgwCE+GYPsEBfA=
 by: John Doe - Tue, 19 Oct 2021 17:02 UTC

Skysuck, listen to your daddy...

--
DecadentLinuxUserNumeroUno@decadence.org wrote:

> Path: eternal-september.org!reader02.eternal-september.org!aioe.org!5U2ooNuM5UP0Ynf/GmOnCg.user.46.165.242.91.POSTED!not-for-mail
> From: DecadentLinuxUserNumeroUno@decadence.org
> Newsgroups: sci.electronics.design
> Subject: Re: Skybuck's Universal Memory Architecture
> Date: Tue, 19 Oct 2021 04:33:37 -0000 (UTC)
> Organization: Aioe.org NNTP Server
> Message-ID: <sklhr0$hgp$2@gioia.aioe.org>
> References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com>
> Injection-Info: gioia.aioe.org; logging-data="17945"; posting-host="5U2ooNuM5UP0Ynf/GmOnCg.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
> User-Agent: Xnews/5.04.25
> X-Notice: Filtered by postfilter v. 0.9.2
> Xref: reader02.eternal-september.org sci.electronics.design:649706
>
> skybuck2000 <skybuck2000@hotmail.com> wrote in news:66879f56-52f1-4df4-
> 8663-4703fd9c0e3fn@googlegroups.com:
>
>> The Problem:
>>
>
> The problem is you posting off topic stupid shit in our group.
>
> You were told to leave, so get the fuck out, troll punk motherfucker.
>
>

Re: Skybuck's Universal Memory Architecture

<z4DbJ.658762$tT5b.492158@usenetxs.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79801&group=sci.electronics.design#79801

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!feeder1.feed.usenet.farm!feed.usenet.farm!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx11.ams4.POSTED!not-for-mail
From: dtgame...@gmail.com (Edward Hernandez)
Subject: Re: Skybuck's Universal Memory Architecture
Newsgroups: sci.electronics.design
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <skmtnq$cnf$3@dont-email.me>
Lines: 18
Message-ID: <z4DbJ.658762$tT5b.492158@usenetxs.com>
X-Complaints-To: https://www.astraweb.com/aup
NNTP-Posting-Date: Tue, 19 Oct 2021 17:17:19 UTC
Date: Tue, 19 Oct 2021 17:17:19 GMT
X-Received-Bytes: 1216
 by: Edward Hernandez - Tue, 19 Oct 2021 17:17 UTC

The John Doe troll stated the following in message-id
<sdhn7c$pkp$4@dont-email.me>:

> The troll doesn't even know how to format a USENET post...

And the John Doe troll stated the following in message-id
<sg3kr7$qt5$1@dont-email.me>:

> The reason Bozo cannot figure out how to get Google to keep from
> breaking its lines in inappropriate places is because Bozo is
> CLUELESS...

And yet, the clueless John Doe troll has itself posted yet another
incorrectly formatted USENET posting on Tue, 19 Oct 2021 17:02:50 -0000
(UTC) in message-id <skmtnq$cnf$3@dont-email.me>.

7d5n42rnsiCp

Re: Skybuck's Universal Memory Architecture

<D4DbJ.658763$tT5b.81153@usenetxs.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79802&group=sci.electronics.design#79802

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx11.ams4.POSTED!not-for-mail
From: dtgame...@gmail.com (Edward Hernandez)
Subject: Re: Skybuck's Universal Memory Architecture
Newsgroups: sci.electronics.design
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <fd0bdafb-37d7-4cc2-9e45-7204215b1175n@googlegroups.com> <skmtp3$cnf$4@dont-email.me>
Lines: 18
Message-ID: <D4DbJ.658763$tT5b.81153@usenetxs.com>
X-Complaints-To: https://www.astraweb.com/aup
NNTP-Posting-Date: Tue, 19 Oct 2021 17:17:23 UTC
Date: Tue, 19 Oct 2021 17:17:23 GMT
X-Received-Bytes: 1272
 by: Edward Hernandez - Tue, 19 Oct 2021 17:17 UTC

The John Doe troll stated the following in message-id
<sdhn7c$pkp$4@dont-email.me>:

> The troll doesn't even know how to format a USENET post...

And the John Doe troll stated the following in message-id
<sg3kr7$qt5$1@dont-email.me>:

> The reason Bozo cannot figure out how to get Google to keep from
> breaking its lines in inappropriate places is because Bozo is
> CLUELESS...

And yet, the clueless John Doe troll has itself posted yet another
incorrectly formatted USENET posting on Tue, 19 Oct 2021 17:03:31 -0000
(UTC) in message-id <skmtp3$cnf$4@dont-email.me>.

m6r71IBUm1uW

Re: Skybuck's Universal Memory Architecture

<skmv5a$hor$3@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79805&group=sci.electronics.design#79805

  copy link   Newsgroups: sci.electronics.design free.spam
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: always.l...@message.header (John Doe)
Newsgroups: sci.electronics.design,free.spam
Subject: Re: Skybuck's Universal Memory Architecture
Date: Tue, 19 Oct 2021 17:27:06 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 63
Message-ID: <skmv5a$hor$3@dont-email.me>
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <fd0bdafb-37d7-4cc2-9e45-7204215b1175n@googlegroups.com> <skmtp3$cnf$4@dont-email.me> <D4DbJ.658763$tT5b.81153@usenetxs.com>
Injection-Date: Tue, 19 Oct 2021 17:27:06 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2619a853a7012ccbdfe0a95e385d1e4b";
logging-data="18203"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/T5yOKRV5D+vQSZtCylsoUG1x7YJwDTYA="
User-Agent: Xnews/2006.08.05
Cancel-Lock: sha1:e1JfcV4fd2oKvVppNvpT4qqv4TY=
 by: John Doe - Tue, 19 Oct 2021 17:27 UTC

A nym-shifting stalker, usually "Corvid".
Spanked in (sci.electronics.repair)...

see also...
=?UTF-8?Q?C=c3=b6rvid?= <bl@ckbirds.org>
=?UTF-8?B?8J+QriBDb3dzIGFyZSBOaWNlIPCfkK4=?= <nice@cows.moo>
Banders <snap@mailchute.com>
Covid-19 <always.look@message.header>
Corvid <bl@ckbirds.net>
Corvid <bl@ckbirds.org>
Cows Are Nice <cows@nice.moo>
Cows are nice <moo@cows.org>
Cows are Nice <nice@cows.moo>
dogs <dogs@home.com>
Edward H. <dtgamer99@gmail.com>
Edward Hernandez <dtgamer99@gmail.com>
Great Pumpkin <pumpkin@patch.net>
Jose Curvo <jcurvo@mymail.com>
Local Favorite <how2recycle@palomar.info>
Peter Weiner <dtgamer99@gmail.com>
Sea <freshness@coast.org>
Standard Poodle <standard@poodle.com>
triangles <build@home.com>
and others...

--
Edward Hernandez <dtgamer99@gmail.com> wrote:

> Path: eternal-september.org!reader02.eternal-september.org!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx11.ams4.POSTED!not-for-mail
> From: Edward Hernandez <dtgamer99@gmail.com>
> Subject: Re: Skybuck's Universal Memory Architecture
> Newsgroups: sci.electronics.design
> References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <fd0bdafb-37d7-4cc2-9e45-7204215b1175n@googlegroups.com> <skmtp3$cnf$4@dont-email.me>
> Lines: 18
> Message-ID: <D4DbJ.658763$tT5b.81153@usenetxs.com>
> X-Complaints-To: https://www.astraweb.com/aup
> NNTP-Posting-Date: Tue, 19 Oct 2021 17:17:23 UTC
> Date: Tue, 19 Oct 2021 17:17:23 GMT
> X-Received-Bytes: 1272
> Xref: reader02.eternal-september.org sci.electronics.design:649736
>
> The John Doe troll stated the following in message-id
> <sdhn7c$pkp$4@dont-email.me>:
>
>> The troll doesn't even know how to format a USENET post...
>
> And the John Doe troll stated the following in message-id
> <sg3kr7$qt5$1@dont-email.me>:
>
>> The reason Bozo cannot figure out how to get Google to keep from
>> breaking its lines in inappropriate places is because Bozo is
>> CLUELESS...
>
> And yet, the clueless John Doe troll has itself posted yet another
> incorrectly formatted USENET posting on Tue, 19 Oct 2021 17:03:31 -0000
> (UTC) in message-id <skmtp3$cnf$4@dont-email.me>.
>
> m6r71IBUm1uW
>
>
>

Re: Skybuck's Universal Memory Architecture

<skmv5l$hor$4@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79806&group=sci.electronics.design#79806

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: always.l...@message.header (John Doe)
Newsgroups: sci.electronics.design
Subject: Re: Skybuck's Universal Memory Architecture
Date: Tue, 19 Oct 2021 17:27:17 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 63
Message-ID: <skmv5l$hor$4@dont-email.me>
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <skmtnq$cnf$3@dont-email.me> <z4DbJ.658762$tT5b.492158@usenetxs.com>
Injection-Date: Tue, 19 Oct 2021 17:27:17 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2619a853a7012ccbdfe0a95e385d1e4b";
logging-data="18203"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+HaUTZ+whX9j6BhbWRu3CQ95TQS0uIh9E="
User-Agent: Xnews/2006.08.05
Cancel-Lock: sha1:Y2deVmnNVJXWL3HTEQVRte5mBI0=
 by: John Doe - Tue, 19 Oct 2021 17:27 UTC

A nym-shifting stalker, usually "Corvid".
Spanked in (sci.electronics.repair)...

see also...
=?UTF-8?Q?C=c3=b6rvid?= <bl@ckbirds.org>
=?UTF-8?B?8J+QriBDb3dzIGFyZSBOaWNlIPCfkK4=?= <nice@cows.moo>
Banders <snap@mailchute.com>
Covid-19 <always.look@message.header>
Corvid <bl@ckbirds.net>
Corvid <bl@ckbirds.org>
Cows Are Nice <cows@nice.moo>
Cows are nice <moo@cows.org>
Cows are Nice <nice@cows.moo>
dogs <dogs@home.com>
Edward H. <dtgamer99@gmail.com>
Edward Hernandez <dtgamer99@gmail.com>
Great Pumpkin <pumpkin@patch.net>
Jose Curvo <jcurvo@mymail.com>
Local Favorite <how2recycle@palomar.info>
Peter Weiner <dtgamer99@gmail.com>
Sea <freshness@coast.org>
Standard Poodle <standard@poodle.com>
triangles <build@home.com>
and others...

--
Edward Hernandez <dtgamer99@gmail.com> wrote:

> Path: eternal-september.org!reader02.eternal-september.org!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx11.ams4.POSTED!not-for-mail
> From: Edward Hernandez <dtgamer99@gmail.com>
> Subject: Re: Skybuck's Universal Memory Architecture
> Newsgroups: sci.electronics.design
> References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <skmtnq$cnf$3@dont-email.me>
> Lines: 18
> Message-ID: <z4DbJ.658762$tT5b.492158@usenetxs.com>
> X-Complaints-To: https://www.astraweb.com/aup
> NNTP-Posting-Date: Tue, 19 Oct 2021 17:17:19 UTC
> Date: Tue, 19 Oct 2021 17:17:19 GMT
> X-Received-Bytes: 1216
> Xref: reader02.eternal-september.org sci.electronics.design:649735
>
> The John Doe troll stated the following in message-id
> <sdhn7c$pkp$4@dont-email.me>:
>
>> The troll doesn't even know how to format a USENET post...
>
> And the John Doe troll stated the following in message-id
> <sg3kr7$qt5$1@dont-email.me>:
>
>> The reason Bozo cannot figure out how to get Google to keep from
>> breaking its lines in inappropriate places is because Bozo is
>> CLUELESS...
>
> And yet, the clueless John Doe troll has itself posted yet another
> incorrectly formatted USENET posting on Tue, 19 Oct 2021 17:02:50 -0000
> (UTC) in message-id <skmtnq$cnf$3@dont-email.me>.
>
> 7d5n42rnsiCp
>
>
>

Re: Skybuck's Universal Memory Architecture

<TqDbJ.658766$tT5b.90516@usenetxs.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79808&group=sci.electronics.design#79808

  copy link   Newsgroups: sci.electronics.design free.spam
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx11.ams4.POSTED!not-for-mail
From: dtgame...@gmail.com (Edward Hernandez)
Subject: Re: Skybuck's Universal Memory Architecture
Newsgroups: sci.electronics.design,free.spam
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <fd0bdafb-37d7-4cc2-9e45-7204215b1175n@googlegroups.com> <skmtp3$cnf$4@dont-email.me> <D4DbJ.658763$tT5b.81153@usenetxs.com> <skmv5a$hor$3@dont-email.me>
Lines: 18
Message-ID: <TqDbJ.658766$tT5b.90516@usenetxs.com>
X-Complaints-To: https://www.astraweb.com/aup
NNTP-Posting-Date: Tue, 19 Oct 2021 17:41:07 UTC
Date: Tue, 19 Oct 2021 17:41:07 GMT
X-Received-Bytes: 1350
 by: Edward Hernandez - Tue, 19 Oct 2021 17:41 UTC

The John Doe troll stated the following in message-id
<sdhn7c$pkp$4@dont-email.me>:

> The troll doesn't even know how to format a USENET post...

And the John Doe troll stated the following in message-id
<sg3kr7$qt5$1@dont-email.me>:

> The reason Bozo cannot figure out how to get Google to keep from
> breaking its lines in inappropriate places is because Bozo is
> CLUELESS...

And yet, the clueless John Doe troll has itself posted yet another
incorrectly formatted USENET posting on Tue, 19 Oct 2021 17:27:06 -0000
(UTC) in message-id <skmv5a$hor$3@dont-email.me>.

uyCPzvmexEHx

Re: Skybuck's Universal Memory Architecture

<0rDbJ.658767$tT5b.133988@usenetxs.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79809&group=sci.electronics.design#79809

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx11.ams4.POSTED!not-for-mail
From: dtgame...@gmail.com (Edward Hernandez)
Subject: Re: Skybuck's Universal Memory Architecture
Newsgroups: sci.electronics.design
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <skmtnq$cnf$3@dont-email.me> <z4DbJ.658762$tT5b.492158@usenetxs.com> <skmv5l$hor$4@dont-email.me>
Lines: 18
Message-ID: <0rDbJ.658767$tT5b.133988@usenetxs.com>
X-Complaints-To: https://www.astraweb.com/aup
NNTP-Posting-Date: Tue, 19 Oct 2021 17:41:16 UTC
Date: Tue, 19 Oct 2021 17:41:16 GMT
X-Received-Bytes: 1285
 by: Edward Hernandez - Tue, 19 Oct 2021 17:41 UTC

The John Doe troll stated the following in message-id
<sdhn7c$pkp$4@dont-email.me>:

> The troll doesn't even know how to format a USENET post...

And the John Doe troll stated the following in message-id
<sg3kr7$qt5$1@dont-email.me>:

> The reason Bozo cannot figure out how to get Google to keep from
> breaking its lines in inappropriate places is because Bozo is
> CLUELESS...

And yet, the clueless John Doe troll has itself posted yet another
incorrectly formatted USENET posting on Tue, 19 Oct 2021 17:27:17 -0000
(UTC) in message-id <skmv5l$hor$4@dont-email.me>.

rV3noKHJaN6s

Re: Skybuck's Universal Memory Architecture

<skn382$m3n$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79812&group=sci.electronics.design#79812

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: always.l...@message.header (John Doe)
Newsgroups: sci.electronics.design
Subject: Re: Skybuck's Universal Memory Architecture
Date: Tue, 19 Oct 2021 18:36:50 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 39
Message-ID: <skn382$m3n$1@dont-email.me>
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <skmtnq$cnf$3@dont-email.me> <z4DbJ.658762$tT5b.492158@usenetxs.com> <skmv5l$hor$4@dont-email.me> <0rDbJ.658767$tT5b.133988@usenetxs.com>
Injection-Date: Tue, 19 Oct 2021 18:36:50 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="2619a853a7012ccbdfe0a95e385d1e4b";
logging-data="22647"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+eT94AhVH/OcWH3Dq8Z6YcbJLq9nhVOl0="
User-Agent: Xnews/2006.08.05
Cancel-Lock: sha1:16goojiJkb6smpB9IuhETxotRqA=
 by: John Doe - Tue, 19 Oct 2021 18:36 UTC

Eddie, meet Eddie...

--
Edward Hernandez <dtgamer99@gmail.com> wrote:

> Path: eternal-september.org!reader02.eternal-september.org!news.uzoreto.com!newsreader4.netcologne.de!news.netcologne.de!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx11.ams4.POSTED!not-for-mail
> From: Edward Hernandez <dtgamer99@gmail.com>
> Subject: Re: Skybuck's Universal Memory Architecture
> Newsgroups: sci.electronics.design
> References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <skmtnq$cnf$3@dont-email.me> <z4DbJ.658762$tT5b.492158@usenetxs.com> <skmv5l$hor$4@dont-email.me>
> Lines: 18
> Message-ID: <0rDbJ.658767$tT5b.133988@usenetxs.com>
> X-Complaints-To: https://www.astraweb.com/aup
> NNTP-Posting-Date: Tue, 19 Oct 2021 17:41:16 UTC
> Date: Tue, 19 Oct 2021 17:41:16 GMT
> X-Received-Bytes: 1285
> Xref: reader02.eternal-september.org sci.electronics.design:649744
>
> The John Doe troll stated the following in message-id
> <sdhn7c$pkp$4@dont-email.me>:
>
>> The troll doesn't even know how to format a USENET post...
>
> And the John Doe troll stated the following in message-id
> <sg3kr7$qt5$1@dont-email.me>:
>
>> The reason Bozo cannot figure out how to get Google to keep from
>> breaking its lines in inappropriate places is because Bozo is
>> CLUELESS...
>
> And yet, the clueless John Doe troll has itself posted yet another
> incorrectly formatted USENET posting on Tue, 19 Oct 2021 17:27:17 -0000
> (UTC) in message-id <skmv5l$hor$4@dont-email.me>.
>
> rV3noKHJaN6s
>
>
>

Re: Skybuck's Universal Memory Architecture

<luEbJ.1145696$dFHd.432214@usenetxs.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79813&group=sci.electronics.design#79813

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsreader4.netcologne.de!news.netcologne.de!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx12.ams4.POSTED!not-for-mail
From: dtgame...@gmail.com (Edward Hernandez)
Subject: Re: Skybuck's Universal Memory Architecture
Newsgroups: sci.electronics.design
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <skmtnq$cnf$3@dont-email.me> <z4DbJ.658762$tT5b.492158@usenetxs.com> <skmv5l$hor$4@dont-email.me> <0rDbJ.658767$tT5b.133988@usenetxs.com> <skn382$m3n$1@dont-email.me>
Lines: 18
Message-ID: <luEbJ.1145696$dFHd.432214@usenetxs.com>
X-Complaints-To: https://www.astraweb.com/aup
NNTP-Posting-Date: Tue, 19 Oct 2021 18:53:05 UTC
Date: Tue, 19 Oct 2021 18:53:05 GMT
X-Received-Bytes: 1355
 by: Edward Hernandez - Tue, 19 Oct 2021 18:53 UTC

The John Doe troll stated the following in message-id
<sdhn7c$pkp$4@dont-email.me>:

> The troll doesn't even know how to format a USENET post...

And the John Doe troll stated the following in message-id
<sg3kr7$qt5$1@dont-email.me>:

> The reason Bozo cannot figure out how to get Google to keep from
> breaking its lines in inappropriate places is because Bozo is
> CLUELESS...

And yet, the clueless John Doe troll has itself posted yet another
incorrectly formatted USENET posting on Tue, 19 Oct 2021 18:36:50 -0000
(UTC) in message-id <skn382$m3n$1@dont-email.me>.

MbpXcpP23Ayw

Re: Skybuck's Universal Memory Architecture

<sko75e$o91$1@gioia.aioe.org>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=79842&group=sci.electronics.design#79842

  copy link   Newsgroups: sci.electronics.design
Path: i2pn2.org!i2pn.org!aioe.org!5U2ooNuM5UP0Ynf/GmOnCg.user.46.165.242.91.POSTED!not-for-mail
From: Decadent...@decadence.org
Newsgroups: sci.electronics.design
Subject: Re: Skybuck's Universal Memory Architecture
Date: Wed, 20 Oct 2021 04:49:51 -0000 (UTC)
Organization: Aioe.org NNTP Server
Message-ID: <sko75e$o91$1@gioia.aioe.org>
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com> <sklhr0$hgp$2@gioia.aioe.org> <fd0bdafb-37d7-4cc2-9e45-7204215b1175n@googlegroups.com>
Injection-Info: gioia.aioe.org; logging-data="24865"; posting-host="5U2ooNuM5UP0Ynf/GmOnCg.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Xnews/5.04.25
X-Notice: Filtered by postfilter v. 0.9.2
 by: Decadent...@decadence.org - Wed, 20 Oct 2021 04:49 UTC

skybuck2000 <skybuck2000@hotmail.com> wrote in
news:fd0bdafb-37d7-4cc2-9e45-7204215b1175n@googlegroups.com:

> On Tuesday, October 19, 2021 at 6:33:42 AM UTC+2,
> DecadentLinux...@decadence.org wrote:
>> skybuck2000 <skybu...@hotmail.com> wrote in
>> news:66879f56-52f1-4df4- 8663-4703...@googlegroups.com:
>>
>> > The Problem:
>> >
>>
>> The problem is you posting off topic stupid shit in our group.
>
> How come transistors are off topic in this group ?! You gonna
> have to explain that one !
>

Your retarded announcement post about fucking memory is NOT
electronics design, you putz.

>:P

You Putz!
> Send me picture of your motherfucking face so I can tell if you
> get anything going for you.

Send me your address so I can have you erased.

Re: Skybuck's Universal Memory Architecture

<87cd128b-1ec9-464a-be60-4657f4886b91n@googlegroups.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=87922&group=sci.electronics.design#87922

  copy link   Newsgroups: sci.electronics.design
X-Received: by 2002:a05:6214:1c42:: with SMTP id if2mr14053862qvb.61.1642314590773;
Sat, 15 Jan 2022 22:29:50 -0800 (PST)
X-Received: by 2002:a25:9f0d:: with SMTP id n13mr19647038ybq.331.1642314590636;
Sat, 15 Jan 2022 22:29:50 -0800 (PST)
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: sci.electronics.design
Date: Sat, 15 Jan 2022 22:29:50 -0800 (PST)
In-Reply-To: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.25.28.171; posting-account=np6u_wkAAADxbE7UBGUIOm-csir6aX02
NNTP-Posting-Host: 84.25.28.171
References: <66879f56-52f1-4df4-8663-4703fd9c0e3fn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <87cd128b-1ec9-464a-be60-4657f4886b91n@googlegroups.com>
Subject: Re: Skybuck's Universal Memory Architecture
From: skybuck2...@hotmail.com (skybuck2000)
Injection-Date: Sun, 16 Jan 2022 06:29:50 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 77
 by: skybuck2000 - Sun, 16 Jan 2022 06:29 UTC

Skybuck's Universal Memory Architecture Extension (16 january 2022)

There may be a problem with the Tron/Snake based approach/idea.

In Tron/Snake the motor cycles/snakes can only grow. Shrinking is not possible, except when they die.

To allow shrinking additional information would need to be recorded. For example where the snake cell came from.

To incorporate this functionality the following changes should be made:

DirectionBit0 is renamed to GrowDirectionBit0
DirectionBit1 is renamed to GrowDirectionBit1

Two new direction bits are added:

ShrinkDirectionBit0
ShrinkDirectionBit1

The meaning of combining two of the same direction bits to form a direction bit field remain the same:

Order of DirectionBits: DirectionBit0, DirectionBit1:
00 = up
01 = right
10 = down
11 = left

(DirectionBit0 is LSB=least significant bit, DirectionBit1 is MSB=Most Significant Bit)

The ShrinkDirectionBits should be set to where the snake cell came from, it's ancestor/predecessor.

So for example.

If the current snake cell is on x 200 y 100 and it came from x 199 y 100 the shrink bits would be set as follows:

ShrinkDirectionBit0 = 1
ShrinkDirectionBit1 = 1

This indicates that if the snake wants to shrink back into a safe memory cell that was allocated before the growth then it can do so
and go there.

This leaves one problem remaining indicating if there was a previous connected bit. Like in the ConnectionBit description.

This may and could also be updated or the head/tail pointers could be used to detect if it's already at the head/tail.
Or as defined as SourceX,SourceY.

If the connection bit feature is implemented/used it will also need to be updated and renamed:

ConnectionBit will be renamed to NextBitConnected

and a new bit will be introduced:

PreviousBitConnected

The maining of these bits are slightly altered:

For NextBitConnected it means:

0 = head of snake/last cell
1 = intermediate cell

For PreviousBitConnected it means:

0 = tail of snake/first cell
1 = intermediate cell

This extended version should allow shrinking (as well as growing) of snakes (a bit more easily) ! ;)

To go Left, Right, Down, Up is weakly defined, but I will give a suggestion here:

To go left means -1
To go right means +1
To go up means +1
To go down means -1

(Visualizing an image of the memory map may have to be inverted on vga/graphics systems where the y-axis is inverted.)

Bye for now,
Skybuck.

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor