From f6b3f603f50a4a27200cd27ed36ad51455bec52d Mon Sep 17 00:00:00 2001 From: Michael Murtaugh Date: Mon, 14 Oct 2024 11:19:19 +0200 Subject: [PATCH] radioimplicancies - notes for si25 --- radioimplicancies/Makefile | 17 ++ radioimplicancies/THE CLOUD.html | 76 ++++++ radioimplicancies/THE CLOUD_files/cloud.css | 123 +++++++++ radioimplicancies/index.html | 281 ++++++++++++++++++++ radioimplicancies/index.md | 72 +++++ 5 files changed, 569 insertions(+) create mode 100644 radioimplicancies/Makefile create mode 100644 radioimplicancies/THE CLOUD.html create mode 100644 radioimplicancies/THE CLOUD_files/cloud.css create mode 100644 radioimplicancies/index.html create mode 100644 radioimplicancies/index.md diff --git a/radioimplicancies/Makefile b/radioimplicancies/Makefile new file mode 100644 index 0000000..cb6075d --- /dev/null +++ b/radioimplicancies/Makefile @@ -0,0 +1,17 @@ +md=$(wildcard *.md) +mp_html=$(md:%.md=%.html) + +all: $(mp_html) + +%.html: %.md + pandoc --from markdown --to html --standalone $< -o $@ + +si22_syllabus.md: si22_syllabus.mediawiki + pandoc --from mediawiki --to markdown $< -o $@ + +SI25-NADD-Proposal.docx: SI25-NADD-Proposal.md + pandoc $< -o $@ + +%.svg: %.dot + dot $< -Tsvg -O + diff --git a/radioimplicancies/THE CLOUD.html b/radioimplicancies/THE CLOUD.html new file mode 100644 index 0000000..7c18670 --- /dev/null +++ b/radioimplicancies/THE CLOUD.html @@ -0,0 +1,76 @@ + + + + + + +THE CLOUD + + + +
+ + + + + +
+ + +
+ + +

T H E C L O U D

+

+
+
+
+

+ + + +

+
+
+
+
+
+
+

+ +

You want to know what time it is. You take a glance at your smartphone and see you have gotten a message.

+ +

See it as THE CLOUD. Let THE CLOUD pass by.

+ +

You check Facebook but it seems not working. Is it down for everyone or just me?

+ +

See it as THE CLOUD. Let THE CLOUD pass by.

+ +

You hear the sound of an incoming e-mail. Your are drawn to your computer and your mailing program. It is an notification of We Transfer of this file that will get expired.

+ +

See it as THE CLOUD. Let THE CLOUD pass by.

+ +

You still don't know what time it is. You remember this quick fact on Bored Panda that "what is the time" was once one of the most googled questions

+ +

See it as THE CLOUD. Let THE CLOUD pass by.

+ +

On your banking app you notice a bank statement of 70 euro's from an unknown company.

+ +

See it as THE CLOUD. Let THE CLOUD pass by.

+ +

When you type this name in your favourite search engine you realise it's the payment of your webhosting service. It got more expensive this year, again.

+ +

See it as THE CLOUD. Let THE CLOUD pass by.

+ +

Youtube stopped playing. When you look at the screen it asks you if you are still listening.

+ +

See it as THE CLOUD. Let THE CLOUD pass by.

+ +
+
+ + + + + + \ No newline at end of file diff --git a/radioimplicancies/THE CLOUD_files/cloud.css b/radioimplicancies/THE CLOUD_files/cloud.css new file mode 100644 index 0000000..f65bcd3 --- /dev/null +++ b/radioimplicancies/THE CLOUD_files/cloud.css @@ -0,0 +1,123 @@ +@font-face { + font-family: Chap; + src: url(Chapaza.ttf); +} +@font-face { + font-family: Aer; + src: url(Aerolite.otf); +} +p{ + font-family: Chap; + color:#8023FF; + text-align:center; +} +/*/.shift{ + animation: mymove 25s infinite; +} +@keyframes mymove { + 0% { color:#0E02FF; } + 30% { color:RosyBrown; } + 50% { color:thistle; } + 70% { color:RosyBrown; } + 100%{ color:#0E02FF; } +}/*/ +h1{ + font-family:Aer; + font-size:50px; + color:silver; + text-align:center; +} +audio{ + text-align:center; + width:100%; +} +body{ + background:WhiteSmoke; +} +html, body { + margin: 0; + padding: 0; +} + +* { + box-sizing: border-box; + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; +} + +#all{ + width: 100%; + height: 100%; +} +} +#lefty{ + width:15%; + height:100%; + float:left; + text-align:justify; + position:relative; +} +#middle{ + width:100%; + height:100%; + float:left; + padding-left:30%; + padding-right:30%; + text-align:justify; + position:relative; + z-index: 1; +} +@keyframes img1 { + 0% { left:750px; top:500px;} + 25% { left:400px; top:430px;} + 50% { left:400px; top:530px;} + 75% { left:300px; top:410px;} + 100% { left:750px; top:500px;} +} +.img1{ + position: absolute; + z-index: 2; + width:400px; + animation-name: img1; + animation-duration: 80s; + animation-iteration-count: infinite; + animation-fill-mode: forwards; +} + + +@keyframes img2 { + 0% { left:350px; top:300px;} + 25% { left:400px; top:330px;} + 50% { left:400px; top:130px;} + 75% { left:300px; top:120px;} + 100% { left:350px; top:300px;} +} + +.img2{ + position: absolute; + z-index: 2; + width:400px; + animation-name: img2; + animation-duration: 100s; + animation-iteration-count: infinite; + animation-fill-mode: forwards; +} + + +@keyframes img3 { + 0% { left:500px; top:300px;} + 25% { left:470px; top:340px;} + 50% { left:530px; top:380px;} + 75% { left:436px; top:340px;} + 100% { left:500px; top:300px;} +} + +.img3{ + position: absolute; + z-index: 2; + width:400px; + animation-name: img3; + animation-duration: 90s; + animation-iteration-count: infinite; + animation-fill-mode: forwards; +} \ No newline at end of file diff --git a/radioimplicancies/index.html b/radioimplicancies/index.html new file mode 100644 index 0000000..c892a8c --- /dev/null +++ b/radioimplicancies/index.html @@ -0,0 +1,281 @@ + + + + + + + + SI#25 Notes + + + +
+

SI#25 Notes

+

14 Oct 2024

+
+

Radio Implicancies

+

Radio Implicancies is the name of a series of special issues led by +Femke Snelting in +three consecutive years with Radio/Streaming as an output format. +Participants were encouraged to research and investigate how collective +work is shaped by technical systems through collective making and +listening within their own (small) networks.

+
+

Radio Implicancies is about practicing interdependencies. About how +to stay with the complex entanglements between the personal, the +economical, the political and the computational. About thinking, using +and making technology with mutual relations in mind.

+
+

Source: Radio +Implicancies (pzi wiki)

+

The Cloud

+

Floor van Meeuwen

+

During second edition of Radio Implicancies, Special Issue 15, Floor +van Meeuwen created The Cloud, an audio piece in the form of a +self-guided meditation. The piece has a satirical tone, the central +refrain: “see it as the cloud, let the cloud pass by”, cleverly makes +use of the dual sense of cloud as object of meditative release, and as +portal to cloud services. The piece works through a series of everyday +examples, starting from checking the time on a smart phone, that lead to +a spiral of (unintended) engagments and ultimately anxieties created by +the many notifications the author encounters when interacting with her +phone.

+

The piece was (initially) produced as a stand alone HTML page, and +was later used as part of the 7th collective broadcast, called the +cookbook, which featured a booklet that accompanied the broadcast, and +was published online with a “page-turner” code.

+ +

Special Issue #15: Radio +Implicancies (2021)

+

from Radio +Implicancies 15.7: Cookbook

+

Also see Floor’s single +page version and research +notes.

+

Single page version (local)

+

I am sitting in a room

+

Alvin Lucier

+ +
+

«I Am Sitting in a Room: for voice on tape»

+

Lucier’s classic «I Am Sitting in a Room» is a poetic exercise in +concentration. It focuses on a notoriously suppressed phenomenon: +spatial resonance being too self evident to perceive. While Lucier’s +spoken text is heard live through the room’s loudspeakers, he repeatedly +records the sound that stimulates the room’s resonant frequencies until +the text becomes indecipherable. Instead of semantics, the musical +qualities of language surface. The spoken text becomes a libretto, +score, and performance manual in one.

+
+

text source: mediaartnet

+

Proto-call (I am +sitting in a jitsi room)

+ +

Mark van den Heuvel and Tisa Neža Herlec

+

Made during the first edition (Special Issue 12), during the initial +COVID lockdown, the work started with a collective writing exercise on +an etherpad, an interleaved conversation in the form of a cadavre +exquis, one startins a sentence and the other continuing the thought. +The two later came together in a jitsi call to record a re-speaking the +lines that each had written, using etherpad’s feature differentiating +the writing of each author with color, but with the decision to to flip +the script and read each others lines rather than their own. The result +is full of both intimacy, as each imagines inhabiting the others +thoughts, and awkwardness as they often struggle to synchronize with +their collective script.

+

Like Alvin Lucier’s I am sitting in a room, the piece +creates a soundscape that in its own way resonates with the particular +affordances of the hybrid combination of virtual spaces created by the +writing pad, and by the audio recording.

+

Example: +Radio Implicancies: The Jingle Board Parliament

+

For the final edition, Special +Issue 18, the fourth broadcast took the form of The Jingle Board +Parliament, and which was published as a sound board.

+

+

The broadcast made use of an etherpad to organize. On the +pad they invited their fellow radiomakers to contribute not a single +piece, but fragments to be incorporated into a soundboard in the form of +a parliament chart (such as the kind that show the relative +representation of different political parties in an elected +parliament).

+
+

Our take on this idea of parliament is rooted in the influence that +elements of pop-culture have on politics, and more precisely on shaping +the characters and the voices that then inhabit a parliament. While much +of the politics happens outside of official institutional buildings, yet +the idea of the parliament remains a pure symbol of the place in which +democracy is being performed. This is to give you an intentional +framework that we propose as caretakers, but of course we invite you to +stretch and deconstruct this idea of “The parliament”.
+Also we invite you to not overthink about politically engaged +and great contributions, after all everything is political! +;)

+
+

Note how in this case the sound board was published, rather than +(just) a recording of the weeks broadcast. This was a pattern used in +many weeks, where different formats and structures were explored for +preparing each weeks broadcast, and these systems shaped the webpages +that were published for each week. The etherpads however were not +published, but is suggestive of some useful liner notes to an eventual +publication.

+ + diff --git a/radioimplicancies/index.md b/radioimplicancies/index.md new file mode 100644 index 0000000..67bd378 --- /dev/null +++ b/radioimplicancies/index.md @@ -0,0 +1,72 @@ +--- +title: SI#25 Notes +date: 14 Oct 2024 +--- + +## Radio Implicancies + +Radio Implicancies is the name of a series of special issues led by [Femke Snelting](https://snelting.domainepublic.net/) in three consecutive years with Radio/Streaming as an output format. Participants were encouraged to research and investigate how collective work is shaped by technical systems through collective making and listening within their own (small) networks. + +> Radio Implicancies is about practicing interdependencies. About how to stay with the complex entanglements between the personal, the economical, the political and the computational. About thinking, using and making technology with mutual relations in mind. + +Source: [Radio Implicancies (pzi wiki)](https://pzwiki.wdka.nl/mediadesign/Radio_Implicancies) + + +## The Cloud + +*Floor van Meeuwen* + +During second edition of Radio Implicancies, Special Issue 15, Floor van Meeuwen created The Cloud, an audio piece in the form of a self-guided meditation. The piece has a satirical tone, the central refrain: "see it as the cloud, let the cloud pass by", cleverly makes use of the dual sense of cloud as object of meditative release, and as portal to cloud services. The piece works through a series of everyday examples, starting from checking the time on a smart phone, that lead to a spiral of (unintended) engagments and ultimately anxieties created by the many notifications the author encounters when interacting with her phone. + +The piece was (initially) produced as a stand alone HTML page, and was later used as part of the 7th collective broadcast, called the cookbook, which featured a booklet that accompanied the broadcast, and was published online with a "page-turner" code. + + + +[Special Issue #15: Radio Implicancies (2021)](https://issue.xpub.nl/15/) + +from [Radio Implicancies 15.7: Cookbook](https://hub.xpub.nl/sandbot/SI15/Radio_7/) + +Also see Floor's [single page version](https://hub.xpub.nl/sandbot/~floorvanmeeuwen/15/TheCloud/) and [research notes](https://pzwiki.wdka.nl/mediadesign/User:Flo/15). + +[Single page version (local)](THE%20CLOUD.html) + + +## I am sitting in a room + +*Alvin Lucier* +![performing the piece in 2021](lucier-performance.png) + + + +> «I Am Sitting in a Room: for voice on tape» +> +> Lucier’s classic «I Am Sitting in a Room» is a poetic exercise in concentration. It focuses on a notoriously suppressed phenomenon: spatial resonance being too self evident to perceive. While Lucier’s spoken text is heard live through the room’s loudspeakers, he repeatedly records the sound that stimulates the room’s resonant frequencies until the text becomes indecipherable. Instead of semantics, the musical qualities of language surface. The spoken text becomes a libretto, score, and performance manual in one. + +text source: [mediaartnet](http://www.mediaartnet.org/works/i-am-sitting-in-a-room/) + + +## Proto-call (I am sitting in a jitsi room) + + + +*Mark van den Heuvel and Tisa Neža Herlec* + +Made during the first edition (Special Issue 12), during the initial COVID lockdown, the work started with a collective writing exercise on an etherpad, an interleaved conversation in the form of a cadavre exquis, one startins a sentence and the other continuing the thought. The two later came together in a jitsi call to record a re-speaking the lines that each had written, using etherpad's feature differentiating the writing of each author with color, but with the decision to to flip the script and read each others lines rather than their own. The result is full of both intimacy, as each imagines inhabiting the others thoughts, and awkwardness as they often struggle to synchronize with their collective script. + +Like Alvin Lucier's *I am sitting in a room*, the piece creates a soundscape that in its own way resonates with the particular affordances of the hybrid combination of virtual spaces created by the writing pad, and by the audio recording. + + +## Radio Implicancies: The Jingle Board Parliament + +For the final edition, [Special Issue 18](https://issue.xpub.nl/18/), the fourth broadcast took the form of *The Jingle Board Parliament*, and which was [published as a sound board](https://issue.xpub.nl/18/04/). + +![](etherpad-jingle.png) + +The broadcast made use of an [etherpad](https://pad.xpub.nl/p/SI18_four) to organize. On the pad they invited their fellow radiomakers to contribute not a single piece, but fragments to be incorporated into a soundboard in the form of a parliament chart (such as the kind that show the relative representation of different political parties in an elected parliament). + +> Our take on this idea of parliament is rooted in the influence that elements of pop-culture have on politics, and more precisely on shaping the characters and the voices that then inhabit a parliament. While much of the politics happens outside of official institutional buildings, yet the idea of the parliament remains a pure symbol of the place in which democracy is being performed. This is to give you an intentional framework that we propose as caretakers, but of course we invite you to stretch and deconstruct this idea of "The parliament". +> **Also we invite you to not overthink about politically engaged and great contributions, after all everything is political! ;)** + +Note how in this case the sound board was published, rather than (just) a recording of the weeks broadcast. This was a pattern used in many weeks, where different formats and structures were explored for preparing each weeks broadcast, and these systems shaped the webpages that were published for each week. The etherpads however were not published, but is suggestive of some useful liner notes to an eventual publication. + +