# NaPoWriMo x NaPoGenMo 2024 Day1 Glitchy & Short

# GlitchyPoeticRoll

For the first day of NaPoWriMo/NaPoGenMo 2024, I found a random prompt to use of Glitchy & Short. The Coding Languages used for this was ***playertdfgcvb & Hydra.***

## Poem

```ocaml
Starting With A Short Poem to Roll in
To Get Things Flowing' 
'Rotating Lines to get them glowing and flow in'
```

## Video

<iframe width="560" height="315" src="https://www.youtube.com/embed/hmiwk0xJAKw?si=ZOHIunauffTQ9H-Q"></iframe>

## Code

### play.ertdfgcvb

```javascript
/**
@author illestpreacha
@desc   Poetic Simple FLow
*/
export const settings = { fps : 2,
						 
    backgroundColor : 'aqua',
    color           : extra(),
    fontSize        : '3ef',
						 
    fontWeight      : 'bold' // or 100}
}


export function main() {
return Math.random() < 0.5 ? 'Starting With A Short Poem to Roll in \n To Get Things Flowing' : 'Rotating Lines to get them glowing and flow in'
}


export function extra()
{	
return Math.random() < 0.5 ? 'black' :'red'
}
```

### Hydra

```javascript

s0.initScreen()

src(s0).colorama(()=> (time % 10  + 1)/20).scrollX([0.5,-0.25,0.3,0.1,-0.15]).scrollY([0.1,0.3,-0.25,0.2,-0.11]).scale(0.75).add(src(s0).scale(1.3)).out()

speed = 0.5
```
