# MinaCoding2025_Message

# SkewedNarratives

For ***MinaCoding2025* Prompt 12: Message, SkewedNarratives**  is coded in ***Python & HydraVideoSynth*** representing how skewed narratives can affect perspective and knowledge transfer.

## Poem

```javascript
Skewed to the Hue
Skewed to the left
For Some Depth
Skewed to the right
To take its decided flight
Skewed to the Hue
For this is how the Story Flew
```

## Video

%[https://youtu.be/THe82-1wMRA] 

## Code

### HydraVideoSynth

```javascript
s0.initScreen()

src(s0).modulatePixelate(src(s0).pixelate(85,95)).modulateRotate(src(s0).colorama()).out()
```

### Python

```python
from matplotlib import pyplot as plt
import numpy as np

# generate 2 2D arrays of shape (6, 6) with random integers

#Right Skewed
Skewed_R = np.random.randint(12, 23, (8,8))

#Left Skewed
Skewed_L = np.random.randint(3, 18, (6,6))

# Creating histogram

#blues with  the left Skew
plt.hist(Skewed_L,
color = ["skyblue","blue","teal","cadetblue","aliceblue","azure"], 
bins='auto', label = 'skewed left')

#red with the right Skew
plt.hist(Skewed_R,
color = ["salmon","mistyrose","darkred","red","tomato","indianred","orangered",
"maroon"], bins='auto', label = 'skewed Right')  


# Show plot
plt.title("Skewed")
plt.show() 
```
