You’re BUSTED With Steve Vai

The guitar guru is back! “Busted” by Steve Vai is a blues-rock song that speaks to the struggles of being an artistic creator in an unforgiving world. It talks about how despite facing hardships and challenges, it’s important to stay true to one’s artistry and that hard work will eventually pay off. The song uses vivid metaphors to express the idea of never giving up, despite facing set backs and criticism. In the end, it serves as an ode of appreciation for all forms of creativity and how they can be a source of beauty in a chaotic world.

Audio Player

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Copyright © 2025 Masters Radio
document.addEventListener('DOMContentLoaded', function () { var shuffleBtn = document.getElementById('shuffle-playlist'); if (!shuffleBtn) return; shuffleBtn.addEventListener('click', function () { // Find the playlist container var playlist = document.querySelector('.wp-playlist-tracks'); if (!playlist) { alert('Playlist not found. Please check the selector.'); return; } // Get all tracks as an array var tracks = Array.from(playlist.querySelectorAll('.wp-playlist-item')); // Fisher-Yates shuffle for (let i = tracks.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [tracks[i], tracks[j]] = [tracks[j], tracks[i]]; } // Remove all tracks and re-append in shuffled order tracks.forEach(track => playlist.appendChild(track)); // Optionally, play the first song after shuffling: // Try simulating a click on the first song's link setTimeout(function () { var firstTrack = playlist.querySelector('.wp-playlist-item a.wp-playlist-caption'); if (firstTrack) firstTrack.click(); }, 300); }); });