In episode 21 of the Full Stack Journey podcast, we take a break from talking about technology to spend some time talking about learning technology.

Joining Scott for this episode is continual learner Cody Bunch. Cody helps lead the vBrownbag podcast and also blogs at http://blog.codybunch.com. You can also follow Cody on Twitter as @cody_bunch.

Some of the topics that Cody and Scott touch upon include:

  • Methods for approaching something entirely new
  • The importance of “sharing back” information you’ve learned, particularly your own learning process
  • How to balance the use of automation when setting up new technologies you’re also trying to learn
  • Time management
  • How to take notes when learning something new

Show Links

Guidelines for being effective at email – Cody Bunch’s blog

Electronic note-taking suggestions – Cody Bunch’s blog

Methods for assimilating information –  Cody Bunch’s blog

Pen recommendation – Baron Fig

Share this episode

Join the conversation

Find professional peers and chat all things networking in the Packet Pushers Slack community.

JOIN 💬

Have feedback for the hosts?

We want your follow-up.

SEND AN FU 😎

Leave a Comment

window.addEventListener("DOMContentLoaded", function() { var preElements = document.getElementsByTagName("pre"); if (preElements && preElements.length > 0) { for (var i = 0; i < preElements.length; i++) { var preElement = preElements[i]; var spanElement = document.createElement("span"); spanElement.classList.add("copy-container"); var buttonElement = document.createElement("button"); buttonElement.textContent = "Copy Snippet"; buttonElement.classList.add("copy-button"); buttonElement.addEventListener("click", createCopyTextHandler(preElement)); spanElement.appendChild(preElement.cloneNode(true)); spanElement.appendChild(buttonElement); preElement.parentNode.replaceChild(spanElement, preElement); } } }); function createCopyTextHandler(element) { return function() { var text = element.textContent; var tempInput = document.createElement("textarea"); tempInput.style = "position: absolute; left: -1000px; top: -1000px"; tempInput.value = text; document.body.appendChild(tempInput); tempInput.select(); document.execCommand("copy"); document.body.removeChild(tempInput); }; } */ ?>