- ☎️ P2P Address book 🦋
- [How to share your poems on the p2p web]
- Install Node & Dat
- Rules of p2p Folder Poetry
- Bash commands
- Editing your Bash Profile
- Folder Poem Examples
- Slides
- Prompt
- Helpful Supplemental Codes
- Download the Garden of Forking Paths and move it to your home folder
First we will share our poems, then we will recieve other's
- make sure your poem lives inside ~/my-folder-poem/your-name/your-poem-here
cd ~/my-folder-poem
- note if your my-folder-poem/ folder is in a different directory, this part may look like
cd ~/code-societies/my-folder-poem
- note if your my-folder-poem/ folder is in a different directory, this part may look like
- enter
dat share
in your terminal from inside the folder, my-folder-poem/ - copy and paste the blue url that looks something like
dat://a297239732y98r3y8328320230y352y0350y3520y3
into P2P Address book next to your name - dont close or exit this terminal session so your poem will continue to be shared on the network!
- Now you are sharing your poem on the p2p web!
Now we will recieve other's poems!
- OPEN A TOTALLY NEW TERMINAL WINDOW (so we don't disrupt the sharing)
cd ~/folder-society
- now go to the P2P Address book and copy and paste a dat://xxxx url from someone else in the class!
- enter
dat clone
+ paste the dat hash here!- it will look something like this
dat clone dat://7ce94a276f9f16f66644e02/
- it will look something like this
ls
and you should see a directory inside your folder-society folder titled something like7ce94a276f9f16f66644e02/
this will be the name of the hash of the dat poem you just cloned- cd into this directory, for me this looks like
cd 7ce94a276f9f16f66644e02/
(remember you can tab to autocomplete!) - now you can continue
cd
ing into your classmates poem and explore it! - if you want to see the whole structure enter
tree
into your terminal. if you don't have tree, seee below:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install tree
- now try entering
tree
into your terminal to expand the folder structures!
Run each of these Bash lines one after the other by pasting them in your Terminal application and pressing ENTR. Don't worry if you've never used terminal before or you're not comfortable with it! There will be time in class to install if you dont get to it before class.
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
source ~/.bash_profile
nvm install --lts
nvm use --lts
npm install -g dat
To test that everything worked, enter dat
into your terminal.
If you see output that starts with Usage: dat <cmd> [<dir>] [options]
you have all the software you need to share your folder poems on the p2p web! 🎊
In your home(~) folder we will have:
- a folder called folder-society
- a folder called my-folder-poem
- inside my-folder-poem is a folder called your-name
- inside the folder called your-name is where your poem will live
To create the above outlined folder structure using Bash in the terminal:
cd
mkdir folder-society
mkdir my-folder-poem
cd my-folder-poem
mkdir your-name
cd your-name
- ^ where we'll make our poems
P2P folder poetry has specific requirements in order for your poems to be shared with each other via the Dat protocol. If you don't follow these rules, you will have still created folder poetry, they just wont become P2P folder poetry during this workshop.
The artform of folder poetry is forgiving, Dat is not.
- 🟣 No empty folders.
- 🟣 Every file has to contain text in it.
- 🟣 All lowercase
- 🟣 No spaces.
- 🔺Underscores and dashes are ok. for example:
my_file.txt
ormy-file.txt
- 🟣 All files must have a file extension such as .txt
Folder Poetry Examples
- 🔗Download & Explore the SFPC Fall 2019 Cohort's Poetry in your Terminal or Finder
- 📒Download: Folder Poetry - SFPC Yamaguchi Japan Zine
- 📒Download: Folder Poetry - SFPC Detroit Zine
- Folder Poetry on the default (non P2P) internet
- folderpoetry.club
- Laurel Schwulst's adapatation of Folder Poetry in their Writing as Metadata class at Yale: metadatarocks.nfshost.com
Command | Description |
---|---|
cd |
change directory |
cd .. |
change directory one level back |
ls |
list contents of directory |
pwd |
print working directory |
mkdir foldername |
create a folder named foldername . |
touch dandelion.txt |
create a file named dandelion.txt |
echo "woof woof" > kitty.txt |
creates a text file called kitty.txt that contains the words, "woof woof" |
cat filename.txt |
print contents of file |
rm -rf filename.txt . |
remove a file or folder this way |
mv filename.txt newfilename.txt |
rename a file |
open . |
(macOS) open the current folder in Finder |
explorer.exe . |
(Windows) open the current folder in Explorer |
open filename.txt |
(macOS) opens file in Text Edit |
notepad.exe filename.txt |
(Windows) opens file in Notepad |
cp filename.txt filename2.txt |
copy file |
say "hello, what is poetic computation?" |
(macOS) speak out loud |
man cd |
show the manual for 'cd'. Press q to quit |
source ~/.bash_profile |
restart your terminal config file |
Command | Description |
---|---|
Up + Down Arrow keys | scroll through history |
Tab Key | autocomplete |
CMD + CTRL + SPACE | Emoji Keyboard (Mac OS) |
command | Description |
---|---|
echo "woof woof" > kitty.txt |
creates a text file called kitty.txt that contains the words, "woof woof" |
nano textfile.txt |
open file in the nano text editor |
CTRL + X , y , ENTER | exit and save changes |
The ~./bash_profile is a configuration file for the terminal.
-
nano ~/.bash_profile
- This command will open your ~./bash_profile in the nano editor
In steps 2 and 3 we will paste 2 aliass AKA shortcuts that will help us visualize our folder poem structures.
-
alias tree="find . -not -path '*/\.*' -print | sed -e 's;[^/]*/;|;g;s;|; |;g'"
- (if you have homebrew installed enter
brew install tree
in another terminal window instead)
- (if you have homebrew installed enter
-
alias treefile="find . -not -path '*/\.*' | xargs -I {} bash -c 'f={}; echo \$f | sed -e \"s;[^/]*/;|;g;s;|; |;g\"; if [[ \$f == *.txt ]]; then echo; cat \$f; echo; echo; fi'"
-
export PS1="🍋 \w\n\u$ "
- This will customize your Bash prompt. Feel free to change the emoji. (skip if you use zshell)
- Explanation:
\w
shows your full file path so you'll always know where you are in the terminal,\n
creates a new line in your bash prompt.\u
shows your computer username, and$
symoolizes the end of a bash prompt.
-
source ~/.bash_profile
- reboot your terminal
What would your speculative liberatory learning environment look like?
Previous prompts have been Folder Poem as Village, Gift, & Home
Gently explore your imagination and think about the following prompt. Feel free to write or sketch based on your reflections but this is not required.
- Imagine a fantastical physical environment that could hold you and those you want to learn nearby.
- This school is not like any school that exists. This school does not have to be realistic or adhere to laws of physics.
- What kinds of rooms, interconnecting hallways, or gardens could be grown? What kinds of activities would learners do in different spaces throughout the school?
- What kinds of subjects would be taught there? Are their teachers and students or some other set of roles?
- Do the roles ever change?
- What are the bathrooms like? How about the furniture? Are there laboratories? Playgrounds? Napping rooms?
- Consider the kinds of relationships you would like this school to hold & how people could relate to each other differently based on the proximity and content of their learning?
- Consider how you would like to share space with others in this school. How are different parts of your school accessed and by whom?
- Are there grades in this school? How are people separated into groups if ever? What are the taxonomies? For ex: traditional school systems will group people by categories such as age, class, geography, "ability", "behavior", and able-bodied-ness.
- Consider the ephemeral aspects of the school as much as the physical aspects.
- In this school, how do you communicate and care for each other?
- What are the emotional qualities of the spaces in this school?
- What is the weather like around this school?
- Consider the many forms it could take,
- A memory palace with many rooms. In each room a memory of something that someone learned in this room by seeing the memory of the last person in this room.
- A forest of learning folders where each participant is a tree and insect files carry information back and forth between them.
- A school where each room is devoted to something you would like to learn collectively with those you share a that room with.
- A multi-generational interconnected courtyard boarding house with rooms for climbing, rooms for growing, rooms for cooking, rooms for singing.
👛 if you have a Mac computer and are feeling fancy, i recommend downloading Iterm
Install homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
For newer Mac's to switch from zsh to bash
chsh -s $(which bash)
ORchsh -s /bin/bash
- More info here
To remove "(base)" from prepending the bash prompt after installing Anaconda:
conda config --set auto_activate_base False
source ~/.bash_profile
To change your computer's hostname (Mac)
- sudo scutil --set HostName new_hostname
- restart your computer
To install Anaconda (Python 3.7+, 64-bit), follow the instructions for your platform here.
-
Mac OS X: go this page, wait for the download to complete, and run the installer file. Choose all of the installer’s default options. To test your installation, open a terminal window and type “conda”, without quotation marks, and press enter. You should see a different list of arcane commands than those produced by typing “git”.
-
Windows: go to this page, wait for the download to complete, and run the exe file. Choose all of the installer’s default options, except you should reject the suggestion to install Microsoft Visual Studio Code. (Again, we recommend editing text using Atom.) Test your installation by searching for “anaconda prompt” in your system. In the resulting terminal window, type “conda”, without quotation marks, and press enter. You should see a different list of arcane commands than those produced by typing “git”.
Jan 7th 2020, 6:30 - 9:30pm
What if we could transform our online networks from something we passively receive to something we actively create? Folder Poetry is the practice of using the structure of computer folder organization as a new kind of poetic form like the haiku or iambic pentameter. By naming and nesting folders and files, we can create unfolding narratives, rhythmic prose, and choose-your-own-adventure poetry. In this workshop we will collectively create peer-to-peer folder poetry using the command line and Dat. Through lecture, examples, and writing folder poetry as meditation, we will explore the narrative qualities of folder structures and Dat as a tool for building digital spaces with and for our networks.
In this session we will get intimate with computers and write poetry with their logic. This workshop is an introduction to writing folder poetry, the P2P protocol Dat, and navigating the command line interface using Bash.
Together, we will create living networked poetry through connecting folders on the peer-to-peer web for each other to inhabit and explore.
This workshop assumes no coding experience and simultaneously takes the position that everyone who interacts with computers in some way is already a programmer.
See: Always Already Programming
- Folder Poetry is the practice of using the structure of computer folder organization as a new kind of poetic form like the haiku or iambic pentameter. By naming and nesting folders and files, we can create unfolding narratives, rhythmic prose, and choose-your-own-adventure poetry.
- The Terminal is desktop application to control and make changes to your operating system by typing text commands. In this class we'll use the terminal to create folder poetry.
- Bash is the programming language we'll use in the terminal, often one line at a time, but we can also put Bash code in a file and run that file.
- Peer-to-peer computing is a way to make distributed networks in which each computer can act as a server for the others, allowing shared access to files without the need for a central server.
- Dat is a data distribution tool for publishing on peer-to-peer networks.
For Windows 10, check out this preliminary set up guide
Reintroduction to computers & computing Programming is about the computer, the programmer, the relationship they have with each other, and the environments they create together.
- Folders & file systems
- What is Folder Poetry and how will we be creating it?
- Discretely categorizing things. The affordances of folders.
- Examples of folder projects
- Folders Anonymous
The Desktop is a lie
- Terminal and Bash commands
- Introduction of navigating the command line by walking through the-garden-of-forking-paths
- Download the garden
- growing the garden
- Anatomy of Bash Prompt
- Editing bash_profile
Making our Folder Poem Poems in Bash
The network is a folder poem, be the poet
- P2P introduction and description of DAT and "the cloud"
- Dat is a protocol for sharing data between computers.
- Dat’s strengths are that data is hosted and distributed by many computers on the network, that it can work offline or with poor connectivity
- The Distributed Web is about decentralization of servers and control
- Data on the distributed web is not indexed which means it is not easily searchable
- We are creating a local network island away from the default(larger) internet
- Sharing our Poems on the P2P Web