User:Ohjian: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
 
(430 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. The Science Question in Feminism and the Privilege of Partial Perspective", Donna Haraway
* "Orientation in a big world", Patricia Reed
* "Vernacular Order, Official Order / Vernacular and Official Ways of 'Knowing'", James C. Scott
* "Queer Phenomenology. Orientations, Objects, Others", Sara Ahmed
* "Vernacular Values", Ivan Illich
* "This Is Not an Atlas - A Global Collection of Counter-Cartographies", Kollektiv Orangotango+
* "Control and Freedom. Power and Paranoia in the Age of Fiber Optics", Wendy Hui Kyong Chun
* "Post-Digital Print. The Mutation of Publishing since 1894", Alessandro Ludovico
* "Sprache und sein", Kübra Gümüşay
 
==<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
* "Dictionary of Winds", Ivetta Gerasimchuk
* "This Variation", Tino Sehgal
* [https://clusterduck.space/ Clusterduck]
* "Anekdoten zu einer Topographie des Zufalls", Daniel Spoerri
* "[https://www.queeringthemap.com/ Queering the Map]", Lucas laRochelle
* [https://palopenmaps.org/view Palestine Open Maps], Majd Al-shihabi
* Learning Machines, George Maciunas
* Marcel Duchamp
* Lucy Lippard - C. 7,500
* Anni Albers weavings
* Marcel Broodthaers – musée d'art moderne département des aigles 1968–72
* Aby Warburg
* Snail Mail
* Harals Szeeman – Documenta 5
* [https://telemagic.online/ Telemagic]
* [https://www.punkisdada.com/ OMSK Social Club]
* [https://tdingsun.github.io/worlding/ Chimeric Worlding]
* [https://www.hackersanddesigners.nl/ Hackers & Designers]
 
==<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>
 
 
===Electric Zine Maker===
Workshop at the Zine Camp Festival
<br>
https://alienmelon.itch.io/electric-zine-maker
<br>
<br>
Links to funny tools:<br>
* http://alienmelon.com/talk/zinecamp/tooldemo.html
* https://itch.io/c/235488/cool-tools
* https://tinytools.directory/
 
 
===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?)''
 
 
===Queering the Map / Lucas laRochelle===
 
Lecture at H&D Fall Talks
 
* Express subjectivity
* Incommensurability
* Being together while aknowledging differences
* Fluidity
* Multiplicity
* Situated
* Embodied
* Opacity
* Transparency
* Anecdotal
* Glimmer, shimmers, traces
* Singularities flow into the common
* embrace multiple ways of knowing and feeling of the world
* Anonymus participative, but no troll
* Catching the ephemeral
* Validates experience
* Fills blanks of what isn’t officially documented
 
 
===Mapping (dis)orientation / Majd al-shihabi===
 
Lecture at H&D Fall Talks on ''Palestine open maps''
 
* Erasures when it comes to mapping
* Catalogue of traces, archival work
* Archives and erasure
* Mappathon
* Collaborators of new dataset that becomes ours
* Since it’s not mine but ours I have to give it out
* What permission to outsiders to use the data?
 
 
===Setting up my brand new Raspberry Pi / Christmas 2021===
 
=====Setup Notes for Beginners (yes, that´s me!)=====
 
* put Sd card in your computer
* download Raspberry Pi Imager (software that helps with an easy setup on the sd card )
* [https://www.youtube.com/watch?v=ntaXWS8Lk34 Video turotial]
* open Raspberry Pi imager software
* choose operating system (in this case Raspberry Pi OS 32-BIT)
* select the sd card
* configurate username, password and wifi: ctrl + shift + x
 
* (default) settings:
* Hostname = raspberrypi.local
* activate ssh
* password for „pi“: raspberry
* = pi@raspberrypi.local
 
* setup wifi
 
* write to sd card (the sd card is now named „boot“)
* eject sd card and put it in the Raspberry Pi
* connect the pi to power (wait until the light stops blinking)
* to test ssh connection: connect Raspberry Pi and computer via ethernet cable
* open terminal and write: ssh pi@raspberry.local
* password: raspberry
* if it give "WARNING: POSSIBLE DNS SPOOFING DETECTED!" go to finder
* "command + shift + ." to show hidden files
* go to folder jianhaake and delete the ".ssh" folder
* go back to terminal and try again: ssh pi@raspberrypi.local
* confirm with yes and give password
 
=====Setup Notes Advanced (maybe later … )=====
 
The complete setup is done manually using the terminal.<br>
<br>
Helpful links:<br>
[[The_Ultimate_RPi_Installation_Guide#Setting_up_SD_Card]]<br>
https://www.raspberrypi.com/software/operating-systems/<br>
https://pihw.wordpress.com/guides/direct-network-connection/<br>
 
==<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>
 
 
===Text Weaving===
 
How to weave two texts to create new meaning following a pattern?
 
Inspiration:
[https://www.google.com/search?q=anni+albers+weaving+patterns&tbm=isch&ved=2ahUKEwjZqsaJ5uj1AhWHzyoKHfRMCOwQ2-cCegQIABAA&oq=anni+albers+weaving+&gs_lcp=CgNpbWcQARgAMgQIABATMgYIABAeEBM6CAgAEAgQHhATUPsCWPsCYJsJaABwAHgAgAE2iAFokgEBMpgBAKABAaoBC2d3cy13aXotaW1nwAEB&sclient=img&ei=4Yz-YZm2NYefqwH0maHgDg&bih=1035&biw=1792&client=firefox-b-d#imgrc=mBff1NBWMHum7M Anni Albers Weaving Patterns]
 
Text A:
AA AA AA AA
 
Text B:
BB BB BB BB
 
Patterns:
 
AB AB AB AB AB AB AB AB
AA BB AA BB AA BB AA BB
AB BA BA AB AB BA BA AB
AB AB AB AB AB AB AB AB
AA BB AA BB AA BB AA BB
AB BA BA AB AB BA BA AB
 
[https://hub.xpub.nl/soupboat/~kamo/static/html/weaving/ Text Weaving by Emma, Kamo and Jian]
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Selection Process / Annotation Compass</p>==
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Rejection Map</p>==
 
=====Rough 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
 
* Rejection map of Rotterdam
* Ask you to share moments of rejection and
* Second of acceptance
 
* Where you experienced or witnessed
* Since a lot is happening online you can still locate it
* Try to really situate it (is it a specific house or a whole neighborhood)
* Not only you but witness
* It can be related to housing, relationship, school or job, to you being new in the city, new in traffic, community, language
* It can be only one word describing the situation or your feelings, or a little anecdote
* Use you very own words, nothing is expected from you
* It can be cryptic (eg using slang, your mother tongue, only glyphs not words) if you dont want it to be a secret
* Reflection or memories, but you can also overwrite it with something new, hopes
* Where you rejected a thought
 
* Create non existing landscapes
 
==<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()
 
<syntaxhighlight lang="javascript"> from nltk.corpus import wordnet as wn
wn.synsets('book')</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> [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')]</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> wn.synset('book.n.02').lemma_names()</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> ['book', 'volume']</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> wn.synset('book.n.02').definition()</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> 'physical objects consisting of a number of pages bound together'</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> sorted(lemma.name() for synset in types_of_book for lemma in synset.lemmas())</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> ['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']</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> [synset.name() for synset in paths[0]]</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> ['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']</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> wn.synset('book.n.02').part_meronyms()</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> [Synset('binding.n.05'), Synset('fore_edge.n.01'), Synset('spine.n.04')]</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> for synset in wn.synsets('book', wn.NOUN):<br>
    print(synset.name() + ':', synset.definition())</syntaxhighlight>
 
<syntaxhighlight lang="javascript"> 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</syntaxhighlight></syntaxhighlight>
 
==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Cocktail Generator</p>==
 
=====How to change file on Raspberry Pi=====
 
To communicate and change .py-file on raspberry pi:
 
1. Connect both the raspberry pi and the computer to internet via ethernet
2. Open terminal, type: ssh pi@raspberrypi.local
3. Give default password: raspberry
4. List files: ls (Should list only one python file: final.py)
5. To access the file via GNU nano: sudo nano final.py
 
Change code directly on the Pi (small changes)
* change code
* confirm with: control + O "Write out"
* enter to confirm and control X to go back to terminal
 
Or change code in python file on your computer (bigger changes) delete the content of the final.py file on the Pi and then copy paste the whole code from the file on your computer:
* Removes content of the file: sudo rm final.py
* List files: ls (Should list only one python file: final.py)
* To access the empty file via GNU nano: sudo nano final.py
* paste the new code
* confirm with: control + O "Write out"
* enter to confirm and control X to go back to terminal
 
After the changes of the file, reboot raspberry pi: sudo reboot
 
=====Trying to setup a new Button=====
 
''Message to Chae:''<br>
 
Lets try a very simple and easy setup that uses the new button, only without its LED light (the LED needs 12V and extra power source, so its too complicated)
 
1. Take photo of current setup (so that you can always go back to it!)
2. Look at the switch that comes with the new button, it should look like this (Fig. 1)
3. Leave the cable on the pins of the raspberry pi!
4. On each pin you have a female cable + a male cable that connect to the breadboard
5. Pull both males out of the breadboard
6. These two are now connected to the switch following this scheme (Fig. 2 + 3)
7. You can connect them with tape for now to test if it works!
8. The switch now has to be put into the button –it should slide in or something like that and sits behind the LED that we do not use (Fig. 4)
9. Test if it works! If yes, HURRRRAAY! If no, forget about our brillant new button, we will make it work in January and use it at the next event!
 
<gallery>
File:Cocktail-generator-button-switch.jpg|Fig. 1
File:Cocktail-generator-setup-1.jpg|Fig. 2
File:Cocktail-generator-setup-2.jpg|Fig. 3
File:Cocktail-generator-button.jpg|Fig. 4
</gallery>


==<p style="color:#d3d3d3; text-shadow: 10px 10px 18px #FFB6C1, 10px 10px 18px #FFB6C1">Reflection Diary</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