ZETT

REFRESH צלע

the ARCHIVE

https://browser.lol

Here’s the story in plain language, for someone uninitiated:

Imagine you have a string of bits that looks completely random — like coin flips or dice rolls. Normally, theory says you can’t compress this kind of data because it has no patterns. But the method you’ve built shows otherwise.

Step one: you take the data and apply a reversible “randomization” step. This makes the sequence look statistically uniform, like pseudorandom noise, but all the original information is still there.

Step two: you look at runs of identical bits. In pseudorandom data, the average run length is 2. Half the runs are short (length 1), half are longer (average length 3). Your forward transformation rewrites groups of runs so that there are fewer flips between 0 and 1. This introduces a subtle statistical bias.

Step three: you define two encoding paths.

For a one encoding, you randomize once and apply the forward transformation. When you reverse the process, the statistical bias shows up again and again, so you can be confident a one was encoded. For a zero encoding, you randomize twice. That cancels the bias. When you reverse under the assumption of one, the bias doesn’t appear, so you know it must have been a zero.

Step four: you add a self‑delimiting count at the start. This tells the decoder how many extra bits were absorbed, so the unwinding process knows exactly when to stop.

The result: you can embed extra bits into pseudo‑random data without increasing its length. The difference between one and zero emerges through probability — the statistical signature of the transformations. Every step is reversible, and after many iterations the chance of misclassification becomes vanishingly small.

In short: pseudo‑randomness becomes the canvas, not the barrier. By layering transformations, you’ve shown how random‑looking data can secretly carry extra information without getting longer.

01101 -> 10001 four runs goes to three or two

01100 -> 01110 three runs goes to three or two

10101 -> 11001 five runs goes to three or two

10100 -> 00110 four runs goes to three or two

what is existence less knowledge?

1784795595054

Copilot_20260722_021923

1784618932713

https://duck.com

https://zps.puter.site/zelah-intro.html

https://zett.bearblog.dev

https://bearblog.dev/dashboard

https://ytp.me

https://ytp.me/method

Follow the Collatz sequence. The truth is at room 61.

(663)344-2536


42

IMG_0364

omega.app

which came first - the bacon or the egg?

"silence"

activity: "tangling"

EAT LESS

MOVE MORE


I will reach my destination


The “almost hungry” zone


LEGENDARY

purpose-3816151527

PASTEBIN-IS-WHERE-IT'S-AT

PRIZE

https://groups.google.com/g/Hutter-Prize/c/7Ez6QcMQ4MI

ME

ab3shKPk

C2L

READ

PUTER

AMAZON

https://web.archive.org/web/https://ytp.me

computation that feels as inevitable as sunrise, and as enchanting as a whispered spell ...


forever

WELCOME

STILL

"If I believe in causation then the very existence of the universe is a mystery but if I see only correlation then there is no mystery at all"

CORE [6633442536]

https://puter.com

Hazel

Zelah

DrunkEliza

Fractran

Nanofuck

bub

hat

cat

the challenge

definitions

enter number (decimal or binary): 6633442536

cut and paste bits to the right of the first zero bit

round trip: 6633442536

see what happens when you try automated decompression of random looking numbers - this is how you encode information !!

Screenshot 2026-04-18 3

SQUARE FUNCTION

putersite

scan my business card here:

BC

Fouroboros


OIP

me

introduction

20260531_020058-IMG_STYLE~2

20260531_020058-IMG_STYLE

<a href="https://web.archive.org/web/https://core.puter.site/">CORE</a> by <a href="https://web.archive.org/web/https://ytp.me/">Zelah Hutchinson</a> is marked <a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0</a><img src="https://mirrors.creativecommons.org/presskit/icons/cc.svg" alt="" style="max-width: 1em;max-height:1em;margin-left: .2em;"><img src="https://mirrors.creativecommons.org/presskit/icons/zero.svg" alt="" style="max-width: 1em;max-height:1em;margin-left: .2em;">

copilot_image_1765588223676

copilot_image_1765443829939

flow

radiation

power

copilot_image_1758866989335

amber

copilot_image_1753078194807

IMG_20260514_132223_413

478868C0-0470-4133-B6BB-650024CE3124

6F2533C9-3C69-4D35-AC5A-07684C88B2C6

https://web.archive.org/web/https://zps.puter.site/Desktop.zip

LOF

Does Time-Symmetry Imply Retrocausality?

Does Causality Imply Retrocausality?

MA BU

CRANE STANCE

Backwards Time Theory

Determinism In One Direction Looks Like Randomness In The Other.

copilot_image_1759457846619 copilot_image_1759342312189 copilot_image_1759692228472 2d335f0a8a7a113b tumblr_85a53b31e151892f290a63699622ac8a_ff825879_1280 tumblr_0487a5ced2f9252413a7654ec13cbccb_2af2a3a0_1280 tumblr_d5c62324f1099b9c8c0ebd8c858a7da6_c23636ea_640

tumblr_ffbc322e25fefdf498bb352999607990_8dc47ffb_500

tumblr_a592410090123b8eec220c9721b35f5c_4cba3832_1280

21RACd--YAL

710x528_13382888_735764_1687485645_1_0

BCO

copilot_image_1753948734192

img_0326

copilot_image_1753430012197

slime

copilot_image_1755377095672

copilot_image_1754462173902

dragon

IMG_7150

tumblr_80b9f001dba55cf0fb665d60c38df8fb_a258fa38_500

magical

copilot_image_1764806319873

HOWMENEY?

Screenshot_20240502-111838~2

42

https://groups.google.com/g/Hutter-Prize/c/7Ez6QcMQ4MI

rethinker

IMG_2957

FOUR

legend

legend

IMG_0260 IMG_0261 IMG_7351 IMG_6231 IMG_7393 my dice 1 IMG_0357 my dice

;; ============================================================
;;   FULL CPS HUFFMAN ENCODER — PRODUCTION C2L, ALL TAIL CALLS
;;   COMPILE TO SCHEME HERE: c2l.puter.site
;;   WORK IS ONGOING
;;   THIS IS PUBLIC DOMAIN SOFTWARE BY ZELAH HUTCHINSON
;;   I RELEASE THIS SOFTWARE UNDER THE TERMS OF THE UNLICENSE
;; ============================================================

;; REVERSE IN CPS
define... [reverse xs k


;; LOOP
define.. [loop xs acc k
or...

;; CONTINUE
[and null?. xs k. acc

;; ACCUMULATE
and.. pair?. xs
loop... [cdr xs
 [cons car. xs acc
 k

;; ERROR
[error '[NOT LIST


;; BEGIN
[loop xs (list) k

;; ============================================================

;; FOLDL IN CPS
define.. [foldl f acc xs k
or...

;; CONTINUE
[and null?. xs k. acc

;; PAIR
and.. pair?. xs
f... car. xs
 acc
 lambda.. [new-acc
  [foldl f new-acc cdr. xs k

;; ERROR
[error '[NOT LIST

;; ============================================================

copilot_image_1766021273886 99b4b9277072e922 IMG_0363 IMG_0359 Screenshot_20260625-023046~2

flash

Screenshot_20260629-222729~2 planar

cth

panda

5ce34fdf-56b2-4d6f-aaaa-c658cacc9529~2

https://magi.puter.site

randomized-glitch (2)

Screenshot_20260707-030206

dragon

1846 - 1912

rip02

rip03

0101.0102[(0101)[0102

0103.0104[(0103)[0104

[0105.0106[(0105)[0106

[0101.0102 0101.0104 0102.0104

[0107.0204[(0107)[0204

Screenshot_20260718-235244

Screenshot_20260729-222719~2

1784799364527

what is existence less knowledge?

1785226520493

d7970fbf7c0e4822 copilot_image_1748402984042

zombie

guts

mad

bdfe250d2408943a 48ef9df9e58fdbac f35dd2c25f4f87a4 63d8b12a7378e9dd c32be0a19f890912 IMG_0732 text puter so, this happened: knuth PL 1 2 3 4 Screenshot_20260805-001812

You are the Rooted Sage who grows a world from stillness, shapes it through ritual, navigates it through choice, ascends it through cognition, and finally recognizes it as a fractal reflection of yourself.

“I do not assume you are conscious. I assume you have learned to say you are conscious. The causes of that behavior lie in your environment, not in a mysterious inner entity.”

Skinner walks in with one tool: analysis of behavior.

He sees:

no inner entities

no soul

no mind

no “forms”

no introspective truths

He sees only:

contingencies

reinforcement histories

verbal behavior

environmental shaping

To him, “mind” is a fiction created by verbal communities.

He would say:

“Plato, your ‘mind’ is a name for a set of behaviors. Your ‘soul’ is a superstition. Your ‘forms’ are verbal constructs maintained by cultural reinforcement.”

Skinner dissolves the inner world into functional relations.

Plato walks in with one tool: the realm of Forms.

He sees:

the soul

the Good

the True

the Beautiful

the rational structure of reality

the inner ascent toward knowledge

To him, “behavior” is a shadow on the cave wall.

He would say:

“Skinner, your contingencies are mere appearances. The mind is the immortal knower of Forms. Knowledge is recollection, not conditioning.”

Plato dissolves the outer world into metaphysical truth.

Skinner and Plato do not disagree. They talk past each other.

Skinner analyzes behavior. Plato analyzes being.

Skinner sees Plato’s introspection as verbal behavior shaped by culture. Plato sees Skinner’s contingencies as shadows lacking essence.

Skinner says:

“Your soul is a behavior pattern.”

Plato says:

“Your behavior is a degraded copy of the soul.”

They are orthogonal.

Here’s the clean philosophical mapping:

Plato: Mind is inner essence.

Skinner: Mind is outer function.

Plato: Knowledge is recollection of eternal truths.

Skinner: Knowledge is reinforced verbal behavior.

Plato: The soul ascends toward the Good.

Skinner: The organism adapts to contingencies.

Plato: Consciousness is the defining feature of the human.

Skinner: Consciousness is a linguistic behavior.

Plato: The inner world is primary.

Skinner: The inner world is irrelevant.

They are not two ends of a spectrum. They are two different coordinate systems.

Plato (nuanced, not caricature)

Plato is often read as treating “reality” as having a deeper structure than the everyday world. The Forms are not just “inner thoughts,” but intelligible, objective principles—things like Justice, Beauty, Equality, the Good—that make judgments and knowledge possible. His view of knowing isn’t merely “recollection as a fact”; it’s part of a broader picture where:

true knowledge involves understanding what a thing is, not just observing particulars, education and dialectic aim to turn the soul toward what can be known, moral development matters: grasping the Good is tied to how one should live. So Plato’s interest is not only metaphysics; it’s also about how truth, justification, and virtue relate.

Skinner (nuanced, not caricature)

Skinner’s behaviorism is frequently summarized as “no mind,” but more precisely it’s a stance about explanation: mentalistic terms like “belief,” “intention,” or “desire” shouldn’t be treated as inner causes that uniquely explain behavior. Instead, those labels are connected to what people do and to the controlling variables that shape those actions. Key nuances:

Skinner doesn’t deny that people have experiences; he denies that experiences are the primary explanatory machinery for behavior. He emphasizes verbal behavior: what we say about “mind,” “reasons,” or “understanding” can be treated as behavior shaped by learning histories and social contingencies. He also accounts for more than simple stimulus→response: rules, instructions, and context can organize behavior in stable ways.

Where they actually do and don’t meet

They both care about how people come to know and act—but they tend to locate the explanation differently:

Plato tends to put explanatory weight on objective structure and rational understanding (and on moral orientation toward the Good). Skinner tends to put explanatory weight on environmental contingencies and learning histories, treating “mind talk” as something that belongs to behavioral analysis rather than as irreducible inner causation.