User:ZUZU/SI 22
I used to use Apple pages to keep a record of what I learned, but they were always a bit of a mess, so I'm going to start using a Wiki. hopefully, it will help me improve the situation.
WEEK 8
Friday 10 November
Use Arduino to control LED lights
use loop to make mini traffic lights:
int greenLed = 13; int yellowLed = 12; int redLed = 11; void setup() { // put your setup code here, to run once: pinMode(13, OUTPUT); //green pinMode(12, OUTPUT); //yellow pinMode(11,OUTPUT); // red } void loop() { // put your main code here, to run repeatedly: //turn green light on for 0.5 seconds digitalWrite(13,HIGH); delay(500); //turn off green light and turn yellow light on for 0.5 second digitalWrite(13,LOW); digitalWrite(12,HIGH); delay(500); // turn yellow off anf turn red on for 0.5 seconds digitalWrite(12,LOW); digitalWrite(11,HIGH); delay(500); digitalWrite(11,LOW); }
WEEK 9
Monday 13 November
Meeting online
Worm Picnic Box
Continue to explore the thoughts about Worm Picnic, the original idea comes from Monday 6th November installation group
Some inspirations :
- A Chinese Restaurant Website with a nostalgic vibe:Málà Project
- An audio project ideal for meditation:Talk With Urban Landscapes
- A sleek modern chat UI :DMs
- Sound Effects Library Chinese websiteComprehensive material
The morning online meeting came up with an interesting proposal to select a metaphor of interest and interview it. Next, I'll imagine a picnic box that serves as a metaphor for WORM a non-commercial underground radio station, combined with some of the results of the group discussion, to answer the questions.
Interviewer:How do you define yourself?
Picnic Box:Oh, darling, I'm not just a box; I'm a symphony of joy, a curated collection of delightful moments.
Interviewer:How were you born?
Picnic Box:Ah, my origin story is as whimsical as a wandering plastic bag on a windy day. Picture this: a group of free-spirited souls, consulting the random dance of clouds instead of weather apps. They meet in the serendipity of social apps, bringing delectable creations to share. And voila, I was born, a delicious amalgamation of their creativity and a touch of Flashes of Oven Wisdom
Interviewer:What are you holding?
Picnic Box:Well, Inside my cozy space, I've got a picnic mat that's not your everyday kind. It's like a magical map revealing the coolest secrets of this place. You can stroll around following it, and guess what? Find some treasures along the way.And guess what else?I've got a deck of cards, but these aren't for playing poker or building houses of cards. Nope, these cards are like mysterious pieces with some serious vibes.They're linked to protocols, which are like secret rules or codes. Now, I'm not exactly sure what these rules are about; I'm just a box, not a code-cracking expert. Of course, there are more other things, but time is limited, so that's all for now.
Interviewer:Where do you usually meet?
Picnic Box:Maybe we need a tangible, realistic place, and maybe we don't. Maybe we're under a lawn, maybe it's a lawn under a tree, or a lawn under a tree that's blooming cherry blossoms, and we're in a communal place for a communal activity, and we've turned that communal place briefly, temporarily, into a private space that has no boundaries.
Interviewer:What are you doing?
Picnic Box:Oh, you've walked right into our little joy party! We gather, we laugh, we listen, we share, we drink hot ginger tea, we eat home-made sandwiches. We listen to the bubbling sound of fish in a river flowing from far away. We let out a laugh as we hear an ancient joke that has been roaming the internet for 20 years. We're not exactly on a mission or anything serious; we're just here, in this moment, in this place, doing whatever feels right.
Interviewer:Can other people join?
Picnic Box:Absolutely! We're like an open invitation to immersion matter who are you there's always room on our magical picnic mat. Feel free to hop on in and add your own splash of anything to the mix!
Interviewer:What happens when the picnic box is closed?
Picnic Box:Probably a lot of junk.When the box is closed. A short time of wandering away was over. Each one that leaves. Some might be content, others a tad bewildered, not entirely sure what just happened, and that's perfectly okay. What they do know is that they've collected something special—a handful of laughter, the taste of ginger tea, the echo of an ancient joke. It's a piece of a dream, a little rough around the edges, people might take this piece of subtle moments into some future.
Today's Wanderings
- I accidentally found a newspaper with the same name as mine: zuzu
- 迷人的 Christmas dream: 圣诞分队
- Archive Animals as Objects?
Tuesday 14 November
Broadcast 9
Pad for Broadcast 9, on this pad user who uses a pink and purple background attached a link to Interview with a Photocopier, it seemed like a stream-of-consciousness interview conversation, I wasn't quite able to understand. Interestingly, this interview comes from Datacide, which, in its introduction, emphasizes that it is not affiliated with any particular political group, reminds me of a picnic-related political event The Pan-European Picnic, it was a peaceful demonstration that was recognized as a link in the chain reaction that led to the collapse of the Soviet Union.
Wednesday 15 November
Interview&Community
Pad for 15 Nov
Interview Ife with Mania
Background information:
- Third Places refer to social spaces that are separate from routine environments such as work and home. Lending itself as a spiritual tonic our “Third Place” nurtures discourse that offers free form expression, perspective and togetherness. To create an inclusive community that highlights womanhood and the lives of marginalized groups we interact with all disciplines to raise social interaction and creative outlet among those that crave and deserve a liberating platform.
- Ife Carter is a young creative who likes to immerse herself in impact projects that amplify neglected narratives and stimulate collective thinking. In her work she aspires to learn from exchange with others in order to foster co-creation and imagination that connects people from different backgrounds and practices.
Pad for Backup Questions
Pad for Ife
Friday 17 November
Programming the LED strip
Using the % and if statements
void loop() { pixels.clear(); // Set all pixel colors to 'off'
// The first NeoPixel in a strand is #0, second is 1, all the way up // to the count of pixels minus one. for(int i=0; i<NUMPIXELS; i++) { // For each pixel...
// pixels.Color() takes RGB values, from 0,0,0 up to 255,255,255 // Here we're using a moderately bright green color: if ((i%3) == 0) { pixels.setPixelColor(i, pixels.Color(0, 255, 0)); } else if ((i%2) == 0) { pixels.setPixelColor(i, pixels.Color(0, 0, 255)); } else { pixels.setPixelColor(i, pixels.Color(255, 0, 0)); }
pixels.show(); // Send the updated pixel colors to the hardware.
delay(DELAYVAL); // Pause before next pass through loop }
Add a potentiometer to control the brightness
int knob = analogRead(A0);
void setup() { // These lines are specifically to support the Adafruit Trinket 5V 16 MHz. // Any other board, you can remove this part (but no harm leaving it): #if defined(__AVR_ATtiny85__) && (F_CPU == 16000000) clock_prescale_set(clock_div_1); #endif // END of Trinket-specific code.
Serial.begin(9600);
pixels.begin(); // INITIALIZE NeoPixel strip object (REQUIRED) void loop() { int knob = analogRead(A0); int brightness = map(knob,0,1023,0,255); Serial.println(brightness); pixels.setBrightness(brightness); for(int i=0; i<NUMPIXELS; i++) { // For each pixel... pixels.setPixelColor(i, pixels.Color(50, 50, 230)); pixels.show(); } }
Interview Ife with Mania
The whole interview was very enjoyable, Ife is a very energetic and thoughtful creator and she mentioned that the Radio Worm community feels like the living room of a home to her, inclusive and providing security for creators.
WEEK 10
Monday 20 November
Machine Listening and Voice Analysis
Instructions A workshop gives us an initial exploration of the
- Visualise sounds
- Cloning our own sounds with existing sound modelsI transcribed a passage of my reading(Chinese) in the voice of the narrator of the Baldur's Gate 3.
Today's Wanderings
- The “Gift Alchemy” of the Fava Bean
- Alt Text as Poetry WorkbookBy Bojana Coklyat and Shannon Finnegan
- THE SERVICEBERRY An Economy of Abundanceby Robin Wall Kimmerer.This article refers to a very simple economic system, the gift economy. A case in point, people can buy a wool scarf in a store, or receive a gift of a scarf knitted by someone close to them, and while they both physically function to keep them warm, the emotional connection they have with the item is quite different. I realized that this concept explains well my own preference for the picnic box metaphor. The community network created through the gift economy does not judge wealth by material possessions, nor does it artificially disrupt the status quo to increase the scarcity of certain goods. As Ife, the creator of Third Space, mentioned in a previous interview, she gained a sense of belonging at WORM. The gift attribute of this sense of belonging will naturally lead to feelings of gratitude, which in turn triggers positive reciprocity. If the apocalypse metaphor mentioned in the SPECIAL ISSUE is continued, exploring the gift economy in an apocalypse scenario (post-apocalypse picnic), I think I'll try to explore that direction.
Tuesday 21 November
Discussion about the preparation
Pad for 21 Nov
Discussion about the preparation for event on 2023-12-07.
XPUB1 will create the website for the special issue 22 here.
Today's Wanderings
Wednesday 22 November
Launch Event Integration Meeting
Pad for 22 Nov
Sound to Motion Graphics by TD 0.1
Basic Concept of TouchDesigner
Results of the first try