# Genuary2026_16x16Audio

# 256 Notes

**256 Notes** is coded in ***LiveCodeLab & Python***  with 16 samples that have 16 Sequences (16x16) `(Prompt 19 of Genuary2026) Dancers.`

## Poem

```ocaml
256 Notes
Motioning with no antidotes
Sounds arriving from any angle
With each moment, their notes dabble & dangle
```

## Audio

<iframe width="100%" height="300" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/soundcloud%253Atracks%253A2256104045&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>

[IllestPreacha](https://soundcloud.com/llestreacha) · [256Notes](https://soundcloud.com/llestreacha/256notes)

## Code

### LiveCodeLab

```javascript
if time % 40 > 25
	bpm 40
if time % 40 < 10
	bpm 80
if time % 40 > 10 and time % 40 < 25
	bpm 60

if time % 20 > 10
	play 'tranceKick'  ,'xxx-x--xx-x--xx-'
	play "pianoLHChord" + int(random 4) ,'xxxx-x--x---x-xx'
	play "beep" + int(random 4) ,'-----xxxxx---xxx'

else
	if time % 2 == 0
		play "scratch-med" + int(random 9) ,'xx---x--x---xxx-'
		play "pianoLDChord" + int(random 4) ,'xxx--xxx-xxx---x'
		play "scratch-rough" + int(random 4) ,'-x---xxx-xxx--xx'
	else
		play "tic" + int(random 5) ,'x-xxxxxx-xx-xx-'
		play "toc" + int(random 3) ,'-x-x----x---xx--'

if time % 45 < 26
	play "tranceKick" + int(random 4) ,'xx-x--x---xxx-xx'
	play "tweet" + int(random 14) ,'---x-x-xxx-x-x-x'
	play "voltage"  ,'xx-x------x--xx-'
	play "pianoRHChord" + int(random 4) ,'-x-xxx-xxx--xx-x'

play 'alienBeep'  ,'---xx---xx-xxx-x'
play "mouth" + int(random 5) ,'-x-xx-x----xx-xx'
play "penta" + int(random 16) ,'x-xxx--xx-xx--x-'
play "warm"  ,'-xx-----x-x-x-xx-'
```

### Python

```python
import random as rd

seq = ['x','-']

for i in range(16):
    
    seqAudio = rd.choices(seq, k=16)

    seqAudio1 = ''.join(seqAudio)
    
    print(seqAudio1)
```

#### Output of SeqAudio1

```ocaml
xxx--xxx-xxx---x
xxxx-x--x---x-xx
-x-xxx-xxx--xx-x
xx---x--x---xxx-
-x---xxx-xxx--xx
x-xxxxxx-xx-xx--
-x-x----x---xx--
xx-x--x---xxx-xx
---x-x-xxx-x-x-x
xx-x------x--xx-
---xx---xx-xxx-x
-----xxxxx---xxx
-x-xx-x----xx-xx
x-xxx--xx-xx--x-
xx-----x-x-x-xx-
xxx-x--xx-x--xx-
```
