i am a behavioural neuroscientist, sound designer, and interdisciplinary researcher, with an interest in how we learn, perform, and assess complex skills in high stakes environments.

my research focuses on the creativity and science that underpin human performance in all its forms. some of my work focuses on creating immersive auditory and multisensory experiences for performers and audiences, using live, virtual, and hybrid environments. other work explores how to improve training methods and performance outcomes for health professionals, elite athletes, and performers.my lab also studies how we measure and evaluate performance. we apply various research methods across our work including neurophysiologic, behavioural and machine learning techniques.the 'big picture' questions driving my work are how learning, practice and experience change our brain, and how we can use our understanding of the underlying processes to help optimise human performance.

i am also a digital strategist for research. i have a particular interest in the intersection of digital research infrastructure, data strategy, research ethics and research policy.in addition to my academic appointments at mcmaster university and the university of toronto, i currently serve as the president, chief research officer and ceo of compute ontario. i also serve as the head of sound design for the stratford festival, as the director of mcmaster’s performance science lab, and as the creative director of mcmaster's livelab.

please explore the links on this page for more information, or contact me using the form below.

contact me

Please use this form to get in touch

digital strategy

i provide strategic guidance to researchers, research organizations, government, and funders on how to deliver, deploy and sustain digital research infrastructure and services support research and innovation. i am particularly interested in the intersection of advanced research computing tools and techniques, research ethics and data strategy, and exploring how different research disciplines can inform each other and create new approaches to working with, and interpreting, data. i am also very interested in understanding how we can build a more digitally literate and skilled workforce.i am presently serving as the president, chief research officer and chief executive officer for compute ontario, a non-governmental organization that coordinates investments in digital research infrastructure and training for the government of ontario. a lot of my recent work has been focused on increasing our understanding of how technology and data can improve the lives of ontario residents.

Thank you

thank you for your message. somebody will be in touch soon!


Loading publications...
fetch('https://api.semanticscholar.org/graph/v1/author/2715985/papers?fields=title,year,venue,url,externalIds,openAccessPdf') .then(function(r) { return r.json(); }) .then(function(data) { var container = document.getElementById('pubs-list'); container.innerHTML = ''; container.style.fontFamily = 'Inter, sans-serif'; container.style.maxWidth = '700px'; container.style.margin = '0 auto'; container.style.textAlign = 'left'; container.style.lineHeight = '1.5'; if (!data.data || data.data.length === 0) { var none = document.createElement('p'); none.style.color = '#FFFFFF'; none.textContent = 'No publications found.'; container.appendChild(none); return; } var sorted = data.data .filter(function(p) { return p.title; }) .sort(function(a, b) { return (b.year || 0) - (a.year || 0); }); var currentYear = null; sorted.forEach(function(p) { var year = p.year || 'n.d.'; if (year !== currentYear) { var yearHeader = document.createElement('div'); yearHeader.style.color = '#FFFFFF'; yearHeader.style.fontWeight = '700'; yearHeader.style.fontSize = '1.15em'; yearHeader.style.marginTop = '2em'; yearHeader.style.marginBottom = '0.6em'; yearHeader.textContent = year; container.appendChild(yearHeader); currentYear = year; } var item = document.createElement('div'); item.style.marginBottom = '1.4em'; item.style.paddingBottom = '1.4em'; item.style.borderBottom = '1px solid rgba(255,255,255,0.15)'; var title = document.createElement('div'); title.style.color = '#FFFFFF'; title.style.fontWeight = '600'; title.textContent = p.title; item.appendChild(title); var meta = document.createElement('div'); meta.style.color = '#B0B0B0'; meta.style.fontSize = '0.9em'; meta.style.fontStyle = 'italic'; meta.style.marginBottom = '0.4em'; meta.textContent = p.venue || ''; item.appendChild(meta); var linksRow = document.createElement('div'); function addLink(text, url) { var a = document.createElement('a'); a.href = url; a.target = '_blank'; a.style.color = '#8AB4F8'; a.style.textDecoration = 'none'; a.style.marginRight = '1em'; a.textContent = text; linksRow.appendChild(a); } if (p.externalIds && p.externalIds.DOI) { addLink('DOI', 'https://doi.org/' + p.externalIds.DOI); } if (p.openAccessPdf && p.openAccessPdf.url) { addLink('PDF', p.openAccessPdf.url); } if (p.url) { addLink('Semantic Scholar', p.url); } item.appendChild(linksRow); container.appendChild(item); }); }) .catch(function(err) { document.getElementById('pubs-list').textContent = 'Could not load publications right now.'; });