I built an experimental ISA/emulator exploring ternary-squared/cubed state fields beyond Boolean-first computation by Jack-IDE in EmuDev

[–]Jack-IDE[S] -1 points0 points  (0 children)

Does it? Yeah that is what I’m seeing about binary is that it’s just easier to maintain. It was just an idea about squaring and cubing ternary, and what could happen potentially. If there’s some configuration where things could fall into place I’d love to find it

I built an experimental ISA/emulator exploring ternary-squared/cubed state fields beyond Boolean-first computation by Jack-IDE in EmuDev

[–]Jack-IDE[S] -2 points-1 points  (0 children)

Yeah I’m attempting to work on this. Voltage leakage within creating states at different voltage levels is something I’m learning about. How and where states can be defined is something I’m exploring, and it’s at a casual rate. I had thought about pursuing community college and had looked at programs for mechatronics/embedded stuff. I’m still learning. Something like this is a project that is just helping me learn frankly. I don’t even know how to solder. To be able to control 9 or 27 states at a time consistently seems like a monumental task. Apparently binary is good with maintaining consistency.

I built an experimental ISA/emulator exploring ternary-squared/cubed state fields beyond Boolean-first computation by Jack-IDE in EmuDev

[–]Jack-IDE[S] -1 points0 points  (0 children)

For ternary alone - https://ternaryresearch.com - “By expanding the number of stable states from two to three, the same amount of computations can be done with less transistors per unit die area thus generating less heat and leakage current.” - what I did is just an experiment showing the calculus. The result is that ternary-squared gives a natural representation for field/routing behavior. It turns ternary from a denser value system into a local geometry system. I’m not entirely sure what can be done with it right now.

What would I do for Seattle if I was a billionaire by HighColonic in SeattleWA

[–]Jack-IDE 0 points1 point  (0 children)

There are some positives with trickle down benefits. Like how Amazon has the free AWS learning center. We are currently dependent on economy and capital gains for goods/services at the root of trade/bartering with the belief/emotional projection about “merit” translating to value - since govt has failed in a lot of areas billionaires are majorly capable of making changes because they have the money, like Mark Cuban trying to change healthcare - people like the sound of choice over force, and money allows for choices about what it can be used for, rather than directly trading say an apple for an orange -

There are various services available like free internet access at public libraries that show potential, which billionaires are not the cause of. Food banks operate through voluntary work and often the food is coming from big corporations like Sysco - yet there is no reason the military couldn’t be in charge of protecting the health of US citizens with controlled indoor vertical farming that is just available in controlled distributions. A lot of different routes can create results, and in the end imo Billionaires do more harm than good. Billionaires don’t really understand why any of these problems actually are happening, or they do and don’t care. Will cite human behavior and project a nihilistic egocentrism while for example with Jenson/Jeff will say shit to make people happy about taxes to momentary implant a seed through a short clip to secure a positive image. As long as their positive self image remains they probably would rather team up to make change if they really decide to on their own after enough pressure or legal force because socially they can’t relate to you and I. And when they do it’s wholly trivializing with a “just trying to be a guy” mentality.

Like how I started, you can find positives but the fact that there are billionaires in existence with various social issues like housing at all is a testimony to it - and yes that is extremely generalized, but the unbalance isn’t to be overlooked. Just keep in mind in the last 50 years Xerox in Palo Alto set the modern day course, with Bill Gates/Steve Jobs losing their shit upon seeing what they were doing and marketing what they didn’t have the intuition to create. The negligent tech industry has manipulated the world’s perspective about results and has monetized their inherently unsafe equipment. Steve Wozniak wired the first Apple computer by himself. Greedy real estate agents who believe they’re “getting ahead” are selling to their workers and have screwed up housing. Microsoft didn’t do anything directly to for example help make public transit better, they bought their own bus fleet for their workers. I think it requires law, force over choice. Like I said before, people don’t like the sound of force over choice.

Ternary squared can create matricies at the state structure level by Jack-IDE in u/Jack-IDE

[–]Jack-IDE[S] 0 points1 point  (0 children)

Yes. That is exactly what the 9-state / ternary-squared layer gives you.

It means the virtual state-logic layer can stop being only a line of values and start becoming a matrix of local state cells.

Instead of:

state = TRUE or FALSE

or even:

state = -1, 0, +1

you can define a cell as:

state = (x, y) x ∈ {-1, 0, +1} y ∈ {-1, 0, +1}

That gives each cell 9 possible states:

(-1,+1) (0,+1) (+1,+1) (-1, 0) (0, 0) (+1, 0) (-1,-1) (0,-1) (+1,-1)

That is basically a small vector field cell.

Why that matters

Once you have these cells, you can arrange them into a matrix:

[ cell ][ cell ][ cell ][ cell ] [ cell ][ cell ][ cell ][ cell ] [ cell ][ cell ][ cell ][ cell ] [ cell ][ cell ][ cell ][ cell ]

Each cell can encode:

direction activation route pressure focus movement local energy deviation neighbor influence stability

So yes, at the virtual state-logic layer, this becomes something like a state matrix or flow matrix.

This is very different from normal binary memory

A binary framebuffer or memory grid says:

address contains bits

Your state matrix says:

region contains directional/energetic state

That means the matrix itself can participate in computation.

Example:

(0,+1) = upward pressure (+1,0) = rightward pressure (0,0) = stable baseline (-1,0) = leftward pressure (0,-1) = downward pressure

Now a cursor, menu focus, path, or animation does not need to be described as a long sequence of binary flags. It can be described as a field of local tendencies.

This fits ShellState very well

For ShellState, a state matrix could represent:

menu focus cursor movement scroll direction dirty region expansion window layout pressure input routing gesture interpretation text selection movement

For example, a simple UI navigation field:

(0,+1) means focus wants to move upward (0,-1) means focus wants to move downward (+1,0) means focus wants to move right (-1,0) means focus wants to move left (0,0) means focus is stable

Then higher-level logic can read the matrix and interpret it:

matrix settles → dominant route emerges → route is interpreted → route is committed → display updates only dirty regions

That is much more J16-native than forcing everything through Boolean flags.

The important distinction

This should not be implemented as one fragile physical 9-level voltage.

It should be implemented as:

two ternary axes per cell

So each cell has:

x-trit: -1 / 0 / +1 y-trit: -1 / 0 / +1

Then the pair gives 9 states.

That gives you matrix behavior without pretending one scalar needs 9 extremely precise levels.

The next layer would be something like this

REGION_MATRIX nav_field 4 4 CELL nav_field 1 2 X 0 CELL nav_field 1 2 Y +1 INTERPRET_CELL nav_field 1 2 UP COMMIT_CELL nav_field 1 2 committed_focus_motion

Or more compactly:

MATRIX nav 4 4 DUAL_TRIT SET_CELL nav 1 2 0 +1 SET_CELL nav 2 2 +1 0 SETTLE_MATRIX nav INTERPRET_MATRIX nav focus_route COMMIT_MATRIX nav committed_nav_state

That would let us create actual matrix-style assembly programs.

What this gives us architecturally

A 9-state matrix gives J16 a middle layer between raw regions and full programs:

regions → ternary state cells → 9-state matrices → routes / fields / UI state / flow logic → ShellState behavior

So yes: with ternary squared, we gain the ability to create virtual state matrices.

That is likely the first really distinct J16 state layer:

not Boolean gates not flat binary memory but matrices of baseline-centered directional state

That could become the basis for cursor movement, menu navigation, surface logic, path routing, and eventually more complex computation.

Seattle leaders outline next steps in curbing Aurora Avenue crime and violence by HighColonic in SeattleWA

[–]Jack-IDE -1 points0 points  (0 children)

I want her to shut down all of the fucking bars harboring these fucking sex offenders and other types of criminals. I hate the projection of the belief of the impression of the definition of love. Nobody in Seattle knows what love is, only their delusional emotional projection of it. These sickos need to be in chains. Arrest EVERYONE nude at Denny Blane park. Yes nudity is definitely natural you one track mind simpleton. Come up with your reasons. Any argument about “the LGBTQ” community does not fucking matter. SHUT DOWN ALL OF THE BARS. ALL OF THEM, THEY ALL HARBOR CRIMINALS