Skip to content
View beryann's full-sized avatar

Block or report beryann

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Traductions-de-documents-SCollider-en-francais Traductions-de-documents-SCollider-en-francais Public

    Projet de traductions en français de plusieurs tutoriels d'initiation à SCollider à l'origine en anglais /Project for French translations of several SCollider tutorials originally in English

    1 1

  2. Gracieuse mélodie - Graceful melody ... Gracieuse mélodie - Graceful melody (Sonic Pi)
    1
     
    2
      live_loop :kick do
    3
      sample :bd_haus
    4
      sleep 1
    5
      end
  3. Cercles1 Cercles1
    1
    osc(40, 0.2, 1.5)
    2
    	.mult(osc(60, 0.2))
    3
    	.add(osc(30, 0.1))
    4
    	.modulateKaleid(
    5
    		noise(2, 0), 2)
  4. A Hydra four colorful windows sketch! A Hydra four colorful windows sketch!
    1
     
    2
    osc(10,0.2,1.236)
    3
    .kaleid()
    4
    .rotate(0.8)
    5
    .invert()
  5. A 4 voices fugato with decrescendo A 4 voices fugato with decrescendo
    1
    use_bpm 100
    2
    set :kill,false #flag used to stop live_loops
    3
    fadeInitiate = rt(30) #use rt( ) function to set time independent of bpm
    4
    fadeTime = rt(30)
    5
    use_debug false #remove printout of synths playing
  6. Weird moon Weird moon
    1
    osc(20, 0.1, 2).mult(shape(999, 0.5))
    2
    .pixelate()
    3
    .rotate(() => time%360)
    4
    .out()