# Genuary2024_UnderAKB

# WavesInNano

For **Genuary2024 Day 14: Under A Kilobyte,** A snippet of a world is view with code that is written in less than 500 bytes of text through Hydra, Tixyland & Bytebeat

## Poem

```ocaml
The waves have arrived
The waves have multiplied
Didn’t take alot ot be
But will take alot to leave
```

## Video

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

## Code

### ByteBeat

```javascript
((tan(t) | t >> 5) | t>> sin(t*t) | cos(t))
```

### TixyLand

```javascript
pow(t%i / ~x/y, t % 14 | i % 4)
```

### Hydra

```javascript
s0.initScreen()
s1.initScreen()

src(s0).colorama(()=>(time%15+1)/20).
scrollX(()=>(time%8)/176,()=>(time%10)/376).
modulateKaleid(noise(1,[1,3,5],[1,3].smooth()),3).
blend(src(s1).scale(2)).out()

speed = 0.15
```
