<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width,initial-scale=1" />
  <meta name="color-scheme" content="light" />

  <title>Rob Desideri — Profile</title>
  <meta name="description" content="Researcher, engineer, and advisor focused on multiplayer tools for thought, deep learning, socioeconomic incentive systems, and advancing happiness and progress at scale." />
  <meta name="author" content="Rob Desideri" />
  <meta name="keywords" content="Rob Desideri, Robert Desideri" />
  <link rel="canonical" href="https://robdesideri.com/" />

  <meta property="og:type" content="profile" />
  <meta property="og:title" content="Rob Desideri" />
  <meta property="og:description" content="Experimenting &amp; On Good Days Learning" />
  <meta property="og:url" content="https://robdesideri.com/" />

  <link rel="icon" type="image/png" sizes="256x256" href="/favicon.png" />
  <link rel="icon" type="image/png" sizes="32x32" href="/favicon.png" />
  <link rel="apple-touch-icon" sizes="256x256" href="/favicon.png" />

  <!-- Schema.org JSON-LD -->
  <script type="application/ld+json">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://robdesideri.com/#website","url":"https://robdesideri.com/","name":"Rob Desideri","description":"Researcher, engineer, and advisor focused on multiplayer tools for thought, deep learning, socioeconomic incentive systems, and advancing happiness and progress at scale.","inLanguage":"en","copyrightYear":2026},{"@type":"ProfilePage","@id":"https://robdesideri.com/#webpage","url":"https://robdesideri.com/","name":"Rob Desideri — Profile","isPartOf":{"@id":"https://robdesideri.com/#website"},"about":{"@id":"https://robdesideri.com/#person"},"inLanguage":"en","description":"Researcher, engineer, and advisor focused on multiplayer tools for thought, deep learning, socioeconomic incentive systems, and advancing happiness and progress at scale."},{"@type":"Person","@id":"https://robdesideri.com/#person","name":"Rob Desideri","alternateName":"Robert Desideri","jobTitle":"Researcher | Engineer | Advisor","description":"Researcher, engineer, and advisor focused on multiplayer tools for thought, deep learning, socioeconomic incentive systems, and advancing happiness and progress at scale.","image":"https://robdesideri.com/rob-headshot-web.png","url":"https://robdesideri.com","knowsAbout":["Economics","Artificial Intelligence","Fintech","Capital Formation","Pricing And Valuation Modeling","Complex Systems","Deep Learning","Socioeconomic Systems","Protocol Development","Online Security","Economic Strategy","Currency Markets","International Trade","Risk Management","Securities Trading","Securities Settlement And Clearing","Commodities Trading","Renewable Energy"]}]}</script>

  <style>
    *,*::before,*::after{box-sizing:border-box}

    :root{
      --bg: #ffffff;
      --fg: #0b0c0f;
      --muted: #474b57;
      --hairline: rgba(15,18,28,0.14);
      --hairline2: rgba(15,18,28,0.10);
      --link: #0b0c0f;
      --max: 860px;
      --padX: clamp(16px, 5vw, 32px);
      --padY: clamp(32px, 8vw, 56px);
      --lh: 1.55;
      --radius: 10px;
    }

    @media (max-width: 600px){
      :root{
        --lh: 1.5;
      }
    }

    html, body {
      background: var(--bg);
      color: var(--fg);
      margin: 0;
      padding: 0;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      font-kerning: normal;
    }

    body{
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      line-height: var(--lh);
      letter-spacing: -0.01em;
    }

    a{
      color: var(--link);
      text-decoration: none;
      border-bottom: 1px solid var(--hairline);
    }
    a:hover{
      border-bottom-color: var(--fg);
    }

    .wrap{
      max-width: var(--max);
      margin: 0 auto;
      padding: var(--padY) var(--padX) 12px var(--padX);
    }

    header{
      margin-bottom: 26px;
    }

    .profile-row{
      display: flex;
      align-items: center;
      gap: 28px;
      margin-bottom: 18px;
    }

    .avatar{
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background-image: url('/rob-headshot-web.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      flex-shrink: 0;
      border: none;
    }

    .kicker{
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin: 0 0 10px 0;
    }

    h1{
      font-size: clamp(34px, 5.2vw, 54px);
      line-height: 1.04;
      margin: 0 0 8px 0;
      letter-spacing: -0.03em;
    }

    .dek{
      font-size: 17px;
      color: var(--muted);
      margin: 0;
      max-width: 70ch;
    }

    .rule{
      margin: 28px 0;
      border: 0;
      height: 1px;
      background: linear-gradient(to right, var(--hairline), transparent);
    }

    h2{
      font-size: 18px;
      letter-spacing: -0.02em;
      margin: 30px 0 8px 0;
    }

    p{
      margin: 0 0 14px 0;
      max-width: 76ch;
    }

    blockquote{
      margin: 18px 0;
      padding: 14px 16px;
      border-left: 2px solid var(--hairline);
      background: linear-gradient(to right, var(--hairline2), transparent);
      border-radius: var(--radius);
    }
    blockquote p{
      margin: 0;
      color: var(--fg);
    }

    .section-card{
      margin: 24px 0;
      padding: 18px 20px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      background: var(--bg);
    }

    .section-card h3{
      margin: 0 0 10px 0;
      font-size: 17px;
    }

    .section-card p{
      margin: 0 0 10px 0;
      font-size: 15px;
    }

    .observation{
      padding: 12px 0;
      border-bottom: 1px solid var(--hairline2);
    }
    .observation:last-child{
      border-bottom: none;
      padding-bottom: 0;
    }
    .observation-text{
      font-size: 15px;
      color: var(--fg);
      margin: 0 0 4px 0;
      font-style: italic;
    }
    .observation-meta{
      font-size: 13px;
      color: var(--muted);
      margin: 0;
    }

    .interests{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }
    .interest{
      font-size: 13px;
      color: var(--muted);
      padding: 4px 12px;
      border: 1px solid var(--hairline);
      border-radius: 20px;
    }

    .pad-footer{
      height: 160px;
    }

    @media (max-width: 600px){
      .profile-row{
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }
      .avatar{
        width: 100px;
        height: 100px;
      }
      h2{
        font-size: 17px;
        margin: 24px 0 6px 0;
      }
      .dek{
        font-size: 16px;
      }
      .section-card{
        padding: 14px 16px;
      }
    }

    @media (max-width: 400px){
      .kicker{
        font-size: 12px;
        letter-spacing: 0.10em;
      }
      .foot{
        font-size: 12px;
      }
    }
  </style>
</head>
<body>
  <main class="wrap">
    <header>
      <div class="profile-row">
        <div class="avatar"></div>
        <div>
          <h1>Rob Desideri</h1>
          <p class="dek">Experimenting &amp; On Good Days Learning</p>
        </div>
      </div>
    </header>

    <hr class="rule" />

    <section>
      <h2>TL;DR</h2>
      <p>
        I've got a nerdy fascination, or likely obsession, with: (i)&nbsp;multiplayer tools for thought &amp; communication, (ii)&nbsp;deep learning, (iii)&nbsp;socioeconomic incentive systems, and (iv)&nbsp;awe-inspiring pizza... together configured for the purpose of advancing happiness and progress&nbsp;&mdash;at&nbsp;scale.
      </p>
    </section>

    <hr class="rule" />

    <section>
      <h2>Building</h2>
      <p>
        I'm a growth optimist, and while it's hardly a novel insight for those who know me, I firmly believe that a major leap forward in coming years will be delivered by harnessing the synergy between humans and AI to build adaptive, resilient institutions. Institutions that enable true intellectual collaboration, meaningful community, and trust-based commerce are much needed if we as a species are ever going to actually improve wellbeing across the world.
      </p>
      <p>
        The challenge lies in the field of noise suppression and cancellation&nbsp;&mdash;the human kind&mdash; specifically the manipulation by opportunists, ideologues, and the outdated communication tools they wield. Traditional media and social platforms trap us in repetitive, disruptive narratives that limit our ability to organize and collaborate at scale. Today, global society appears stuck in a local maxima, unable to break free from these archaic systems that burn essential resources like there's no tomorrow.
      </p>
      <p>
        What we need now are tools for the present moment, ones that align human and AI potential for long-term growth. As the window for man&nbsp;+&nbsp;machine collaboration continues to open, it's up to those of us who actually can design and build to do so, so humanity can escape the Denial-of-Thought that's stifling progress. A serious rethink is in order re how we can communicate and collaborate better, to get on with instituting institutions for sustained, collective advancement.
      </p>
      <p>
        The key to doing so isn't just better AI, it's how we organize and use AI, together. Only through this man&nbsp;+&nbsp;machine collaboration can we unlock the potential to solve complex, global challenges. But to do that, we need to fix how we communicate and collaborate at scale. That's where the true potential for global progress lies. First things first. Onwards.
      </p>
    </section>

    <footer class="pad-footer"></footer>
  </main>
</body>
</html>