www.decisionhacker.io Open in urlscan Pro
2606:4700:4400::6812:239f  Public Scan

Submitted URL: https://decisionhacker.io/
Effective URL: https://www.decisionhacker.io/courses/core
Submission: On June 11 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

POST /tenant_leads

<form id="new_lead_b9c423b8e5" action="/tenant_leads" accept-charset="UTF-8" data-remote="true" method="post">
  <input name="utf8" type="hidden" value="✓" autocomplete="off"><input type="hidden" name="tenant_lead[page_url]" value="https://www.decisionhacker.io/courses/core">
  <label for="new_lead_b9c423b8e5-email" class="form__label"> Email </label>
  <input id="new_lead_b9c423b8e5-email" type="email" name="tenant_lead[email]" value="" placeholder="Enter your email" autocapitalize="off" autocomplete="off" autocorrect="off" spellcheck="false" required="" aria-required="true" class="form__control"
    aria-describedby="new_lead_b9c423b8e5-error">
  <p aria-live="polite" id="new_lead_b9c423b8e5-error" class="form__error-msg hidden" role="alert"> Please enter a valid email address </p>
  <div class="form__group form__button-group">
    <input id="new_lead_b9c423b8e5-submit-lead" type="submit" value="Submit" class="button button-primary" aria-label="Submit">
    <p class="lead-capture__success-msg sr-only">Thank You</p>
    <p aria-live="polite" class="lead-capture__error-msg" role="alert"> Oops, something went wrong. Please try again with a different email address. </p>
  </div>
  <script>
    $(function() {
      $("#new_lead_b9c423b8e5 > input[name='tenant_lead[page_url]']").val(window.location.href)
    });
    document.getElementById('new_lead_b9c423b8e5').addEventListener('thinkific:success', function(event) {
      $('#new_lead_b9c423b8e5-submit-lead').val("Thank You");
      $('#new_lead_b9c423b8e5').addClass('lead-capture__success')
      $('#new_lead_b9c423b8e5 .lead-capture__error-msg').hide();
      $('#new_lead_b9c423b8e5 .lead-capture__success-msg').show();
      setTimeout(function() {
        $('#new_lead_b9c423b8e5-submit-lead').val('Submit');
        $('#new_lead_b9c423b8e5').removeClass('lead-capture__success')
        $('#new_lead_b9c423b8e5')[0].reset();
        $('#new_lead_b9c423b8e5-submit-lead').attr('aria-disabled', 'true');
      }, 6000);
    })
    document.getElementById('new_lead_b9c423b8e5').addEventListener('thinkific:error', function(event) {
      $('#new_lead_b9c423b8e5 .lead-capture__error-msg').show();
      $('#new_lead_b9c423b8e5 .lead-capture__success-msg').hide();
    })
    $('#new_lead_b9c423b8e5-accept').on('click', function() {
      if ($('#new_lead_b9c423b8e5-accept').is(':checked')) {
        $('#new_lead_b9c423b8e5-submit-lead').removeAttr('aria-disabled');
      } else {
        $('#new_lead_b9c423b8e5-submit-lead').attr('aria-disabled', 'true');
      }
    });
  </script>
  <script>
    function addErrorMsg(fieldId, errorId) {
      fieldId.addClass('input--error');
      fieldId.attr("aria-invalid", "true");
      errorId.removeClass('hidden');
    }

    function removeErrorMsg(fieldId, errorId) {
      fieldId.removeClass('input--error');
      fieldId.attr("aria-invalid", "false");
      errorId.addClass('hidden');
    }
    var regex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
    var $email = $('#user\\[email\\]');
    var $emailError = $('#user\\[email\\]-error')
    $email.on('focusout', function() {
      if (!regex.test($email.val())) {
        addErrorMsg($email, $emailError);
      } else {
        removeErrorMsg($email, $emailError);
      }
    });
    var $leadCapture = $('#new_lead_b9c423b8e5-email')
    var $leadCaptureError = $('#new_lead_b9c423b8e5-error')
    $leadCapture.on('focusout', function() {
      if (!regex.test($leadCapture.val())) {
        addErrorMsg($leadCapture, $leadCaptureError);
      } else {
        removeErrorMsg($leadCapture, $leadCaptureError);
      }
    });
    var $leadCaptureCheckbox = $('#new_lead_b9c423b8e5-accept');
    var $leadCaptureCheckboxError = $('#new_lead_b9c423b8e5-accept-error');
    $leadCaptureCheckbox.on('focusout', function() {
      if (!$leadCaptureCheckbox.is(':checked')) {
        addErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
      } else {
        removeErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
      }
    });
    var $password = $('#user\\[password\\]');
    var $passwordError = $('#user\\[password\\]-error')
    $password.on('focusout', function() {
      if ($password.val().length < 1) {
        addErrorMsg($password, $passwordError);
      } else {
        removeErrorMsg($password, $passwordError);
      }
    });
    var $firstName = $('#user\\[first_name\\]');
    var $firstNameError = $('#user\\[first_name\\]-error');
    $firstName.on('focusout', function() {
      if ($firstName.val() === '') {
        addErrorMsg($firstName, $firstNameError);
      } else {
        removeErrorMsg($firstName, $firstNameError);
      }
    });
    var $lastName = $('#user\\[last_name\\]');
    var $lastNameError = $('#user\\[last_name\\]-error');
    $lastName.on('focusout', function() {
      if ($lastName.val() === '') {
        addErrorMsg($lastName, $lastNameError);
      } else {
        removeErrorMsg($lastName, $lastNameError);
      }
    });
    var $checkbox = $('#user\\[terms\\]');
    var $checkboxError = $('#user\\[terms\\]-error');
    $checkbox.on('focusout', function() {
      if (!$checkbox.is(':checked')) {
        addErrorMsg($checkbox, $checkboxError);
      } else {
        removeErrorMsg($checkbox, $checkboxError);
      }
    });
    var $file = $('.my-account__avatar-label');
    $file.on('change', function() {
      $file.append('<p aria-live="polite" id="my-account__avatar--error" class="sr-only" role="alert">liquid.partials.form.file_changed</p>')
    });
    var $select = $('.custom-select');
    var $selectError = $('#custom-select-error')
    $select.on('focusout', function() {
      if ($(this).prop('required')) {
        if (!$select.val()) {
          addErrorMsg($select, $selectError);
        } else {
          removeErrorMsg($select, $selectError);
        }
      }
    });
    var $customField = $('.custom-field');
    var $customFieldError = $('#custom-field-error');
    $customField.on('focusout', function() {
      if ($(this).prop('required')) {
        if ($customField.val() === '') {
          addErrorMsg($customField, $customFieldError);
        } else {
          removeErrorMsg($customField, $customFieldError);
        }
      }
    });
  </script>
</form>

Text Content

Skip to main content


DECISION HACKER

Toggle menu Menu
 * All Products
 * Sign In
 * Get started now


DECISION HACKER: CORE

Decision Hacker is a concise, action-oriented audio-first course designed to
transform your approach to decision-making. Uncover powerful strategies to guide
you in crafting a life of informed and meaningful choices.

Buy $97.00 Free Preview



Jonny Miller
Founder of Nervous System Mastery



As someone who has thought a *lot* about the art and science of decision-making,
I found David's course and approach to be refreshing + extremely practical — in
particular, the concepts of 3D decision-making (correctly sizing the decision) &
the High-Velocity Questions — both of which I'll be attempting to engrain in my
weekly workflow. The curriculum material is also thoughtfully structured, and
needless to say, I enjoyed listening to David reading the lessons whilst on a
walk or on a drive. TL;DR: I highly highly recommend this course — I feel that
my relationship with decision-making (and approach) has been forever changed for
the better!
Read more
Reiss
Paid Media Manager



A clear and buttery voice. David is a master communicator who takes us through
the the art and nuance of decision making and all its foundational principles
and pillars. I especially loved lesson 5 & 7, I took a lot of personal takeaways
from those lessons! The course is well worth the money, if not MORE! David takes
both his professional and personal lived experience and condenses into an easily
digestible and enjoyable audio-first experience.
Read more
Joe Ferraro 🎤
@FerraroOnAir



I just took the coolest mini audio course on decision making.
Gabriel A
Marketing @ Unilever



Having completed Decision Hacker, I am delighted to share how profoundly it has
influenced my daily decision-making. The course equips you with practical
frameworks, notably the DOPE acronym, providing a structured approach to
intentional choices. The incorporation of engaging storytelling modules
challenged my perception of irrational decision-making, fostering a deeper
understanding and instilling confidence in trusting my gut and intuition.
Decision Hacker has not only broadened my perspective but also left me with a
valuable toolkit for making more informed and confident decisions on a
day-to-day basis. I highly recommend Decision Hacker to anyone seeking a
transformative learning experience in the realm of decision-making.
Read more
Kaka B
Consultant



This course has been very eye opening and forced me to challenge my thinking and
approach in navigating making decisions. I have absolutely enjoyed this course.
Thank you David
Yin



This was so useful. Thank you!
Jeremiah
Freelance Artist



I’m skeptical about online courses but Decision Hacker has turned me around
some! It’s easily digestible but with all the resources to go further in depth
when you’re ready. I was able to go at my own pace whilst still feeling like I
was making the most of everything
Esmé
Community Lead



I got through Decision Hacker in one morning! Once I pressed play, I didn't want
to stop. David has a lot of insight but draws on funny and relatable stories to
teach pretty cerebral, sophisticated stuff. His style and ideas are so engaging,
memorable, and therefore actionable. For example, I've been able to identify how
asking "high velocity" questions can help me more thoughtfully work through
current dilemmas in my career. I'll definitely be revisiting each episode to
keep learning.
Read more
Luca Dellanna
Management Advisor



A very concise yet information-dense course that provides some good frameworks
to take decisions as an individual. They are each explained well and
efficiently. The text provided in addition to the recordings helps clarify some
common questions and provides a few exercises – expect to read it to make the
most out of the lessons. I particularly liked the analogies – all novel and
relevant – as they helped me easily remember key parts of the course even days
later. The production quality is very good.
Read more
R



Great course! Easy to follow yet meaty & detailed. Decision Hacker covered some
approaches I already use so I thought it would just be a good refresher… but I
wound up gaining more. The course got me thinking about my decisions at a deeper
level and it inspired me to consider the role of my instincts and intuition.
Decision Hacker encouraged me to go beyond mental models and make better
decisions
Joe Ferraro
Communication Coach



This course is a marvel in a very specific way: it’s incredibly useful,
practical, and valuable…but even if it wasn’t…listening to an orator as skilled
and studied as David deliver audio content at this high a level would be worth
the investment by itself. David has packed this approachable course with value
including robust show notes, easy-to-follow modules, and high-velocity questions
that return 10x on the cognitive load you put into considering them. I loved
this entire experience.
Read more

Watch Intro Video


WHAT YOU'LL LEARN 🧑‍💻

 * Learn to make decisions with confidence and clarity.

 * Identify and overcome common thinking traps that hinder decision-making.

 * Develop a repeatable approach to making strategic decisions in a complex
   world.




COURSE CURRICULUM 📚


 1. INTRODUCTION
    
     a. 1: The Power of Decision-Making
        
        FREE PREVIEW
    
     b. 2: How to take this course
    
     c. 3: Deconstructing decisions (The Three Phases)


 2. ASKING THE RIGHT QUESTIONS
    
     a. 4: Mastering High Velocity Questions
    
     b. 5: Hack your default scripts (Choosing and Using Heuristics)
    
     c. 6: The secret to pattern-matching (Understanding Abstractions)
    
     d. 7: The Eight Hacker Hats (Foundational Mental Models for
        Decision-Making)


 3. EIGHT HACKER HATS - ANALYTICAL THINKING
    
     a. 8: Thinking from the ground up (First Principles Thinking)
    
     b. 9: Navigating uncertainty (Probabilistic Thinking)
    
     c. 10: Using data, evidence and experiments (Scientific Thinking)
    
     d. 11: Costs, Benefits, and Incentives (Economic Thinking)


 4. EIGHT HACKER HATS - CONTEXTUAL THINKING
    
     a. 12: Anticipating butterfly effects (Systems Thinking)
    
     b. 13: Navigating people and groups (Social Thinking)
    
     c. 14: Making long term decisions (Long-term Thinking)
    
     d. 15: Managing scarce resources (Resource Thinking)


 5. IRRATIONAL THINKING
    
     a. 16: Cultivating instinct and intuition (Irrational Thinking)


 6. KEY TAKEAWAYS
    
     a. 17: 3D Decision Making
    
     b. 18: Conclusion


ABOUT THIS COURSE

--------------------------------------------------------------------------------

 * $97.00
 * 18 lessons
 * 1.5 hours of audio content


GET MORE WITH FOUNDATION

Pre-order the full Foundation course, and you'll get everything in Core, plus a
whole lot more.



 * $147.00
   
   
   $147.00DECISION HACKER: FOUNDATION
   
   
   Upgrade


ELEVATE YOUR CHOICES, TRANSFORM YOUR LIFE 🚀

Transform how you approach decisions, big and small. Learn to cut through the
noise and make smarter, faster, and more effective decisions that lead to
success and fulfillment.
Get the course ✨



THE PEOPLE HAVE SPOKEN 📣




5.0
from 48 reviews


FAQ 🧐

 * Q: I already make decisions every day without a hitch. Why do I need this
   course?
   
   A: Imagine you're a chef who's picked up some nifty utensils over the years
   at potlucks and garage sales. Now, someone hands you a brand new set of
   gourmet knives. Sure, you could keep slicing steaks with a spork and a butter
   knife, but why miss the chance to chop like a Michelin-star chef? "Decision
   Hacker" is a gourmet knife set for your brain, helping you cut through life's
   problems with a professional edge.

 * Q: Will this course eat up all my free time? I'm already swamped!
   
   A: I get it, time is precious. That's why the course is designed to fit into
   your schedule like a glove. Each lesson is bite-sized and packed with value.
   You can binge it like your favorite TV show or take it slow. Plus, with the
   option to revisit lessons as a private podcast, you can learn on the go –
   perfect for busy bees!

 * Q: Isn't video a better way to learn? Why only audio for the core course?
   
   A: Audio offers a unique opportunity to focus and reflect without visual
   distractions. It complements the text lessons and workbook, providing a
   holistic learning experience. However, if video is your thing, just pre-order
   the full foundation course. You'll get the audio now, along with bonus audio
   case studies, and then an immersive video experience when the foundation
   course goes live!

 * Q: Are these just theories, or will I get practical skills I can use?
   
   A: This isn't just a treasure trove of theories; it's a toolbox for real
   life. Each lesson includes practical exercises and real-world applications.
   You'll not only learn the ‘what’ and ‘why’ but also the ‘how’ of making
   better decisions. It's like getting a Swiss Army knife for your brain.

 * Q: I'm on the fence. Is this course really worth the investment?
   
   A: Imagine investing in a gadget that improves every other gadget you own.
   That's what this course is for your decision-making skills. The value you
   gain isn't just in the lessons themselves, but in how they amplify your
   ability to navigate life's choices – from the mundane to the monumental.

 * Q: Is this course just for BIG decision-makers, like CEOs and world leaders?
   
   A: Absolutely not! While CEOs and world leaders are welcome, this course is
   tailored for anyone who faces decisions - big or small. Whether you're
   choosing a cereal brand or contemplating a career change, 'Decision Hacker'
   is your secret weapon to making choices with confidence and clarity. Plus,
   you don't need a corner office or a fancy title to be a decision-making pro!


NOT YET CONVINCED?

Join over 30,000 people getting my free newsletter to be more productive,
creative and decisive.

Email

Please enter a valid email address

Thank You

Oops, something went wrong. Please try again with a different email address.


UPGRADE YOUR DECISION-MAKING TODAY.

Enroll today ✨

 * Home
 * All Products
 * The Knowledge

© Copyright Decision Hacker 2024
Teach online with Thinkific Open in a new window