# NaPoWriMo x NaPoGenMo 2024 Day12: Glitchy & Short Pt 2

# GlitchyPoeticWhirl

For the 12th day of **NaPoWriMo/NaPoGenMo 2024**, I am reusing the prompt of Glitchy & Short. The Coding Languages used for this was ***playertdfgcvb & Hydra*** and then was slowed down and layered for effects.

## Poem

```ocaml
Words That Move 
Can Hit a Groove 
That fills a room 
Even when gloom
```

## Video

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

## Code

### play.ertdfgcvb

```javascript
/**
@author illestpreacha
@title  Coordinates: x, y in poem
@desc   Use of coord.x and coord.y
*/

const density = 'Words That Move \n Can Hit a Groove \n That fills a room \n Even when gloom'

export function main(coord, context, cursor, buffer) {

	// Shortcuts for frame, cols and coord (x, y)
	const {cols, frame } = context
	const {x, y} = coord

	
	const index = (cols + y  + x * 1  + frame / Math.hypot(y/x)) % density.length

	return density[index]
}
```

### Hydra

```javascript
s0.initScreen()

src(s0).scale([2.5,1,1.5,1,2.5]).out()
```
