In this course, you’ll learn the fundamentals of coding while composing captivating tunes. You’ll discover how to create melodies, experiment with synthesizers, and layer different instruments to build complex and harmonious compositions using Sonic Pi – a platform where you use programming to create music. Each lesson will take you deeper into the world of Sonic Pi – providing you with the tools to express yourself artistically while sharpening your coding skills.
Noticeboard and FAQs:
All communication about the programme, updates on modules, competition, etc will be on the notice board, so make sure to check it out often.
How long with the course be available?
You have until the end of August to complete all the courses in this track
How can I get support?
Please Email ict@cariri.com If you have any questions that cannot be answered through the noticeboard or our chatbot.
// Get the modal
var modal = document.getElementById(“myModal”);
// Get the button that opens the modal
var btn = document.getElementById(“openModalBtn”);
// Get the element that closes the modal
var span = document.getElementsByClassName(“close”)[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = “block”;
}
// When the user clicks on (x), close the modal
span.onclick = function() {
modal.style.display = “none”;
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = “none”;
}
}