Landing Header // Ensure map areas scale with image window.addEventListener("load", function () { const img = document.querySelector("img[usemap]"); const map = document.querySelector("map"); function resizeMap() { const width = 1440; const height = 810; const scaleX = img.clientWidth / width; const scaleY = img.clientHeight / height; map.querySelectorAll("area").forEach(area => { const coords = area.dataset.coords.split(',').map(Number); const scaled = coords.map((c, i) => i % 2 === 0 ? c * scaleX : c * scaleY); area.coords = scaled.map(n => Math.round(n)).join(','); }); } window.addEventListener("resize", resizeMap); resizeMap(); }); 
Landing Header // Ensure map areas scale with image window.addEventListener("load", function () { const img = document.querySelector("img[usemap]"); const map = document.querySelector("map"); function resizeMap() { const width = 1440; const height = 810; const scaleX = img.clientWidth / width; const scaleY = img.clientHeight / height; map.querySelectorAll("area").forEach(area => { const coords = area.dataset.coords.split(',').map(Number); const scaled = coords.map((c, i) => i % 2 === 0 ? c * scaleX : c * scaleY); area.coords = scaled.map(n => Math.round(n)).join(','); }); } window.addEventListener("resize", resizeMap); resizeMap(); }); 
Beau Brannan
Currently: Visiting Professor | Consultant
Articles
Whitepapers
Newsletters (retired)
From 2012-2013, I hosted a movie night every Monday night with students. And then ran some of it back in 2020. This is the list of the 75+ films we were able to watch & discuss together.
Selections tended to be pre-2010 with philosophical or human themes. Click the title for more info (links out).
Entrepreneurship
Personal Finance
Currently teaching two Financial Literacy courses in undergrad. Feel free to check out Four Moneys for a framework to improve financial literacy beyond information to character.
Humanities
Currently teaching two Humanities Courses. One course is using Ancient & Medieval Wisdom and History to answer the question of what it means to be human. Exploring ideas such as storytelling, fate, time, purpose, justice and more.The other course is understanding the good, bad and ugly of Western Values, how they got there, and how they might be redeemed.