Skip to content
hellonun edited this page Nov 26, 2024 · 38 revisions
Useful links
- Syllabus first half
- Syllabus second half
- Video lecture on Coding Train
- Class resources and assignments
- p5.js Web Editor
- p5.js References
- Office hours (Nun)
Class notes
- Week 1 Notes: Drawing
- Week 2 Notes: Animation
- Week 3 Notes: Conditional Logic
- Week 4 Notes: Loops
- Week 5 Notes: Functions
- Week 6 Notes: Arrays and Objects
- Week 7 Notes: HTML / CSS / DOM
- Week 8 Notes: Images and Videos
- Week 9 Notes: Pixels
- Week 10 Notes: Sound I
- Week 11 Notes: Sound II
- Week 12 Notes: Text and Type

Week 11: Text and Type

Resources from class:

Assignment:

Week 11: Sound II

Resources from class:

Assignment:

  • DO:

    • Work in pairs. Due next Monday. Build a 60s algorithmic sound composition. No visuals. Just sound.
      • You can use samples, looping and interaction, but be sure to incorporate an algorithmic component to your composition.
      • Prepare 1-3 words to describe the piece. Listen to what you've made. Adjust your words.
      • Create a blog post documenting your work. Also include links to other projects that serve as references, inspiration, or deal with similar ideas as your piece.
      • If you use noise() or random(), use noiseSeed(0) and randomSeed(0) so you generate the same series of numbers each time you run the sketch.
      • If the change happens through user interaction, plan out the interaction ahead of time so the change is both intentional and repeatable. We will experience each project 2x.
    • Ideas for what you could do:
      • Design a melody using this process and figure out an algorithmic way to generate it.
      • Record bits of spoken word and loop them to create music. See SoundRecorder() Looper
      • Use sound samples and manipulate their playback rate() to control pitch instead of the oscillator.
      • Try implementing a different scale with different pitch ratios: More about scales.
      • Play with Timbre and make use of p5 Sound's post-processing features: Delay, Filter, Reverb, Convolver etc.
      • Don't simply mix existing sound files together. Discover something that you can't do using audio software by designing your own algorithm.
  • READ AND WATCH:

Homework Links

Week 10: Sound I

Resources from class:

Assignment:

Week 9: Pixels

Resources from class:

Assignments:

  • DO: Complete this WORKSHEET

  • DO:

    • Work in pairs. Due Monday 11/11. Manipulate an image or video at the pixel level. No sound. The image should change over the course of the minute. What is revealed? What is lost? Use the properties of color to focus our attention.
    • Demo your experience in class:
      • If the change happens through user interaction, plan out the interaction ahead of time so the change is both intentional and repeatable. We will experience each project 2x.
      • Use the p5 editor's fullscreen link to show your project fullscreen. You can access it through the File >> Share menu.
      • Use createCanvas(windowWidth, windowHeight);
      • Position and size screen elements in relation to the canvas width and height.
      • Look at Rothko's Cat for sample code.
    • Create a blog post documenting your work. Address / include the following:
      • Choose 2-5 words to describe how the image changes over time. Think about how the words answer the questions: What is is revealed, what is lost?
      • Links to other projects that serve as references, inspiration, or deal with similar ideas as your piece.
    • Consult resources from syllabus for inspiration. Pixels Week 1 | Pixels Week 2
  • READ AND WATCH:

Homework Links

  • Your Name -- [Title of Blog Post](Link to Blog Post), [Title of Sketch](Link to Code)

Week 8: Images and Videos

Resources from class:

Assignments: