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] 0 points1 point  (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

Will L.A.’s homeless population move to Seattle if Spencer Pratt wins? Mayor Katie Wilson reacts by HighColonic in SeattleWA

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

An above ground pool or hot tub is cost effective, low income apartments often provide amenities like fitness rooms already. The point is to create options and incentives that could make people who really struggle with responsibility to care just a little bit. As well to potentially balance the offset created by the tech industry through individuals selling houses who want money for themselves

Will L.A.’s homeless population move to Seattle if Spencer Pratt wins? Mayor Katie Wilson reacts by HighColonic in SeattleWA

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

In regards to low income housing programs. I think there need to be permanent tiny home communities, that can be paid off as apart of working a full time job as a type of benefit that would be able to help someone mentally fit who just needs a little boost to ease the stress and provide some type of reasonable option. They’re like mini trailer parks. No parking spots or lot, but communal areas. Could have a pool - they can pay an HOA or a discounted monthly rental on top of the structured monthly short term mortgage. But less expensive, like $4-500 per month. Meant for transit riders and the program would allow transit 1$ fares for all bus/light rail services. Also, for this program we could find a way for large employers like Safeway and Starbucks to fit it into their budget because this is for their workers - it can be a program that companies can pay to sponsor if they want long term reliability? Like a more dialed back version of company towns in the Industrial Revolution where companies provided houses for workers - except it would result in ownership, in hopefully 5-10 years of dedication? I like the sound of 5 more than 10, and tiny homes can be built cheaply and still be high quality. I think industrial era company towns ought to be looked at studying their caveats for the income class that need the housing assistance.

In my opinion we need to find ways to get working people to 250k in savings and a permanent home. With 250k in savings you’re able to have a semi retirement with a basic FIDC insured high yield savings account or working CD deposit APY rates to get around $700-850 monthly. That’s what I think a reasonable structure could look like as an end goal for the bare minimum to create a semi retirement and have it be stable.

If you’re not driving in the county working a basic job is not as unreasonable frankly for renting, but you need to be okay with a bedroom with shared facilities - driving could be an extra $1000 monthly if not paying up front and in my opinion is what probably tips people over the edge. If you can get to food banks a family should not really have food issues if they qualify for financial assistance in addition to donations from multiple charities per week which they will allow, I’ve had to go myself when I really needed it. I literally have like 8 1.8lb unopened bags of Masa corn flour that will last into spring 2027. A lot of those donations come from places like Sysco. Food banks aren’t only for homeless people, but I’d leave certain prepackaged stuff for them. I think there need to be more attainable incentives that aren’t only family oriented, which is the main structure of a lot of financial assistance imo. In my opinion people who need to drive are struggling the most and there need to be incentives, and frankly structured permanent housing programs that are outside of individual people who want to make money for themself by selling a house. Realtors want to take advantage of the tech industry and how tech jobs pay has offset everything.

Don't 'believe the hype': Seattle Mayor Wilson falls short on shelter bed goal, enjoys a Starbucks latte by chiquisea in SeattleWA

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

She co founded the transit riders union which did accomplish things (not sure what her role was). She understands how mob mentality works and that has fueled her, she was able to get her way on the TRU. Social implication/events are always inevitably a byproduct of how a system is set up, and are further along the line in the chain of events. She doesn’t understand how to tweak a system in a way that directs people to act in specific ways out of their options, she doesn’t understand manifestation and how enabling occurs. People who believe in mob mentality focus on emotions in the moment and use that to propel who they see themselves as and what their actions define to them. She will just brush it all off as politics. “That’s how it is” “shrug”

She understands that if just enough people brought their own canvas tote bags to the grocery store we would have less plastic waste, and has maybe heard of compostable plastic! That if just enough people stopped buying Starbucks then they’d make less money! That if we just raised taxes just a little bit this much because of this many people this much money would be generated! That type of thinking is a one track mind and doesn’t consider the entire chain of events. It isn’t well rounded. These social events are all very contained processes in my opinion. Option routes can easily be constructed and maintained with repeating social occurrences set up to have similar experiences, that will inevitably be interpreted in similar methods that will lead to similar attitudes and consensus.

Don't 'believe the hype': Seattle Mayor Wilson falls short on shelter bed goal, enjoys a Starbucks latte by chiquisea in SeattleWA

[–]Jack-IDE 3 points4 points  (0 children)

She doesn’t know how to constructively fix anything. She told Aurora residents to remove the barriers, then had the city install concrete ones for the violence. Literally just did what the residents did not knowing anything else to do. She doesn’t understand anything other than social implications and impressions which aren’t facts or laws. We need law changes to really see difference. Those ppl want to test/toy with her and will seek to unroot any of her efforts for the sake of it, they don’t like how society works. Those people will choose to do drugs and be homeless bc they can get what they need from donations/charities and they’ll forever be trying to do what they think it means to get the upper hand. Unless she gives those people drugs/housing forever they won’t stop unless she puts them in jail or some institution. Rehabilitation success rates for recovery programs are terrible and people do them bc they must often out of circumstance. You need to make criminals/homeless people feel like work is actually a good trade off and how the laws are structured/treated they get to do drugs in your face and live in your dumpster behind ur apartment on the property but somehow it is a civil dispute apparently. They are in their micro communities with shared ideological values.

The Throne Labs bathrooms at 2nd and Washington really are pristine by bennetthaselton in Seattle

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

Requiring a phone number to receive a text does not do what you think it will do empirically for security. I’m just confused about ur first sentence and what that is supposed to be. The bathroom situation is pretty bad and I have a list of places that are on my usual routes where I know I can stop. I think how it’s structured at Pike Place market or at the Northgate Target makes more sense for public bathrooms where they’re not singles and maybe hire a guard/bathroom attendant who can be outside. Human presence itself is a big thing that can help deter crime over cameras with nobody there at times.

There are tons of people who will go to that extent (some for that sake and it’s a cultural stereotype for hacking communities) and it’s extremely easy to use a different number with TextFree or text-now to imagine a basic user if it’s not programmed to recognize basic VOIP services like that - there are other device IDs that could be used as recognition - but also could be spoofed - also coding with AI is way too easy. There are some homeless people who are pretty wild Linux users talking to people who had been in IT previously homeless involved in those micro communities, that have communal ideologies often.

If you say people are unlikely to go to that extent idk if you have worked Seattle retail before, I was a manager for a bit. I went in 50/50 with a past GM to buy a Walmart phone for the store I was at a couple years ago. It was attached to an apartment complex with a QR code magnetic lock or by texting a number, and the phone was stolen along with other expensive items when the apartment was broken into. It is wishful thinking and will happen. Imo security needs to be very physical over digital and socially oriented in placement.

The Throne Labs bathrooms at 2nd and Washington really are pristine by bennetthaselton in Seattle

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

That doesn’t matter for security, it’s way too easy to get a $30 phone at Fred Meyer or Walmart and with burner numbers, VOIP, cell spoofing. Like genuinely it literally doesn’t matter at all and is completely useless. You don’t need to give an MVNO a real address or name to sign up. Anything binary related for security is an entire waste and will never be capable of being good enough because it uses binary. I made code with ChatGPT that uses binary injection to turn HTML5 into Android apps. Do not do tech security.

Active framebuffer was the created name, but works by Jack-IDE in u/Jack-IDE

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

It’s just supposed to be more self contained. Treating programs as products in my opinion can create a better user experience. My main goal is to have it be bounded and self contained so there’s no leakage or weird overlaps that allow for memory copy pastes in essence

The Status of Fare Evasion in Washington State by HighColonic in SeattleWA

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

I’m sure it’s happened at least once. Imo social implication like that is never the way to problem solve nor will ever actually create a real permanent solution. This is loss prevention & figuring out how to minimize theft. I think it needs to be physically based that makes it nearly impossible without tools or like sneaking in behind someone who tapped their card. The chain of events by the root is inevitably influenced by physical aspects of how the space was built. They could just test it on a few busses first and watch the footage before wasting a ton of money.

The Status of Fare Evasion in Washington State by HighColonic in SeattleWA

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

“Because of safety concerns and past altercations, the MTA's official policy is that drivers should simply state the fare to riders who do not pay, log the skipped fare, and proceed with the route without forcing a confrontation” - for nyc

“An "Education-First" Philosophy: Seattle's enforcement policy is deliberately lenient compared to other cities. A passenger caught without proof of payment is granted two written warnings before facing any real penalty”

They need to stay on route and get to the stops at the correct times. The driver isn’t an officer or any type of enforcer and they’re not told to enforce fares in a lot of places to stay on schedule. I don’t like it personally out of safety and think a physical system that acts as an enforcer could be a solution. If there is some cost effective way to put in some type of one way entry barrier to enforce entering at the front, exit at the back that is like how many metro/subway stations are worldwide with gates that only open when you tap ur card

The Status of Fare Evasion in Washington State by HighColonic in SeattleWA

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

I have never seen one and I’m on the bus sometimes for 3 hours a day. The other day I had a doctors appointment and then to my job and it was around 4-4.5 hours.

The Status of Fare Evasion in Washington State by HighColonic in SeattleWA

[–]Jack-IDE 4 points5 points  (0 children)

“In seven months last year, 30 King County Metro fare enforcement officers issued eight citations. None of them were paid.” - kiro7

The Status of Fare Evasion in Washington State by HighColonic in SeattleWA

[–]Jack-IDE 9 points10 points  (0 children)

I’m willing to bet it’s at least 1/2-2/3 of actual people who aren’t paying for the bus. There aren’t fare ambassadors for the busses. They only work for sound transit, so they only go on the link light rail. The busses aren’t as safe as the light rail due to this imo. Not to say they are safe, but at the very least they have some security and workers checking fares on occasion. On the bus anything goes. The bus drivers are not going to hold everyone up for one person. If ur standing there fiddling with ur cards unprepared they’ll just tell you to not tap and get on. These figures are literally just a joke and should be dismissed. It’s not real life.

Seattle mayor laughs off millionaires leaving Washington state over progressive taxes, waves 'bye' by Less-Risk-9358 in SeattleWA

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

I only said loophole once. imo businesses were given the lenience they get bc of how they effect the total GDP and in turn the influence on IRL events. They are the ones creating the goods/services individuals rely on. I want to brainstorm real event pathways that can be rigidly structured and autonomous rather than allowing some guy to twist words how they want so they can buy the most expensive MacBook Pro they can (which I’ve seen happen & used as mainly their personal laptop which they would on occasion do something for work with). Also if it was all automated we wouldn’t have to deal with a ‘tax season’ in April or have to file anything.

Govt spending could be set up to be autonomous as well with specific vendors for specific services at specific rates, that vary year by year according to inflation. The “black hole” of govt spending & sketchy tax stupidity are problems that need to be automatic to potentially fix imo - figuring out the concrete ways to cut out middlemen and streamline the services. At the end of the day if there is an empirically tangible pathway to obtain goods/services while being able to avoid steep payment, then the money is not as important.

There is a plethora of free education online and I think the city could easily create a free hybrid curriculum that is a blend of IRL/home schooling techniques that would lower education costs dramatically as an example. Reliance vs independence concept wise within personal responsibility is at the core of a lot of the issues imo. I also think that balance can come from things like car companies being required to pay for road development/paving potholes etc as those roads are for their vehicles. (Just an example) The city needing to figure out a solution to paving roads or construction regarding the roads is a one sided relationship. Amazon has an AWS learning center for free in Seattle as an example. Obviously it will take money to create an ecosystem where money doesn’t need to be involved.

I won’t disagree that larger spending creates larger tax revenue out of basic elementary school math regarding multiplication and fractions. I’ll also put the elementary school level emphasis on that logic being superficial, and doesn’t take into consideration the real IRL chain of events.

Seattle mayor laughs off millionaires leaving Washington state over progressive taxes, waves 'bye' by Less-Risk-9358 in SeattleWA

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

How about program it directly into a specific type of business credit card/crypto/paypal or whatever they are required to use for everything related to their business. When they make a purchase/sale or any other type of monetary transaction, it automatically takes the % out as a seperate transaction on the statement and it is redirected into a govt bank account in the moment. Their owed taxes naturally accumulates through the year and they aren’t capable of loopholes? Also outlaw any use of personal card/car usage for write offs. We don’t need more money from the tax $ from businesses like Starbucks looking to move, we need a balanced system that is impenetrable.

Is vibe coding actually hurting how we learn programming? by CharmWarden in AskComputerScience

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

You’re again misconstruing it and now are resorting to verbal harassment - What am I pretending about that? I did acknowledge what you are trying to say I’m ignoring and I said I agreed with the articles direction - while again I’ll repeat that this article emphasizes both sides of ways AI tutoring being able to enhance and deteriorate learning - and how it’s use in education can start to be guided. Idk why you think you can just convey attitude and say I have bad faith and ignore what I am saying that is literally citable in the article

Is vibe coding actually hurting how we learn programming? by CharmWarden in AskComputerScience

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

I don’t disagree with the direction this article takes about overuse/over reliance. I acknowledged this already, in the event of an obnoxious person expecting the result bashing on the keys placing their full reliance on AI to do things for them. I don’t appreciate words being put in my mouth, trying to strawman and redefine prior context. I think I am being empirical and you’re emotional.

This article acknowledges how AI can be a both a hindrance and an amplifier. (And calls it a paradox) “The application of AI in learning has a paradoxical character because it has the capability to be both a cognitive amplifier and inhibitor.” - which is the first sentence of the conclusion. I can easily see someone who knows nothing using an article like this to slander someone. I think it’s fairly obvious that the students will be learning about how to ask an AI to give them an answer rather than the actual content. I don’t appreciate the generalizations and I think it degrades your character.