# SonicPiRemix_2023-04-04

***Today's remix will be the following code snippet from @iamnotsonicpi bot***

## Original Tweet

```ruby
use_random_seed 2
 
 live_loop :spoilt_child do 
 play choose( [ :Cs2, :G4,  :D4 ] )      
 play :C2  ,delay: 0.5 ,sustain: 1 ,release: 1 ,amp: 1 
 sleep 0.125 
 sleep 4 
 end 
```

## First Remix

<iframe width="100%" height="300" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1490420995&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>

[IllestPreacha](https://soundcloud.com/llestreacha) · [2023 - 04 - 11 RemixingOf 04 - 04 Part1](https://soundcloud.com/llestreacha/2023-04-11-remixingof-04-04-part1)

```ruby
use_random_seed 2

live_loop :spoilt_child do
  with_fx :gverb, mix: 0.34 do
    with_fx  :ping_pong, mix: 0.75 do
      use_synth [:piano,:prophet].choose
      play choose( [:Cs2,:G4,:D4, :As4 ] )
      with_fx :wobble do
        play [:C2,:E2,:As2].choose  ,delay: 0.5 ,sustain: dice(2) ,release: dice(2),amp: dice(3)
      end
    end
  end
  sleep [0.125,2,4].choose
end
```

## Second Remix

<iframe width="100%" height="300" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1490424835&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>

[IllestPreacha](https://soundcloud.com/llestreacha) · [2023 - 04 - 11 RemixingOf 04 - 04 Part2](https://soundcloud.com/llestreacha/2023-04-11-remixingof-04-04-part2)

```ruby
use_random_seed 100

live_loop :spoilt_child do
  with_fx [:flanger,:wobble].choose, mix: 0.25 do
    with_fx  :ping_pong, mix: 0.95 do
      use_synth [:piano,:prophet].choose
      play choose( [:Cs2,:G4,:D4, :As4 ] )
      with_fx [:wobble,:whammy,:echo].choose, mix: 0.20 do
        play [:C2,:E2,:As2].choose  ,decay: dice(2) ,delay: 0.5 ,sustain: dice(2) ,release: dice(2),amp: dice(3)
      end
    end
  end
  sleep [2,4,8].choose
end
```
