# Genuary2023_StealLikeArtists

### **The prompt for Genuary 2023 Day 6 is**

## StealLikeAnArtist

Prompt is based on a book: https://austinkleon.com/steal/

For this prompt, I decided to code with a **Hydra** sketch that I "Stole" from a previous sketch made in 2019 and reworked. Also for this prompt, I decided to use [Seis8s](https://seis8s.org/) made by Luis.

<iframe width="560" height="315" src="https://www.youtube.com/embed/xyip12EHWF4"></iframe>

The " ***Steals"*** in this particular piece are

* Remixing code previously used in two ways ( Audio + Visual and Added an Oil Painting Filter on Top)
    
* Stealing a Hand to make the art over by using a green screen
    
    * Also on the site of the book mentioned prior, one of the rules is "Use your Hands"
        
* When we think of theft, hands are one of the first objects that come to mind
    
    * And we assume that the bulgar has gloves on
        

### **Poem**

```plaintext
For the hands reach
To where they can squeeze
For the fingers, linger
To the places, where they teach
To the spaces, where there are breezes
That caresses 
With its presence
For the fingers, linger
For where the hands can reach
```

## **Visual Code**

```javascript
//Hydra Code

osc(10, 0.9, 300)
.color(0.9, 0.7, 0.8)
.diff(
  osc(45, 0.3, 100)
  .color(()=> (time % 20)/20 + 0.1, 1.9, 2.9)
  .rotate(0.175)
  .pixelate(1100)
  .kaleid([47,13,4,2,1].smooth())
)
.scrollX([2,-1,2,-1,2,-1,3])
.luma(0.6)
.repeatX(()=> time % 11 + 1)
.repeatY(() => 12 - (time % 10))
.modulateRotate(
  osc(1, -0.9, 320)
)
.scale(()=> time % 12 + 3)
.out()

speed = 0.0925
```

### **Audio Code**

```javascript
//Seis8s COde

//– Different tempos for the sound, slowed down an extra 35%

//tempo 0.135;
// tempo 0.335
//  tempo 0.655


acordes [re m,fa];
acompanamiento (2 5 4) $ cumbia teclado;
alternar 5 (acompanamiento (2 5 1 18)) $ acompanamiento (3 1 20) $ cumbia teclado; 
tumbao ["13c" "5d", "1b" "3b" "7e"] [2 1 20, 3 1 20, 4 15 7]  $ cumbia bajo;
tumbao 3 $ cumbia congas;
tumbao 5 $ cumbia guira;
```
