Qualifications

The ‘Official’ 3rd Person Bio

 

Reverend Bobbe Bramson is a licensed, ordained interfaith minister through the Angel Ministry of Gateway University, and is of the lineage of the Order of the Seraphim. She is also ordained within the Order of Melchizedek and is a member of HTPA (Healing Touch Professional Association). Bobbe Bramson

Her certifications include:

6th Generation Usui Reiki Master Teacher (RMT)

Karuna Reiki Master Teacher

VortexHealing® Divine Energy Practitioner

IET Master Instructor (Integrated Energy Therapy-an Angelic healing art)

Green Tara Seichem Practitioner

Bobbe has spent over thirty years working in the creative and metaphysical/spiritual arts and because of her eclectic and richly diverse background she is able to synthesize a very special blend of healing techniques and transformational tools custom-designed for each individual to help them awaken to, explore, and express their unique gifts.

 

Find out what’s in my Healing Toolbox

 

Bobbe has taught for four decades and takes great pleasure in turning people on to spiritual expansion and soul exploration. She creates and facilitates SoulTreasure play-shops, Angel Radiance Healing Circles, and monthly Reiki Wisdom Salons.

As both a healer and teacher Bobbe is known for her attuned and insightful wisdom, her genuine caring and warmth, and her ability to be an innovative and inspirational catalyst for positive change.

Bobbe is a mystical seeker and as such she is continually expanding her learning. She has been a member of the Western Mystery School, Builders of the Adytum for several years and also studies Authentic Kabbalah with Shifra Hendrie. She studied creativity coaching with Eric Maisel and has learned from many amazing teachers including indigenous Grandmothers and Angel teachers Rev. Dr. Kimberly Marooney and Karen Paolino. She is also currently working with the fabulous healer and coach Mary A. Hall.

Bobbe is a lifelong musician, songwriter and environmental and animal rights activist. She continues to be an outspoken advocate for the importance of having reverence for the Sacred and the Beautiful in all of life.

The guiding intention in all of her work is to empower women to shine their most authentic Light into the world.

 

Want to work with Bobbe?

const {RecaptchaEnterpriseServiceClient} = require('@google-cloud/recaptcha-enterprise'); /** * Create an assessment to analyze the risk of a UI action. * * projectID: Your Google Cloud Project ID. * recaptchaSiteKey: The reCAPTCHA key associated with the site/app * token: The generated token obtained from the client. * recaptchaAction: Action name corresponding to the token. */ async function createAssessment({ // TODO: Replace the token and reCAPTCHA action variables before running the sample. projectID = "causal-fort-262505", recaptchaKey = "6LdCXgctAAAAAG4UiTRGe-Iz56ICnuJn6hTrmrEA", token = "action-token", recaptchaAction = "action-name", }) { // Create the reCAPTCHA client. // TODO: Cache the client generation code (recommended) or call client.close() before exiting the method. const client = new RecaptchaEnterpriseServiceClient(); const projectPath = client.projectPath(projectID); // Build the assessment request. const request = ({ assessment: { event: { token: token, siteKey: recaptchaKey, }, }, parent: projectPath, }); const [ response ] = await client.createAssessment(request); // Check if the token is valid. if (!response.tokenProperties.valid) { console.log(`The CreateAssessment call failed because the token was: ${response.tokenProperties.invalidReason}`); return null; } // Check if the expected action was executed. // The `action` property is set by user client in the grecaptcha.enterprise.execute() method. if (response.tokenProperties.action === recaptchaAction) { // Get the risk score and the reason(s). // For more information on interpreting the assessment, see: // https://cloud.google.com/recaptcha/docs/interpret-assessment console.log(`The reCAPTCHA score is: ${response.riskAnalysis.score}`); response.riskAnalysis.reasons.forEach((reason) => { console.log(reason); }); return response.riskAnalysis.score; } else { console.log("The action attribute in your reCAPTCHA tag does not match the action you are expecting to score"); return null; } }