# WCCC_Unsatisfying

# UnsatisfyingArena

For this week's Creative Code challenge by [@sableRaph:](https://hashnode.com/@sableRalph)***"Unsatisfying",* UnsatisfyingArena** is coded in ***Hydra & LivecodeLab.*** It shows a potential unsatisfying level of sound manipulation and the different ways one may not be satisfied with a livecoding piece.

## Poetry

```ocaml
What is it that one desires?
Can the thoughts be summoned?
Or does it lack the ability to inspire
Couldn't be fantom’d
As there was no ability to truly manifest
The inner thoughts, the inner depths
But maybe,
It can be seen
```

## Video

Link: [https://youtu.be/B5CPfH\_ezkI](https://youtu.be/B5CPfH_ezkI)

<iframe width="1214" height="576" src="https://www.youtube.com/embed/B5CPfH_ezkI"></iframe>

## Code

### LiveCodeLab

```javascript
move 0.5, sin(time) + 0.3,tan(time) + 0.3
rotate wave(0.03), Math.cbrt(time % 3), cos

i = time % 3

4 times 
	box tan(wave(0.003)/ 15)/6, wave(0.0003)/5, i / 3



bpm 11
//should I go faster?
//maybe slower
play 'hoover',  '--x- -xx- x  x --x- --x-'
play 'pianoLDChord',      '-x-- ---- x--x xxx-'
play 'beepA',      '--x- --x-- x--x- --x--xx'
play 'snap',   '--x- -x--x-- -xx- --x--'
play 'tense',      'x--x  x --x– x -x-- -x--'
play 'voltage',    'x-x- -x-- x-xx x-xx'
play 'ciack', '-x-x ---x x-x  x- --xx'
move 0.5, sin(time) + 0.3,tan(time) + 0.3
rotate wave(0.03), Math.cbrt(time % 3), cos
```

### Hydra

```javascript
s0.initScreen()

src(s0).kaleid([1,2,3,4].smooth()).pixelate([5000,5000]).
modulateScale(s0).modulatePixelate(src(s0).scale(0.73)).out()
```
