# WCCChallenge_Feedback

# FrontFeed

For this week's Creative Code Challenge by @sableraph: "Feedback", FrontFeed is coded in ***SonicPi & Hydra*** while taking both the audio and visual feedback to make the piece.

## Poem

```ocaml
Glitchy Tales
may prevail
as the camera sails
and the voices wails
```

## Video

<iframe width="560" height="315" src="https://www.youtube.com/embed/StSaFgbu3iQ?si=gKDxeCa3epPleVSb"></iframe>

## Code

### Hydra

```javascript
 
s0.initCam()

src(s0).blend(osc(3,1,1).colorama()).modulateKaleid(s0,2).
modulateScale(osc(1,1,1),0.75).luma([0.5,0.3,0.1,0.3,0.5].smooth()).
modulatePixelate(noise(0.25,0.15,0.11).scale([0.5,2,1,3,0.75,4].smooth().
fast(0.14))).diff(src(s0).rotate([0.5,0.4,0.3,0.2,0.1].smooth())).out()


speed = 0.4145
```

### SonicPi

```ruby
live_loop :blah do
  use_random_seed Time.now.to_i
  with_fx :echo, mix: [0.5,0.3,0.1,0.7].choose  do
    with_fx :vowel, voice: dice(3), mix: 0.15 do
      with_fx :wobble, seed: dice(49) + 1 do
        with_fx :flanger, decay: [7,15,15,3].choose, depth: [2,3,1].tick do
          with_fx :whammy, mix: [0.34,0.15,0.67].choose do
            with_fx :distortion, mix: [0.75,0.25,0.15,0.35].choose do
              live_audio :dynamic do
              end
              
            end
          end
          
        end
      end
    end
  end
  sleep 5
end
```
