Joel Embiid on his terrible, horrible, no good, very bad first day at KU | The Kansas City Star
var userName = checkUserSubscribed('MPPUser');
var signInOrAccountLink = 'Sign In';
var subscribeLink = 'Subscribe';
var label = "My Account";
var signOutLink = '';
if (getSubscribedFlag)
if(userName)
userName = JSON.parse(userName);
subscribeLink = '';
signOutLink = 'Sign Out';
if (userName && userName.firstName && userName.lastName)
label = userName.firstName + ' ' + userName.lastName;
else if (userName && userName.firstName)
label = userName.firstName;
signInOrAccountLink = '' + label + '';
var subscriptionLink = 'Subscriptions';
if (1 === 1)
$(".right.paywall-links").prepend(signInOrAccountLink, " ", subscribeLink);
signInOrAccountLink = signInOrAccountLink.replace("main mh-only-lg", "");
var profileLink = signInOrAccountLink.replace(label, "Profile");
$(".account-popup .content").prepend(profileLink, subscriptionLink);
$(".account-popup .footer").prepend(signOutLink);
if (getSubscribedFlag)
$(".account-popup .user-name").prepend(signInOrAccountLink);
var f = userName.firstName.split('').shift();
var l = userName.lastName.split('').shift();
$(".account-links.mobile .initials").html(f+l);
else
var userIcon = '';
$(".account-links.mobile .initials").html(userIcon);
subscribeLink = subscribeLink.replace("impact mh-only-lg", "");
$(".account-popup .content").append(subscribeLink);
var userName = checkUserSubscribed('MPPUser');
var signInOrAccountLink = 'Sign In';
var subscribeLink = 'Subscribe';
var label = "My Account";
var signOutLink = '';
if (getSubscribedFlag)
if(userName)
userName = JSON.parse(userName);
subscribeLink = '';
signOutLink = 'Sign Out';
if (userName && userName.firstName && userName.lastName)
label = userName.firstName + ' ' + userName.lastName;
else if (userName && userName.firstName)
label = userName.firstName;
signInOrAccountLink = '' + label + '';
var subscriptionLink = 'Subscriptions';
if (1 === 1)
$(".right.paywall-links").prepend(signInOrAccountLink, " ", subscribeLink);
signInOrAccountLink = signInOrAccountLink.replace("main mh-only-lg", "");
var profileLink = signInOrAccountLink.replace(label, "Profile");
$(".account-popup .content").prepend(profileLink, subscriptionLink);
$(".account-popup .footer").prepend(signOutLink);
if (getSubscribedFlag)
$(".account-popup .user-name").prepend(signInOrAccountLink);
var f = userName.firstName.split('').shift();
var l = userName.lastName.split('').shift();
$(".account-links.mobile .initials").html(f+l);
else
var userIcon = '';
$(".account-links.mobile .initials").html(userIcon);
subscribeLink = subscribeLink.replace("impact mh-only-lg", "");
$(".account-popup .content").append(subscribeLink);
Joel Embiid discusses what he misses most about college at Kansas
jQuery(document).ready(function ()
mi.leadAssets.init();
);
No one has ever said former Kansas basketball star Joel Embiid isn’t entertaining.
On his social media accounts, Embiid trolls fellow players, criticizes the NBA, pokes fun at himself and roots hard for the Jayhawks. Embiid, who is now with the Philadelphia 76ers, also makes sure that Philly fans “trust the process.”
Embiid doesn’t seem shy about sharing his feelings and that was certainly the case in an essay written on The Players’ Tribune with the headline, “Story Time.”
It’s a tale of what Embiid has gone through to get to this point: a multimillionaire who is one of the bigger stars in the NBA.
var mi = mi || ;
mi.calltoActionCtrl = (function ()
var $subscriptionForm = document.querySelector('#story-cta-widget');
var $newsletterForm = document.querySelector('#newsletter-signUpWidget');
if ($newsletterForm != null)
var isNewsletterEnabled = getDataAttribute($newsletterForm, 'isNewsletterEnabled');
if (isNewsletterEnabled === 'true')
var $email = $newsletterForm.querySelector('#s_email_address');
var $submitBtn = $newsletterForm.querySelector('#newsletterSignupSubmit');
// Object that contains key values stored in data-attributes
var config =
newsletterPreferenceListNames: JSON.parse(getDataAttribute($newsletterForm, 'newsletterPreferenceListNames')),
siteName: getDataAttribute($newsletterForm, 'newsletterSiteName'),
newsletterUrl: getDataAttribute($newsletterForm, 'newsletterUrl'),
newsletterSuccess: getDataAttribute($newsletterForm, 'newsletterSuccess'),
;
var newsletterData =
siteName: config.siteName
;
function isEmailValid(email) (".+"))@(([[0-9]1,3.[0-9]1,3.[0-9]1,3.[0-9]1,3])
function getDataAttribute(el, attr)
var dataAttr = 'data-' + attr;
if (el.hasAttribute(dataAttr))
var val = el.getAttribute(dataAttr);
el.removeAttribute(dataAttr);
return val;
function getRandomArbitrary(min, max)
var randomNum = Math.random() * ((max - min) + min);
return Math.round(randomNum);
function removeNode(node)
if (node)
node.parentNode.removeChild(node);
function insertAfterNode(el, node)
if (node)
node.parentNode.insertBefore(el, node.nextSibling);
function insertHeadings(pos)
var $heading = document.createElement('h1');
$heading.classList.add('heading');
$heading.innerHTML = config.newsletterPreferenceListNames[pos].title;
$newsletterForm.insertBefore($heading, $newsletterForm.firstChild);
var $subtitle = document.createElement('p');
$subtitle.classList.add('subtitle');
$subtitle.innerHTML = config.newsletterPreferenceListNames[pos].headline;
insertAfterNode($subtitle, $heading);
function displayRandomNewsletter(num)
if($subscriptionForm)
removeNode($subscriptionForm);
$newsletterForm.classList.remove('hidden');
newsletterData.preferenceListName = config.newsletterPreferenceListNames[num].name;
$newsletterForm.querySelector('#newsletterType').value = config.newsletterPreferenceListNames[num].name;
insertHeadings(num);
function removeRandomCTA()
if (isNewsletterEnabled === 'true')
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length -1 );
if ($subscriptionForm && num === 0)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
displayRandomNewsletter(num )
notifyWidgetSelected($newsletterForm);
else
var num = getRandomArbitrary(0, 1);
if (num === 1)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
removeNode($subscriptionForm);
notifyWidgetSelected($newsletterForm);
if($newsletterForm != null)
$newsletterForm.classList.remove('hidden')
function notifyWidgetSelected(widget)
var newEvent = new CustomEvent('cta_widget', detail: widget);
window.dispatchEvent(newEvent);
function enableSubmitBtn()
$submitBtn.classList.remove('disabled');
$submitBtn.disabled = false;
function disableSubmitBtn()
$submitBtn.classList.add('disabled');
$submitBtn.disabled = true;
function showErrorMsg(node, msg)
var div = document.createElement('div');
div.classList.add('errorText');
div.innerHTML = msg;
insertAfterNode(div, node);
function validateNewsletter()
var errorMsg = $newsletterForm.querySelector('.errorText');
if (errorMsg)
errorMsg.remove();
if ($email.classList.contains('error'))
$email.classList.remove('error');
if (!isEmailValid($email.value))
showErrorMsg($email, "Please insert a valid email address!");
$email.classList.add('error');
disableSubmitBtn();
else
enableSubmitBtn();
;
function submitNewsletter(e)
e.preventDefault();
validateNewsletter();
if ($submitBtn.classList.contains('disabled'))
return false;
grecaptcha.execute();
newsletterData.emailAddress = $email.value;
$newsletterForm.setAttribute('data-json', JSON.stringify(newsletterData));
;
function eventHandlers()
$email.addEventListener('change', function (e)
validateNewsletter();
);
$newsletterForm.addEventListener('submit', function (e)
submitNewsletter(e);
);
$submitBtn.addEventListener('click', function (e)
submitNewsletter(e);
);
function init(isNewsletterEnabled)
/* eslint-disable no-undef */
var isLoggedIn = getSubscribedFlag;
/* eslint-enable no-undef */
if (isLoggedIn)
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length - 1);
displayRandomNewsletter(num);
else
removeRandomCTA();
if (isNewsletterEnabled === true)
eventHandlers();
return
init: init
());
/* function enableSubmitBtn(token)
mi.calltoActionCtrl.sendResponse(token);
*/
jQuery(document).ready(function ()
mi.calltoActionCtrl.init(true);
);
One of the interesting tidbits was Embiid recalling his first day with the KU basketball team and how it made him want to ... give up basketball.
“My very first scrimmage at Kansas, I got dunked on so hard by Tarik Black that I almost quit,” Embiid wrote. “Tarik dunked on me so hard that I was looking at plane tickets home. This guy was a senior. He was a grown man. I didn’t know what was going on. He got his own rebound and dunked over me so hard that everything went in slow motion.
“He dunked the ball off my head, for real. But I didn’t even tell you the worst part. The worst part was that the entire Kansas women’s hoops team was sitting in the bleachers watching the scrimmage. The whole gym was laughing at me. It was crazy. Seriously, it was like a WORLDSTAR situation.
“So I went straight to Bill Self’s office afterward and I said, ‘I can’t do this. You have to redshirt me. I can’t play with these guys.’
“And Bill was like, “What? Are you serious? In two years, you’re going to be the No. 1 pick in the NBA Draft.”
“The thing was, I had been told that all these college coaches lie. So I really thought he was trying to be slick with me. In my head, I was like, Alright, I’m just going to keep showing up and at least I’ll get a degree out of this. That will make my mom happy.”
Self wasn’t far off. Embiid was the third overall pick in the 2014 NBA Draft after just one season. Embiid was a second-team All-Big 12 selection and the conference’s defensive player of the year.
In a way, it was Embiid’s mother (and father) who helped him get through those early struggles.
“The only thing that kept me going was the way that I was raised by my parents,” Embiid wrote. “They always told us to keep working, no matter what. I had this DVD that my coach in Cameroon had mailed to me when I first came to America. It was an hour-long tape of Hakeem Olajuwon and some other legendary big men. I probably watched that DVD every single day for three years. I would study the way Hakeem moved, and I would go out and try to imitate him.
“I did it in high school, and I did it at Kansas.
“I was basically just imagining that I was a good basketball player. The power of the mind is kind of amazing. I mean, I sucked. But somehow, I convinced myself that I was Hakeem. And I started getting better and better. And then I sort of started killing it.”
You can read the entire essay here.
Joel Embiid discusses what he misses most about college at Kansas
jQuery(document).ready(function ()
mi.leadAssets.init();
);
No one has ever said former Kansas basketball star Joel Embiid isn’t entertaining.
On his social media accounts, Embiid trolls fellow players, criticizes the NBA, pokes fun at himself and roots hard for the Jayhawks. Embiid, who is now with the Philadelphia 76ers, also makes sure that Philly fans “trust the process.”
Embiid doesn’t seem shy about sharing his feelings and that was certainly the case in an essay written on The Players’ Tribune with the headline, “Story Time.”
It’s a tale of what Embiid has gone through to get to this point: a multimillionaire who is one of the bigger stars in the NBA.
var mi = mi || ;
mi.calltoActionCtrl = (function ()
var $subscriptionForm = document.querySelector('#story-cta-widget');
var $newsletterForm = document.querySelector('#newsletter-signUpWidget');
if ($newsletterForm != null)
var isNewsletterEnabled = getDataAttribute($newsletterForm, 'isNewsletterEnabled');
if (isNewsletterEnabled === 'true')
var $email = $newsletterForm.querySelector('#s_email_address');
var $submitBtn = $newsletterForm.querySelector('#newsletterSignupSubmit');
// Object that contains key values stored in data-attributes
var config =
newsletterPreferenceListNames: JSON.parse(getDataAttribute($newsletterForm, 'newsletterPreferenceListNames')),
siteName: getDataAttribute($newsletterForm, 'newsletterSiteName'),
newsletterUrl: getDataAttribute($newsletterForm, 'newsletterUrl'),
newsletterSuccess: getDataAttribute($newsletterForm, 'newsletterSuccess'),
;
var newsletterData =
siteName: config.siteName
;
function isEmailValid(email) (".+"))@(([[0-9]1,3.[0-9]1,3.[0-9]1,3.[0-9]1,3])
function getDataAttribute(el, attr)
var dataAttr = 'data-' + attr;
if (el.hasAttribute(dataAttr))
var val = el.getAttribute(dataAttr);
el.removeAttribute(dataAttr);
return val;
function getRandomArbitrary(min, max)
var randomNum = Math.random() * ((max - min) + min);
return Math.round(randomNum);
function removeNode(node)
if (node)
node.parentNode.removeChild(node);
function insertAfterNode(el, node)
if (node)
node.parentNode.insertBefore(el, node.nextSibling);
function insertHeadings(pos)
var $heading = document.createElement('h1');
$heading.classList.add('heading');
$heading.innerHTML = config.newsletterPreferenceListNames[pos].title;
$newsletterForm.insertBefore($heading, $newsletterForm.firstChild);
var $subtitle = document.createElement('p');
$subtitle.classList.add('subtitle');
$subtitle.innerHTML = config.newsletterPreferenceListNames[pos].headline;
insertAfterNode($subtitle, $heading);
function displayRandomNewsletter(num)
if($subscriptionForm)
removeNode($subscriptionForm);
$newsletterForm.classList.remove('hidden');
newsletterData.preferenceListName = config.newsletterPreferenceListNames[num].name;
$newsletterForm.querySelector('#newsletterType').value = config.newsletterPreferenceListNames[num].name;
insertHeadings(num);
function removeRandomCTA()
if (isNewsletterEnabled === 'true')
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length -1 );
if ($subscriptionForm && num === 0)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
displayRandomNewsletter(num )
notifyWidgetSelected($newsletterForm);
else
var num = getRandomArbitrary(0, 1);
if (num === 1)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
removeNode($subscriptionForm);
notifyWidgetSelected($newsletterForm);
if($newsletterForm != null)
$newsletterForm.classList.remove('hidden')
function notifyWidgetSelected(widget)
var newEvent = new CustomEvent('cta_widget', detail: widget);
window.dispatchEvent(newEvent);
function enableSubmitBtn()
$submitBtn.classList.remove('disabled');
$submitBtn.disabled = false;
function disableSubmitBtn()
$submitBtn.classList.add('disabled');
$submitBtn.disabled = true;
function showErrorMsg(node, msg)
var div = document.createElement('div');
div.classList.add('errorText');
div.innerHTML = msg;
insertAfterNode(div, node);
function validateNewsletter()
var errorMsg = $newsletterForm.querySelector('.errorText');
if (errorMsg)
errorMsg.remove();
if ($email.classList.contains('error'))
$email.classList.remove('error');
if (!isEmailValid($email.value))
showErrorMsg($email, "Please insert a valid email address!");
$email.classList.add('error');
disableSubmitBtn();
else
enableSubmitBtn();
;
function submitNewsletter(e)
e.preventDefault();
validateNewsletter();
if ($submitBtn.classList.contains('disabled'))
return false;
grecaptcha.execute();
newsletterData.emailAddress = $email.value;
$newsletterForm.setAttribute('data-json', JSON.stringify(newsletterData));
;
function eventHandlers()
$email.addEventListener('change', function (e)
validateNewsletter();
);
$newsletterForm.addEventListener('submit', function (e)
submitNewsletter(e);
);
$submitBtn.addEventListener('click', function (e)
submitNewsletter(e);
);
function init(isNewsletterEnabled)
/* eslint-disable no-undef */
var isLoggedIn = getSubscribedFlag;
/* eslint-enable no-undef */
if (isLoggedIn)
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length - 1);
displayRandomNewsletter(num);
else
removeRandomCTA();
if (isNewsletterEnabled === true)
eventHandlers();
return
init: init
());
/* function enableSubmitBtn(token)
mi.calltoActionCtrl.sendResponse(token);
*/
jQuery(document).ready(function ()
mi.calltoActionCtrl.init(true);
);
One of the interesting tidbits was Embiid recalling his first day with the KU basketball team and how it made him want to ... give up basketball.
“My very first scrimmage at Kansas, I got dunked on so hard by Tarik Black that I almost quit,” Embiid wrote. “Tarik dunked on me so hard that I was looking at plane tickets home. This guy was a senior. He was a grown man. I didn’t know what was going on. He got his own rebound and dunked over me so hard that everything went in slow motion.
“He dunked the ball off my head, for real. But I didn’t even tell you the worst part. The worst part was that the entire Kansas women’s hoops team was sitting in the bleachers watching the scrimmage. The whole gym was laughing at me. It was crazy. Seriously, it was like a WORLDSTAR situation.
“So I went straight to Bill Self’s office afterward and I said, ‘I can’t do this. You have to redshirt me. I can’t play with these guys.’
“And Bill was like, “What? Are you serious? In two years, you’re going to be the No. 1 pick in the NBA Draft.”
“The thing was, I had been told that all these college coaches lie. So I really thought he was trying to be slick with me. In my head, I was like, Alright, I’m just going to keep showing up and at least I’ll get a degree out of this. That will make my mom happy.”
Self wasn’t far off. Embiid was the third overall pick in the 2014 NBA Draft after just one season. Embiid was a second-team All-Big 12 selection and the conference’s defensive player of the year.
In a way, it was Embiid’s mother (and father) who helped him get through those early struggles.
“The only thing that kept me going was the way that I was raised by my parents,” Embiid wrote. “They always told us to keep working, no matter what. I had this DVD that my coach in Cameroon had mailed to me when I first came to America. It was an hour-long tape of Hakeem Olajuwon and some other legendary big men. I probably watched that DVD every single day for three years. I would study the way Hakeem moved, and I would go out and try to imitate him.
“I did it in high school, and I did it at Kansas.
“I was basically just imagining that I was a good basketball player. The power of the mind is kind of amazing. I mean, I sucked. But somehow, I convinced myself that I was Hakeem. And I started getting better and better. And then I sort of started killing it.”
You can read the entire essay here.
Joel Embiid discusses what he misses most about college at Kansas
Joel Embiid discusses what he misses most about college at Kansas
Joel Embiid discusses what he misses most about college at Kansas
Joel Embiid discusses what he misses most about college at Kansas
No one has ever said former Kansas basketball star Joel Embiid isn’t entertaining.
On his social media accounts, Embiid trolls fellow players, criticizes the NBA, pokes fun at himself and roots hard for the Jayhawks. Embiid, who is now with the Philadelphia 76ers, also makes sure that Philly fans “trust the process.”
Embiid doesn’t seem shy about sharing his feelings and that was certainly the case in an essay written on The Players’ Tribune with the headline, “Story Time.”
It’s a tale of what Embiid has gone through to get to this point: a multimillionaire who is one of the bigger stars in the NBA.
var mi = mi || ;
mi.calltoActionCtrl = (function ()
var $subscriptionForm = document.querySelector('#story-cta-widget');
var $newsletterForm = document.querySelector('#newsletter-signUpWidget');
if ($newsletterForm != null)
var isNewsletterEnabled = getDataAttribute($newsletterForm, 'isNewsletterEnabled');
if (isNewsletterEnabled === 'true')
var $email = $newsletterForm.querySelector('#s_email_address');
var $submitBtn = $newsletterForm.querySelector('#newsletterSignupSubmit');
// Object that contains key values stored in data-attributes
var config =
newsletterPreferenceListNames: JSON.parse(getDataAttribute($newsletterForm, 'newsletterPreferenceListNames')),
siteName: getDataAttribute($newsletterForm, 'newsletterSiteName'),
newsletterUrl: getDataAttribute($newsletterForm, 'newsletterUrl'),
newsletterSuccess: getDataAttribute($newsletterForm, 'newsletterSuccess'),
;
var newsletterData =
siteName: config.siteName
;
function isEmailValid(email) (".+"))@(([[0-9]1,3.[0-9]1,3.[0-9]1,3.[0-9]1,3])
function getDataAttribute(el, attr)
var dataAttr = 'data-' + attr;
if (el.hasAttribute(dataAttr))
var val = el.getAttribute(dataAttr);
el.removeAttribute(dataAttr);
return val;
function getRandomArbitrary(min, max)
var randomNum = Math.random() * ((max - min) + min);
return Math.round(randomNum);
function removeNode(node)
if (node)
node.parentNode.removeChild(node);
function insertAfterNode(el, node)
if (node)
node.parentNode.insertBefore(el, node.nextSibling);
function insertHeadings(pos)
var $heading = document.createElement('h1');
$heading.classList.add('heading');
$heading.innerHTML = config.newsletterPreferenceListNames[pos].title;
$newsletterForm.insertBefore($heading, $newsletterForm.firstChild);
var $subtitle = document.createElement('p');
$subtitle.classList.add('subtitle');
$subtitle.innerHTML = config.newsletterPreferenceListNames[pos].headline;
insertAfterNode($subtitle, $heading);
function displayRandomNewsletter(num)
if($subscriptionForm)
removeNode($subscriptionForm);
$newsletterForm.classList.remove('hidden');
newsletterData.preferenceListName = config.newsletterPreferenceListNames[num].name;
$newsletterForm.querySelector('#newsletterType').value = config.newsletterPreferenceListNames[num].name;
insertHeadings(num);
function removeRandomCTA()
if (isNewsletterEnabled === 'true')
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length -1 );
if ($subscriptionForm && num === 0)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
displayRandomNewsletter(num )
notifyWidgetSelected($newsletterForm);
else
var num = getRandomArbitrary(0, 1);
if (num === 1)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
removeNode($subscriptionForm);
notifyWidgetSelected($newsletterForm);
if($newsletterForm != null)
$newsletterForm.classList.remove('hidden')
function notifyWidgetSelected(widget)
var newEvent = new CustomEvent('cta_widget', detail: widget);
window.dispatchEvent(newEvent);
function enableSubmitBtn()
$submitBtn.classList.remove('disabled');
$submitBtn.disabled = false;
function disableSubmitBtn()
$submitBtn.classList.add('disabled');
$submitBtn.disabled = true;
function showErrorMsg(node, msg)
var div = document.createElement('div');
div.classList.add('errorText');
div.innerHTML = msg;
insertAfterNode(div, node);
function validateNewsletter()
var errorMsg = $newsletterForm.querySelector('.errorText');
if (errorMsg)
errorMsg.remove();
if ($email.classList.contains('error'))
$email.classList.remove('error');
if (!isEmailValid($email.value))
showErrorMsg($email, "Please insert a valid email address!");
$email.classList.add('error');
disableSubmitBtn();
else
enableSubmitBtn();
;
function submitNewsletter(e)
e.preventDefault();
validateNewsletter();
if ($submitBtn.classList.contains('disabled'))
return false;
grecaptcha.execute();
newsletterData.emailAddress = $email.value;
$newsletterForm.setAttribute('data-json', JSON.stringify(newsletterData));
;
function eventHandlers()
$email.addEventListener('change', function (e)
validateNewsletter();
);
$newsletterForm.addEventListener('submit', function (e)
submitNewsletter(e);
);
$submitBtn.addEventListener('click', function (e)
submitNewsletter(e);
);
function init(isNewsletterEnabled)
/* eslint-disable no-undef */
var isLoggedIn = getSubscribedFlag;
/* eslint-enable no-undef */
if (isLoggedIn)
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length - 1);
displayRandomNewsletter(num);
else
removeRandomCTA();
if (isNewsletterEnabled === true)
eventHandlers();
return
init: init
());
/* function enableSubmitBtn(token)
mi.calltoActionCtrl.sendResponse(token);
*/
jQuery(document).ready(function ()
mi.calltoActionCtrl.init(true);
);
One of the interesting tidbits was Embiid recalling his first day with the KU basketball team and how it made him want to ... give up basketball.
“My very first scrimmage at Kansas, I got dunked on so hard by Tarik Black that I almost quit,” Embiid wrote. “Tarik dunked on me so hard that I was looking at plane tickets home. This guy was a senior. He was a grown man. I didn’t know what was going on. He got his own rebound and dunked over me so hard that everything went in slow motion.
“He dunked the ball off my head, for real. But I didn’t even tell you the worst part. The worst part was that the entire Kansas women’s hoops team was sitting in the bleachers watching the scrimmage. The whole gym was laughing at me. It was crazy. Seriously, it was like a WORLDSTAR situation.
“So I went straight to Bill Self’s office afterward and I said, ‘I can’t do this. You have to redshirt me. I can’t play with these guys.’
“And Bill was like, “What? Are you serious? In two years, you’re going to be the No. 1 pick in the NBA Draft.”
“The thing was, I had been told that all these college coaches lie. So I really thought he was trying to be slick with me. In my head, I was like, Alright, I’m just going to keep showing up and at least I’ll get a degree out of this. That will make my mom happy.”
Self wasn’t far off. Embiid was the third overall pick in the 2014 NBA Draft after just one season. Embiid was a second-team All-Big 12 selection and the conference’s defensive player of the year.
In a way, it was Embiid’s mother (and father) who helped him get through those early struggles.
“The only thing that kept me going was the way that I was raised by my parents,” Embiid wrote. “They always told us to keep working, no matter what. I had this DVD that my coach in Cameroon had mailed to me when I first came to America. It was an hour-long tape of Hakeem Olajuwon and some other legendary big men. I probably watched that DVD every single day for three years. I would study the way Hakeem moved, and I would go out and try to imitate him.
“I did it in high school, and I did it at Kansas.
“I was basically just imagining that I was a good basketball player. The power of the mind is kind of amazing. I mean, I sucked. But somehow, I convinced myself that I was Hakeem. And I started getting better and better. And then I sort of started killing it.”
You can read the entire essay here.
No one has ever said former Kansas basketball star Joel Embiid isn’t entertaining.
On his social media accounts, Embiid trolls fellow players, criticizes the NBA, pokes fun at himself and roots hard for the Jayhawks. Embiid, who is now with the Philadelphia 76ers, also makes sure that Philly fans “trust the process.”
Embiid doesn’t seem shy about sharing his feelings and that was certainly the case in an essay written on The Players’ Tribune with the headline, “Story Time.”
It’s a tale of what Embiid has gone through to get to this point: a multimillionaire who is one of the bigger stars in the NBA.
var mi = mi || ;
mi.calltoActionCtrl = (function ()
var $subscriptionForm = document.querySelector('#story-cta-widget');
var $newsletterForm = document.querySelector('#newsletter-signUpWidget');
if ($newsletterForm != null)
var isNewsletterEnabled = getDataAttribute($newsletterForm, 'isNewsletterEnabled');
if (isNewsletterEnabled === 'true')
var $email = $newsletterForm.querySelector('#s_email_address');
var $submitBtn = $newsletterForm.querySelector('#newsletterSignupSubmit');
// Object that contains key values stored in data-attributes
var config =
newsletterPreferenceListNames: JSON.parse(getDataAttribute($newsletterForm, 'newsletterPreferenceListNames')),
siteName: getDataAttribute($newsletterForm, 'newsletterSiteName'),
newsletterUrl: getDataAttribute($newsletterForm, 'newsletterUrl'),
newsletterSuccess: getDataAttribute($newsletterForm, 'newsletterSuccess'),
;
var newsletterData =
siteName: config.siteName
;
function isEmailValid(email) (".+"))@(([[0-9]1,3.[0-9]1,3.[0-9]1,3.[0-9]1,3])
function getDataAttribute(el, attr)
var dataAttr = 'data-' + attr;
if (el.hasAttribute(dataAttr))
var val = el.getAttribute(dataAttr);
el.removeAttribute(dataAttr);
return val;
function getRandomArbitrary(min, max)
var randomNum = Math.random() * ((max - min) + min);
return Math.round(randomNum);
function removeNode(node)
if (node)
node.parentNode.removeChild(node);
function insertAfterNode(el, node)
if (node)
node.parentNode.insertBefore(el, node.nextSibling);
function insertHeadings(pos)
var $heading = document.createElement('h1');
$heading.classList.add('heading');
$heading.innerHTML = config.newsletterPreferenceListNames[pos].title;
$newsletterForm.insertBefore($heading, $newsletterForm.firstChild);
var $subtitle = document.createElement('p');
$subtitle.classList.add('subtitle');
$subtitle.innerHTML = config.newsletterPreferenceListNames[pos].headline;
insertAfterNode($subtitle, $heading);
function displayRandomNewsletter(num)
if($subscriptionForm)
removeNode($subscriptionForm);
$newsletterForm.classList.remove('hidden');
newsletterData.preferenceListName = config.newsletterPreferenceListNames[num].name;
$newsletterForm.querySelector('#newsletterType').value = config.newsletterPreferenceListNames[num].name;
insertHeadings(num);
function removeRandomCTA()
if (isNewsletterEnabled === 'true')
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length -1 );
if ($subscriptionForm && num === 0)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
displayRandomNewsletter(num )
notifyWidgetSelected($newsletterForm);
else
var num = getRandomArbitrary(0, 1);
if (num === 1)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
removeNode($subscriptionForm);
notifyWidgetSelected($newsletterForm);
if($newsletterForm != null)
$newsletterForm.classList.remove('hidden')
function notifyWidgetSelected(widget)
var newEvent = new CustomEvent('cta_widget', detail: widget);
window.dispatchEvent(newEvent);
function enableSubmitBtn()
$submitBtn.classList.remove('disabled');
$submitBtn.disabled = false;
function disableSubmitBtn()
$submitBtn.classList.add('disabled');
$submitBtn.disabled = true;
function showErrorMsg(node, msg)
var div = document.createElement('div');
div.classList.add('errorText');
div.innerHTML = msg;
insertAfterNode(div, node);
function validateNewsletter()
var errorMsg = $newsletterForm.querySelector('.errorText');
if (errorMsg)
errorMsg.remove();
if ($email.classList.contains('error'))
$email.classList.remove('error');
if (!isEmailValid($email.value))
showErrorMsg($email, "Please insert a valid email address!");
$email.classList.add('error');
disableSubmitBtn();
else
enableSubmitBtn();
;
function submitNewsletter(e)
e.preventDefault();
validateNewsletter();
if ($submitBtn.classList.contains('disabled'))
return false;
grecaptcha.execute();
newsletterData.emailAddress = $email.value;
$newsletterForm.setAttribute('data-json', JSON.stringify(newsletterData));
;
function eventHandlers()
$email.addEventListener('change', function (e)
validateNewsletter();
);
$newsletterForm.addEventListener('submit', function (e)
submitNewsletter(e);
);
$submitBtn.addEventListener('click', function (e)
submitNewsletter(e);
);
function init(isNewsletterEnabled)
/* eslint-disable no-undef */
var isLoggedIn = getSubscribedFlag;
/* eslint-enable no-undef */
if (isLoggedIn)
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length - 1);
displayRandomNewsletter(num);
else
removeRandomCTA();
if (isNewsletterEnabled === true)
eventHandlers();
return
init: init
());
/* function enableSubmitBtn(token)
mi.calltoActionCtrl.sendResponse(token);
*/
jQuery(document).ready(function ()
mi.calltoActionCtrl.init(true);
);
One of the interesting tidbits was Embiid recalling his first day with the KU basketball team and how it made him want to ... give up basketball.
“My very first scrimmage at Kansas, I got dunked on so hard by Tarik Black that I almost quit,” Embiid wrote. “Tarik dunked on me so hard that I was looking at plane tickets home. This guy was a senior. He was a grown man. I didn’t know what was going on. He got his own rebound and dunked over me so hard that everything went in slow motion.
“He dunked the ball off my head, for real. But I didn’t even tell you the worst part. The worst part was that the entire Kansas women’s hoops team was sitting in the bleachers watching the scrimmage. The whole gym was laughing at me. It was crazy. Seriously, it was like a WORLDSTAR situation.
“So I went straight to Bill Self’s office afterward and I said, ‘I can’t do this. You have to redshirt me. I can’t play with these guys.’
“And Bill was like, “What? Are you serious? In two years, you’re going to be the No. 1 pick in the NBA Draft.”
“The thing was, I had been told that all these college coaches lie. So I really thought he was trying to be slick with me. In my head, I was like, Alright, I’m just going to keep showing up and at least I’ll get a degree out of this. That will make my mom happy.”
Self wasn’t far off. Embiid was the third overall pick in the 2014 NBA Draft after just one season. Embiid was a second-team All-Big 12 selection and the conference’s defensive player of the year.
In a way, it was Embiid’s mother (and father) who helped him get through those early struggles.
“The only thing that kept me going was the way that I was raised by my parents,” Embiid wrote. “They always told us to keep working, no matter what. I had this DVD that my coach in Cameroon had mailed to me when I first came to America. It was an hour-long tape of Hakeem Olajuwon and some other legendary big men. I probably watched that DVD every single day for three years. I would study the way Hakeem moved, and I would go out and try to imitate him.
“I did it in high school, and I did it at Kansas.
“I was basically just imagining that I was a good basketball player. The power of the mind is kind of amazing. I mean, I sucked. But somehow, I convinced myself that I was Hakeem. And I started getting better and better. And then I sort of started killing it.”
You can read the entire essay here.
No one has ever said former Kansas basketball star Joel Embiid isn’t entertaining.
On his social media accounts, Embiid trolls fellow players, criticizes the NBA, pokes fun at himself and roots hard for the Jayhawks. Embiid, who is now with the Philadelphia 76ers, also makes sure that Philly fans “trust the process.”
Embiid doesn’t seem shy about sharing his feelings and that was certainly the case in an essay written on The Players’ Tribune with the headline, “Story Time.”
It’s a tale of what Embiid has gone through to get to this point: a multimillionaire who is one of the bigger stars in the NBA.
var mi = mi || ;
mi.calltoActionCtrl = (function ()
var $subscriptionForm = document.querySelector('#story-cta-widget');
var $newsletterForm = document.querySelector('#newsletter-signUpWidget');
if ($newsletterForm != null)
var isNewsletterEnabled = getDataAttribute($newsletterForm, 'isNewsletterEnabled');
if (isNewsletterEnabled === 'true')
var $email = $newsletterForm.querySelector('#s_email_address');
var $submitBtn = $newsletterForm.querySelector('#newsletterSignupSubmit');
// Object that contains key values stored in data-attributes
var config =
newsletterPreferenceListNames: JSON.parse(getDataAttribute($newsletterForm, 'newsletterPreferenceListNames')),
siteName: getDataAttribute($newsletterForm, 'newsletterSiteName'),
newsletterUrl: getDataAttribute($newsletterForm, 'newsletterUrl'),
newsletterSuccess: getDataAttribute($newsletterForm, 'newsletterSuccess'),
;
var newsletterData =
siteName: config.siteName
;
function isEmailValid(email) (".+"))@(([[0-9]1,3.[0-9]1,3.[0-9]1,3.[0-9]1,3])
function getDataAttribute(el, attr)
var dataAttr = 'data-' + attr;
if (el.hasAttribute(dataAttr))
var val = el.getAttribute(dataAttr);
el.removeAttribute(dataAttr);
return val;
function getRandomArbitrary(min, max)
var randomNum = Math.random() * ((max - min) + min);
return Math.round(randomNum);
function removeNode(node)
if (node)
node.parentNode.removeChild(node);
function insertAfterNode(el, node)
if (node)
node.parentNode.insertBefore(el, node.nextSibling);
function insertHeadings(pos)
var $heading = document.createElement('h1');
$heading.classList.add('heading');
$heading.innerHTML = config.newsletterPreferenceListNames[pos].title;
$newsletterForm.insertBefore($heading, $newsletterForm.firstChild);
var $subtitle = document.createElement('p');
$subtitle.classList.add('subtitle');
$subtitle.innerHTML = config.newsletterPreferenceListNames[pos].headline;
insertAfterNode($subtitle, $heading);
function displayRandomNewsletter(num)
if($subscriptionForm)
removeNode($subscriptionForm);
$newsletterForm.classList.remove('hidden');
newsletterData.preferenceListName = config.newsletterPreferenceListNames[num].name;
$newsletterForm.querySelector('#newsletterType').value = config.newsletterPreferenceListNames[num].name;
insertHeadings(num);
function removeRandomCTA()
if (isNewsletterEnabled === 'true')
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length -1 );
if ($subscriptionForm && num === 0)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
displayRandomNewsletter(num )
notifyWidgetSelected($newsletterForm);
else
var num = getRandomArbitrary(0, 1);
if (num === 1)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
removeNode($subscriptionForm);
notifyWidgetSelected($newsletterForm);
if($newsletterForm != null)
$newsletterForm.classList.remove('hidden')
function notifyWidgetSelected(widget)
var newEvent = new CustomEvent('cta_widget', detail: widget);
window.dispatchEvent(newEvent);
function enableSubmitBtn()
$submitBtn.classList.remove('disabled');
$submitBtn.disabled = false;
function disableSubmitBtn()
$submitBtn.classList.add('disabled');
$submitBtn.disabled = true;
function showErrorMsg(node, msg)
var div = document.createElement('div');
div.classList.add('errorText');
div.innerHTML = msg;
insertAfterNode(div, node);
function validateNewsletter()
var errorMsg = $newsletterForm.querySelector('.errorText');
if (errorMsg)
errorMsg.remove();
if ($email.classList.contains('error'))
$email.classList.remove('error');
if (!isEmailValid($email.value))
showErrorMsg($email, "Please insert a valid email address!");
$email.classList.add('error');
disableSubmitBtn();
else
enableSubmitBtn();
;
function submitNewsletter(e)
e.preventDefault();
validateNewsletter();
if ($submitBtn.classList.contains('disabled'))
return false;
grecaptcha.execute();
newsletterData.emailAddress = $email.value;
$newsletterForm.setAttribute('data-json', JSON.stringify(newsletterData));
;
function eventHandlers()
$email.addEventListener('change', function (e)
validateNewsletter();
);
$newsletterForm.addEventListener('submit', function (e)
submitNewsletter(e);
);
$submitBtn.addEventListener('click', function (e)
submitNewsletter(e);
);
function init(isNewsletterEnabled)
/* eslint-disable no-undef */
var isLoggedIn = getSubscribedFlag;
/* eslint-enable no-undef */
if (isLoggedIn)
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length - 1);
displayRandomNewsletter(num);
else
removeRandomCTA();
if (isNewsletterEnabled === true)
eventHandlers();
return
init: init
());
/* function enableSubmitBtn(token)
mi.calltoActionCtrl.sendResponse(token);
*/
jQuery(document).ready(function ()
mi.calltoActionCtrl.init(true);
);
One of the interesting tidbits was Embiid recalling his first day with the KU basketball team and how it made him want to ... give up basketball.
“My very first scrimmage at Kansas, I got dunked on so hard by Tarik Black that I almost quit,” Embiid wrote. “Tarik dunked on me so hard that I was looking at plane tickets home. This guy was a senior. He was a grown man. I didn’t know what was going on. He got his own rebound and dunked over me so hard that everything went in slow motion.
“He dunked the ball off my head, for real. But I didn’t even tell you the worst part. The worst part was that the entire Kansas women’s hoops team was sitting in the bleachers watching the scrimmage. The whole gym was laughing at me. It was crazy. Seriously, it was like a WORLDSTAR situation.
“So I went straight to Bill Self’s office afterward and I said, ‘I can’t do this. You have to redshirt me. I can’t play with these guys.’
“And Bill was like, “What? Are you serious? In two years, you’re going to be the No. 1 pick in the NBA Draft.”
“The thing was, I had been told that all these college coaches lie. So I really thought he was trying to be slick with me. In my head, I was like, Alright, I’m just going to keep showing up and at least I’ll get a degree out of this. That will make my mom happy.”
Self wasn’t far off. Embiid was the third overall pick in the 2014 NBA Draft after just one season. Embiid was a second-team All-Big 12 selection and the conference’s defensive player of the year.
In a way, it was Embiid’s mother (and father) who helped him get through those early struggles.
“The only thing that kept me going was the way that I was raised by my parents,” Embiid wrote. “They always told us to keep working, no matter what. I had this DVD that my coach in Cameroon had mailed to me when I first came to America. It was an hour-long tape of Hakeem Olajuwon and some other legendary big men. I probably watched that DVD every single day for three years. I would study the way Hakeem moved, and I would go out and try to imitate him.
“I did it in high school, and I did it at Kansas.
“I was basically just imagining that I was a good basketball player. The power of the mind is kind of amazing. I mean, I sucked. But somehow, I convinced myself that I was Hakeem. And I started getting better and better. And then I sort of started killing it.”
You can read the entire essay here.
No one has ever said former Kansas basketball star Joel Embiid isn’t entertaining.
On his social media accounts, Embiid trolls fellow players, criticizes the NBA, pokes fun at himself and roots hard for the Jayhawks. Embiid, who is now with the Philadelphia 76ers, also makes sure that Philly fans “trust the process.”
Embiid doesn’t seem shy about sharing his feelings and that was certainly the case in an essay written on The Players’ Tribune with the headline, “Story Time.”
It’s a tale of what Embiid has gone through to get to this point: a multimillionaire who is one of the bigger stars in the NBA.
var mi = mi || ;
mi.calltoActionCtrl = (function ()
var $subscriptionForm = document.querySelector('#story-cta-widget');
var $newsletterForm = document.querySelector('#newsletter-signUpWidget');
if ($newsletterForm != null)
var isNewsletterEnabled = getDataAttribute($newsletterForm, 'isNewsletterEnabled');
if (isNewsletterEnabled === 'true')
var $email = $newsletterForm.querySelector('#s_email_address');
var $submitBtn = $newsletterForm.querySelector('#newsletterSignupSubmit');
// Object that contains key values stored in data-attributes
var config =
newsletterPreferenceListNames: JSON.parse(getDataAttribute($newsletterForm, 'newsletterPreferenceListNames')),
siteName: getDataAttribute($newsletterForm, 'newsletterSiteName'),
newsletterUrl: getDataAttribute($newsletterForm, 'newsletterUrl'),
newsletterSuccess: getDataAttribute($newsletterForm, 'newsletterSuccess'),
;
var newsletterData =
siteName: config.siteName
;
function isEmailValid(email) (".+"))@(([[0-9]1,3.[0-9]1,3.[0-9]1,3.[0-9]1,3])
function getDataAttribute(el, attr)
var dataAttr = 'data-' + attr;
if (el.hasAttribute(dataAttr))
var val = el.getAttribute(dataAttr);
el.removeAttribute(dataAttr);
return val;
function getRandomArbitrary(min, max)
var randomNum = Math.random() * ((max - min) + min);
return Math.round(randomNum);
function removeNode(node)
if (node)
node.parentNode.removeChild(node);
function insertAfterNode(el, node)
if (node)
node.parentNode.insertBefore(el, node.nextSibling);
function insertHeadings(pos)
var $heading = document.createElement('h1');
$heading.classList.add('heading');
$heading.innerHTML = config.newsletterPreferenceListNames[pos].title;
$newsletterForm.insertBefore($heading, $newsletterForm.firstChild);
var $subtitle = document.createElement('p');
$subtitle.classList.add('subtitle');
$subtitle.innerHTML = config.newsletterPreferenceListNames[pos].headline;
insertAfterNode($subtitle, $heading);
function displayRandomNewsletter(num)
if($subscriptionForm)
removeNode($subscriptionForm);
$newsletterForm.classList.remove('hidden');
newsletterData.preferenceListName = config.newsletterPreferenceListNames[num].name;
$newsletterForm.querySelector('#newsletterType').value = config.newsletterPreferenceListNames[num].name;
insertHeadings(num);
function removeRandomCTA()
if (isNewsletterEnabled === 'true')
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length -1 );
if ($subscriptionForm && num === 0)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
displayRandomNewsletter(num )
notifyWidgetSelected($newsletterForm);
else
var num = getRandomArbitrary(0, 1);
if (num === 1)
removeNode($newsletterForm);
notifyWidgetSelected($subscriptionForm);
$subscriptionForm.classList.remove('hidden');
else
removeNode($subscriptionForm);
notifyWidgetSelected($newsletterForm);
if($newsletterForm != null)
$newsletterForm.classList.remove('hidden')
function notifyWidgetSelected(widget)
var newEvent = new CustomEvent('cta_widget', detail: widget);
window.dispatchEvent(newEvent);
function enableSubmitBtn()
$submitBtn.classList.remove('disabled');
$submitBtn.disabled = false;
function disableSubmitBtn()
$submitBtn.classList.add('disabled');
$submitBtn.disabled = true;
function showErrorMsg(node, msg)
var div = document.createElement('div');
div.classList.add('errorText');
div.innerHTML = msg;
insertAfterNode(div, node);
function validateNewsletter()
var errorMsg = $newsletterForm.querySelector('.errorText');
if (errorMsg)
errorMsg.remove();
if ($email.classList.contains('error'))
$email.classList.remove('error');
if (!isEmailValid($email.value))
showErrorMsg($email, "Please insert a valid email address!");
$email.classList.add('error');
disableSubmitBtn();
else
enableSubmitBtn();
;
function submitNewsletter(e)
e.preventDefault();
validateNewsletter();
if ($submitBtn.classList.contains('disabled'))
return false;
grecaptcha.execute();
newsletterData.emailAddress = $email.value;
$newsletterForm.setAttribute('data-json', JSON.stringify(newsletterData));
;
function eventHandlers()
$email.addEventListener('change', function (e)
validateNewsletter();
);
$newsletterForm.addEventListener('submit', function (e)
submitNewsletter(e);
);
$submitBtn.addEventListener('click', function (e)
submitNewsletter(e);
);
function init(isNewsletterEnabled)
/* eslint-disable no-undef */
var isLoggedIn = getSubscribedFlag;
/* eslint-enable no-undef */
if (isLoggedIn)
var num = getRandomArbitrary(0, config.newsletterPreferenceListNames.length - 1);
displayRandomNewsletter(num);
else
removeRandomCTA();
if (isNewsletterEnabled === true)
eventHandlers();
return
init: init
());
/* function enableSubmitBtn(token)
mi.calltoActionCtrl.sendResponse(token);
*/
jQuery(document).ready(function ()
mi.calltoActionCtrl.init(true);
);
One of the interesting tidbits was Embiid recalling his first day with the KU basketball team and how it made him want to ... give up basketball.
“My very first scrimmage at Kansas, I got dunked on so hard by Tarik Black that I almost quit,” Embiid wrote. “Tarik dunked on me so hard that I was looking at plane tickets home. This guy was a senior. He was a grown man. I didn’t know what was going on. He got his own rebound and dunked over me so hard that everything went in slow motion.
“He dunked the ball off my head, for real. But I didn’t even tell you the worst part. The worst part was that the entire Kansas women’s hoops team was sitting in the bleachers watching the scrimmage. The whole gym was laughing at me. It was crazy. Seriously, it was like a WORLDSTAR situation.
“So I went straight to Bill Self’s office afterward and I said, ‘I can’t do this. You have to redshirt me. I can’t play with these guys.’
“And Bill was like, “What? Are you serious? In two years, you’re going to be the No. 1 pick in the NBA Draft.”
“The thing was, I had been told that all these college coaches lie. So I really thought he was trying to be slick with me. In my head, I was like, Alright, I’m just going to keep showing up and at least I’ll get a degree out of this. That will make my mom happy.”
Self wasn’t far off. Embiid was the third overall pick in the 2014 NBA Draft after just one season. Embiid was a second-team All-Big 12 selection and the conference’s defensive player of the year.
In a way, it was Embiid’s mother (and father) who helped him get through those early struggles.
“The only thing that kept me going was the way that I was raised by my parents,” Embiid wrote. “They always told us to keep working, no matter what. I had this DVD that my coach in Cameroon had mailed to me when I first came to America. It was an hour-long tape of Hakeem Olajuwon and some other legendary big men. I probably watched that DVD every single day for three years. I would study the way Hakeem moved, and I would go out and try to imitate him.
“I did it in high school, and I did it at Kansas.
“I was basically just imagining that I was a good basketball player. The power of the mind is kind of amazing. I mean, I sucked. But somehow, I convinced myself that I was Hakeem. And I started getting better and better. And then I sort of started killing it.”
You can read the entire essay here.
Do you like this story? Subscribe to Sports Pass
The Star's digital sports-only subscription is only $30 per year. It's your ticket to everything sports in Kansas City ... and beyond, and helps us produce sports coverage like this.
Take Us With You
Real-time updates and all local stories you want right in the palm of your hand.
Take Us With You
Real-time updates and all local stories you want right in the palm of your hand.
Take Us With You
Real-time updates and all local stories you want right in the palm of your hand.
Take Us With You
Real-time updates and all local stories you want right in the palm of your hand.
Subscriptions
Learn More
Advertising
Clash Royale CLAN TAG#URR8PPP
Comments
jQuery(document).ready(function ()
mi.commentingFaceboook.init();
);