# #WCCChallenge-Melting

For this week's WCC Challenge Topic : Melting. I decided to use the language : Seis8s developed by Luis Navarro. As explained by Luis:

*"Seis8s is a web-based computer language that allows real-time interaction with digital audio and localized musical knowledge. Seis8s revolves around commands that relate to Latin dance music "
*

Seis8s is used to represent a soundtrack, an audio representation of how the movements in a room/environment that is melting can sound like


To use the code below : Copy and Paste it into the following site : https://seis8s.org/
There are examples located on the website , if you press the e button as shown in the image 


![screenshot-seis8s.org-2022.07.30-21_50_58.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1659232321548/L8F8WwsgK.png align="left")

Livecoded Version of **"Running Around in an Environment that is Melting"**

<iframe width="1180" height="664" src="https://www.youtube.com/embed/l5VITz7b3WU" title="WCCChallenge : Running Around in an Envionment that is Melting (Seis8s Produced)" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

**Code Snippets with Poetry(As Always)**
```
-- Everything is melting around you
-- you decide to make a run for it
--While the area is melting this is the soundtrack that plays in the room
--as the melting becomes fluent
-- which way, do you choose?

tempo 0.75;

acordes [re m, fa, la, la, la, re m, fa];
acompanamiento (2 3 4) $ cumbia teclado;
tumbao ["1a" "5a", "1a" "3a" "5a"] [1 3, 1 3 4, 2, 4 2] $ cumbia bajo;
cumbia guira;
acompanamiento 3 ("1a" "3a" "3a" "5a") $ cumbia teclado;
vol 1.1 $ tumbao 2 $ cumbia congas;
vol 1.14 $ tumbao 3 $ cumbia bajo ;
vol 1.05 $ tumbao 2 $ cumbia teclado;

``` 

```
tempo 0.75;

acordes [re m, fa, la, la, la, re m, fa];
acompanamiento (2 3 4) $ cumbia teclado;
tumbao ["1a" "5a", "1a" "3a" "5a"] [1 3, 1 3 4, 2, 4 2] $ cumbia bajo;
cumbia guira;
acompanamiento 3 ("1a" "3a" "3a" "5a") $ cumbia teclado;
vol 1.1 $ tumbao 2 $ cumbia congas;
vol 1.14 $ tumbao 3 $ cumbia bajo ;
vol 0.87 $ tumbao ["3a" "3a" "5a" "3a" "1a"] [2 3, 1 5 4, 2, 4 3 2] $ cumbia teclado;

``` 


```
tempo 0.95;

acordes [re m, fa, la, la, la, re m, fa];
acompanamiento (2 3 4) $ cumbia bajo;
tumbao ["1a" "5a", "1a" "3a" "5a"] [1 3, 1 3 4, 2, 4 2] $ cumbia teclado;
cumbia guira;
acompanamiento 3 ("1a" "3a" "3a" "5a") $ cumbia teclado;
vol 0.75 $ tumbao 2 $ cumbia bajo;
vol 0.86 $ tumbao 3 $ cumbia bajo ;
acordes [re m, fa,fa, re m, la, la, re m, re m, la, re m, fa, fa];
vol 1.05 $ tumbao 2 $ cumbia bajo;
vol 0.87 $ tumbao ["3a" "3a" "5a" "3a" "1a"] [2 3, 1 5 4, 2, 4 3 2] $ cumbia teclado;

``` 

