Can someone give me an earsketch song of summer to turn in

Answers

Answer 1

Answer: This is not mine.

from earsketch import *

from random import *

init()

setTempo(120)

genre = readInput("Pick a genre: Hiphop, RNB, or Rock.")

if genre == ("Hiphop"): measure = []

fitMedia(CIARA_SET_THEME_ATMOS_2, 1, 1, 5)

fitMedia(CIARA_SET_THEME_ATMOS_2, 1, 7, 11)

fitMedia(CIARA_SET_DRUMBEAT_5, 3, 7, 11)

fitMedia(CIARA_SET_BASSLINE_2, 2, 7, 11)

setEffect(1, VOLUME, GAIN, 0, 4, -60, 6)

setEffect(1, VOLUME, GAIN, -60, 6, 0, 7)

fillDrum = CIARA_SET_DRUMBEAT_5

beat = "0+++0+++0-000+00"

index = randint(1,5)

for measure in range (1, 7, 1):

  for index in range (index):

       makeBeat(fillDrum, 3, measure, beat)

def myFunction(startMeasure, endMeasure):

   fitMedia(CIARA_SET_BASSLINE_1, 4, startMeasure, endMeasure)

myFunction(7, 11)

fitMedia(CIARA_SET_THEME_ATMOS_2, 1, 10, 16)

fitMedia(CIARA_SET_THEME_ATMOS_2, 1, 18, 22)

fitMedia(CIARA_SET_DRUMBEAT_5, 3, 18, 22)

fitMedia(CIARA_SET_BASSLINE_2, 2, 18, 22)

for measure in range(11, 18, 1):

   makeBeat(fillDrum, 3, measure, beat)

def myFunction(startMeasure, endMeasure):

   fitMedia(CIARA_SET_BASSLINE_1, 4, startMeasure, endMeasure)

myFunction(17, 22)

fitMedia(CIARA_SET_THEME_ATMOS_2, 1, 23, 27)

fitMedia(CIARA_SET_THEME_ATMOS_2, 1, 29, 33)

fitMedia(CIARA_SET_DRUMBEAT_5, 3, 29, 33)

fitMedia(CIARA_SET_BASSLINE_2, 2, 29, 33)

for measure in range(22, 29, 1):

 makeBeat(fillDrum, 3, measure, beat)

def myFunction(startMeasure, endMeasure):

   fitMedia(CIARA_SET_BASSLINE_1, 4, startMeasure, endMeasure)

myFunction(29, 33)

if genre == ("RNB"): measure = []

fitMedia(CIARA_SET_THEME_ATMOS_1, 1, 1, 5)

fitMedia(CIARA_SET_THEME_ATMOS_1, 1, 7, 11)

fitMedia(CIARA_SET_DRUMBEAT_1, 3, 7, 11)

fitMedia(CIARA_SET_BASSLINE_2, 2, 7, 11)

setEffect(1, VOLUME, GAIN, 0, 4, -60, 6)

setEffect(1, VOLUME, GAIN, -60, 6, 0, 7)

fillDrum = CIARA_SET_DRUMBEAT_1

beat = "0+++0+++0-000+00"

index = randint(1,5)

if measure in range (1, 7, 1):

   for index in range (index):

       makeBeat(fillDrum, 3, measure, beat)

def myFunction(startMeasure, endMeasure):

   fitMedia(CIARA_SET_BASSLINE_1, 4, startMeasure, endMeasure)

myFunction(7, 11)

fitMedia(CIARA_SET_THEME_ATMOS_1, 1, 10, 16)

fitMedia(CIARA_SET_THEME_ATMOS_1, 1, 18, 22)

fitMedia(CIARA_SET_DRUMBEAT_1, 3, 18, 22)

fitMedia(CIARA_SET_BASSLINE_2, 2, 18, 22)

for measure in range(11, 18, 1):

   makeBeat(fillDrum, 3, measure, beat)

def myFunction(startMeasure, endMeasure):

   fitMedia(CIARA_SET_BASSLINE_1, 4, startMeasure, endMeasure)

myFunction(17, 22)

fitMedia(CIARA_SET_THEME_ATMOS_1, 1, 23, 27)

fitMedia(CIARA_SET_THEME_ATMOS_1, 1, 29, 33)

fitMedia(CIARA_SET_DRUMBEAT_1, 3, 29, 33)

fitMedia(CIARA_SET_BASSLINE_2, 2, 29, 33)

for measure in range(22, 29, 1):

   makeBeat(fillDrum, 3, measure, beat)

def myFunction(startMeasure, endMeasure):

   fitMedia(CIARA_SET_BASSLINE_1, 4, startMeasure, endMeasure)

myFunction(29, 33)

if genre == ("Rock"): measure = []

fitMedia(RD_ROCK_POPELECTRICLEAD_2, 1, 1, 5)

fitMedia(RD_ROCK_POPELECTRICLEAD_2, 1, 7, 11)

fitMedia(RD_ROCK_POPELECTRICBASS_1, 3, 7, 11)

fitMedia(CIARA_SET_BASSLINE_2, 2, 7, 11)

setEffect(1, VOLUME, GAIN, 0, 4, -60, 6)

setEffect(1, VOLUME, GAIN, -60, 6, 0, 7)

fillDrum = RD_ROCK_POPELECTRICBASS_1

beat = "0+++0+++0-000+00"

index = randint(1,5)

for measure in range (1, 7, 1):

   for index in range (index):

       makeBeat(fillDrum, 3, measure, beat)

def myFunction(startMeasure, endMeasure):

   fitMedia(CIARA_SET_BASSLINE_1, 4, startMeasure, endMeasure)

myFunction(7, 11)

fitMedia(RD_ROCK_POPELECTRICLEAD_2, 1, 10, 16)

fitMedia(RD_ROCK_POPELECTRICLEAD_2, 1, 18, 22)

fitMedia(RD_ROCK_POPELECTRICBASS_1, 3, 18, 22)

fitMedia(CIARA_SET_BASSLINE_2, 2, 18, 22)

for measure in range(11, 18, 1):

   makeBeat(fillDrum, 3, measure, beat)

def myFunction(startMeasure, endMeasure):

   fitMedia(CIARA_SET_BASSLINE_1, 4, startMeasure, endMeasure)

myFunction(17, 22)

fitMedia(RD_ROCK_POPELECTRICLEAD_2, 1, 23, 27)

fitMedia(RD_ROCK_POPELECTRICLEAD_2, 1, 29, 33)

fitMedia(RD_ROCK_POPELECTRICBASS_1, 3, 29, 33)

fitMedia(CIARA_SET_BASSLINE_2, 2, 29, 33)

for measure in range(22, 29, 1):

   makeBeat(fillDrum, 3, measure, beat)

def myFunction(startMeasure, endMeasure):

   fitMedia(CIARA_SET_BASSLINE_1, 4, startMeasure, endMeasure)

myFunction(29, 33)

finish()

Explanation:


Related Questions

While browsing the internet, you notice that your browser displays pop-ups containing advertisements that are related to recent keyword searches you have performed. what is this an example of

Answers

Answer:

Cookies or targeted advertising.

Other Questions
If my brother____ (do) his homeowrk over the weekend he ____ have to spend all of sunday doing it What was the cuban missile crisis? o castro's threat to destroy the island of cuba with nuclear missiles o a soviet attempted buildup of nuclear missiles in cuba that prompted a u.s. response o an offensive program against communist cuba that resulted in an armed conflict castro's attempt to learn the technology for developing nuclear weapons Why should a person care about his or her credit report? help me with this please :( 6. The three side lengths of a triangle are given. Which triangle is a right triangle?A. Triangle 1: 13, 6, 7B. Triangle 2: 7, 8, 13C. Triangle 3: 10, 11, 12D. Triangle 4: 10, 9,8 If an amount of heat Q is needed to increase the temperature of a solid metal sphere of diameter D from 4C to 7C, the amount of heat needed to increase the temperature of a solid sphere of diameter 2D of the same metal from 4C to 7C is Help pls!!!!!! A family sized box of cereal with dimensions 3x9x12 inches costs $6, while the regular size with dimensions 2x8x9 inches costs $4.50. What is the difference in price per cubic inch? How many moles of gas will occupy a volume of 2.5 l at 12.0 atm and 25c? Cmo se llama tu mejor amigo?De dnde eres t?De dnde es tuDe dnde es tu amigo/a?profesor/profesora? help with practice problem Find the radius of the circle with the given diameter.1. 10 inches if a helium filled ballon has a volume of 3.4l at 25c and 1.18atm., what is its volume at STP? What happens to a person infected with common cold Hello! I need to write a story, but I do not have a creative idea for the story. I wrote the first paragraph of the story, so please continue the story that I began. Please and thank you! Moreover, there is a requirement that we need to follow, so please check the requirement too! *I will use this as a resource and change it in my own word, so please continue the story with a creative idea! Please help!*This is the story that I wrote, and please continue:It was a peaceful Friday evening. Hara's best friend Victoria came to Hara's house at 7 pm. We were playing, but the leaves were slowly falling, the sun was setting, and we quietly began to hear the wind. Hara and Victoria were sitting near the fireplace, reading a book. Hara and Victoria were just about to finish the second and last page of the book when they suddenly heard a noise. Suddenly, the light went off and on, and then I got goosebumps all over my body. It sounded like crackle electricity, and it turned off before we could even guess what it was. Ceiling lights, air conditioning, and TV. His fireplace was Electric, so it went out too. It was pitch-black darkness everywhere. On a dark autumn night, the electricity in my house just went out... Your story should include all of the following:Creation of a mysterious, ominous settingUse of short sentences and quick dialogueInclusion of mysterious charactersInclusion of mysterious objectsHighlight your story according to the key belowA minimum of four paragraphs in lengthBe sure to highlight each of the writing techniques in your story as follows: All techniques that relate to the setting should be highlighted in pink All techniques that relate to pacing, use of short sentences, and quick dialogue should be highlighted in blue All techniques that relate to mysterious characters or objects should be highlighted in yellowNote: If you cannot highlight, then type "setting," "pacing," and "mysterious characters/objects" in parentheses-next to your descriptions. During Year 1, Hardy Merchandising Company purchased $40,000 of inventory on account. Hardy sold inventory on account that cost $24,500 for $38,000. Cash payments on accounts payable were $22,000. There was $26,000 cash collected from accounts receivable. Hardy also paid $5,100 cash for operating expenses. Assume that Hardy started the accounting period with $20,000 in both cash and common stock. For the rest of the day, neither of us spoke, it was obvious that she was no happier about the arrangement than I was.What is the correct way to write this sentence? Which summation formula represents the series below?1 + 2 + 6 + 24 Which Gothic theme is reflected in Toni Morrisons Beloved?a. murderb. entrapmentc. fading beautyd. unrequited love Suggest how damage to the air sacs can cause the symptom of breathless when exercising. Find the range of the data set 145, 612, 120, 349, 515, 212, 590.