# MinaCoding2026_Rainy

# Rainy Lines

**For *MinaCoding2026*** *Day 12: Rainy,*  **RainyLines is a HydraVideoSynth & LiveCodeLab** Coded Visual Poem sketch of a rainy day

## Poetry

```javascript
Rainy Days, Rainy Lines
As sometimes
The Sun attempts to shine
But has to wait till it’s next rise
```

## Video

%[https://youtu.be/6dB1Aj_w_Ak] 

  

## Code

### LiveCodeLab

```javascript
simpleGradient skyblue,black,blue

10 times with i
	stroke aqua
	rotate 0,1,0
	move 0,sin(wave(0.3)),0
		line

10 times with i
	stroke aqua
	rotate 0,1,0
	move 0,sin(wave(0.4)),1
		line

10 times with i
	stroke aqua
	rotate 0,1,0
	move 0,sin(wave(0.5)),1
		line sin(time)*i, sin(time)*3, cos(time)

10 times with i
	stroke aqua
	rotate 0,1,0
	move 0,sin(wave(0.6)),1
		line

10 times with i
	stroke aqua
	rotate 0.02,1,0.02
	move 0,sin(wave(0.9)),1
		line sin(time)*i, sin(time)*3, cos(time)/i
```

## HydraVideoSynth

```javascript
s0.initScreen()

src(s0).pixelate(500,500).blend(src(s0).colorama()).blend(src(s0).pixelate(500,500) ).out()
```
