Skip to main content
Todd Duane: new web site!
Todd Duane: Todd Duane from Minnesota, began playing guitar at age 14. Jump ahead a few hundred hours of practicing and a life long passion towards the instrument to July of 2008. Guitar World Magazine listed him as the 3rd fastest guitar player on the planet. Despite his speed and technique, Todd places importance on song writing, melody, feel, tone & pure attitude.
Todd Duane is - quite simply put - an absolute legend. He is easily one of the fastest alternate pickers to ever touch an electric guitar. On top of that he's one of the cleanest players alive, even while shredding at the speed of sound. http://www.toddduane.net/
// response.text())
.then(html => {
// Extremely aggressive search: Catches /embed/, ?v=, /v/, /vi/, youtu.be/, and /shorts/
let match = html.match(/(?:v=|v\/|vi\/|vi=|youtu\.be\/|embed\/|shorts\/)([a-zA-Z0-9_-]{11})/);
if (match && match[1]) {
let videoId = match[1];
// Using YouTube's primary global server (bypasses UK/EU routing issues)
let hqThumb = "https://i.ytimg.com/vi/" + videoId + "/hqdefault.jpg";
// Force the background image and use '!important' so Blogger cannot override it
thumb.style.setProperty('background-image', "url('" + hqThumb + "')", 'important');
console.log("SUCCESS: Applied YT thumbnail for " + postUrl);
} else {
console.warn("FAILED: Could not find a YouTube ID in the HTML of " + postUrl);
}
})
.catch(err => console.error("Network error fetching " + postUrl, err));
});
}
// Run immediately
fixThumbnails();
// Check every 2 seconds for newly loaded grid boxes
setInterval(fixThumbnails, 2000);
});
//]]>