Reading for format involves the delamination of media composites. (Tenen, Plaintext, 115)
In this exercise we will (attempt to) use freely available tools (web browser, text editor, GitHub) to dissect and "delaminate" text on the web. Starting with an excavation of form, format and protocols, hopefully we can begin to get at some of the other technical and social layers that comprise digital text and its reproduction. The goal is to deform and bewilder what we might be tempted to think of as innocuous, passive, ubiquitous (no but seriously, where is there not digital text?).
Basically, 1) we are going to appropriate the design and content of a familiar website, 2) examine its insides, 3) maximize what tenen calls "format" through decontextualization and deformation, and 4) finally republish it.
- Browser (Chrome, Firefox)
- Text Editor (any will do though I recommend atom.io)
- GitHub Account
- You might want to take a peek at some HTML/CSS basics to get familiar with the rough idea of how webpages are structured
- Pair up
- Choose a text-centric website that is iconic in some way.
- "authoritative" (New York Times, government sites, Penn domains)
- incendiary (Fox News, Breitbart)
- almost invisible or appliance-like (CNN, Twitter, Facebook, Reddit, Wikipedia)
- amateur or homespun (Pine Point Revisited, Motor City Music Archives, Three Charlies ).
- Create a new folder on your desktop
- Save the site in your new folder
File
>Save Page As
- Rename to
index.html
- Make sure
Webpage, Complete
is selected
- Open the folder and take a look at what you've saved
- Open the file 'index.html' in your browser as well as in a text editor. If the code is too dense or long, you might want to "beautify" it using this online tool
- Explore the file in the browser by right clicking on elements and selecting
Inspect
from the menu - What do you notice?
- Where are there correspondences between the underlying code and the browser representation?
- What doesn't correspond or doesn't make sense based on what you observe in either the code or the browser?
- Try editing in some way in the text editor, either replacing text or replacing an image, and then refreshing the browser
- 🔥 Now to deform and decontextualize! 🔥 Here are a few strategies:
- Try to replace text with auto-generated text from one of the generators on this list of generators
- Try distorting an image on the site using this online glitch tool (remember that for the image to render, it has to maintain the same filename and filetype)
- 🔞 Try adding a p5.js script like this one to the bottom of the
index.html
file before the</body>
tag 🔞
- As you are editing, you'll want to save in the text editor, then refresh in your browser
- Log into GitHub
Fork
(i.e., copy) this repository to your own account- Select
index.html
then select edit (the pencil icon in the top right) - Copy-and-paste the contents of your
index.html
file, replace the contents of the existing file, and select thecommit
(i.e., save) button - Select
index_files
folder then drag the files from yourindex_files
folder into this folder- Note: If you have many files, you'll want to transfer no more than thirty at a time, selecting
commit
after each group of files
- Note: If you have many files, you'll want to transfer no more than thirty at a time, selecting
- Select
Settings
and scroll down toGitHub Pages
, under theSource
header choosemaster branch
- A green box will appear with your new URL in it (this process takes some time) -- your delamination is live!