You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 KiB

In [30]:
import re, json

def text_to_list_of_paragraphs(path):
    with open(path) as f:
        text = f.read()

    return re.split(r"\n+", text)
    
def text_to_list_of_sentences (path):
    tt = text_to_list_of_paragraphs(path)
    text = []
    for para in tt:
        ss = para.strip().split(".")
        ss = [s.strip()+"." for s in ss if s.strip()]
        text.append(ss)
    return text

los = text_to_list_of_sentences("Visceral_Facades.txt")
with open("Visceral_Facades_los.json", "w") as fout:
    print (json.dumps(los, indent=2), file=fout)
In [32]:
import textwrap

WIDTH=40
def wrap_los (los, width=40):
    ret = []
    for sentences in los:
        llines = []
        ret.append(llines)
        for sentence in sentences:
            llines.append(textwrap.wrap(sentence, WIDTH))
    return ret
with open("Visceral_Facades_los.json") as fin:
    los = json.load(fin)

print(json.dumps(wrap_los(los), indent=2))
[
  [
    [
      "Visceral Facades: taking Matta-Clark's",
      "crowbar to software."
    ]
  ],
  [
    [
      "Architecture was the first art of",
      "measurement of time and space."
    ],
    [
      "Ancient megalithic structures such as",
      "Stonehenge are the ancestors of the",
      "machine you are reading this text on."
    ],
    [
      "Whereas computers build up from the",
      "scale of electrons rather than that of",
      "giant lumps of stone and the tasks they",
      "complete are abstract and changeable,",
      "rather than specific and singular, they",
      "both remain physical instantiations of",
      "abstract logic into which energy is fed",
      "in order to produce results to one or",
      "more of a range of potential",
      "calculations embodied in their",
      "structure."
    ]
  ],
  [
    [
      "Nowadays, as films such as Die Hard and",
      "novels such as Gridlock are so keen to",
      "show us, buildings and",
      "telecommunications are profoundly",
      "interrelated."
    ],
    [
      "As architecture is caught up in the mesh",
      "of the 'immaterial', of security and",
      "communications systems, of gating and",
      "processing (think of an airport) its",
      "connection to its originary development",
      "as geometry realised in synthetic space",
      "becomes ever more apparent."
    ],
    [
      "The proliferation of special effects",
      "that effect consciousness of time and",
      "distance and the perception of the",
      "environment in a context where maximum",
      "stratification combines in the same",
      "device with maximum fluidity, is",
      "presented as an abrupt break with an",
      "older style of architecture wherein",
      "power can be deciphered by the maximum",
      "possession of space."
    ]
  ],
  [
    [
      "In a short story, Tangents, science",
      "fiction writer Greg Bear introduces",
      "four-dimensional beings into a three",
      "dimensional shape: something which he",
      "likens to looking at fish through the",
      "corner of an aquarium."
    ],
    [
      "The shape that these fourth dimensional",
      "beings appear in is a normal, two storey",
      "house."
    ],
    [
      "The house is gradually, neatly, Swiss-",
      "cheesed by a series of cones, columns,",
      "and spheres as the dimensions intersect."
    ]
  ],
  [
    [
      "Possibly, this might be the kind of",
      "effect you'd worry about if you'd",
      "invited Gordon Matta-Clark around to",
      "your home."
    ],
    [
      "An artist who trained as an architect,",
      "Matta-Clark was born in New York City in",
      "March 1943 and died in 1978."
    ],
    [
      "His most prolific period, between 1971",
      "and 1976, occurred within a rich context",
      "of experimental and anti-commercial",
      "dematerialization in both art and",
      "architecture, (although certainly within",
      "the field of 'authorised' architecture,",
      "much of this work remained on a",
      "theoretical and propositional basis)."
    ],
    [
      "Matta-Clark carried out his",
      "investigations of architecture and space",
      "through performance, drawing, sculpture,",
      "photography, video, film and material",
      "interventions known as 'cuttings'."
    ]
  ],
  [
    [
      "One action carried out in 1974,",
      "Splitting, involved taking a simple",
      "detached wooden house in Englewood, a",
      "New York State dormitory town, and",
      "bisecting it."
    ],
    [
      "The house, already slated for",
      "demolition, is cut exactly in two, from",
      "the roof, down the walls and through the",
      "floors to the raised foundation of",
      "building blocks."
    ],
    [
      "In the short film which documents the",
      "process a shard of sunlight streams",
      "through the split, effacing the wall,",
      "energising the new structure."
    ],
    [
      "The next stage is to take the rear half",
      "of the house and, supporting it on",
      "jacks, gradually knock away the upper",
      "surface of the foundation at an angle of",
      "five degrees."
    ],
    [
      "The back of the house is then tilted",
      "away from the other half of the",
      "structure back onto the now sloping",
      "foundation."
    ],
    [
      "Throughout the film, Matta-Clark can be",
      "seen working away at the building."
    ],
    [
      "A scrawny longhair in jeans and boots",
      "doing with a simple toolkit the serious",
      "structural re-adjustment that only the",
      "most deranged of do-it-yourselfers can",
      "dream about."
    ]
  ],
  [
    [
      "Another short film, Conical Intersect,",
      "made in 1975 documents an intervention",
      "which is even more reminiscent of the",
      "transdimensional interference of",
      "Tangents."
    ],
    [
      "Made during the Paris Biennial in the",
      "area of Les Halles, tellingly close to",
      "the construction of the Centre George",
      "Pompidou - a politically inspired scheme",
      "reminiscent of that other artiste",
      "d\u00e9molisseur, Baron Hausmann - the cut",
      "probes into two adjoining seventeenth",
      "century 'mansions'."
    ],
    [
      "Appearing from the outside as a series",
      "of receding circles, the cut punctures",
      "the building at the fourth storey and",
      "moves upwards towards the sky."
    ],
    [
      "When the outer wall goes through, the",
      "film shows the trio of people working on",
      "the hole perform a brief can-can on a",
      "soon-to-be-demolished section of floor."
    ]
  ],
  [
    [
      "In a 1976 film, Substrait (Underground",
      "Dailies), Matta-Clark explored and",
      "documented some of the underground of",
      "New York City."
    ],
    [
      "Grand Central Station, 13th Street and",
      "the Croton Aqueduct are filmed to show",
      "the variety and complexity of the hidden",
      "spaces and tunnels in the metropolitan",
      "area."
    ],
    [
      "Somewhat reminiscent of the ultra-dull",
      "documentaries made by the Canadian",
      "National Film Board in the same period,",
      "this film develops an intimate concern",
      "with the material qualities of the",
      "structures under investigation, and",
      "perhaps provides for the New York sewage",
      "system a precursor to the geek art of",
      "the internet."
    ],
    [
      "It is possible to imagine a film of its",
      "travels through the nets made by a",
      "software worm, being of remarkable",
      "similarity."
    ]
  ],
  [
    [
      "Some of Matta-Clark's work could have",
      "only been produced by someone deeply",
      "familiar with the strange reality of",
      "realty."
    ],
    [
      "In Reality Properties: Fake Estates he",
      "bought up fifteen minuscule sections of",
      "land that had been left over in property",
      "deals, or that teetered just off the",
      "edges of architectural plans drawn",
      "slightly out-of-whack: a foot strip down",
      "somebody's driveway, and a square foot",
      "of sidewalk, tiny sections of kerbs and",
      "gutters."
    ],
    [
      "Buying up this ludicrous empire was",
      "again part of Matta-Clark's project of",
      "the structural activation of severed",
      "surfaces."
    ],
    [
      "It is also an example of the",
      "idiosyncratic manipulation of rule-based",
      "behaviour to achieve different ends."
    ]
  ],
  [
    [
      "Along with the dematerialised art that",
      "provided a context in which this work",
      "can be sensed, the period it was",
      "produced in was also the peak of minimal",
      "art."
    ],
    [
      "Whilst Matta-Clark's work is in part",
      "concerned with formalism, the",
      "application of procedures and the",
      "revelation of structural properties, it",
      "is precisely because his work is",
      "formally non-reductive and purposely",
      "heterogenic that it is profoundly at",
      "variance to an art that was only",
      "supposed to speak of itself and of the",
      "immaculate connoisseurship of its",
      "audience."
    ],
    [
      "This is an artwork that is exactly the",
      "reverse of autonomous."
    ],
    [
      "It is openly dependent on a network of",
      "coincidences and interconnectedness: on",
      "being seen by chance passers-by; on the",
      "receipt or avoidance of bureaucratic",
      "permissions; on the functioning of",
      "recording devices; on good weather; on",
      "not being discovered when acting in",
      "secret; on the theatre of its enaction",
      "being an oxygenation of the still",
      "smouldering embers of history."
    ],
    [
      "At the same time as it articulates the",
      "space in sculptural terms it also",
      "complexifies it in terms of its",
      "placehood, as an object, and within its",
      "social, chronological and economic",
      "contexts."
    ]
  ],
  [
    [
      "Knowing that there is freedom in",
      "suprise, it is along this fault line of",
      "rationality and the non-rational that",
      "Gordon Matta-Clark runs his fingers."
    ],
    [
      "Fingers which he also uses to tease",
      "another split - that between art and",
      "architecture."
    ],
    [
      "Comparable to his relationship to",
      "minimal art, rather than partaking in",
      "the functionalist urban sublime of the",
      "glass and steel skyscraper typified in",
      "the architecture of Mies van der Rohe -",
      "with its interior opened to make it more",
      "governable - Matta-Clark's work operates",
      "a dis-enclosure of urban space: its",
      "malfunctions, voids, shadows."
    ],
    [
      "The tension inherent in such spaces is",
      "portrayed well by Gilles Deleuze in",
      "describing \"any-space-whatever\" the",
      "half-urban, half-waste lands often used",
      "as sets and exteriors in post World War",
      "Two films: \"Any-space-whatever is a",
      "perfectly singular space, which has",
      "merely lost its homogeneity, that is,",
      "the principle of its metric relations or",
      "the connection of its own parts, so that",
      "linkages can be made in an infinite",
      "number of ways\" This tension between",
      "particularity and obliteration found in",
      "the European bombsite translated well",
      "into the conditions in which Matta-Clark",
      "worked out of necessity and choice:",
      "buildings eviscerated by the progress of",
      "urban restructuring."
    ]
  ],
  [
    [
      "\"There is a kind of complexity that",
      "comes from taking an otherwise",
      "completely normal, conventional, albeit",
      "anonymous situation and redefining it,",
      "retranslating it into overlapping and",
      "multiple readings of conditions past and",
      "present\"."
    ]
  ],
  [
    [
      "As an aside, this too easy lock-down",
      "into textuality implied by the use of",
      "the word 'reading' is of his time, (and",
      "one replicated in perpetuity by artists",
      "hungry for the valorising seal of",
      "textual authority) but it rather",
      "understates the multiple sensory affect",
      "of the work."
    ],
    [
      "It is this aspect, of working with",
      "material that is in the process of being",
      "made anonymous, generic - yet turning it",
      "into an engine of connotation - that is",
      "particularly suggestive for a context",
      "that, in its apparent dematerialization",
      "seems most likely to resist it:",
      "software."
    ]
  ],
  [
    [
      "Software lacks the easy evidence of",
      "time, of human habitation, of the",
      "connotations of familial, industrial or",
      "office life embedded in the structure of",
      "a building."
    ],
    [
      "As a geometry realised in synthetic",
      "space, it is an any-space-whatever, but",
      "dry-cleaned and prised out of time."
    ]
  ],
  [
    [
      "Use of the computer happens at many",
      "levels, both hard and soft."
    ],
    [
      "A crucial difference with how we",
      "traditionally understand architecture,",
      "rather than what it is becoming under",
      "the impact of information technologies,",
      "is that everything necessarily happens",
      "at human scale."
    ],
    [
      "That the size, and to a certain extent",
      "the organisation, of people has a",
      "determining effect on the shape of the",
      "building."
    ],
    [
      "Conversely, the axiomatics that channel",
      "and produce the behaviour necessary for",
      "use of computers happen at both human",
      "and subscopic scale."
    ],
    [
      "The hard organs of the computer: mouse,",
      "keyboard, modem, microphone, monitor,",
      "though all matched to greater or lesser",
      "extents to human form, all snake back to",
      "the CPU."
    ]
  ],
  [
    [
      "Whilst what is of interest here is an",
      "investigation of the moment of",
      "composition between user and computer,",
      "and not a reiteration of text-book",
      "schematics, it is worth noting that",
      "simply because they occur at the level",
      "of electrons the axes of software are",
      "impossible to find for the average user."
    ],
    [
      "Just as when watching a film we miss out",
      "the black lines in between the frames",
      "flashing past at 24 per second, the",
      "invisible walls of software are designed",
      "to remain inscrutable."
    ],
    [
      "However, the fact that these subscopic",
      "transformation of data inside the",
      "computer are simultaneously real and",
      "symbolic; where the most abstract of",
      "theoretical terms to be found in",
      "mathematics becomes a thing, allows the",
      "possibility of a kinaesthetic",
      "investigation."
    ],
    [
      "An investigation that opens up a chance",
      "for dialogue between the smooth running",
      "of the machine and material that might",
      "be thought of as contamination within",
      "the terms of its devices."
    ]
  ],
  [
    [
      "Much of the 'legitimate' writing and",
      "artistic production on information",
      "technology is concerned with expanding",
      "the application of the theoretical",
      "devices used to recognise replication",
      "and simulation, (what constitutes 'the",
      "real') and of those used to recognise",
      "surveillance."
    ],
    [
      "These themes, carried over most commonly",
      "from debates around photography and",
      "architecture, are of course suggestive",
      "and in some cases useful, but in the",
      "easiness of their translation we should",
      "not forget that they are moving into a",
      "context that subsumes them and is not",
      "marked by their boundaries."
    ],
    [
      "In acknowledging the distinct",
      "interconnectedness of the symbolic and",
      "material, this is also an approach which",
      "is opposed to the conception of",
      "'virtuality' being taken as the desired",
      "end state of digital technology: taking",
      "virtuality as a condition which is",
      "contained and made possible by the",
      "actuality of digital media."
    ]
  ],
  [
    [
      "To provide the skewed access to the",
      "machines that such an investigation",
      "requires we can siphon some fuel from",
      "the goings-on of Gordon Matta-Clark: use",
      "faults; disturb conventions; exploit",
      "idiosyncrasies."
    ]
  ],
  [
    [
      "Faults arise in systems when the full",
      "consequences of technical changes are",
      "not followed through before the changes",
      "are made, or are deliberately covered",
      "up."
    ],
    [
      "This is an enormous game of hiding and",
      "finding being played by a cast of",
      "millions and one which has wide",
      "ramifications."
    ],
    [
      "Perhaps the most crucial faultlines",
      "being traced at the moment are those",
      "around security: the world of minutiae",
      "that compose the integrity of existence",
      "in dataspace and the way it maps back",
      "onto everyday life."
    ]
  ],
  [
    [
      "The profoundest restructuring of",
      "existence is taking place at the levels",
      "of the electron and the gene."
    ],
    [
      "Technical complexity, commercial",
      "pressure and the mechanisms of",
      "expression management are blocking",
      "almost all real public discourse on the",
      "former."
    ],
    [
      "They are less able to do so to the",
      "latter."
    ]
  ],
  [
    [
      "Whether radical or reactionary,",
      "traditional political structures have,",
      "either deliberately or through drastic",
      "relevance-decay, abdicated almost all",
      "decision making in these areas to",
      "commercial interests."
    ],
    [
      "From a similar catalogue of stock",
      "characters to that of the artist, the",
      "pariah/hero figure of the hacker has",
      "largely set the pace for any critical",
      "understanding of the changes happening",
      "in and between information technologies."
    ]
  ],
  [
    [
      "Picking up a random copy of the hacker",
      "zine 2600 - summer 1996 - the scale and",
      "ramifications of issues being dealt with",
      "in this area becomes apparent."
    ],
    [
      "Subjects covered include: an editorial",
      "on the position of hackers in the legal",
      "system and media; the code of a LINUX",
      "program to block internet sites by",
      "flooding them with connection requests;",
      "a list of free phone carriers in",
      "Australia; acquiring phone services",
      "under imaginary names; the",
      "telecommunications infrastructure in",
      "Prague and Sarajevo; encryption;",
      "consumer data security; catching",
      "passwords to specific multi-user",
      "computer systems; passenger in-flight",
      "communications systems; phreaking smart",
      "pay-phones; starting a hacker scene; the",
      "transcription of part of a court case",
      "involving the show trial of hacker,",
      "Bernie S; plus pages of small ads and",
      "letters."
    ],
    [
      "(Perhaps noticeable in comparing the",
      "importance of these scenes with that of",
      "art is that the second-order commentary",
      "on the work comes mainly from the",
      "media/legal system rather than just",
      "critics)."
    ]
  ],
  [
    [
      "The faults identified by hackers and",
      "others, where ethico-aesthetic",
      "situations are compounded under sheer",
      "pressure into technical ones, are",
      "implicated in wider mechanisms."
    ],
    [
      "These technical situations can be",
      "investigated from any point or",
      "development within these wider",
      "mechanisms regardless of the degree of",
      "technical proficiency."
    ],
    [
      "Cracking open technical situations with",
      "the wider social conditions within which",
      "they occur is an increasingly necessary",
      "task."
    ],
    [
      "Doing so in a manner that creates a",
      "transversal relationship between",
      "different, perhaps walled-off,",
      "components, and that intimately works",
      "the technical with other kinds of",
      "material or symbolic devices is",
      "something that remains to be developed."
    ],
    [
      "Tracking the faults, the severed",
      "surfaces, of technology is one way in",
      "which this can begin to be done."
    ]
  ],
  [
    [
      "This intimacy, as well as concerning",
      "itself with the cracks and disjunctures,",
      "the faults in systems, can also become",
      "involved in situations where they appear",
      "to be most smooth."
    ],
    [
      "For the average user, the conventions of",
      "personal computers appear secure,",
      "rational, almost natural, if a little",
      "awkward and tricky at times."
    ],
    [
      "Like many social protocols, computer use",
      "is a skill which is forgetful of its",
      "acquisition."
    ],
    [
      "Perhaps that user can remember back to",
      "when they first got hold of a machine,",
      "when they were waving a mouse in the air",
      "to get the cursor to move towards them;",
      "afraid to touch the wrong key in case it",
      "damaged something; saving files all over",
      "the place; trying to draw curves in",
      "Pagemaker; putting floppies in upside-",
      "down; trying to work a cracked copy of",
      "CuBase with something missing; learning",
      "how to conform to the machine in order",
      "to make the machine conform to them."
    ]
  ],
  [
    [
      "In computer interface design the form-",
      "function fusion is made on the basis of",
      "averages, a focus grouped reality based",
      "on peoples' understanding of a context",
      "in which it is impossible for them to",
      "function unless they develop the",
      "understanding already been mapped out",
      "for them."
    ],
    [
      "Perhaps in this context, the user will",
      "always be the ideal user, because if",
      "they are not ideal - if, within this",
      "context at least, they do not conform to",
      "the ideal - they won't be a user."
    ]
  ],
  [
    [
      "Interface design is a discipline that",
      "aspires to saying nothing."
    ],
    [
      "Instead of trying to crack this",
      "invisibility, one technique for",
      "investigation is to tease it into",
      "overproduction."
    ],
    [
      "Why use one mouse-click when ten-",
      "thousand will do? Why use any visual",
      "information when navigation is perfectly",
      "possible with sound alone? Why just look",
      "at the interface, why not print it out",
      "and wear it? Why read text on screen",
      "when a far better technology is paper?",
      "Why use a cursor when the object you're",
      "actually pointing at can function",
      "perfectly well to indicate the mouse",
      "position?."
    ]
  ],
  [
    [
      "In any other social context, what",
      "because of the arbitrary nature of the",
      "abstract machine appear as protocols,",
      "would be revealed as mannerisms."
    ],
    [
      "(Take a fast taxi through the ruined",
      "neighbourhoods of cyberspace by",
      "travelling through emulators of old",
      "computers: punch a hole in the surface",
      "of your shiny new machine by loading up",
      "the black hole of a 1k ZX81)."
    ],
    [
      "When the construction of machines from",
      "the fundamental objects of the hardware:",
      "bits, bytes, words, addresses, upwards",
      "are realised to be synthetic rather than",
      "given, or even necessarily rational -",
      "though produced through the application",
      "of rationalisation, logic - they become",
      "subject to wider possibilities for",
      "change."
    ],
    [
      "Software as an aggregate of very small",
      "sensory experiences and devices becomes",
      "an engine, not just of connotation, but",
      "of transformation."
    ]
  ],
  [
    [
      "Some of those transformations in",
      "occurrence can be sensed in the sheer",
      "idiosyncrasy of much software."
    ],
    [
      "In the Atrocity Exhibition and other",
      "books, J.G. Ballard mixes flat,",
      "technical descriptions of body positions",
      "as they come into composition with the",
      "synthetic geometry of architecture,",
      "automobiles, furnishings, to produce an",
      "investigation of machined erotics."
    ],
    [
      "He continues and intensifies the",
      "Surrealist stratagem of cutting together",
      "transgressed functionalities in order to",
      "regain entry to the order of the",
      "symbolic."
    ],
    [
      "To an objective observer, the transitory",
      "point at which a thigh comes into",
      "convergence with a table also suggests",
      "the way in which the original Microsoft",
      "Windows interface was bolted on top of",
      "the old DOS language."
    ],
    [
      "The tectonic impact of two neural",
      "landscapes performs an operation called",
      "progress."
    ],
    [
      "The software is tricked into doing",
      "something more than it was intended for."
    ],
    [
      "Instead of dramatic breaks, hacks and",
      "incrementally adaptive mutations are",
      "often the way things are made to move",
      "forward."
    ],
    [
      "(For instance on Apple computers, the",
      "desktop is already being bypassed by the",
      "absorption of some of the functions of",
      "the finder into various applications."
    ],
    [
      "From being a grossly over-metaphoric",
      "grand entrance hall, it has become a",
      "back alley)."
    ],
    [
      "When they work well they are elegant",
      "usable collages."
    ],
    [
      "Often they are botch jobs."
    ],
    [
      "In both cases, the points at which the",
      "systems mesh, collide, or repel, can, at",
      "the points of confused demarcation,",
      "produce secret gardens, car parks, lamps",
      "that fuck."
    ]
  ],
  [
    [
      "Idiosyncrasies can also develop when a",
      "software system is applied to a",
      "situation in toto."
    ],
    [
      "Perhaps most obviously, databases."
    ],
    [
      "The production of software dedicated to",
      "knowledge organisation and information",
      "retrieval, a field largely seen as the",
      "domain of linguists and computer",
      "scientists, immediately brings with it a",
      "range of problematics that are at once",
      "both cultural and technical."
    ],
    [
      "The technology underlying search engines",
      "and databases - set theory - is based on",
      "creating classifications of information",
      "according to arbitrarily or contingently",
      "meaningful schemes."
    ],
    [
      "It is in the application and development",
      "of those schemes with all their",
      "inevitable biases and quirks that the",
      "aesthetics of classification lies."
    ]
  ],
  [
    [
      "Attuned to quantifying; organising;",
      "isolating and drawing into",
      "relationships, particular cases of the",
      "possible and working them till they",
      "bleed some kind of relevance, databases",
      "exist firmly on the cusp of the rational",
      "and non-rational."
    ],
    [
      "When the Subjective Exercise Experiences",
      "Scale locks onto the Human Genome",
      "Initiative processing library stock-",
      "holding data: prepare for something",
      "approaching poetry."
    ]
  ],
  [
    [
      "Perhaps in some ways sensing into the",
      "future this destratification of",
      "conventions is the architecture of the",
      "internet."
    ],
    [
      "This, (almost despite its position",
      "within and between various political,",
      "commercial and bureaucratic formations)",
      "after all, is a network which functions",
      "on a basis of being broken, continuously",
      "finding the shortest route between",
      "nodes: even as a squatter will always",
      "see the empty buildings on any street",
      "before those that are full."
    ],
    [
      "At these shifting, transitory points",
      "where sensoriums intermesh, repel, clash",
      "and resynthesize are the possibilities",
      "for a ludic transdimensionality."
    ],
    [
      "Knock through a wall, and beyond the",
      "clouds of brick dust clogging up and",
      "exciting your eyes, tongue, palate and",
      "throat, there's another universe: an",
      "empty, unclassifiable complex seething",
      "with life."
    ]
  ],
  [
    [
      "Matthew Fuller, May 1997."
    ]
  ],
  [
    [
      "I/O/D."
    ]
  ]
]
In [35]:
import sys

def esc (t):
    return t.replace('"', r'\"')

def dump_lua_table (s,fout=sys.stdout):
    print(f'text={{}}', file=fout)
    for pid, p in enumerate(s):
        print (f'text[{pid}]={{}}', file=fout)
        for sid, s in enumerate(p):
            print (f'text[{pid}][{sid}]={{}}', file=fout)
            for lid, l in enumerate(s):
                print (f'text[{pid}][{sid}][{lid}]="{esc(l)}"', file=fout)
In [36]:
dump_lua_table(wrap_los(los))
text[]={}
text[0]={}
text[0][0]={}
text[0][0][0]="Visceral Facades: taking Matta-Clark's"
text[0][0][1]="crowbar to software."
text[1]={}
text[1][0]={}
text[1][0][0]="Architecture was the first art of"
text[1][0][1]="measurement of time and space."
text[1][1]={}
text[1][1][0]="Ancient megalithic structures such as"
text[1][1][1]="Stonehenge are the ancestors of the"
text[1][1][2]="machine you are reading this text on."
text[1][2]={}
text[1][2][0]="Whereas computers build up from the"
text[1][2][1]="scale of electrons rather than that of"
text[1][2][2]="giant lumps of stone and the tasks they"
text[1][2][3]="complete are abstract and changeable,"
text[1][2][4]="rather than specific and singular, they"
text[1][2][5]="both remain physical instantiations of"
text[1][2][6]="abstract logic into which energy is fed"
text[1][2][7]="in order to produce results to one or"
text[1][2][8]="more of a range of potential"
text[1][2][9]="calculations embodied in their"
text[1][2][10]="structure."
text[2]={}
text[2][0]={}
text[2][0][0]="Nowadays, as films such as Die Hard and"
text[2][0][1]="novels such as Gridlock are so keen to"
text[2][0][2]="show us, buildings and"
text[2][0][3]="telecommunications are profoundly"
text[2][0][4]="interrelated."
text[2][1]={}
text[2][1][0]="As architecture is caught up in the mesh"
text[2][1][1]="of the 'immaterial', of security and"
text[2][1][2]="communications systems, of gating and"
text[2][1][3]="processing (think of an airport) its"
text[2][1][4]="connection to its originary development"
text[2][1][5]="as geometry realised in synthetic space"
text[2][1][6]="becomes ever more apparent."
text[2][2]={}
text[2][2][0]="The proliferation of special effects"
text[2][2][1]="that effect consciousness of time and"
text[2][2][2]="distance and the perception of the"
text[2][2][3]="environment in a context where maximum"
text[2][2][4]="stratification combines in the same"
text[2][2][5]="device with maximum fluidity, is"
text[2][2][6]="presented as an abrupt break with an"
text[2][2][7]="older style of architecture wherein"
text[2][2][8]="power can be deciphered by the maximum"
text[2][2][9]="possession of space."
text[3]={}
text[3][0]={}
text[3][0][0]="In a short story, Tangents, science"
text[3][0][1]="fiction writer Greg Bear introduces"
text[3][0][2]="four-dimensional beings into a three"
text[3][0][3]="dimensional shape: something which he"
text[3][0][4]="likens to looking at fish through the"
text[3][0][5]="corner of an aquarium."
text[3][1]={}
text[3][1][0]="The shape that these fourth dimensional"
text[3][1][1]="beings appear in is a normal, two storey"
text[3][1][2]="house."
text[3][2]={}
text[3][2][0]="The house is gradually, neatly, Swiss-"
text[3][2][1]="cheesed by a series of cones, columns,"
text[3][2][2]="and spheres as the dimensions intersect."
text[4]={}
text[4][0]={}
text[4][0][0]="Possibly, this might be the kind of"
text[4][0][1]="effect you'd worry about if you'd"
text[4][0][2]="invited Gordon Matta-Clark around to"
text[4][0][3]="your home."
text[4][1]={}
text[4][1][0]="An artist who trained as an architect,"
text[4][1][1]="Matta-Clark was born in New York City in"
text[4][1][2]="March 1943 and died in 1978."
text[4][2]={}
text[4][2][0]="His most prolific period, between 1971"
text[4][2][1]="and 1976, occurred within a rich context"
text[4][2][2]="of experimental and anti-commercial"
text[4][2][3]="dematerialization in both art and"
text[4][2][4]="architecture, (although certainly within"
text[4][2][5]="the field of 'authorised' architecture,"
text[4][2][6]="much of this work remained on a"
text[4][2][7]="theoretical and propositional basis)."
text[4][3]={}
text[4][3][0]="Matta-Clark carried out his"
text[4][3][1]="investigations of architecture and space"
text[4][3][2]="through performance, drawing, sculpture,"
text[4][3][3]="photography, video, film and material"
text[4][3][4]="interventions known as 'cuttings'."
text[5]={}
text[5][0]={}
text[5][0][0]="One action carried out in 1974,"
text[5][0][1]="Splitting, involved taking a simple"
text[5][0][2]="detached wooden house in Englewood, a"
text[5][0][3]="New York State dormitory town, and"
text[5][0][4]="bisecting it."
text[5][1]={}
text[5][1][0]="The house, already slated for"
text[5][1][1]="demolition, is cut exactly in two, from"
text[5][1][2]="the roof, down the walls and through the"
text[5][1][3]="floors to the raised foundation of"
text[5][1][4]="building blocks."
text[5][2]={}
text[5][2][0]="In the short film which documents the"
text[5][2][1]="process a shard of sunlight streams"
text[5][2][2]="through the split, effacing the wall,"
text[5][2][3]="energising the new structure."
text[5][3]={}
text[5][3][0]="The next stage is to take the rear half"
text[5][3][1]="of the house and, supporting it on"
text[5][3][2]="jacks, gradually knock away the upper"
text[5][3][3]="surface of the foundation at an angle of"
text[5][3][4]="five degrees."
text[5][4]={}
text[5][4][0]="The back of the house is then tilted"
text[5][4][1]="away from the other half of the"
text[5][4][2]="structure back onto the now sloping"
text[5][4][3]="foundation."
text[5][5]={}
text[5][5][0]="Throughout the film, Matta-Clark can be"
text[5][5][1]="seen working away at the building."
text[5][6]={}
text[5][6][0]="A scrawny longhair in jeans and boots"
text[5][6][1]="doing with a simple toolkit the serious"
text[5][6][2]="structural re-adjustment that only the"
text[5][6][3]="most deranged of do-it-yourselfers can"
text[5][6][4]="dream about."
text[6]={}
text[6][0]={}
text[6][0][0]="Another short film, Conical Intersect,"
text[6][0][1]="made in 1975 documents an intervention"
text[6][0][2]="which is even more reminiscent of the"
text[6][0][3]="transdimensional interference of"
text[6][0][4]="Tangents."
text[6][1]={}
text[6][1][0]="Made during the Paris Biennial in the"
text[6][1][1]="area of Les Halles, tellingly close to"
text[6][1][2]="the construction of the Centre George"
text[6][1][3]="Pompidou - a politically inspired scheme"
text[6][1][4]="reminiscent of that other artiste"
text[6][1][5]="démolisseur, Baron Hausmann - the cut"
text[6][1][6]="probes into two adjoining seventeenth"
text[6][1][7]="century 'mansions'."
text[6][2]={}
text[6][2][0]="Appearing from the outside as a series"
text[6][2][1]="of receding circles, the cut punctures"
text[6][2][2]="the building at the fourth storey and"
text[6][2][3]="moves upwards towards the sky."
text[6][3]={}
text[6][3][0]="When the outer wall goes through, the"
text[6][3][1]="film shows the trio of people working on"
text[6][3][2]="the hole perform a brief can-can on a"
text[6][3][3]="soon-to-be-demolished section of floor."
text[7]={}
text[7][0]={}
text[7][0][0]="In a 1976 film, Substrait (Underground"
text[7][0][1]="Dailies), Matta-Clark explored and"
text[7][0][2]="documented some of the underground of"
text[7][0][3]="New York City."
text[7][1]={}
text[7][1][0]="Grand Central Station, 13th Street and"
text[7][1][1]="the Croton Aqueduct are filmed to show"
text[7][1][2]="the variety and complexity of the hidden"
text[7][1][3]="spaces and tunnels in the metropolitan"
text[7][1][4]="area."
text[7][2]={}
text[7][2][0]="Somewhat reminiscent of the ultra-dull"
text[7][2][1]="documentaries made by the Canadian"
text[7][2][2]="National Film Board in the same period,"
text[7][2][3]="this film develops an intimate concern"
text[7][2][4]="with the material qualities of the"
text[7][2][5]="structures under investigation, and"
text[7][2][6]="perhaps provides for the New York sewage"
text[7][2][7]="system a precursor to the geek art of"
text[7][2][8]="the internet."
text[7][3]={}
text[7][3][0]="It is possible to imagine a film of its"
text[7][3][1]="travels through the nets made by a"
text[7][3][2]="software worm, being of remarkable"
text[7][3][3]="similarity."
text[8]={}
text[8][0]={}
text[8][0][0]="Some of Matta-Clark's work could have"
text[8][0][1]="only been produced by someone deeply"
text[8][0][2]="familiar with the strange reality of"
text[8][0][3]="realty."
text[8][1]={}
text[8][1][0]="In Reality Properties: Fake Estates he"
text[8][1][1]="bought up fifteen minuscule sections of"
text[8][1][2]="land that had been left over in property"
text[8][1][3]="deals, or that teetered just off the"
text[8][1][4]="edges of architectural plans drawn"
text[8][1][5]="slightly out-of-whack: a foot strip down"
text[8][1][6]="somebody's driveway, and a square foot"
text[8][1][7]="of sidewalk, tiny sections of kerbs and"
text[8][1][8]="gutters."
text[8][2]={}
text[8][2][0]="Buying up this ludicrous empire was"
text[8][2][1]="again part of Matta-Clark's project of"
text[8][2][2]="the structural activation of severed"
text[8][2][3]="surfaces."
text[8][3]={}
text[8][3][0]="It is also an example of the"
text[8][3][1]="idiosyncratic manipulation of rule-based"
text[8][3][2]="behaviour to achieve different ends."
text[9]={}
text[9][0]={}
text[9][0][0]="Along with the dematerialised art that"
text[9][0][1]="provided a context in which this work"
text[9][0][2]="can be sensed, the period it was"
text[9][0][3]="produced in was also the peak of minimal"
text[9][0][4]="art."
text[9][1]={}
text[9][1][0]="Whilst Matta-Clark's work is in part"
text[9][1][1]="concerned with formalism, the"
text[9][1][2]="application of procedures and the"
text[9][1][3]="revelation of structural properties, it"
text[9][1][4]="is precisely because his work is"
text[9][1][5]="formally non-reductive and purposely"
text[9][1][6]="heterogenic that it is profoundly at"
text[9][1][7]="variance to an art that was only"
text[9][1][8]="supposed to speak of itself and of the"
text[9][1][9]="immaculate connoisseurship of its"
text[9][1][10]="audience."
text[9][2]={}
text[9][2][0]="This is an artwork that is exactly the"
text[9][2][1]="reverse of autonomous."
text[9][3]={}
text[9][3][0]="It is openly dependent on a network of"
text[9][3][1]="coincidences and interconnectedness: on"
text[9][3][2]="being seen by chance passers-by; on the"
text[9][3][3]="receipt or avoidance of bureaucratic"
text[9][3][4]="permissions; on the functioning of"
text[9][3][5]="recording devices; on good weather; on"
text[9][3][6]="not being discovered when acting in"
text[9][3][7]="secret; on the theatre of its enaction"
text[9][3][8]="being an oxygenation of the still"
text[9][3][9]="smouldering embers of history."
text[9][4]={}
text[9][4][0]="At the same time as it articulates the"
text[9][4][1]="space in sculptural terms it also"
text[9][4][2]="complexifies it in terms of its"
text[9][4][3]="placehood, as an object, and within its"
text[9][4][4]="social, chronological and economic"
text[9][4][5]="contexts."
text[10]={}
text[10][0]={}
text[10][0][0]="Knowing that there is freedom in"
text[10][0][1]="suprise, it is along this fault line of"
text[10][0][2]="rationality and the non-rational that"
text[10][0][3]="Gordon Matta-Clark runs his fingers."
text[10][1]={}
text[10][1][0]="Fingers which he also uses to tease"
text[10][1][1]="another split - that between art and"
text[10][1][2]="architecture."
text[10][2]={}
text[10][2][0]="Comparable to his relationship to"
text[10][2][1]="minimal art, rather than partaking in"
text[10][2][2]="the functionalist urban sublime of the"
text[10][2][3]="glass and steel skyscraper typified in"
text[10][2][4]="the architecture of Mies van der Rohe -"
text[10][2][5]="with its interior opened to make it more"
text[10][2][6]="governable - Matta-Clark's work operates"
text[10][2][7]="a dis-enclosure of urban space: its"
text[10][2][8]="malfunctions, voids, shadows."
text[10][3]={}
text[10][3][0]="The tension inherent in such spaces is"
text[10][3][1]="portrayed well by Gilles Deleuze in"
text[10][3][2]="describing \"any-space-whatever\" the"
text[10][3][3]="half-urban, half-waste lands often used"
text[10][3][4]="as sets and exteriors in post World War"
text[10][3][5]="Two films: \"Any-space-whatever is a"
text[10][3][6]="perfectly singular space, which has"
text[10][3][7]="merely lost its homogeneity, that is,"
text[10][3][8]="the principle of its metric relations or"
text[10][3][9]="the connection of its own parts, so that"
text[10][3][10]="linkages can be made in an infinite"
text[10][3][11]="number of ways\" This tension between"
text[10][3][12]="particularity and obliteration found in"
text[10][3][13]="the European bombsite translated well"
text[10][3][14]="into the conditions in which Matta-Clark"
text[10][3][15]="worked out of necessity and choice:"
text[10][3][16]="buildings eviscerated by the progress of"
text[10][3][17]="urban restructuring."
text[11]={}
text[11][0]={}
text[11][0][0]="\"There is a kind of complexity that"
text[11][0][1]="comes from taking an otherwise"
text[11][0][2]="completely normal, conventional, albeit"
text[11][0][3]="anonymous situation and redefining it,"
text[11][0][4]="retranslating it into overlapping and"
text[11][0][5]="multiple readings of conditions past and"
text[11][0][6]="present\"."
text[12]={}
text[12][0]={}
text[12][0][0]="As an aside, this too easy lock-down"
text[12][0][1]="into textuality implied by the use of"
text[12][0][2]="the word 'reading' is of his time, (and"
text[12][0][3]="one replicated in perpetuity by artists"
text[12][0][4]="hungry for the valorising seal of"
text[12][0][5]="textual authority) but it rather"
text[12][0][6]="understates the multiple sensory affect"
text[12][0][7]="of the work."
text[12][1]={}
text[12][1][0]="It is this aspect, of working with"
text[12][1][1]="material that is in the process of being"
text[12][1][2]="made anonymous, generic - yet turning it"
text[12][1][3]="into an engine of connotation - that is"
text[12][1][4]="particularly suggestive for a context"
text[12][1][5]="that, in its apparent dematerialization"
text[12][1][6]="seems most likely to resist it:"
text[12][1][7]="software."
text[13]={}
text[13][0]={}
text[13][0][0]="Software lacks the easy evidence of"
text[13][0][1]="time, of human habitation, of the"
text[13][0][2]="connotations of familial, industrial or"
text[13][0][3]="office life embedded in the structure of"
text[13][0][4]="a building."
text[13][1]={}
text[13][1][0]="As a geometry realised in synthetic"
text[13][1][1]="space, it is an any-space-whatever, but"
text[13][1][2]="dry-cleaned and prised out of time."
text[14]={}
text[14][0]={}
text[14][0][0]="Use of the computer happens at many"
text[14][0][1]="levels, both hard and soft."
text[14][1]={}
text[14][1][0]="A crucial difference with how we"
text[14][1][1]="traditionally understand architecture,"
text[14][1][2]="rather than what it is becoming under"
text[14][1][3]="the impact of information technologies,"
text[14][1][4]="is that everything necessarily happens"
text[14][1][5]="at human scale."
text[14][2]={}
text[14][2][0]="That the size, and to a certain extent"
text[14][2][1]="the organisation, of people has a"
text[14][2][2]="determining effect on the shape of the"
text[14][2][3]="building."
text[14][3]={}
text[14][3][0]="Conversely, the axiomatics that channel"
text[14][3][1]="and produce the behaviour necessary for"
text[14][3][2]="use of computers happen at both human"
text[14][3][3]="and subscopic scale."
text[14][4]={}
text[14][4][0]="The hard organs of the computer: mouse,"
text[14][4][1]="keyboard, modem, microphone, monitor,"
text[14][4][2]="though all matched to greater or lesser"
text[14][4][3]="extents to human form, all snake back to"
text[14][4][4]="the CPU."
text[15]={}
text[15][0]={}
text[15][0][0]="Whilst what is of interest here is an"
text[15][0][1]="investigation of the moment of"
text[15][0][2]="composition between user and computer,"
text[15][0][3]="and not a reiteration of text-book"
text[15][0][4]="schematics, it is worth noting that"
text[15][0][5]="simply because they occur at the level"
text[15][0][6]="of electrons the axes of software are"
text[15][0][7]="impossible to find for the average user."
text[15][1]={}
text[15][1][0]="Just as when watching a film we miss out"
text[15][1][1]="the black lines in between the frames"
text[15][1][2]="flashing past at 24 per second, the"
text[15][1][3]="invisible walls of software are designed"
text[15][1][4]="to remain inscrutable."
text[15][2]={}
text[15][2][0]="However, the fact that these subscopic"
text[15][2][1]="transformation of data inside the"
text[15][2][2]="computer are simultaneously real and"
text[15][2][3]="symbolic; where the most abstract of"
text[15][2][4]="theoretical terms to be found in"
text[15][2][5]="mathematics becomes a thing, allows the"
text[15][2][6]="possibility of a kinaesthetic"
text[15][2][7]="investigation."
text[15][3]={}
text[15][3][0]="An investigation that opens up a chance"
text[15][3][1]="for dialogue between the smooth running"
text[15][3][2]="of the machine and material that might"
text[15][3][3]="be thought of as contamination within"
text[15][3][4]="the terms of its devices."
text[16]={}
text[16][0]={}
text[16][0][0]="Much of the 'legitimate' writing and"
text[16][0][1]="artistic production on information"
text[16][0][2]="technology is concerned with expanding"
text[16][0][3]="the application of the theoretical"
text[16][0][4]="devices used to recognise replication"
text[16][0][5]="and simulation, (what constitutes 'the"
text[16][0][6]="real') and of those used to recognise"
text[16][0][7]="surveillance."
text[16][1]={}
text[16][1][0]="These themes, carried over most commonly"
text[16][1][1]="from debates around photography and"
text[16][1][2]="architecture, are of course suggestive"
text[16][1][3]="and in some cases useful, but in the"
text[16][1][4]="easiness of their translation we should"
text[16][1][5]="not forget that they are moving into a"
text[16][1][6]="context that subsumes them and is not"
text[16][1][7]="marked by their boundaries."
text[16][2]={}
text[16][2][0]="In acknowledging the distinct"
text[16][2][1]="interconnectedness of the symbolic and"
text[16][2][2]="material, this is also an approach which"
text[16][2][3]="is opposed to the conception of"
text[16][2][4]="'virtuality' being taken as the desired"
text[16][2][5]="end state of digital technology: taking"
text[16][2][6]="virtuality as a condition which is"
text[16][2][7]="contained and made possible by the"
text[16][2][8]="actuality of digital media."
text[17]={}
text[17][0]={}
text[17][0][0]="To provide the skewed access to the"
text[17][0][1]="machines that such an investigation"
text[17][0][2]="requires we can siphon some fuel from"
text[17][0][3]="the goings-on of Gordon Matta-Clark: use"
text[17][0][4]="faults; disturb conventions; exploit"
text[17][0][5]="idiosyncrasies."
text[18]={}
text[18][0]={}
text[18][0][0]="Faults arise in systems when the full"
text[18][0][1]="consequences of technical changes are"
text[18][0][2]="not followed through before the changes"
text[18][0][3]="are made, or are deliberately covered"
text[18][0][4]="up."
text[18][1]={}
text[18][1][0]="This is an enormous game of hiding and"
text[18][1][1]="finding being played by a cast of"
text[18][1][2]="millions and one which has wide"
text[18][1][3]="ramifications."
text[18][2]={}
text[18][2][0]="Perhaps the most crucial faultlines"
text[18][2][1]="being traced at the moment are those"
text[18][2][2]="around security: the world of minutiae"
text[18][2][3]="that compose the integrity of existence"
text[18][2][4]="in dataspace and the way it maps back"
text[18][2][5]="onto everyday life."
text[19]={}
text[19][0]={}
text[19][0][0]="The profoundest restructuring of"
text[19][0][1]="existence is taking place at the levels"
text[19][0][2]="of the electron and the gene."
text[19][1]={}
text[19][1][0]="Technical complexity, commercial"
text[19][1][1]="pressure and the mechanisms of"
text[19][1][2]="expression management are blocking"
text[19][1][3]="almost all real public discourse on the"
text[19][1][4]="former."
text[19][2]={}
text[19][2][0]="They are less able to do so to the"
text[19][2][1]="latter."
text[20]={}
text[20][0]={}
text[20][0][0]="Whether radical or reactionary,"
text[20][0][1]="traditional political structures have,"
text[20][0][2]="either deliberately or through drastic"
text[20][0][3]="relevance-decay, abdicated almost all"
text[20][0][4]="decision making in these areas to"
text[20][0][5]="commercial interests."
text[20][1]={}
text[20][1][0]="From a similar catalogue of stock"
text[20][1][1]="characters to that of the artist, the"
text[20][1][2]="pariah/hero figure of the hacker has"
text[20][1][3]="largely set the pace for any critical"
text[20][1][4]="understanding of the changes happening"
text[20][1][5]="in and between information technologies."
text[21]={}
text[21][0]={}
text[21][0][0]="Picking up a random copy of the hacker"
text[21][0][1]="zine 2600 - summer 1996 - the scale and"
text[21][0][2]="ramifications of issues being dealt with"
text[21][0][3]="in this area becomes apparent."
text[21][1]={}
text[21][1][0]="Subjects covered include: an editorial"
text[21][1][1]="on the position of hackers in the legal"
text[21][1][2]="system and media; the code of a LINUX"
text[21][1][3]="program to block internet sites by"
text[21][1][4]="flooding them with connection requests;"
text[21][1][5]="a list of free phone carriers in"
text[21][1][6]="Australia; acquiring phone services"
text[21][1][7]="under imaginary names; the"
text[21][1][8]="telecommunications infrastructure in"
text[21][1][9]="Prague and Sarajevo; encryption;"
text[21][1][10]="consumer data security; catching"
text[21][1][11]="passwords to specific multi-user"
text[21][1][12]="computer systems; passenger in-flight"
text[21][1][13]="communications systems; phreaking smart"
text[21][1][14]="pay-phones; starting a hacker scene; the"
text[21][1][15]="transcription of part of a court case"
text[21][1][16]="involving the show trial of hacker,"
text[21][1][17]="Bernie S; plus pages of small ads and"
text[21][1][18]="letters."
text[21][2]={}
text[21][2][0]="(Perhaps noticeable in comparing the"
text[21][2][1]="importance of these scenes with that of"
text[21][2][2]="art is that the second-order commentary"
text[21][2][3]="on the work comes mainly from the"
text[21][2][4]="media/legal system rather than just"
text[21][2][5]="critics)."
text[22]={}
text[22][0]={}
text[22][0][0]="The faults identified by hackers and"
text[22][0][1]="others, where ethico-aesthetic"
text[22][0][2]="situations are compounded under sheer"
text[22][0][3]="pressure into technical ones, are"
text[22][0][4]="implicated in wider mechanisms."
text[22][1]={}
text[22][1][0]="These technical situations can be"
text[22][1][1]="investigated from any point or"
text[22][1][2]="development within these wider"
text[22][1][3]="mechanisms regardless of the degree of"
text[22][1][4]="technical proficiency."
text[22][2]={}
text[22][2][0]="Cracking open technical situations with"
text[22][2][1]="the wider social conditions within which"
text[22][2][2]="they occur is an increasingly necessary"
text[22][2][3]="task."
text[22][3]={}
text[22][3][0]="Doing so in a manner that creates a"
text[22][3][1]="transversal relationship between"
text[22][3][2]="different, perhaps walled-off,"
text[22][3][3]="components, and that intimately works"
text[22][3][4]="the technical with other kinds of"
text[22][3][5]="material or symbolic devices is"
text[22][3][6]="something that remains to be developed."
text[22][4]={}
text[22][4][0]="Tracking the faults, the severed"
text[22][4][1]="surfaces, of technology is one way in"
text[22][4][2]="which this can begin to be done."
text[23]={}
text[23][0]={}
text[23][0][0]="This intimacy, as well as concerning"
text[23][0][1]="itself with the cracks and disjunctures,"
text[23][0][2]="the faults in systems, can also become"
text[23][0][3]="involved in situations where they appear"
text[23][0][4]="to be most smooth."
text[23][1]={}
text[23][1][0]="For the average user, the conventions of"
text[23][1][1]="personal computers appear secure,"
text[23][1][2]="rational, almost natural, if a little"
text[23][1][3]="awkward and tricky at times."
text[23][2]={}
text[23][2][0]="Like many social protocols, computer use"
text[23][2][1]="is a skill which is forgetful of its"
text[23][2][2]="acquisition."
text[23][3]={}
text[23][3][0]="Perhaps that user can remember back to"
text[23][3][1]="when they first got hold of a machine,"
text[23][3][2]="when they were waving a mouse in the air"
text[23][3][3]="to get the cursor to move towards them;"
text[23][3][4]="afraid to touch the wrong key in case it"
text[23][3][5]="damaged something; saving files all over"
text[23][3][6]="the place; trying to draw curves in"
text[23][3][7]="Pagemaker; putting floppies in upside-"
text[23][3][8]="down; trying to work a cracked copy of"
text[23][3][9]="CuBase with something missing; learning"
text[23][3][10]="how to conform to the machine in order"
text[23][3][11]="to make the machine conform to them."
text[24]={}
text[24][0]={}
text[24][0][0]="In computer interface design the form-"
text[24][0][1]="function fusion is made on the basis of"
text[24][0][2]="averages, a focus grouped reality based"
text[24][0][3]="on peoples' understanding of a context"
text[24][0][4]="in which it is impossible for them to"
text[24][0][5]="function unless they develop the"
text[24][0][6]="understanding already been mapped out"
text[24][0][7]="for them."
text[24][1]={}
text[24][1][0]="Perhaps in this context, the user will"
text[24][1][1]="always be the ideal user, because if"
text[24][1][2]="they are not ideal - if, within this"
text[24][1][3]="context at least, they do not conform to"
text[24][1][4]="the ideal - they won't be a user."
text[25]={}
text[25][0]={}
text[25][0][0]="Interface design is a discipline that"
text[25][0][1]="aspires to saying nothing."
text[25][1]={}
text[25][1][0]="Instead of trying to crack this"
text[25][1][1]="invisibility, one technique for"
text[25][1][2]="investigation is to tease it into"
text[25][1][3]="overproduction."
text[25][2]={}
text[25][2][0]="Why use one mouse-click when ten-"
text[25][2][1]="thousand will do? Why use any visual"
text[25][2][2]="information when navigation is perfectly"
text[25][2][3]="possible with sound alone? Why just look"
text[25][2][4]="at the interface, why not print it out"
text[25][2][5]="and wear it? Why read text on screen"
text[25][2][6]="when a far better technology is paper?"
text[25][2][7]="Why use a cursor when the object you're"
text[25][2][8]="actually pointing at can function"
text[25][2][9]="perfectly well to indicate the mouse"
text[25][2][10]="position?."
text[26]={}
text[26][0]={}
text[26][0][0]="In any other social context, what"
text[26][0][1]="because of the arbitrary nature of the"
text[26][0][2]="abstract machine appear as protocols,"
text[26][0][3]="would be revealed as mannerisms."
text[26][1]={}
text[26][1][0]="(Take a fast taxi through the ruined"
text[26][1][1]="neighbourhoods of cyberspace by"
text[26][1][2]="travelling through emulators of old"
text[26][1][3]="computers: punch a hole in the surface"
text[26][1][4]="of your shiny new machine by loading up"
text[26][1][5]="the black hole of a 1k ZX81)."
text[26][2]={}
text[26][2][0]="When the construction of machines from"
text[26][2][1]="the fundamental objects of the hardware:"
text[26][2][2]="bits, bytes, words, addresses, upwards"
text[26][2][3]="are realised to be synthetic rather than"
text[26][2][4]="given, or even necessarily rational -"
text[26][2][5]="though produced through the application"
text[26][2][6]="of rationalisation, logic - they become"
text[26][2][7]="subject to wider possibilities for"
text[26][2][8]="change."
text[26][3]={}
text[26][3][0]="Software as an aggregate of very small"
text[26][3][1]="sensory experiences and devices becomes"
text[26][3][2]="an engine, not just of connotation, but"
text[26][3][3]="of transformation."
text[27]={}
text[27][0]={}
text[27][0][0]="Some of those transformations in"
text[27][0][1]="occurrence can be sensed in the sheer"
text[27][0][2]="idiosyncrasy of much software."
text[27][1]={}
text[27][1][0]="In the Atrocity Exhibition and other"
text[27][1][1]="books, J.G. Ballard mixes flat,"
text[27][1][2]="technical descriptions of body positions"
text[27][1][3]="as they come into composition with the"
text[27][1][4]="synthetic geometry of architecture,"
text[27][1][5]="automobiles, furnishings, to produce an"
text[27][1][6]="investigation of machined erotics."
text[27][2]={}
text[27][2][0]="He continues and intensifies the"
text[27][2][1]="Surrealist stratagem of cutting together"
text[27][2][2]="transgressed functionalities in order to"
text[27][2][3]="regain entry to the order of the"
text[27][2][4]="symbolic."
text[27][3]={}
text[27][3][0]="To an objective observer, the transitory"
text[27][3][1]="point at which a thigh comes into"
text[27][3][2]="convergence with a table also suggests"
text[27][3][3]="the way in which the original Microsoft"
text[27][3][4]="Windows interface was bolted on top of"
text[27][3][5]="the old DOS language."
text[27][4]={}
text[27][4][0]="The tectonic impact of two neural"
text[27][4][1]="landscapes performs an operation called"
text[27][4][2]="progress."
text[27][5]={}
text[27][5][0]="The software is tricked into doing"
text[27][5][1]="something more than it was intended for."
text[27][6]={}
text[27][6][0]="Instead of dramatic breaks, hacks and"
text[27][6][1]="incrementally adaptive mutations are"
text[27][6][2]="often the way things are made to move"
text[27][6][3]="forward."
text[27][7]={}
text[27][7][0]="(For instance on Apple computers, the"
text[27][7][1]="desktop is already being bypassed by the"
text[27][7][2]="absorption of some of the functions of"
text[27][7][3]="the finder into various applications."
text[27][8]={}
text[27][8][0]="From being a grossly over-metaphoric"
text[27][8][1]="grand entrance hall, it has become a"
text[27][8][2]="back alley)."
text[27][9]={}
text[27][9][0]="When they work well they are elegant"
text[27][9][1]="usable collages."
text[27][10]={}
text[27][10][0]="Often they are botch jobs."
text[27][11]={}
text[27][11][0]="In both cases, the points at which the"
text[27][11][1]="systems mesh, collide, or repel, can, at"
text[27][11][2]="the points of confused demarcation,"
text[27][11][3]="produce secret gardens, car parks, lamps"
text[27][11][4]="that fuck."
text[28]={}
text[28][0]={}
text[28][0][0]="Idiosyncrasies can also develop when a"
text[28][0][1]="software system is applied to a"
text[28][0][2]="situation in toto."
text[28][1]={}
text[28][1][0]="Perhaps most obviously, databases."
text[28][2]={}
text[28][2][0]="The production of software dedicated to"
text[28][2][1]="knowledge organisation and information"
text[28][2][2]="retrieval, a field largely seen as the"
text[28][2][3]="domain of linguists and computer"
text[28][2][4]="scientists, immediately brings with it a"
text[28][2][5]="range of problematics that are at once"
text[28][2][6]="both cultural and technical."
text[28][3]={}
text[28][3][0]="The technology underlying search engines"
text[28][3][1]="and databases - set theory - is based on"
text[28][3][2]="creating classifications of information"
text[28][3][3]="according to arbitrarily or contingently"
text[28][3][4]="meaningful schemes."
text[28][4]={}
text[28][4][0]="It is in the application and development"
text[28][4][1]="of those schemes with all their"
text[28][4][2]="inevitable biases and quirks that the"
text[28][4][3]="aesthetics of classification lies."
text[29]={}
text[29][0]={}
text[29][0][0]="Attuned to quantifying; organising;"
text[29][0][1]="isolating and drawing into"
text[29][0][2]="relationships, particular cases of the"
text[29][0][3]="possible and working them till they"
text[29][0][4]="bleed some kind of relevance, databases"
text[29][0][5]="exist firmly on the cusp of the rational"
text[29][0][6]="and non-rational."
text[29][1]={}
text[29][1][0]="When the Subjective Exercise Experiences"
text[29][1][1]="Scale locks onto the Human Genome"
text[29][1][2]="Initiative processing library stock-"
text[29][1][3]="holding data: prepare for something"
text[29][1][4]="approaching poetry."
text[30]={}
text[30][0]={}
text[30][0][0]="Perhaps in some ways sensing into the"
text[30][0][1]="future this destratification of"
text[30][0][2]="conventions is the architecture of the"
text[30][0][3]="internet."
text[30][1]={}
text[30][1][0]="This, (almost despite its position"
text[30][1][1]="within and between various political,"
text[30][1][2]="commercial and bureaucratic formations)"
text[30][1][3]="after all, is a network which functions"
text[30][1][4]="on a basis of being broken, continuously"
text[30][1][5]="finding the shortest route between"
text[30][1][6]="nodes: even as a squatter will always"
text[30][1][7]="see the empty buildings on any street"
text[30][1][8]="before those that are full."
text[30][2]={}
text[30][2][0]="At these shifting, transitory points"
text[30][2][1]="where sensoriums intermesh, repel, clash"
text[30][2][2]="and resynthesize are the possibilities"
text[30][2][3]="for a ludic transdimensionality."
text[30][3]={}
text[30][3][0]="Knock through a wall, and beyond the"
text[30][3][1]="clouds of brick dust clogging up and"
text[30][3][2]="exciting your eyes, tongue, palate and"
text[30][3][3]="throat, there's another universe: an"
text[30][3][4]="empty, unclassifiable complex seething"
text[30][3][5]="with life."
text[31]={}
text[31][0]={}
text[31][0][0]="Matthew Fuller, May 1997."
text[32]={}
text[32][0]={}
text[32][0][0]="I/O/D."
In [39]:
with open("Visceral_Facades_3d.lua", "w") as fout:
    dump_lua_table(wrap_los(los), fout)
In [12]:
 
In [12]:
 
In [12]:
 
In [12]:
 
In [12]:
with open("visceral_facades.lua", "w") as fout:
    print ("text={}", file=fout)
    for i,p in enumerate(tt):
        ep = p.strip().replace('"', r'\"')
        print (f'text[{i}]="{ep}"', file=fout)

Now with textwrap

In [4]:
with open("Visceral_Facades.txt") as f:
    text = f.read()
tt = re.split(r"\n+", text)

import textwrap

WIDTH=40

for i,p in enumerate(tt):
    p = p.strip()
    lines = textwrap.wrap(p, WIDTH)
    for line in lines:
        print (line)
Visceral Facades: taking Matta-Clark's
crowbar to software.
Architecture was the first art of
measurement of time and space. Ancient
megalithic structures such as Stonehenge
are the ancestors of the machine you are
reading this text on. Whereas computers
build up from the scale of electrons
rather than that of giant lumps of stone
and the tasks they complete are abstract
and changeable, rather than specific and
singular, they both remain physical
instantiations of abstract logic into
which energy is fed in order to produce
results to one or more of a range of
potential calculations embodied in their
structure.
Nowadays, as films such as Die Hard and
novels such as Gridlock are so keen to
show us, buildings and
telecommunications are profoundly
interrelated. As architecture is caught
up in the mesh of the 'immaterial', of
security and communications systems, of
gating and processing (think of an
airport) its connection to its originary
development as geometry realised in
synthetic space becomes ever more
apparent. The proliferation of special
effects that effect consciousness of
time and distance and the perception of
the environment in a context where
maximum stratification combines in the
same device with maximum fluidity, is
presented as an abrupt break with an
older style of architecture wherein
power can be deciphered by the maximum
possession of space.
In a short story, Tangents, science
fiction writer Greg Bear introduces
four-dimensional beings into a three
dimensional shape: something which he
likens to looking at fish through the
corner of an aquarium. The shape that
these fourth dimensional beings appear
in is a normal, two storey house. The
house is gradually, neatly, Swiss-
cheesed by a series of cones, columns,
and spheres as the dimensions intersect.
Possibly, this might be the kind of
effect you'd worry about if you'd
invited Gordon Matta-Clark around to
your home. An artist who trained as an
architect, Matta-Clark was born in New
York City in March 1943 and died in
1978. His most prolific period, between
1971 and 1976, occurred within a rich
context of experimental and anti-
commercial dematerialization in both art
and architecture, (although certainly
within the field of 'authorised'
architecture, much of this work remained
on a theoretical and propositional
basis). Matta-Clark carried out his
investigations of architecture and space
through performance, drawing, sculpture,
photography, video, film and material
interventions known as 'cuttings'.
One action carried out in 1974,
Splitting, involved taking a simple
detached wooden house in Englewood, a
New York State dormitory town, and
bisecting it. The house, already slated
for demolition, is cut exactly in two,
from the roof, down the walls and
through the floors to the raised
foundation of building blocks. In the
short film which documents the process a
shard of sunlight streams through the
split, effacing the wall, energising the
new structure. The next stage is to take
the rear half of the house and,
supporting it on jacks, gradually knock
away the upper surface of the foundation
at an angle of five degrees. The back of
the house is then tilted away from the
other half of the structure back onto
the now sloping foundation. Throughout
the film, Matta-Clark can be seen
working away at the building. A scrawny
longhair in jeans and boots doing with a
simple toolkit the serious structural
re-adjustment that only the most
deranged of do-it-yourselfers can dream
about.
Another short film, Conical Intersect,
made in 1975 documents an intervention
which is even more reminiscent of the
transdimensional interference of
Tangents. Made during the Paris Biennial
in the area of Les Halles, tellingly
close to the construction of the Centre
George Pompidou - a politically inspired
scheme reminiscent of that other artiste
démolisseur, Baron Hausmann - the cut
probes into two adjoining seventeenth
century 'mansions'. Appearing from the
outside as a series of receding circles,
the cut punctures the building at the
fourth storey and moves upwards towards
the sky. When the outer wall goes
through, the film shows the trio of
people working on the hole perform a
brief can-can on a soon-to-be-demolished
section of floor.
In a 1976 film, Substrait (Underground
Dailies), Matta-Clark explored and
documented some of the underground of
New York City. Grand Central Station,
13th Street and the Croton Aqueduct are
filmed to show the variety and
complexity of the hidden spaces and
tunnels in the metropolitan area.
Somewhat reminiscent of the ultra-dull
documentaries made by the Canadian
National Film Board in the same period,
this film develops an intimate concern
with the material qualities of the
structures under investigation, and
perhaps provides for the New York sewage
system a precursor to the geek art of
the internet. It is possible to imagine
a film of its travels through the nets
made by a software worm, being of
remarkable similarity.
Some of Matta-Clark's work could have
only been produced by someone deeply
familiar with the strange reality of
realty. In Reality Properties: Fake
Estates he bought up fifteen minuscule
sections of land that had been left over
in property deals, or that teetered just
off the edges of architectural plans
drawn slightly out-of-whack: a foot
strip down somebody's driveway, and a
square foot of sidewalk, tiny sections
of kerbs and gutters. Buying up this
ludicrous empire was again part of
Matta-Clark's project of the structural
activation of severed surfaces. It is
also an example of the idiosyncratic
manipulation of rule-based behaviour to
achieve different ends.
Along with the dematerialised art that
provided a context in which this work
can be sensed, the period it was
produced in was also the peak of minimal
art. Whilst Matta-Clark's work is in
part concerned with formalism, the
application of procedures and the
revelation of structural properties, it
is precisely because his work is
formally non-reductive and purposely
heterogenic that it is profoundly at
variance to an art that was only
supposed to speak of itself and of the
immaculate connoisseurship of its
audience. This is an artwork that is
exactly the reverse of autonomous. It is
openly dependent on a network of
coincidences and interconnectedness: on
being seen by chance passers-by; on the
receipt or avoidance of bureaucratic
permissions; on the functioning of
recording devices; on good weather; on
not being discovered when acting in
secret; on the theatre of its enaction
being an oxygenation of the still
smouldering embers of history. At the
same time as it articulates the space in
sculptural terms it also complexifies it
in terms of its placehood, as an object,
and within its social, chronological and
economic contexts.
Knowing that there is freedom in
suprise, it is along this fault line of
rationality and the non-rational that
Gordon Matta-Clark runs his fingers.
Fingers which he also uses to tease
another split - that between art and
architecture. Comparable to his
relationship to minimal art, rather than
partaking in the functionalist urban
sublime of the glass and steel
skyscraper typified in the architecture
of Mies van der Rohe - with its interior
opened to make it more governable -
Matta-Clark's work operates a dis-
enclosure of urban space: its
malfunctions, voids, shadows. The
tension inherent in such spaces is
portrayed well by Gilles Deleuze in
describing "any-space-whatever" the
half-urban, half-waste lands often used
as sets and exteriors in post World War
Two films: "Any-space-whatever is a
perfectly singular space, which has
merely lost its homogeneity, that is,
the principle of its metric relations or
the connection of its own parts, so that
linkages can be made in an infinite
number of ways" This tension between
particularity and obliteration found in
the European bombsite translated well
into the conditions in which Matta-Clark
worked out of necessity and choice:
buildings eviscerated by the progress of
urban restructuring.
"There is a kind of complexity that
comes from taking an otherwise
completely normal, conventional, albeit
anonymous situation and redefining it,
retranslating it into overlapping and
multiple readings of conditions past and
present"
As an aside, this too easy lock-down
into textuality implied by the use of
the word 'reading' is of his time, (and
one replicated in perpetuity by artists
hungry for the valorising seal of
textual authority) but it rather
understates the multiple sensory affect
of the work. It is this aspect, of
working with material that is in the
process of being made anonymous, generic
- yet turning it into an engine of
connotation - that is particularly
suggestive for a context that, in its
apparent dematerialization seems most
likely to resist it: software.
Software lacks the easy evidence of
time, of human habitation, of the
connotations of familial, industrial or
office life embedded in the structure of
a building. As a geometry realised in
synthetic space, it is an any-space-
whatever, but dry-cleaned and prised out
of time.
Use of the computer happens at many
levels, both hard and soft. A crucial
difference with how we traditionally
understand architecture, rather than
what it is becoming under the impact of
information technologies, is that
everything necessarily happens at human
scale. That the size, and to a certain
extent the organisation, of people has a
determining effect on the shape of the
building. Conversely, the axiomatics
that channel and produce the behaviour
necessary for use of computers happen at
both human and subscopic scale. The hard
organs of the computer: mouse, keyboard,
modem, microphone, monitor, though all
matched to greater or lesser extents to
human form, all snake back to the CPU.
Whilst what is of interest here is an
investigation of the moment of
composition between user and computer,
and not a reiteration of text-book
schematics, it is worth noting that
simply because they occur at the level
of electrons the axes of software are
impossible to find for the average user.
Just as when watching a film we miss out
the black lines in between the frames
flashing past at 24 per second, the
invisible walls of software are designed
to remain inscrutable. However, the fact
that these subscopic transformation of
data inside the computer are
simultaneously real and symbolic; where
the most abstract of theoretical terms
to be found in mathematics becomes a
thing, allows the possibility of a
kinaesthetic investigation. An
investigation that opens up a chance for
dialogue between the smooth running of
the machine and material that might be
thought of as contamination within the
terms of its devices.
Much of the 'legitimate' writing and
artistic production on information
technology is concerned with expanding
the application of the theoretical
devices used to recognise replication
and simulation, (what constitutes 'the
real') and of those used to recognise
surveillance. These themes, carried over
most commonly from debates around
photography and architecture, are of
course suggestive and in some cases
useful, but in the easiness of their
translation we should not forget that
they are moving into a context that
subsumes them and is not marked by their
boundaries. In acknowledging the
distinct interconnectedness of the
symbolic and material, this is also an
approach which is opposed to the
conception of 'virtuality' being taken
as the desired end state of digital
technology: taking virtuality as a
condition which is contained and made
possible by the actuality of digital
media.
To provide the skewed access to the
machines that such an investigation
requires we can siphon some fuel from
the goings-on of Gordon Matta-Clark: use
faults; disturb conventions; exploit
idiosyncrasies.
Faults arise in systems when the full
consequences of technical changes are
not followed through before the changes
are made, or are deliberately covered
up. This is an enormous game of hiding
and finding being played by a cast of
millions and one which has wide
ramifications. Perhaps the most crucial
faultlines being traced at the moment
are those around security: the world of
minutiae that compose the integrity of
existence in dataspace and the way it
maps back onto everyday life.
The profoundest restructuring of
existence is taking place at the levels
of the electron and the gene. Technical
complexity, commercial pressure and the
mechanisms of expression management are
blocking almost all real public
discourse on the former. They are less
able to do so to the latter.
Whether radical or reactionary,
traditional political structures have,
either deliberately or through drastic
relevance-decay, abdicated almost all
decision making in these areas to
commercial interests. From a similar
catalogue of stock characters to that of
the artist, the pariah/hero figure of
the hacker has largely set the pace for
any critical understanding of the
changes happening in and between
information technologies.
Picking up a random copy of the hacker
zine 2600 - summer 1996 - the scale and
ramifications of issues being dealt with
in this area becomes apparent. Subjects
covered include: an editorial on the
position of hackers in the legal system
and media; the code of a LINUX program
to block internet sites by flooding them
with connection requests; a list of free
phone carriers in Australia; acquiring
phone services under imaginary names;
the telecommunications infrastructure in
Prague and Sarajevo; encryption;
consumer data security; catching
passwords to specific multi-user
computer systems; passenger in-flight
communications systems; phreaking smart
pay-phones; starting a hacker scene; the
transcription of part of a court case
involving the show trial of hacker,
Bernie S; plus pages of small ads and
letters. (Perhaps noticeable in
comparing the importance of these scenes
with that of art is that the second-
order commentary on the work comes
mainly from the media/legal system
rather than just critics).
The faults identified by hackers and
others, where ethico-aesthetic
situations are compounded under sheer
pressure into technical ones, are
implicated in wider mechanisms. These
technical situations can be investigated
from any point or development within
these wider mechanisms regardless of the
degree of technical proficiency.
Cracking open technical situations with
the wider social conditions within which
they occur is an increasingly necessary
task. Doing so in a manner that creates
a transversal relationship between
different, perhaps walled-off,
components, and that intimately works
the technical with other kinds of
material or symbolic devices is
something that remains to be developed.
Tracking the faults, the severed
surfaces, of technology is one way in
which this can begin to be done.
This intimacy, as well as concerning
itself with the cracks and disjunctures,
the faults in systems, can also become
involved in situations where they appear
to be most smooth. For the average user,
the conventions of personal computers
appear secure, rational, almost natural,
if a little awkward and tricky at times.
Like many social protocols, computer use
is a skill which is forgetful of its
acquisition. Perhaps that user can
remember back to when they first got
hold of a machine, when they were waving
a mouse in the air to get the cursor to
move towards them; afraid to touch the
wrong key in case it damaged something;
saving files all over the place; trying
to draw curves in Pagemaker; putting
floppies in upside-down; trying to work
a cracked copy of CuBase with something
missing; learning how to conform to the
machine in order to make the machine
conform to them...
In computer interface design the form-
function fusion is made on the basis of
averages, a focus grouped reality based
on peoples' understanding of a context
in which it is impossible for them to
function unless they develop the
understanding already been mapped out
for them. Perhaps in this context, the
user will always be the ideal user,
because if they are not ideal - if,
within this context at least, they do
not conform to the ideal - they won't be
a user.
Interface design is a discipline that
aspires to saying nothing. Instead of
trying to crack this invisibility, one
technique for investigation is to tease
it into overproduction. Why use one
mouse-click when ten-thousand will do?
Why use any visual information when
navigation is perfectly possible with
sound alone? Why just look at the
interface, why not print it out and wear
it? Why read text on screen when a far
better technology is paper? Why use a
cursor when the object you're actually
pointing at can function perfectly well
to indicate the mouse position?
In any other social context, what
because of the arbitrary nature of the
abstract machine appear as protocols,
would be revealed as mannerisms. (Take a
fast taxi through the ruined
neighbourhoods of cyberspace by
travelling through emulators of old
computers: punch a hole in the surface
of your shiny new machine by loading up
the black hole of a 1k ZX81). When the
construction of machines from the
fundamental objects of the hardware:
bits, bytes, words, addresses, upwards
are realised to be synthetic rather than
given, or even necessarily rational -
though produced through the application
of rationalisation, logic - they become
subject to wider possibilities for
change. Software as an aggregate of very
small sensory experiences and devices
becomes an engine, not just of
connotation, but of transformation.
Some of those transformations in
occurrence can be sensed in the sheer
idiosyncrasy of much software. In the
Atrocity Exhibition and other books,
J.G. Ballard mixes flat, technical
descriptions of body positions as they
come into composition with the synthetic
geometry of architecture, automobiles,
furnishings, to produce an investigation
of machined erotics. He continues and
intensifies the Surrealist stratagem of
cutting together transgressed
functionalities in order to regain entry
to the order of the symbolic. To an
objective observer, the transitory point
at which a thigh comes into convergence
with a table also suggests the way in
which the original Microsoft Windows
interface was bolted on top of the old
DOS language. The tectonic impact of two
neural landscapes performs an operation
called progress. The software is tricked
into doing something more than it was
intended for. Instead of dramatic
breaks, hacks and incrementally adaptive
mutations are often the way things are
made to move forward. (For instance on
Apple computers, the desktop is already
being bypassed by the absorption of some
of the functions of the finder into
various applications. From being a
grossly over-metaphoric grand entrance
hall, it has become a back alley). When
they work well they are elegant usable
collages. Often they are botch jobs. In
both cases, the points at which the
systems mesh, collide, or repel, can, at
the points of confused demarcation,
produce secret gardens, car parks, lamps
that fuck.
Idiosyncrasies can also develop when a
software system is applied to a
situation in toto. Perhaps most
obviously, databases. The production of
software dedicated to knowledge
organisation and information retrieval,
a field largely seen as the domain of
linguists and computer scientists,
immediately brings with it a range of
problematics that are at once both
cultural and technical. The technology
underlying search engines and databases
- set theory - is based on creating
classifications of information according
to arbitrarily or contingently
meaningful schemes. It is in the
application and development of those
schemes with all their inevitable biases
and quirks that the aesthetics of
classification lies.
Attuned to quantifying; organising;
isolating and drawing into
relationships, particular cases of the
possible and working them till they
bleed some kind of relevance, databases
exist firmly on the cusp of the rational
and non-rational. When the Subjective
Exercise Experiences Scale locks onto
the Human Genome Initiative processing
library stock-holding data: prepare for
something approaching poetry.
Perhaps in some ways sensing into the
future this destratification of
conventions is the architecture of the
internet. This, (almost despite its
position within and between various
political, commercial and bureaucratic
formations) after all, is a network
which functions on a basis of being
broken, continuously finding the
shortest route between nodes: even as a
squatter will always see the empty
buildings on any street before those
that are full. At these shifting,
transitory points where sensoriums
intermesh, repel, clash and resynthesize
are the possibilities for a ludic
transdimensionality. Knock through a
wall, and beyond the clouds of brick
dust clogging up and exciting your eyes,
tongue, palate and throat, there's
another universe: an empty,
unclassifiable complex seething with
life.
Matthew Fuller, May 1997
I/O/D
In [5]:
WIDTH=40

with open("visceral_facades.lua", "w") as fout:
    print ("text={}", file=fout)
    for pid,p in enumerate(tt):
        p = p.strip()
        lines = textwrap.wrap(p, WIDTH)
        print (f'text[{pid}]={{}}', file=fout)
        for lineid, line in enumerate(lines):
            print (f'text[{pid}][{lineid}]="{esc(line)}"', file=fout)
In [ ]: