├── .gitignore ├── README.md ├── code-societies-2020.md ├── folder-cities.jpg ├── folder-laser-3.png ├── folder-laser-black-wide.png ├── garden-of-forking-path-ycam ├── look-down │ └── worms-in-dirt.txt ├── look-left │ ├── birds-and-bees.txt │ └── walk-into-ycam │ │ └── walk-into-sfpc-classroom │ │ ├── a-message-from-brian.txt │ │ ├── a-message-from-jane.txt │ │ ├── a-message-from-lauren.txt │ │ ├── a-message-from-melanie.txt │ │ ├── a-message-from-robby.txt │ │ ├── a-message-from-taeyoon.txt │ │ └── the-network-is-a-folder-poem.txt └── look-right │ ├── suspended-orchids.txt │ └── walk-into-the-house │ ├── bathroom │ └── toilet.txt │ ├── bedroom │ └── sleep.txt │ └── kitchen │ ├── family-dinner.txt │ ├── garden.sh │ ├── pots-and-pans.txt │ ├── sink.txt │ └── stove.txt ├── poster.png ├── radical-networks.md ├── sfpc-1.jpg ├── sfpc-fall-2019.md ├── test.md └── two-day-workshop.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dat* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/README.md -------------------------------------------------------------------------------- /code-societies-2020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/code-societies-2020.md -------------------------------------------------------------------------------- /folder-cities.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/folder-cities.jpg -------------------------------------------------------------------------------- /folder-laser-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/folder-laser-3.png -------------------------------------------------------------------------------- /folder-laser-black-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/folder-laser-black-wide.png -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-down/worms-in-dirt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-down/worms-in-dirt.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-left/birds-and-bees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-left/birds-and-bees.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-brian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-brian.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-jane.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-jane.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-lauren.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-lauren.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-melanie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-melanie.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-robby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-robby.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-taeyoon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/a-message-from-taeyoon.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/the-network-is-a-folder-poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-left/walk-into-ycam/walk-into-sfpc-classroom/the-network-is-a-folder-poem.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-right/suspended-orchids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-right/suspended-orchids.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-right/walk-into-the-house/bathroom/toilet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-right/walk-into-the-house/bathroom/toilet.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-right/walk-into-the-house/bedroom/sleep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-right/walk-into-the-house/bedroom/sleep.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/family-dinner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/family-dinner.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/garden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/garden.sh -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/pots-and-pans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/pots-and-pans.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/sink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/sink.txt -------------------------------------------------------------------------------- /garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/stove.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/garden-of-forking-path-ycam/look-right/walk-into-the-house/kitchen/stove.txt -------------------------------------------------------------------------------- /poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/poster.png -------------------------------------------------------------------------------- /radical-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/radical-networks.md -------------------------------------------------------------------------------- /sfpc-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/sfpc-1.jpg -------------------------------------------------------------------------------- /sfpc-fall-2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/sfpc-fall-2019.md -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/test.md -------------------------------------------------------------------------------- /two-day-workshop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melaniehoff/Peer-to-Peer-Folder-Poetry/HEAD/two-day-workshop.md --------------------------------------------------------------------------------