# SonicPi Remix - 2022-07 -09

Little Improv Sonic Pi *session by remixing Code Tweeted by @Iamnotsonicpi

<blockquote class="twitter-tweet"><p lang="en" dir="ltr">live_loop :Zhytomyr do <br> with_fx :nlpf do <br> play :Cs5 ,release: 0.2 <br> sleep 4 <br> sleep 6 <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/1545752061085593600?ref_src=twsrc%5Etfw">July 9, 2022</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>

## Remixes for the Tweet

Remix 1 - Decided to have a randomizer on line 5 that work with the dice function in Sonic Pi as well as the absolute function and Math.sin on the release


```
with_fx :hpf do
  with_fx [:krush,:ixi_techno].choose, mix: 0.13 do
    live_loop :zhytom do
      with_fx :gverb do
        play chord([:Cs5,:Eb,:Ab].choose, :minor7), release: Math.sin(dice(14)).abs + 2 , decay: 3
        sleep [1,4,6].choose
      end
    end
  end
end

``` 
<iframe width="100%" height="300" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1302358972&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-07-09-iamnotsonicpiremix" title="2022 - 07 - 09 - IamNotSonicPIREmix" target="_blank" style="color: #cccccc; text-decoration: none;">2022 - 07 - 09 - IamNotSonicPIREmix</a></div>

Remix #2


```
with_fx :hpf, mix: 0.9 do
  with_fx :ixi_techno, mix: Math.sin(dice(10)).abs do
    with_fx :ping_pong, mix: 0.7, phase: 0.3 do
      live_loop :Zhyto do
        play chord(:Cs5, :major7),release: 4, sustain: 3, amp: 1.5
        play chord(:eb, :minor),release: 4, attack: Math.sin(dice(10)).abs, amp: 1.5
        sleep [2,3,6].choose
      end
    end
  end
end



``` 

