Axo is an abstraction of the human mental condition.

Axo translates the perceived disorder of the highly complex and ordered system of mental state into a generative system and interactive experience.

Each work has neurons. Each neuron has a nucleus at its source and fires electrical signals searching for synaptic connections.

The signals, or in this case, pixels, act in accordance with the current mental state, which periodically enters states of stress, awareness, re-centering, reprogramming, and more.

The work explores neuroplasticity, or the brain’s ability to change it’s synaptic pathways, materializing our cognitive flexibility and rigidity, inviting us to consider what barriers prohibit growth and positive change in our lives. Born out of personal experience, Axo is part observation of my own mental state and part research, analysis, and reflection.

Each of us is a node on the societal network. The effects of our individual state ripple out impacting the network as a whole. As such, each Axo can be connected with and influence other works in the collection. Awareness can spread and evolve the network, just as stress can cause chaos. This is possible when multiple works are hosted together in the same webpage or connected via api (sample code available on project website).

Axo opens a dialogue on personal growth and societal change at the intersection of cognitive science, art, and technology, inviting us to envision a better existence, a harmonious network, underlining that this utopia is only a shift in perspective away.

Axo is fully responsive, built using javascript & my own pixel-easing algorithm. The code is 19kb with no external dependencies.

Axo is an art project by S. Ryan O'Connor, aka jiwa.

Interactivity

Each Axo has a default state, though the viewer can also take control and influence its state of mind using the following keys:

"a" => awareness Toggles awareness

"f" => freak out

Toggles a freak out.

"p" => stuck in past

Toggles being stuck in the past. May not do much while in awareness.

"c" => centered

Toggles centering the state of mind.

"d" => disabled fate

Disabled fate disables any auto-state changes, so the state of mind will only change with interaction.

"w" => willed experience

Axo can be curated by the viewer and replayed later. By pressing W, all interactions up to that point will be collected and the work will reload with a new link that can be saved and replayed at any time.

"0-9" => rigid pathways at specified reprogramming

Axo’s current state can be preserved at any of the first ten states of mind. If a viewer were to press 8, Axo would flow through the first seven changes, then stop at the 8th state change.

"z" => scale up
"x" => scale down


Scale up/down to view in more detail, improve performance, or just gain a different perspective.

"s" => save a still

Each Axo can be curated using the keyboard, query string, and/or programmatically posting messages from a host page.

Traits

Stage
The current stage of creative freedom. Relates to the background style/texture of the base neurons.

"options": 
  [
    "Evolution", 
    "Expression", 
    "Exploration", 
    "Revelation", 
    "Existence"
  ]
Frequency
The current brain frequency. Relates to the layout of the neurons.

"options": 
  [
    "Epsilon",
    "Mu",
    "Delta",
    "Theta",
    "Beta",
    "Low Alpha",
    "High Alpha",
    "Gamma",
    "Lambda"
  ]
            
Baseline
The starting state of excitability of the neurons. Relates to a limiter in pixel motion.

"options": 
  [
    "Spontaneous", 
    "Inhibitory", 
    "Excitatory", 
    "Stable"
  ]
          
State
The developing state of excitability of the neurons. Relates to boosts in pixel motion.

"options": 
  [
    "Resting", 
    "Threshold", 
    "Depolarized", 
    "Spike Train"
  ]
          
Tendency
An individual's reaction tendency. Relates to susceptibility of pixels to be pulled off path.

"options": 
  [
    "Balanced", 
    "Reactive", 
    "Impulsive", 
    "Explosive"
  ]
          
Gift
A natural or acquired ability. Relates to a combination of parameters : elevated awareness, lightening of color palette, and pixel courses starting closer to center.

"options": 
  [
    "Ignorance", 
    "Awareness", 
    "Humility", 
    "Intuition", 
    "Introspection", 
    "Wisdom"
  ]
          
Length
The axon length. Relates the maximum length of pixel travel.

"options": 
  [
    "10x diameter/soma",
    "100x diameter/soma",
    "1,000x diameter/soma",
    "10,000x diameter/soma"
  ]
          
Practice
Areas of self-work. Relates to wildness of pixel motion.

"options": 
  [
    "Reliance", 
    "Compassion", 
    "Detachment"
  ]
          
Mechanism
The experience leading to growth. Relates to color variation / pallete groups.

"options": 
  [
    "Presence", 
    "Perseverance", 
    "Discovery", 
    "Heartache", 
    "Earnestness", 
    "Struggle", 
    "Hope"
  ]
          
Network

The following code is just a simple example of how one might network many Axos together.

var finishedJobs = [];
var axoUrl = "https://hosted.ntent.art/projects/axo/index.html";

//First we set up an event listener to listen for messages from all iframes
//This allows us to communicate with more effectively, with the name and tokenId
window.addEventListener(
  "message",
  (e) => {
    // Handle the message
    if (typeof e.data === "object" && e.data.event == "axoReady") {
      var iframe = document.getElementById(e.data.value);
      console.log(
        `${e.data.value} is ready. Token Id : ${e.data.tokenId}`
      );
      iframe.tokenId = e.data.tokenId;
    }
  },
  false
);

//you can curate via the query string
var cmds = [
  { action: "F", value: true, frame: 87 },
  { action: "P", value: true, frame: 154 },
  { action: "P", value: false, frame: 469 },
  { action: "F", value: false, frame: 552 },
  { action: "A", value: true, frame: 628 },
  { action: "F", value: true, frame: 770 },
  { action: "P", value: true, frame: 819 },
  { action: "P", value: false, frame: 1079 },
];

var scale = 5;
var olivia = createIframe(
  "olivia",
  "Olivia Dunham",
  axoUrl + "?z=3&w=" +
    JSON.stringify(cmds),
  200,
  200,
  () => {
    //or you can post messages directly
    setTimeout(function () {
      frame.contentWindow.postMessage(
        { call: "axoStateChange", value: "d" },
        "*"
      );
      console.log("Disabling Fate");
    }, 3000);
    setTimeout(function () {
      frame.contentWindow.postMessage(
        { call: "axoStateChange", value: "a" },
        "*"
      );
      console.log("Having Awareness");
    }, 4000);
    setTimeout(function () {
      frame.contentWindow.postMessage(
        { call: "axoStateChange", value: "f" },
        "*"
      );
      console.log("Freaking Out");
    }, 5000);
  }
);

var dick = createIframe(
  "dick",
  "Dick Whitman",
  axoUrl + "?z=" + scale,
  200,
  200
);

var sebastian = createIframe(
  "sebastian",
  "Lil Sebastian",
  axoUrl + "?z=" + scale,
  200,
  200
);

var robotCount = 17;
var robots = [];
for (var i = 0; i < robotCount; i++) {
  var robot = createIframe(
    "robot" + (i + 1).toString(),
    "Robot " + (i + 1),
    axoUrl + "?z=" + scale,
    200,
    200
  );
  robots.push(robot);
}

window.addEventListener(
  "message",
  (e) => {
    // Handle the message
    if (typeof e.data === "object" && e.data.event == "axoStateChange") {
      console.log(`Axo state change incoming: ${e.data.value}`);
      if (!finishedJobs.includes(e.data.id)) {
        finishedJobs.push(e.data.id);
        robots.forEach((r) => {
          if (e.data.tokenId != r.tokenId && e.data.handle == "olivia") {
            r.contentWindow.postMessage(
              {
                event: "axoStateChange",
                action: e.data.action,
                value: e.data.value,
                tokenId: e.data.tokenId,
              },
              "*"
            );
            console.log(
              `Sent message from ${e.data.handle} to ${r.id} : ${e.data.action} : ${e.data.id}`
            );
          }
        });
      }
    }
  },
  false
);

function createIframe(id, label, url, width, height, onload = null) {
  var container = document.createElement("div");
  container.id = id + "-container";
  container.style.width = width;
  container.style.display = "inline-block";
  var iframe = document.createElement("iframe");
  iframe.id = id;
  iframe.onload = () => {
    var frame = document.getElementById(id);
    frame.contentWindow.postMessage({ event: "hello", value: id }, "*");

    if (onload) onload();
  };
  iframe.src = url;
  iframe.style.width = width;
  iframe.style.height = height;
  container.appendChild(iframe);
  var div = document.createElement("div");
  div.style.textAlign = "center";
  div.innerHTML = label;
  container.appendChild(div);
  document.body.appendChild(container);

  return iframe;
}