Robert Adams Illusion Awakening Quote Pic

“It’s all an illusion. There is only God. There is only consciousness.

Everything else is an appearance. Enjoy the world if you can, but do not allow the world to be your Master. Do not allow the world to tell you how things are.

Do not allow the news, or the newspaper, or the way of the world to confound you and confuse you, and to make you sad, or angry, or upset you.”

-Robert Adams

Leave a Comment

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

// Add this code to your theme's footer or in a custom plugin jQuery(document).ready(function($) { // Check if the drum pattern container exists if ($('.drum-pattern-container').length) { console.log('Found drum pattern container'); // Get raw pattern data var rawPatternData = $('.drum-pattern-container').attr('data-pattern-data'); console.log('Raw pattern data:', rawPatternData); // Try to manually display empty data to replace the problematic one $('.drum-pattern-container').attr('data-pattern-data', '[]'); // Force a basic pattern structure var basicPattern = [ { id: 0, beats: [ { id: 0, notes: [] }, { id: 1, notes: [] }, { id: 2, notes: [] }, { id: 3, notes: [] } ] } ]; // Try this alternate approach $('.drum-pattern-container').data('pattern-data', basicPattern); console.log('Fixed with empty pattern'); } else { console.log('No drum pattern container found'); } });