# MinaCoding2025_Patterns

# SunnyTileViews

For ***MinaCoding2025* Prompt 18:** Patterns ,**SunnyTileViews** coded in **HydraVideoSynth, LiveCodeLab & Python creates** a viewscape of color patterns associated with a transition to summer from a rainy season through the lens of tiles. With aid from the Oil paint filter

## Poem

```ocaml
Rain Comes and goes
Along with the Sun
As the Rain Succumbs  
The flow of the rain
May sustain
Even after the sun arrives
As the Rain may  Hide
The sun ray flows
Alongside the Earth Souls
```

## Video

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

## Code

### HydraVideoSynth

```javascript
s0.initScreen()

src(s0).pixelate([50,75,100,25,10].smooth(),[5,15,25,50,15,5].smooth()).modulateScrollY(src(s0),0.25).modulateRotate(src(s0),[0.5,0.75,1].smooth()).invert().repeat([1,2,3,4,3,2,1].fast(0.04),[4,3,2,3,4].smooth()).out()

speed = 0.15
```

### Python

```python
import numpy as np
import seaborn as sns
import matplotlib.pylab as plt

def battle():
    #using the 0 & 1 to represent a ship versus the ocean and having a weighted value of 0.8 for ocean, 0.18 for boats and 0.02 for mines
    boats = [0,1,2,3,4,5,6,7,8,9,10,11]
    prob = [0.025,0.025,0.05,0.05,0.05,0.05,0.1,0.1,0.1,0.1,0.2,0.15]

    #by adding the (10,10) instead of 5, able to make an array with the weighted values
    shipyard2 = np.random.choice(boats, (16,16), p=prob)
    return shipyard2



def plotting(x,color):
    letters = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P'] #set for the columns
    uniform_data = x
    ax = sns.heatmap(uniform_data, linewidth=0.5,cmap=color) #changing it to blue for ocean representation
    ax.set_xticklabels(letters) #setting the ticks of the x axis to letters
    plt.show()
    return x

plotting(battle(),"Blues")
```

### LiveCodeLab

```javascript
bpm 88

play "pianoLHChord" + int(random 8) ,'x--x----x'
play "pianoRHChord" + int(random 3) ,'xx----x-xx'

play "detune" + int(random wave(4)) ,'--x- -xx- --x- -x-x'
play "dish" + int(random time % 12) ,'x'
play "downstairs"  ,'--x- -x-- xx-x- --x-'
play "glass"  ,'--x- -xx-- --x- -x-x'
```
