User:Ohjian: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
 
(469 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<p style="color:#FFFF00; font-size: 45pt; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">
<p style="color:#FFFF00; font-size: 52pt; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">'''o h j i a n'''</p>


<div style=" 
font-family: courier new;
font-size: 14px;
color:#bbbbbb
text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1
">


'''o h j i a n'''


=<p style="color:#FFB6C1; text-shadow: 2px 2px 4px #0000FF, 2px 2px 4px #0000FF">INDEX</p>=
<p style="color:#FFFF00; font-size: 45pt; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">
 
[[User:Ohjian/Final_presentation|Grad Project]]<br>
* oh
[[User:Ohjian/Project-Proposal|Project Proposal]]<br>
* hi
[[User:Ohjian/Thesis-Outline|Thesis Outline]]<br><br>
* [[hello]]
[[User:Ohjian/XPUB_1|YEAR 1]]<br>
 
[[User:Ohjian/XPUB_2|BRIDGE]]
=<p style="color:#FFB6C1; text-shadow: 2px 2px 4px #0000FF, 2px 2px 4px #0000FF">Special Issue #16</p>=
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Getting Started</p>==
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Readings</p>==
 
* "Situated Knowledges", Donna Haraway
* "Orientation in a big world", Patricia Reed
* "Vernacular Order, Official Order / Vernacular and Official Ways of 'Knowing'", James C. Scott
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">References</p>==
 
* "A Rose is a Rose is a rose", Gertrude Stein
* Oulipu
* George perec
* "Sprache und sein", Kübra Gümüşay
* "Dictionary of Winds", Ivetta Gerasimchuk
* "This Variation", Tino Sehgal
* Clusterduck
* "Anekdoten zu einer Topographie des Zufalls", Daniel Spoerri
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Words of interest</p>==
 
* Archive
* Artifact
* Atlas
* Book
* Collective
* Context
* Darkness
* Destination
* Dimension
* Direction
* Echoe
* Encyclopedia
* Ephemer
* Gesture
* Ghost
* Index
* Interrelations
* Language
* Lexikon
* Local
* Lacolization
* Map
* Memory
* Miscelenious
* Mobility
* Movement
* Multiverse
* Multilayers
* Navigation
* Navigator
* Orientation
* Question Mark
* Record
* Rejection
* Relation
* Relic
* Selection
* Space
* Territory
* Time
* Toolkit
* Topography
* Trace
* Unknown
* Weaving
* Vernacular
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Notes</p>==
 
===Readings for Prototyping class===
 
[[Prototyping/2021-2022/T1|Wiki Page Prototyping Class SI 16]]
 
====Exploratory Programming for the Arts and Humanities by Nick Montfort====
 
 
=====[ 4 ] Calculating and Using Jupiter Notebook=====
 
''calculator (to calculate) / computer (to compute) / ordinateur (French, to order, to organize)''
 
Python is a programming language
 
Jupiter Notebook is an interpreter of Python
 
Syntax vs. Semantics in programming languages like Python or Processing:
 
* If the Syntax is correct, the code is formally correct, it is valid.
* If the code does what it is supposed to do, it is intentional.
* Intentional programs are always valid.
* Valid programs are not always intentional.
 
Syntax and Semantics in HTML (Hypertext Markup Language):
 
* HTML is not a programming language
* JavaScript is a program
* HMTL does not encode instructions
* Web Browser are forgiving and will also render invalid pages whenever possible. Just because a page is looks intentional in a web browser it doesn't mean it's valid code. So maybe other or future web browsers will struggle to show the intended page. Use Validators like validator.w3c.org to make sure your code is valid.
 
! Dont ever replace the content of a a cell in Python once it has successfully run, even if the outcome is not intentional. Instead copy to a new cell to change the content !
 
 
=====[ 5 ] Double, Double=====
 
Indentation is important! Use 4 spaces instead of a tab!
 
* Function: a bundle of computation 7 it must be provided exactly one argument / a function accepts arguments as well as returns values
* Interface: Schnittstelle / the specific way in which a function accepts an argument and returns values defines the interface to a function
* Argument: Ausgangswert? / Information that is passed into a function / The arguments to the function hold the values that the function needs to do its work. It sends back the answer aas return value
* Value: Ergebnis / Result that is returned by the function
* Sequence: data that is given as an argument
* Element: a sequence can have several elements, a list [element, element, element]
 
 
=====[ 6 ] Programming Fundamentals=====
 
Types of Abstraction:
* iteration = generalize a computation over a sequence / looping / allows repeated computation
* polymorphism = a code that applies to data of different types
 
there are different types of data, for example:
* integral numbers = int
* strings of characters = str
* lists of integers = int
* Boolean value = True/False
 
some functions or operator only work with certain types of data, other are polymorph and work with different types of data
 
types of data can be converted = casting
 
inner and outer universe / scope: variable have a certain value in a function, but outside of the function the same variable can have a different value
 
 
 
===Reflection moment===
 
''I was re-reading what we have to prepare for Christinas class and realized I misunderstood it the first time. I guess we are not supposed to bring even more new texts/material to elaborate, but rather bring examples of processing methods. So as far as I understand we should focus on different ways to approach a text or material, how to process/play/manipulate/work with it … ''
 
''I think I will try to come up with maybe 3 different processing methods and use any text or material (old or new) to exemplify these methods. A method could be a complex annotation system but also a super simple and playful manipulation (i.e. get rid of all the punctuation in a text and see what happens).''
 
''What do you think? Should we just play around with this and then present our favorites in class?''
 
 
 
===Template for group meetings===
 
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
////    XPUB 1 –– SPECIAL ISSUE 16    ////    XPUB 1 –– SPECIAL ISSUE 16    ////<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
<br>
Date: DD/MM/YYYY<br>
Time: 00:00 – 00:00<br>
Participants: <br>
<br>
Guardian of the Clock: <br>
Guardian of the Pad: <br>
<br>
<br>
Schedule for today´s meeting:<br>
00:00-00:00 Opening<br>
00:00-00:00 Part 1<br>
00:00-00:00 Check-in round<br>
00:00-00:00 Break <br>
00:00-00:00 Part 2<br>
00:00-00:00 Check-in round<br>
00:00-00:00 Closing<br>
<br>
Link to pad from previous group meeting:<br>
<br>
Possible topics for today (paste from previous pad):<br>
–<br>
<br>
Topics for today´s meeting:<br>
1. Topic A<br>
2. Topic B<br>
3.<br>
<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
////    XPUB 1 –– SPECIAL ISSUE 16    ////    XPUB 1 –– SPECIAL ISSUE 16    ////<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
<br>
OPENING<br>
<br>
References / Examples:<br>
–<br>
<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
<br>
PART 1<br>
<br>
1. Topic A<br>
– <br>
<br>
2. Topic B<br>
– <br>
<br>
3. Topic C<br>
– <br>
<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
<br>
CHECK-IN ROUND<br>
<br>
One by one:<br>
Do you want to ask / say / add / comment on something?<br>
Try to limit your speaking time and try to be precise!<br>
No interruptions please!<br>
<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
<br>
BREAK<br>
<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
<br>
PART 2<br>
<br>
4. Topic D<br>
–<br>
<br>
5. Topic E<br>
– <br>
<br>
6. Topic F<br>
–<br>
<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
<br>
CHECK-IN ROUND<br>
<br>
One by one:<br>
Do you want to ask / say / add / comment on something?<br>
Try to limit your speaking time and try to be precise!<br>
No interruptions please!<br>
<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
<br>
CLOSING<br>
<br>
––> Summary of the meeting by the Guardian of the Pad<br>
<br>
List of topics to discuss in the next meeting:<br>
–<br>
<br>
Homework / to do:<br>
–<br>
<br>
Schedule next meeting:<br>
Date: <br>
Time: <br>
<br>
Guardian of the Pad next time:<br>
<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
////    XPUB 1 –– SPECIAL ISSUE 16    ////    XPUB 1 –– SPECIAL ISSUE 16    ////<br>
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////<br>
 
 
===Confused Notes===
 
''As a creative tool / process / rejection toolkit ~ Rejection = Ablehnung, Zurückweisung, Abstoßung, Abweisung, Abwehr, Aussortierung, aber auch Verwerfen ~ ignorieren, vergessen, verwerfen ~ generieren (produzieren), verwerfen (entscheiden) / entwerfen/verwerfen ~ Summerschool! also: Rejection as a collektive process? ~ Chronisten vs. Anemophile: Entwürfe aufbewahren oder verwerfen? ~ Talmud: keine Umschreibung, Überschreibung, Neuschreibung ~ Deutungen/ Ideen / Entwürfe bleiben parallel bestehen: multiperspektivisch (situated knowledge?) ~ to define the book limits the book ~ collect or select ~ curation: change context by selecting (and rejecting) certain things ~ responsibility ~ unpublished! ~ rejection as choice ~ definition generator just as book? ~ or: (because its easier I think): definition of curating, including rejection ~ rejection process changes vernacular language into formal language? ~ bleed ~ annotations / references / pagina ~ artifacts ~ stream of consciousness (in words or images) ~ our conscience can only focus on one thing and rejects the others? ~ selection by choice, by data, by association ~ Found items ~ Rejected items ~ Leaving a trace ~ Rejection toolkit ~ Topographie des Zufalls ~ Kill your darlings ~ Souvenirs of thinking processes ~ Remnants of the process ~ Embracing the unpublished / rejected ~ Extract ~ mapping / delineate ~ lost traces / ephemere ~ relic ~ ghost ~ echoes, memories ~ record, permanent form ~ vernacular memories ~ collective memories ~ Delinetae the unknown ~ Delineate the ephemeral ~ Delineate situated knowledges / language / action / memories ~ Delineating the situated ~ Delineate the vernacular ~ miscelenious ~ Connotation / context / curating ~ Rejection as categorization (libraries, archives) ~ … in Rejection ~ Topography of the Book ~ Delineating the Book ~ Rejection as Delineation ~ Rejection as tool, responsibility, curating ~ Experiment: have one collection of items and let at least two individuals select, organize, contextualize, curate them (also by adding new things?)''
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Experiments</p>==
 
===A small Lexikon on Terms of Interest Whip===
Whip of a small lexikon after reading:
* "Situated Knowledges", Donna Haraway
* "Orientation in a big world", Patricia Reed
* "Vernacular Order, Official Order / Vernacular and Official Ways of 'Knowing'", James C. Scott
 
 
Terms to add:
* ''destination''
* ''dimension''
* ''direction''
* ''interrelations''
* ''localization''
* ''map''
* ''mobility''
* ''movement''
* ''territory''
* ''time''
 
… more [[User:Ohjian#Words_of_interest|Words of Interest]]
 
 
 
=====BOOK=====
A book has neither object nor subject; it is made of variously formed matters, and very different dates and speeds. To attribute the book to a subject is to overlook this working of matters, and the exteriority of their ''relations''. It is to fabricate a beneficent God to explain geological ''movements''. In a book, as in all things, there are lines of articulation or segmentarity, strata and ''territories''; but also lines of flight, ''movements'' of deterritorialization and destratification.
 
<br>A BOOK
<br>IS      THE PHYSICAL SUPPORT OF TEXT
<br>            USING A RECOMBINANT STRUCTURE
<br>                  TO PROVIDE SEQUENTIAL
<br>    [[User:Ohjian#NAVIGATION|NAVIGATION]]

<br>
<br>A BOOK
<br>IS      AN ARCHIVE
<br>            USING WORDS
<br>                  TO PROVIDE ISOLATED
<br>   KNOWLEDGE
<br>
<br>A BOOK
<br>IS      A PORTABLE DATA STORAGE
<br>            USING NODES AND LINKS
<br>                  TO PROVIDE PERFORMATIVE
<br>    TRUTH
<br>
<br>A BOOK
<br>IS      A SEQUENCE OF MOMENTS
<br>            USING NODES AND LINKS
<br>                  TO PROVIDE PERFORMATIVE
<br>    MEANING
<br>
<br>A BOOK
<br>IS      A SEQUENCE OF MOMENTS
<br>            USING LAYERS
<br>                  TO PROVIDE CERTAIN
<br>    [[User:Ohjian#NAVIGATION|NAVIGATION]]
<br>
<br>A BOOK
<br>IS      AN INTIMATE SPACE
<br>            USING JUXTAPOSITIONS
<br>                  TO PROVIDE RANDOM
<br>    INFORMATION
<br>
<br>A BOOK
<br>IS      AN ARTIFACT
<br>            USING A SYSTEM OF KNOTTED STRINGS
<br>                  TO PROVIDE NAVIGATIONAL
<br>    NEGOTIATION
<br>
<br>A BOOK
<br>IS      AN INTIMATE SPACE
<br>            USING A RECOMBINANT STRUCTURE
<br>                  TO PROVIDE PRECISE
<br>    THOUGHTS

<br>
<br>A BOOK
<br>IS      AN EVENT
<br>            USING NODES AND LINKS
<br>                  TO PROVIDE SEQUENTIAL
<br>    ACCESS

<br>
<br>A BOOK
<br>IS      AN INTERFACE
<br>            USING ANY NUMBERS OF PHYSICAL FORMS
<br>                  TO PROVIDE ISOLATED
<br>    KNOWLEDGE

<br>
<br>A BOOK
<br>IS      A SEQUENCE OF ROOMS
<br>            USING INTERCONNECTIONS
<br>                  TO PROVIDE CERTAIN
<br>    NEGOTIATION
<br>
<br>A BOOK
<br>IS      AN OBJECT
<br>            USING LAYERS
<br>                  TO PROVIDE SPECIFIC
<br>    KNOWLEDGE
<br>
<br>A BOOK
<br>IS      A SEQUENCE OF MOMENTS
<br>            USING A SYSTEM OF KNOTTED STRINGS
<br>                  TO PROVIDE SPECIFIC
<br>    MEANING
 
<br>
 
=====DARKNESS=====
https://whitehotmagazine.com//UserFiles/image/2012/dOCUMENTA/04_Tino-Sehgal.jpg
 
Tino Sehgal – This Variation<br>
First performed in 2012 at Documenta 13 in Kassel
 
<br>
How do you [[User:Ohjian#NAVIGATION|navigate]] in a [[User:Ohjian#DARKNESS|dark]] [[User:Ohjian#SPACE|space]]? Listen. Smell. Touch.
 
<br>
 
=====NAVIGATION=====
is not ''destination'', but it is not entirely divorced from ''destination'' either. It’s a ''movement'' of inclination requiring markers of [[User:Ohjian#ORIENTATION|orientation]]. If navigation requires inclination to lend a functional or affective valence of ''direction'' to mobility, the politics of navigation are bound to claims on constructing these points of referential [[User:Ohjian#ORIENTATION|orientation]], as well as making them sensible, intelligible, and shareable.
Second, navigation is reliant on extra-''local'', mental diagrams of [[User:Ohjian#SPACE|space]] and ''time'' that are continually cross-referenced with situated ''localization''. In this way navigation embodies the continuum between the conceptual and the material; and it is due to this [[User:Ohjian#WEAVING|weaving]] that navigators can continually revise and adapt their choreography and markers of [[User:Ohjian#ORIENTATION|orientation]] over ''time''. As the saying goes, the ''map'' is not the ''territory''. However, arresting this thought in its purely oppositional state undermines the crucial, synthetic dynamic wherein the ''map'' (understood as a conceptual artifact) partially shapes:
# the perception and perceptibility of the ''territory'' or system,
# how that ''territory'' or system is thought to exist beyond immediate sensory feedback (if it is sensible at all),
# the possibility [[User:Ohjian#SPACE|space]] of its imagined tractability, and
# the understanding of causal ''interrelations'', which contribute to pictures of agency.
 
<br>
 
=====ORIENTATION=====
We can only find our way in a [[User:Ohjian#DARKNESS|dark]] room if we know the difference of the sides of the body. [[User:Ohjian#SPACE|Space]] then becomes a question of „turning“, of ''directions'' taken which allow us to find our way through the world by situating ourselves in ''relation'' to such things.
 
<br>
 
=====SPACE=====
is the boundless three-dimensional extent in which objects and events have relative position and ''direction''. In classical physics, physical [[User:Ohjian#SPACE|space]] is often conceived in three linear ''dimensions'', although modern physicists usually consider it, with ''time'', to be part of a boundless four-''dimensional'' continuum known as [[User:Ohjian#SPACE|space]]''time''.
 
<br>
=====WEAVING=====
Weaving is a method of textile production in which two distinct sets of yarns or threads are interlaced at right angles to form a fabric or cloth. Other methods are knitting, crocheting, felting, and braiding or plaiting.
 
https://upload.wikimedia.org/wikipedia/commons/5/5e/Warp_and_weft_2.jpg
 
https://freight.cargo.site/t/original/i/9e37118a1ef2f0da4f558c00196954da537ac39d1cef9e912b782edb3c94496e/On_Weaving_07.jpg
 
<br>
The term can also be used to describe the structure of a text:<br>
"The [[User:Ohjian#BOOK|book]] weaves together four stories."
 
<br>
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Annotation Compass</p>==
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Rejection Map</p>==
 
Notes
 
* Being together and share space while acknowledging differences
* Share experiences while acknowledging different backgrounds
* embrace multiple ways of knowing and feeling of the world
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">What the book is</p>==
 
=====Investigate the holonym-meronym relations for the book=====
 
NLTK wordnet: There are three kinds of holonym-meronym relations:
* member_meronyms()
* part_meronyms()
* substance_meronyms()
* member_holonyms()
* part_holonyms()
* and substance_holonyms()
 
from nltk.corpus import wordnet as wn<br>
wn.synsets('book')
 
[Synset('book.n.01'),
Synset('book.n.02'),
Synset('record.n.05'),
Synset('script.n.01'),
Synset('ledger.n.01'),
Synset('book.n.06'),
Synset('book.n.07'),
Synset('koran.n.01'),
Synset('bible.n.01'),
Synset('book.n.10'),
Synset('book.n.11'),
Synset('book.v.01'),
Synset('reserve.v.04'),
Synset('book.v.03'),
Synset('book.v.04')]
 
wn.synset('book.n.02').lemma_names()
 
['book', 'volume']
 
wn.synset('book.n.02').definition()
 
'physical objects consisting of a number of pages bound together'
 
sorted(lemma.name() for synset in types_of_book for lemma in synset.lemmas())
 
['album',
'coffee-table_book',
'folio',
'hardback',
'hardcover',
'journal',
'notebook',
'novel',
'order_book',
'paper-back_book',
'paperback',
'paperback_book',
'picture_book',
'sketch_block',
'sketch_pad',
'sketchbook',
'soft-cover',
'soft-cover_book',
'softback',
'softback_book']
 
[synset.name() for synset in paths[0]]
 
['entity.n.01',
'physical_entity.n.01',
'object.n.01',
'whole.n.02',
'artifact.n.01',
'creation.n.02',
'product.n.02',
'book.n.02']
 
wn.synset('book.n.02').part_meronyms()
 
[Synset('binding.n.05'), Synset('fore_edge.n.01'), Synset('spine.n.04')]
 
for synset in wn.synsets('book', wn.NOUN):<br>
    print(synset.name() + ':', synset.definition())
 
book.n.01: a written work or composition that has been published (printed on pages bound together)
book.n.02: physical objects consisting of a number of pages bound together
record.n.05: a compilation of the known facts regarding something or someone
script.n.01: a written version of a play or other dramatic composition; used in preparing for a performance
ledger.n.01: a record in which commercial accounts are recorded
book.n.06: a collection of playing cards satisfying the rules of a card game
book.n.07: a collection of rules or prescribed standards on the basis of which decisions are made
koran.n.01: the sacred writings of Islam revealed by God to the prophet Muhammad during his life at Mecca and Medina
bible.n.01: the sacred writings of the Christian religions
book.n.10: a major division of a long written composition
book.n.11: a number of sheets (ticket or stamps etc.) bound together on one edge


==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Cocktail Generator</p>==
</p>
<br><br>


=<p style="color:#FFB6C1; text-shadow: 2px 2px 4px #0000FF, 2px 2px 4px #0000FF">Special Issue #17</p>=
</div>
=<p style="color:#FFB6C1; text-shadow: 2px 2px 4px #0000FF, 2px 2px 4px #0000FF">Special Issue #18</p>=

Latest revision as of 11:40, 25 March 2024