Discovery Requires Circumstance

Stories begin somewhere. Nobody was looking at my work. I created a Twitter account because marketing seemed necessary. As a consequence I read a retweet via @editionsatplay. It mentioned a program looking for new applicants.

the application site

A one year paid experience, the application is a web application, "Write it, design it, code it, move it, break it." The form contained a checkbox for wildcards. View Source revealed a secret puzzle. Solving the puzzle awarded a "Techno Crab" badge. The badge supposedly activated a pen tool but I couldn't get it to work. Maybe that was part of the challenge. I made an animation titled "Idempotent", and sent it off.

Idempotent. So clever. A shoo-in for sure.

A day elapsed. Then another. I discovered my animation was broken. It didn't play correctly and the console showed an error. I didn't mean to do that. It looked terrible. I addressed a tweet to one of the designers asking, "Does this count as breaking it?" A response arrived.

the response

That was confusing. Maybe I hadn't used the correct terminology. But then something unanticipated happened: attention. Profile views and tweet impressions. Twitter analytics measured an increase of 1000%.


Winter was finally coming to a close. The snow melted. When snow goes away it leaves a distinctive aftermath. Piles of gravel, salt, and soggy cigarette butts. Glacial till with snowplow scars and single mittens.

In a pile of detritus was a white ball. I picked it up. Solid rubber with a grey splotch. A lot of bounce. Probably a dog toy. I put it in my pocket. I thought tweet about this, and formed a plan to keep the ball close at all times. Because doing so increases the chances of discovering something new.


The 1000% percent increase in views wasn't impressive considering it came from zero. But it was big to me. Checking analytics was fun when signal dominated noise. The alternative is not. I followed new submissions with a competitive eye. Most were bland, like mine; but none were broken, like mine. And none had the Techno Crab stamp. I felt like king of the creativelab5 hashtag. Then this was published.

the both submission

Excellent presentation, casual phrasing, and three images demonstrating aspects of design. And somehow it included new shapes. I darkened. How could this have been made if the pen tool did not work?

Stay cool, Abrie. You could learn a lot from experts like this.

Immediately I opened the site and looked deeper. There was a tool called anchor, but I wasn't able to get that to work either. The tiny vertex manipulators were aggravating. The play bar disappeared at inconvienent times and reappeared when least expected. Heavy CPU usage made the computer whine. But there had to be a way to work around the problems. Others had found a way, anyway.

For insight into sites, the dev console is the window. The Chrome Dev Console remembers everything entered, including mistakes and typos. At first this was helpful, but then became pollution. Annoyed, I clicked through the menus looking for a remedy. And, as it turns out, the remedy is non-trivial. But the search took me to the Resources Panel, which has an entry named Local Storage, and within that was an interesting string.

local storage editor

Pretty-printing the contents of 'boardStates' reveals a JSON data structure, with nomenclature suggesting animation. For example, this is the default page.

The 'shapes' key contained lists of keyframes, stroke and fill parameters, point coordinates, and things called 'handles'. Perhaps there was a way to create an animation using tools other than the ones available.

{
    "shapes": [{
    "break": false,
    "duped": false,
    "fillColor": "#4285f4",
    "hierarchyIndex": null,
    "isLine": false,
    "keyframes": [{
        "ease": "easeInOutExpo",
        "fillColor": "#4285f4",
        "handlesMoved": true,
        "state": {
            "handleIn": [["Point", 16.9011, 6.97627]],
            "handleOut": [["Point",-16.9011, -6.97627]],
            "point": [["Point",456.21216, 287.17157]]
        },
        "strokeColor": "#4285f4",
        "strokeWidth": 1,
        "time": 0
    }],
    "numSides": 8,
    "strokeColor": "#4285f4",
    "strokeWidth": 1
    }]
}

Clearing the shape array of everything except the first element produced this JSON. When pasted into the local storage field, nothing happened. But after a page reload, the storage structure was deserialized and --- Voila!

simple circle, er, I mean a G.

code.

Encouraged, I made hapazard edits followed by page refreshes. Like combinatorial chemistry, stochastic search, or percussive repair. The workflow went like this:

  1. Select boardStates field, CMD-c, shift-tab to terminal
  2. pbpaste | python -m json.tool > pretty.json
  3. pico pretty.json
  4. jq -c . simple.json | pbcopy
  5. Select boardStates field, CMD-v, reload page.

Inefficient, but already better than nothing. Then somewhere between the refreshes, I accidently clicked the canvas and drew a line. The pen tool had started working. Maybe an unannounced bug bug fix had been deployed. Too late to turn back now.


I'd been in the coffee shop for an hour, and decorum suggested it was time to leave. Time to walk to another shop. The route goes through a park. Spring was near. Two kids were throwing a boomerang. Clearly they did not know what they were doing. "This thing sucks!" said one. I approached them and said "Could I show you how to throw that?" They handed it over. After daying something about not having thrown a boomerang in a long time, I threw it. It went in a perfect arc, and I caught it. I'd never caught a boomerang before. "Wow!" said the kids. I handed the boomerang back, "Now you try." The kid copied my technique and it flew out in a wide arc, curved up, around --- and then got stuck in a tree.


Because the animation data was editable it meant the UI could be avoided. But editing the structure by manual copy-pasting was tiring and error-prone. A more programmatic workflow was needed. The dev console's command prompt could help. A series of commands like this, for example, created a function for erasing all the shapes:

function clearShapes() {
    var boardStateString =
        window.localstorage.getItem('boardStates');

    var boardState = 
        JSON.parse(boardStateString);

    boardState.shapes = [];

    window.localstorage.setItem('boardStates',
        JSON.stringify(boardState));
}

That specific functionality was already present in the application, as all.deleteAll(). But when code can be stored in a function it's a step toward proceedural generation.

The page had to be reloaded to show changes. Reloading the page destroyed the javascript context. Therefore the functions needed to be re-entered on every reload. So it had become another copy-paste routine, but in a slightly different domain. Looking for a solution turned up: Snippets!

the snippets panel

Now we're talking. Right-click → Run. That's fun. I went wild, like a bull in a china shop, ignoring DRY and other rules of thumb. The code created arrays of shapes and colors. What did those handleIn/handleOut parameters do? Whatever it was, the result was interesting. Excessive and messy. Code without understanding.

what a mess

I was proud of it. It seemed worthy of submission. I clicked the button, signed the "Cover Letter", and waited for the request to complete. The request took a long time, then returned an empty error response. Tried again. Failure again. 500 Server Error. So the animation worked locally, but was trapped there. Unshareable. I must have discovered another "Break It" feature! I tweeted to the #creativelab5 people, expecting another 1000% increase in profile views.

what a mess


The following morning I passed the tree that caught the boomerang. The boomerang wasn't there anymore. But there was a basketball up there.

boomerang replacement

I laughed aloud. Amused by automatic stories. This one had fractal similarity. I mean, this scene is like the Peanuts' kite-eating tree. Those were my thoughts while I bounced the white ball. I wondered what would happen the next day. There could be another good turn in the story.


The post about the 500 Error did not generate buzz. No replies, no tweet impressions, no link clicks. Maybe it wasn't anything unexpected. That is to say: the error was returned because the submission was unacceptable. And that would be expected.

Edit the snippet. Reduce complexity and resubmit. Repeat until the submission goes through. Eventually it does. That proves it. The problem was invalid timeline values and too many shapes. A constraint on animation complexity. Reasonable, in retrospect. Embarassing too.

Begin again with a clean snippet. Generate a random set of coordinates. Add some random handleIns and handleOuts. Multiply by trigometric functions. Divide by a constant value. The result were fireworks. It looked like fireworks. How it worked was not completely clear. But to an outsider it would seem designed.

burst live. code.


Discoveries involving the ball began three days after I found it. Aside from becoming better at manipulating it, I also became familiar with particular details. Such as the sound made when bounced in different environments. It went splat when it landed in a puddle (which also substantially reduced the return energy). It produced beautiful long reverberations when bounced on a culvert sidewalk.

spectrogram of a tunnel bounce youtube.


Dividing two-dimensional coordinates by a third number is called foreshortening. I learned that reading about perspective projection. It's not something one needs to know. Toolkits like ThreeJS take care of it for you. But maybe applying it in a disciplined manner could tease 3D things from Creative Lab 5 application. Maybe a few more profile views could be collected.

Ah hell, I was becoming addicted. So it goes, into the small hours of the morning. Setting handle values to 0's will make sharp angles. Wikipedia described the role of a focal length multiplier. Be aware that if the z coorindate is zero, you'll be dividing by zero. If your z-coordinate is less than zero things are going to turn upside down. And then, suddenly, something worked.

boxillusion live. code.


The basketball was no longer in the tree. It was nowhere to be seen. Sometimes stories just end. Maybe the story could be continued as fiction. A bird took the basketball.

The white ball accompanied me everywhere. Sometimes it revealed surprising things. For instance, strangers would smile and greet. "Hello", "Nice day", and so on. I do not pretend to understand why that was happening. But maybe the reason is that it's disarming to see someone play. Neurochemical psychological sociology. It could be used as a confidence trick, if one were so inclined.

Once, while waiting in a subway station, I was approached by a man. It started out simply enough: Shalom. Shalom. About ten minutes later he had $200 of my dollars in his pocket. His baby daughter needed money for medication. He said I could stay in his house in Tel Aviv. He gave me a number I immediately recognized as fake, but I continued to play into his hands. We rode the subway together, in silence. Both of us knew what the other knew. It was awkard.

"What do you do for a living?" He asked me.

"I'm a programmer."

He seemed surprised, "Are you good it?"

"Good luck with your daughter," I said, and got off the train nine stops too early.


Equipped with javascript snippets, and TinyColor, I produced several prototypes and used them to spam the #creativelab5 hashtag. Profile views accumulated. A 2335% increase since last month. A ridiculous number, but I ate it up. Heady days. Serotonin rushes are normal. They feed the world.

live.code. live.code. live.code.
cWcMsq aIZcsx shv7V4

Then I found the basketball. It was hidden in undergrowth. I smiled and picked it up. But something was wrong. It was wet and limp. It had been stabbed. I dropped it, disgusted, and walked away. A few hours later I thought to take a picture of it. Because the basketball was part of a story. I returned to where it lay and photographed it. Then I picked it up and dropped it into a garbage can. When it fell into the trash it displaced air. The air stank of dog shit.

stabbed basketball


The workflow stopped working. Changes to the localstorage structure no longer persisted across reloads. Did the Creative Lab close a hole? Was there a hole? When this type of thing happens the thing to do is look at the source code. Sometimes that's a complicated endeavour. But in this case the code wasn't obfuscated. Clearly it wasn't a secret.

Text search for 'boardStates', and find:

this is useful

setStageFromLocal() ... Was that always there? Invoke the function and the stage populates with the contents of local storage. And the changes persited across reloads. Why did I not think to look for this before? What else was I blind to?

The function greatly increased productivity. Updates were instantenous and did not require reloads. They could even be applied while the animation was running.

Instant feedback encouraged experimentation. I wondered what the handleIn/handleOut parameters did. The source code contained references to PaperJS. A search for "paperjs handlein" provided a link to documentation about the parameter. So --- the handles defined points on tangent curves. But the application of that wasn't clear. An experiment was necessary. Write code to arrange tangent points in a circle. The results looked like flowers and leaves. That spawned a series of prototypes.

live code live code live code
yjJZBH Diu8WJ rnqNpZ

Bouncing the ball through a culvert tunnel was one of my favorite things. One morning I threw the ball forward and downward at a sharp angle. It bounced up, struck the ceiling, and bounced back toward me. The reversal of direction was counterintuitive. Surprises of such caliber are rare. It was wonderful. Experimentation implied the phenomenon involved spin imparted during the throw, but more study was necessary.


As the number of prototypes increased, common code elements became apparent. All the prototypes, for example, contained functions for accessing the localstorage structure. Those functions could be reused if stored in a single place. The natural soultion was to put shared code in a dedicated snippet. But then that snippet would need to be re-run whenever the page was reloaded. And as the number of snippets grew, the amount of right-click-runs became excessive. The time was right for a new solution.

The solution took some effort. It was more complicated than expected. Several technical details became stumbling blocks. I thought to myself, why am I going to all this trouble? Surely there was something more worthwhile. My book still needed a lot of attention. And then suddenly the local server sprang to life and served without error. A thrill. And, as a bonus, it could be used to load third party libraries such as tinycolor and smooth.js.

This is the snippet that interfaced with a local server:

addScriptSrc("https://localhost:4443/tinycolor.js");
addScriptSrc("https://localhost:4443/Smooth-0.1.7.js");
addScriptSrc("https://localhost:4443/boardinterface.js");
addScriptSrc("https://localhost:4443/main.js");

function addScriptSrc(src) {
    var preexisting = 
        document.querySelector(`script[src^='${src}']`);

    if (preexisting) {
        document.head.removeChild(preexisting);
    }

    var script = document.createElement('script');
    script.src = `${src}?cacheBust=${Date.now()}`;
    script.async = false;
    document.head.appendChild(script);
}

Using it required: simple-https-server.py, chrome-csp-disable and a self-signed certificate.


After nearly a week with the ball I'd discovered several ways to throw and catch it. One method was to bounce it forward from behind; then catch it in a downturned palm of the throwing arm. In order for that to work the ball needed to be thrown with force. During one attempt it struck a pebble and ricocheted off the path. It landed where a jeweled bracelet lay hidden in the grass. A material discovery. The bracelet was worthless, but my camera's sensor turned the copper and cubic zirconia into gold and diamonds.

treasure


A character began to follow me on Twitter. He was my first real follower. He was generous with likes. We entered into an exchange about hidden aspects of the Creative Lab 5 application. Such as the meaning of the six base-2 numbers surrounding the Techno Crab. And the utility of specific fields in a submitted application. For instance is_hacker activates the Techno Crab, but there was also a field named rain which did not have an obvious purpose.

Techno Rain
technocrab set rain to try

The message around the crab logo spells TECHNO. The rain flag could be set to true by using the following code before submitting.

var boardState = JSON.parse(
    window.localStorage.getItem('boardStates'));

extras['rain'] = true;
boardState.rain = true;

window.localStorage.setItem('boardStates',
    JSON.stringify(boardState));

But setting the rain flag to true did not appear to have any effect. I did not examine the subject further.


The upward trend of profile views stopped. The tweets did not attract comment or significant engagement. Perhaps I had overstayed my welcome. Motivation waned. It was a downturn. Then the urge to write returned. Writing usually provided insight. I began recording this story.

frozen blossoms

Freezing rain fell onto the city. Everything became coated with ice. Spring ground to a halt. All of it was happening because I had set the rain flag to true. I say that because a characteristic of humans is to discern connection and analogy. It was spurious, but the observation lingered. I bounced the ball over a wooden bridge. What was to say that there was no connection? Maybe there was an analogy with discoveries about scrambling or computational complexity and event horizons. The mathematics of anti-de sitter space seem impenetrable. The thoughts played while I bounced the white ball on bubbles of air under ice.

bubbleball framecap youtube


New submissions continued to flow onto twitter. Sometimes a remarkable one came through. Like this one by @clapinton

escher

Creations like that are intriguing. How were they made? I wanted to see what was inside them. View Source of a published application to see a <script> tag with javascript assigning a dictionary to a variable named shareData. This data cannot be extracted as JSON because it contains javascript. That fact took a few tries to understand. The way to read it is to use javascript eval. Generally speaking, that's a dangerous thing to do. But in this case it was probably ok. Once the shareData variable is available to the javascript context, it becomes a simple matter to copy it into the boardStates structure. Refreshing the stage then shows the animation, where it can be studied.

I used this technique to study the animations of @zachboth and @clapinton. They are clever. I'm not sure why that makes me sad. Likely jealousy.

@zachboth @clapinton
wireboth wirepinto

reverse engineer


One morning I went to the culvert to experiment with the bounce-back phenomenon. On the first throw the angle was too shallow. The ball did not reach the ceiling. It bounced forward, out of the tunnel, and plopped into the rushing stream. Gone. Anyone watching would have thought it was intentional. If it was or was not, it could not change a thing. It was clumsy. All I could think to do was to film where the ball was last seen. As the film rolled, the ball was underwater.

tunnel where the white ball was lost youtube.


The temperature began to climb, then broke zero. Spring gained strength. Trees shed their coats of ice. Cracking sounds filled the forest. Fragments and sheets came crashing down. It was dangerous. I walked into a stand of trees and stood there, listening to the noise of it all. It's not often one can watch while a world crumbles. A small piece fell from high up and struck my finger. It broke the skin and drew blood. I photographed my bloody finger, then deleted the photo.


I missed the company of the white ball. That was the final discovery --- that spending many hours with a thing results in attachment. Or maybe less a discovery than a reminder of things already learned. Whenever I passed the place it was last seen, I would peer into the water and look along the banks. But there was no hope of recovery.

Then, one morning, a few blocks away, I found a different ball. It was day-glo orange, fashioned like a miniature tennis ball. It could be irony or poetry. It was wet and disgusting, but I picked it up anyway. It did not bounce well.

I took it with me to a mall and washed it with liquid soap in a bathroom sink. I patted it with paper towel, then dried it with a Dyson Airblade.

Sometimes I take it from my pocket and look at it. Silly thing. Just a coincidence.

orangeball