How Hypocritical Are We?

Catagory:

Power of Branding

When until recently, the not so rich local Auto driver asked for an extra few bucks either when it was raining or when he felt the business was low, we resisted tooth and nail, got complaint numbers direct to the cops etc and put the fear of God into him.

BUT NOW, When a $50 Billion dollar valued Uber does the

BUT NOW, When a $50 Billion dollar valued Uber does the same thing but with the Tech jargon called ‘surge pricing’ we meekly seem to press the ‘submit’ button.

Should we be doing this? Or can we and do we want to do something about it? Something to think about!! Cheers

Or can we and do we want to do something about it? Something to think about!! Cheers

Something to think about!! Cheers

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