# Genuary2026_UnexpectedPath

**GlitchyPathways** is coded in ***Locomotion & HydraVideoSynth*** and shows some potential Unexpected Paths `(Prompt 18 of Genuary2026)` in the different passes (Coded, Glitchify and then Coded Glitch)

## Poetry

```ocaml
A presence for transference
Between spaces
A liminal space
A liminal pace
A liminal phase
A liminal place
Where it exposes the outer limits
But the external mind is able to pivot
```

## Video

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

## Code

### Locomotion

```haskell
b n = dancer {url= "mushy", size= sin(n)+1 / range -1.25 1.25 (osc 0.015), animation=[1,n,1,n+1,1,n+3],
 dur=3, x= sin(n)* range-9 9 (osc 0.1) / n, y= 0.5 +(-4)/(sin(n)*9) - n/9, 
z= n*(0.5) + range -2 2 (osc 0.1) , rz = range -10 50 (osc 0.1),ry = n / range -50 50 (osc 0.1),
ly = sin(n) * range -130 150 (osc 0.1),rx = sin(n) * range -130 150 (osc 0.1) + n * 10};

for [0..19] b;
```

### HydraVideoSynth

#### Pass 1

```javascript
s0.initScreen()

src(s0).modulateScale(src(s0).scrollX([0.5,-0.25,0.3,0.1,-0.15]).
colorama([0.1,0.3,0.5].smooth()),5.25).scrollY([0.25,0.5,-0.5,-0.3,-0.1,0.15]).
modulateRotate(src(s0),[5,4,3,2,1,2,3,4]).add(src(s0).scale(1.05)).add(src(s0).scale(1.15)).out()
```

#### Pass 2 After the Effects

```javascript
//Same Code As Above

s0.initScreen()

src(s0).modulateScale(src(s0).scrollX([0.5,-0.25,0.3,0.1,-0.15]).
colorama([0.1,0.3,0.5].smooth()),5.25).scrollY([0.25,0.5,-0.5,-0.3,-0.1,0.15]).
modulateRotate(src(s0),[5,4,3,2,1,2,3,4]).add(src(s0).scale(1.05)).add(src(s0).scale(1.15)).out()
```
