# MinaCoding2024_WordLimit

# Under400

For the 18th day of **MinaCoding2024 : "Word Limit"** , ***Under400****is* coded in **Hydra & SonicPi** without passing the 400 Character limit between them.

## Poem

```ocaml
The Limits
Make Pivots
Beyond a threshold
To work around the code
```

## Video

%[https://youtu.be/jX1LQUxrGrY] 

## Code

### Hydra - 325 Characters

```javascript
noise([5,3,7].smooth(),[1,2,3,2,1].smooth(),[1,7,14].smooth())
.luma([0.5,0.4,0.3,0.7,0.8].smooth()).modulateRotate(osc(3,1,1)
.diff(noise(1,3,5)).kaleid([4,3,2,1,2,6].smooth()),3)
.modulateScale(osc(3,1,1).color(0.5,0.5,0.25),[0.5,1,2,1,0.5].smooth())
.modulatePixelate(shape(4,4,4),[0.5,100,1000].smooth()).out()

speed = 0.015
```

### SonicPi - 69 Characters

```ruby
live_loop :x do
  sample :ambi_choir,beat_stretch: dice(4)
  sleep 1
end
```
