Evaluating big life choices might be overrated
==============================================

*Two simple observations and my own two cents*

> Rational choice models of decision-making suggest gathering information on options and then proceeding with the option that best fits a person's current preferences and values. Paul argues that such a decision-making process is not possible for some options, called "transformative experiences", because the experience fundamentally transforms the person experiencing it. Paul offers a hypothetical example of a decision to become a vampire. Because a person would be fundamentally transformed by becoming a vampire, they cannot possibly know in advance what being a vampire is like. Other vampires might offer information, but their advice is likely shaped by their own irreversible choice. In this situation, a fully informed comparison of preferences and values is impossible.

~ [Wikipedia summary](https://en.wikipedia.org/wiki/Transformative_Experience) of L. A. Paul's "Transformative Experience"

Folks, you've heard it, evaluating too much doesn't only lead to [analysis paralysis](https://en.wikipedia.org/wiki/Analysis_paralysis), it also sometimes just isn't possible .
The question remains: why should you do something you can't evaluate?

> [Steven] Levitt invited individuals who couldn't make up their minds about matters both major (like divorce) and minor (such as changing hair color) to avail themselves of a randomized coin toss.
>
> ...
>
> Individuals whose virtual coin turned up heads were 25 percent more likely to make a change than those whose coin flip yielded tails. And, based on what they reported in two follow-up surveys over a six-month period, the nudge of a coin toss was just what these participants needed. Regardless of their responses to the coin tosses, participants who decided to make a change reported that they were substantially happier than those who did not.

~ [Summary of Working Paper 22487](https://www.nber.org/digest/oct16/change-or-not-change-just-flip-coin?page=1&perPage=50), National Bureau of Economic Research

I have never ever regretted big life choices, even if they didn't work out.
Quitting a job with no money and no backup plan taught me a ton: I improved my network, learned how to ask for favors and introductions, and started to hustle.
I learned I can go bankrupt and the value of social welfare systems.
Next month I am joining a startup with all the responsibilities I wish I had in my previous job.

Let this post be the coin flip for your life choices.

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

<style>
.coin-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  margin: 2rem 0;
}

.coin-question {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 1rem;
}

.coin-question input {
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  font: inherit;
  padding: 0;
  width: 140px;
  outline: none;
  opacity: 0.6;
}

.coin-question input:focus {
  opacity: 1;
}

.coin-question input::placeholder {
  color: inherit;
  opacity: 0.4;
}

.coin-container {
  perspective: 600px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.coin-clickable {
  width: 110px;
  height: 44px;
  position: relative;
  transform-style: preserve-3d;
  cursor: pointer;
}

.coin-face {
  width: 110px;
  height: 44px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.coin-front {
  background: linear-gradient(180deg, #e8c252 0%, #d4af37 50%, #b8962e 100%);
  color: #4a3c1a;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.5),
    inset 0 -2px 4px rgba(0,0,0,0.2),
    0 4px 8px rgba(0,0,0,0.2);
  transform: translateZ(3px);
}

.coin-back {
  background: linear-gradient(180deg, #b8962e 0%, #d4af37 50%, #e8c252 100%);
  color: #4a3c1a;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.3),
    inset 0 -2px 4px rgba(0,0,0,0.3);
  transform: rotateX(180deg) translateZ(3px);
}

.coin-clickable:hover .coin-front {
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.5),
    inset 0 -2px 4px rgba(0,0,0,0.2),
    0 6px 16px rgba(212,175,55,0.4);
}

.coin-clickable.flipped {
  animation: coinflip 1.8s ease-out forwards;
  pointer-events: none;
}

@keyframes coinflip {
  0% { transform: translateY(0) rotateX(0deg); }
  15% { transform: translateY(-100px) rotateX(360deg); }
  30% { transform: translateY(-140px) rotateX(720deg); }
  45% { transform: translateY(-120px) rotateX(1080deg); }
  60% { transform: translateY(-70px) rotateX(1440deg); }
  75% { transform: translateY(-20px) rotateX(1620deg); }
  82% { transform: translateY(0) rotateX(1710deg); }
  86% { transform: translateY(-8px) rotateX(1750deg); }
  92% { transform: translateY(0) rotateX(1790deg); }
  96% { transform: translateY(-2px) rotateX(1795deg); }
  100% { transform: translateY(0) rotateX(1800deg); }
}

</style>

<div class="coin-widget">
  <div class="coin-question">
    <span>Should I</span>
    <input type="text" placeholder="quit my job...">
    <span>?</span>
  </div>

  <div class="coin-container">
    <div class="coin-clickable" id="coin">
      <div class="coin-face coin-front">FLIP COIN</div>
      <div class="coin-face coin-back"></div>
    </div>
  </div>
</div>

<script>
(function() {
  var coin = document.getElementById('coin');
  var front = coin.querySelector('.coin-front');
  var back = coin.querySelector('.coin-back');

  coin.addEventListener('click', function() {
    if (coin.classList.contains('flipped')) return;

    var isYes = Math.random() > 0.5;
    front.textContent = isYes ? 'NO' : 'YES';
    back.textContent = isYes ? 'YES' : 'NO';

    coin.classList.add('flipped');
  });
})();
</script>
