# SonicPiRemix_2022-09-23

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

<blockquote class="twitter-tweet"><p lang="en" dir="ltr">use_random_seed 600<br> <br> live_loop :Remenchuk do <br> with_fx :octaver do <br> play :C3 ,delay: 2 ,sustain: 6 <br> sleep 0.25 <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/1573296264921288704?ref_src=twsrc%5Etfw">September 23, 2022</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>

## First Remix


- Adding the ***Ping Pong FX*** and changing the mix levels from the original ***Octaver FX***

- Added two synths ***(Pretty Bell & Dark Ambience)***

- Been a while since I have used the *** play_pattern_timed*** function, so decided to implement it alongside some ***choose & dice*** actions


```ruby

with_fx :ping_pong do
  live_loop :Rem do
    with_fx :octaver, mix: 0.3 do
      synth [:pretty_bell,:dark_ambience].choose
      play_pattern_timed scale(:c3, :major), 2.825, release: dice(2)
      sleep [0.5,1,2].choose
    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/1349641240&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-09-23-sonicpiremix" title="2022 - 09 - 23 - SonicPiRemix" target="_blank" style="color: #cccccc; text-decoration: none;">2022 - 09 - 23 - SonicPiRemix</a></div>


## Second Remix


- Trying out the same sonic structure but with different effects and slight timing changes


```ruby

live_loop :Rem do
  with_fx :vowel, mix: rrand(0.1,0.9) do
    with_fx :octaver, mix: 0.3 do
      synth [:pretty_bell,:dark_ambience,:blade].choose
      play_pattern_timed scale(:c3, :major), 1.325, release: dice(2)
      sleep [0.5,1,2].choose
    end
  end
end

live_loop :Rem2 do
  with_fx :ping_pong, mix: rrand(0.1,0.9) do
    with_fx :ixi_techno, mix: 0.5 do
      synth [:pretty_bell,:dark_ambience,:blade].choose
      play_pattern_timed scale(:a3, :minor_pentatonic), 1.325, release: dice(3)
      sleep [0.5,1,2].choose
    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/1349647219&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-09-23-sonicpiremix-2" title="2022 - 09 - 23 - SonicPiRemix 2" target="_blank" style="color: #cccccc; text-decoration: none;">2022 - 09 - 23 - SonicPiRemix 2</a></div>
