# WCCC_TypeWriter

# GlitchyWriter

For this week's Creative Code challenge by @sableRaph: “ ***Typewriter Art***”, **GlitchyWriter** uses **Hydra & LiveCodeLab** to create a glitchy typewriter effect with a poem written in real time

## Poem

```ocaml
Fly to The Sky
Fly to The Other Side
Make everything that is said
Something that is worth sharing
Something  that is worth hearing
Enjoy the process
Enjoy the Progress
The words, The Verbs
As these fly to the sky
beyond the realm of the pixels
as These Texts are soon to swivel

```

## Video

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

## Code

### Hydra

```javascript
s1.initScreen()

src(s1).scale(1.6).invert().colorama(()=> (time % 20 / 20 + 0.1)).
luma([0.5,0.3,0.1,0.74,0.34].smooth()).modulateScrollY(src(s1).scrollX([0.25,0.75],[0.15,-0.15].smooth()).
scrollX([0.15,0.15],[0.05,-0.05].smooth())).out()


speed = 0.087
```

```javascript
s1.initScreen()

src(s1).scale(1.6).invert().colorama(()=> (time % 20 / 20 + 0.1)).
luma([0.5,0.3,0.1,0.74,0.34].smooth()).
modulateScrollY(src(s1).scrollX([0.25,0.75],[0.15,-0.15].smooth()).
scrollX([0.15,0.15],[0.05,-0.05].smooth())).modulateRotate(src(s1),()=> time % 12 + 1).out()


speed = 0.087
```

### LiveCodeLab Audio

```javascript
bpm 75 - (time % 20) * 3
play 'penta',  '--x- -xx- x  x --x- --x-'
play 'beepC',      '-x-- -x-x x--x xxx-'
play 'beepA',      '--x- --xx-- --x- --xx--'
play "pianoLHChord" + int(random 3) ,'x'
play 'snap',   '--x- -x--x-- -xx- --x--'
play 'tense',      'x--x  x --x– x -x-- -x--'
play "warm"  ,'--x- -xx --x- -xx-'
play "warm"  ,'-xx- ---- xxx-'
play 'voltage',    'x-x- -x-- x-xx x-xx'
play 'cosmos', '-x-x x--x x-x  x- --xx'

```
