The Two Most Powerful Words

Catagory:

Power of the mind

Beware! When you use these 2 words you are unleashing an energy that’s so powerful that it will manifest into reality anything connected with it. A sheer transformational power.

These two words are I and AM. When these are connected and used as ‘I AM’, anything that follows this reaches the subconscious directly and triggers a complex chain of reactions( including physiological and psychological). And this sets into motion people and situations to bring to fruition all that’s said. So NEVER use sentences like ‘I AM UNHEALTHY’ or ‘I AM UNLUCKY’ or I AM UNHAPPY etc because you are triggering a danger zone. Always be aware and say’ I AM HEALTHY’, ‘I AM ABUNDANT’, ‘I AM CONFIDENT’ etc. Interestingly, you don’t have to ‘feel’ that way in the beginning to say it. You will soon start generating the feeling and then Watch the Magic. Just try it.

VIJAY PARTHASARATHY.

Energising Brands | Elevating Minds

© 2023 VIJAY PARTHASARATHY.

Vijay@email.com

Contacts

(+91) 1234567890

New Delhi

Powered by Tealfeed

// --- SERVER CODE --- const jwt = require('jsonwebtoken');   const secret = process.env.CHATBOT_IDENTITY_SECRET; // Your chatbase secret key (should be stored as a secret not in the code)   const user = await getSignedInUser(); // Get the current user signed in to your site   const token = jwt.sign( { user_id: user.id, // Your user's id email: user.email, // User's email stripe_accounts: user.stripe_accounts, // User's stripe accounts for stripe integration // ... other custom attributes }, secret, { expiresIn: '1h' } );   // --- CLIENT CODE --- const token = await getUserToken(); // Get the token from your server window.chatbase('identify', { token }); // identify the user with Chatbase