# SonicPiRemix_2022-08-19

Little Improv SonicPi Session by remixing Today's code tweeted by

<blockquote class="twitter-tweet"><p lang="en" dir="ltr">live_loop :Horlivka do <br> with_fx :gverb do <br> play choose( [ :G4, :Ds2 ] ) ,delay: 0.2 ,amp: 0.1 <br> sleep 1 <br> end <br> end <br> # Run this in <a href="https://twitter.com/hashtag/SonicPi?src=hash&amp;ref_src=twsrc%5Etfw">#SonicPi</a> - get it at <a href="https://t.co/YzinCTcTP8">https://t.co/YzinCTcTP8</a></p>&mdash; iamnotsonicpi (@iamnotsonicpi) <a href="https://twitter.com/iamnotsonicpi/status/1560611424849633286?ref_src=twsrc%5Etfw">August 19, 2022</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>

## Remixes for the Tweet

This remix of the above code places emphasis on adding a ***sine synth***, a selection of variables for the sleep function and adding the ***krush Mix***. As Well as adding another layer of notes

<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1327282024&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe><div style="font-size: 10px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;"><a href="https://soundcloud.com/llestreacha" title="IllestPreacha" target="_blank" style="color: #cccccc; text-decoration: none;">IllestPreacha</a> · <a href="https://soundcloud.com/llestreacha/2022-08-19-iamnotsonicpiremix" title="2022 - 08 - 19 - IamNotSonicPIremix" target="_blank" style="color: #cccccc; text-decoration: none;">2022 - 08 - 19 - IamNotSonicPIremix</a></div>


```Ruby

live_loop :Hrlvka do
  with_fx :krush, mix: 0.3 do
    with_fx :gverb do
      synth :sine
      play choose([:G4,:Ds2,:Bs4,:F2]),decay: [0.1,0.2].choose,amp: 3
      play choose([:G4,:Ds2,:Bs4,:F2]), amp: 3
      sleep [0.25,0.5,1].choose
    end
  end
end

``` 
For this Second Remix, the major change was adding a couple more Fx's (***hpf & ping_pong***) with their mix output controlled by a randomizer. 

The sine synth isn't alone in this remix as there have been additions to the soundscape provided by the ***pretty_bell & prophet synths***

<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1327294072&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe><div style="font-size: 10px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;"><a href="https://soundcloud.com/llestreacha" title="IllestPreacha" target="_blank" style="color: #cccccc; text-decoration: none;">IllestPreacha</a> · <a href="https://soundcloud.com/llestreacha/2022-08-19-sonicpiremix-2" title="2022 - 08 - 19 - SonicPiREmix 2" target="_blank" style="color: #cccccc; text-decoration: none;">2022 - 08 - 19 - SonicPiREmix 2</a></div>


```Ruby

live_loop :Hrlvka do
  with_fx :hpf do
    with_fx :ping_pong, mix: rrand(0.1,0.7) do
      with_fx :krush, mix: rrand(0.1,0.6) do
        with_fx :gverb do
          synth [:sine, :pretty_bell, :prophet].choose
          play choose([:G4,:Ds2,:Bs4,:F2]),decay: [0.1,0.2].choose,amp: dice(3)
          play choose([:G4,:Ds2,:Bs4,:F2]),attack: [0.1,0.2,0.3,0.2].choose, amp: dice(3)
          sleep [0.25,0.5,0.75,1].choose
        end
      end
    end
  end
end

``` 
