Myclines: Difference between revisions

From H&D Publishing Wiki
No edit summary
No edit summary
Line 21: Line 21:
<span class="page-break">&nbsp;</span>  
<span class="page-break">&nbsp;</span>  


# Concorder = class
Concorder = class
# conversationText = FileAttachment {
conversationText = FileAttachment {
: name: "conversation.txt"
: name: "conversation.txt"
: mimeType: "text/plain"
: mimeType: "text/plain"
: <prototype>: FileAttachment {}
: <prototype>: FileAttachment {}
}
}
# ct = await conversationText.text()
ct = await conversationText.text()
# concordance = new Concorder(text, {
concordance = new Concorder(text, {
:ignoreCase: true,
:ignoreCase: true,
:ignoreStopWords: true,
:ignoreStopWords: true,
Line 34: Line 34:
:isSentenceLevel : true
:isSentenceLevel : true
});
});
# cAnalysis = getAnalysis(concordance)
cAnalysis = getAnalysis(concordance)
# cAnalysis = Object {
cAnalysis = Object {
:tool: Array(67)
:tool: Array(67)
:think: Array(18)
:think: Array(18)

Revision as of 19:09, 26 October 2022

In this version of Myclines, the text corpus is based on the content from #Re-_and_Un-_Defining_Tools

Mycelines: A Sympoetic Imagination

By Qianxun Chen

A Myceline (a neologism made up of ‘mycelium’ and ‘line') is a “line” of text that grows like a mycelium. Mycelines can be generated based on a word-in-context analysis of one piece or multiple pieces of text. A shared word between two sentences has the potential to become a “node,” enabling new mycelines to grow from it. It breaks the linear, one-directional flow of the written language and demonstrates how interconnected our language is with new visual representations and evolving textual behaviors.

In Staying with the Trouble[1], Donna J. Haraway introduced the term sympoiesis based on autopoiesis, Sympoiesis means “making-with”, or “collectively-producing systems that do not have self-defined spatial or temporal boundaries. Information and control are distributed among components. The systems are evolutionary and have the potential for surprising change.” By contrast, autopoietic systems are “self-producing” autonomous units “with self defined spatial or temporal boundaries that tend to be centrally controlled, homeostatic, and predictable.”

If we apply this way of thinking to words and text, to think about autopoietic as auto-poetics, auto-poetic can then be used to describe generative textual systems with centrally defined generative rules, while sym-poetic are for texts that are collectively produced among various dynamic components. Mycelines are created with sympoetic in mind. Here, words decide how they organize themselves spatially based on the flow of each sentence instead of following one predefined direction, allowing concepts and thoughts interact and merge in a process akin to anastomosis in fungal networks.

The Code below shows the process of word in context analysis of the text “Re-, Un-, Defining Tools” by the Feminist Search Tools working group. We can see that words such as “tool”, “think”, “conversation” and “process” are mentioned the most, which make them important nodes in the generated myeline network.

 

Concorder = class conversationText = FileAttachment {

name: "conversation.txt"
mimeType: "text/plain"
<prototype>: FileAttachment {}

} ct = await conversationText.text() concordance = new Concorder(text, {

ignoreCase: true,
ignoreStopWords: true,
ignorePunctuation: true,
isSentenceLevel : true

}); cAnalysis = getAnalysis(concordance) cAnalysis = Object {

tool: Array(67)
think: Array(18)
tools: Array(15)
conversation: Array(18)
something: Array(16)
process: Array(16)
library: Array(10)
digital: Array(14)
project: Array(13)
way: Array(12)
different: Array(9)
make: Array(11)
gender: Array(8)
part: Array(10)
through: Array(8)
search: Array(9)
find: Array(7)
catalog: Array(8)
question: Array(8)
… more

}


In this version of Myclines, the text corpus is based on the content from [[[Tool-conversation Re-, Un-, Defining Tools.]]
  1. Donna Haraway, "Staying with the trouble : making kin in the Chthulucene" (Durham: Duke University Press, 2016)