all is

all probabilism is kenotism
all tritheism is geocentrism
all bonism is panzoism
all agathism is bullionism
all monophysitism is psychism
all monotheletism is annihilationism
all perfectibilism is solipsism
all immaterialism is hylicism
all hedonism is omnism
all pejorism is probabiliorism
all asceticism is absurdism
all laicism is the walrus
rules: run python script over and over until you hit the walrus
[source language=’python’]
class ContextFree(object):
def __init__(self):
self.rules = dict()
self.expansion = list()
# rules are stored in self.rules, a dictionary; the rules themselves are
# lists of expansions (which themselves are lists)
def add_rule(self, rule, expansion):
if rule in self.rules:
self.rules[rule].append(expansion)
else:
self.rules[rule] = [expansion]
def expand(self, start):
from random import choice
# if the starting rule was in our set of rules, then we can expand it
if start in self.rules:
possible_expansions = self.rules[start]
# grab one possible expansion
random_expansion = choice(possible_expansions)
# call this method again with the current element of the expansion
for elem in random_expansion:
self.expand(elem)
else:
# if the rule wasn’t found, then it’s a terminal: simply append the
# string to the expansion
self.expansion.append(start)
# utility method to run the expand method and return the results
def get_expansion(self, axiom):
self.expand(axiom)
return self.expansion

Sofya Yuditskaya

Sofy (@_the_s0urce_) is a site-specific media artist and educator working with sound, video, interactivity, projections, code, paper, and salvaged material. Her work focuses on techno-occult rituals, street performance, and participatory art. Sofy's performances enact and reframe hegemonies, she works with materials that exemplify our deep entanglement with petro-culture and technology’s affect on consciousness. She has worked on projects at Eyebeam, 3LD, the Netherlands Institute voor Media Kunst, Steim, ARS Electronica, Games for Learning Institute, The Guggenheim (NYC), The National Mall and has taught at GAFFTA, MoMA, NYU, Srishti, and the Rubin Museum. She is a PhD Candidate in Audio-Visual Composition at NYU GSAS currently on her Fulbright year at TheISRO in Bangalore

https://yuditskaya.com
Previous
Previous

I am sitting in a speech to text

Next
Next

4 obstructions to a mulligan