<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
 <link href="https://aristotelis.eco/feed.xml" rel="self" type="application/atom+xml"/>
 <link href="https://aristotelis.eco/" rel="alternate" type="text/html"/>
 <updated>2026-04-26T22:36:30-07:00</updated>
 <id>https://aristotelis.eco</id>
 <title type="html">Aristotelis Economides</title>
 <subtitle type="html">AI infrastructure at DeepMind. These days I deploy and tune AI models at scale. Based in San Francisco Bay Area.</subtitle>
 <author>
   <name>Aristotelis Economides</name>
   <email>aristotelis @ economides.org</email>
 </author><entry>
  <title type="html">Agent Command Centers: Scaling Human Attention</title>
  <link href="https://aristotelis.eco/agent-command-centers" rel="alternate" type="text/html" title="Agent Command Centers: Scaling Human Attention"/>
  <published>2026-02-03T00:00:00-08:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/agent-command-centers</id>
  <content type="html">&lt;p&gt;The first hour of using Claude Code feels like magic. You ask, it does. By hour six, you realize you’re glancing at the terminal every few seconds like a nervous first-time parent.&lt;/p&gt;

&lt;p&gt;Is it done? Did it break something? Is it asking a question you missed? The agent is pulling its weight and you are mostly nudging. Of course, you could run these agents in yolo mode and they would keep going without needing you. Why monitor at all?&lt;/p&gt;

&lt;p&gt;There’s emotional friction in letting an intelligent tool work for hours when you can’t tell what it’s doing. And when you do check back, it’s hard to tell what it did after running unsupervised for hours. Did it use any dependencies you don’t want? Change system-level settings? Did it leak API keys to hack around a dumb issue it was facing? When it’s fail-looping, will it just burn tokens for nothing?&lt;/p&gt;

&lt;p&gt;The interface gives you little signal and control knobs, so you supply your own attention as a substitute. A better interface wouldn’t assume you already trust the agent. It would create the conditions for trust by showing you what matters: what the agent is doing, what it’s uncertain about, when it needs you.&lt;/p&gt;

&lt;p&gt;Back in April 2025 &lt;a href=&quot;https://x.com/koomen&quot;&gt;Pete Koomen&lt;/a&gt; called most AI apps &lt;a href=&quot;https://koomen.dev/essays/horseless-carriages/&quot;&gt;horseless carriages&lt;/a&gt;. I loved that essay, but &lt;a href=&quot;https://x.com/aristotelis_eco/status/2015569548381237381&quot;&gt;capability had to mature for function to follow&lt;/a&gt;. Early engines couldn’t have powered Ford’s Model-T even if he sketched it in 1803. &lt;a href=&quot;https://github.com/anthropics/openclaw&quot;&gt;OpenClaw&lt;/a&gt; showed everyone that models are now ready to power the Model-T version of AI.&lt;/p&gt;

&lt;p&gt;Current interfaces demand too high a cognitive tax. Chat can only ever be a linear timeline of messages. When using agents, you need to consume a lot of information quickly and text is just a poor way to do that.&lt;/p&gt;

&lt;p&gt;What’s missing is a completely new interface: something that allows a human to manage a bunch of agents. Closer to a general’s command center than a chatbox. And the closest currently existing interfaces for managing many semi-autonomous units &lt;a href=&quot;https://blog.davidkaye.co/p/ai-needs-game-designers&quot;&gt;can be found in games&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;StarCraft players command two hundred units in real-time. They’re not chatting with each marine, or approving each attack. The interface shows them what matters: resources, alerts, unit groups. They issue high-level commands and units execute. The player micromanages units only when something goes wrong or the strategy needs to shift.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/attention-starcraft.webp&quot; alt=&quot;&quot; /&gt;
David Kaye: StarCraft 2’s UI is one of the most refined solutions to human-agent coordination that exists.&lt;/p&gt;

&lt;p&gt;We need interfaces that amplify human agency. Built for flow-state continuous interaction when a human has a lot of input to give, but also running autonomously with sparse input when the human is doing other things. And even running overnight without supervision.&lt;/p&gt;

&lt;h2 id=&quot;exploration-vs-exploitation&quot;&gt;Exploration vs. Exploitation&lt;/h2&gt;

&lt;p&gt;Agents seem to be mature and ready for two modes right now: exploration and exploitation. There are more ways to delegate work, like autonomous agent factories, but these still feel a year or two away.&lt;/p&gt;

&lt;p&gt;In exploration mode, you don’t know what you want yet. You’re playing with a problem, getting a feel for it. Chat works well here because conversation is itself exploratory. It’s how we brainstorm with other humans. Greenfield projects involve a lot of that kind of work.&lt;/p&gt;

&lt;p&gt;In exploitation mode, you already made key decisions and there’s a backlog of things that need to get done. Here, chat is friction. You don’t want to collaborate anymore, you want to loosely supervise a capable worker.&lt;/p&gt;

&lt;p&gt;In practice you constantly jump between the two modes. Tasks are being completed in the background while you are figuring out other details in the foreground. You need both in parallel, which means that a flexible tool still needs good chat, just not as the primary interface. Most tools force both modes into chat because that’s what early models needed, but (somewhat surprisingly) capabilities improved way faster than interfaces adapted.&lt;/p&gt;

&lt;p&gt;A command center is an interface designed for exploitation mode. It respects your attention. It lets you supervise multiple agents without monitoring multiple conversations. It surfaces what matters and handles the rest.&lt;/p&gt;

&lt;h2 id=&quot;useful-primitives-for-command-centers&quot;&gt;Useful Primitives for Command Centers&lt;/h2&gt;

&lt;p&gt;So what could a command center look like?&lt;/p&gt;

&lt;p&gt;I’ve been noting what I need when supervising agents, whether managing Claude Code, having OpenClaw handle personal tasks, or using Antigravity for coding at work. Five primitives keep recurring:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Inbox items: decisions, deliverables, and escalations.&lt;/li&gt;
  &lt;li&gt;FYI items: activity overviews and agent assumptions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;They’re probably not exhaustive or perfectly carved, but they capture what I need.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Decisions.&lt;/strong&gt; Things that need human judgment. Not “what should I do?” but “here’s the situation, here are the options, here’s my recommendation.” The agent gives options so you can answer in seconds. If you don’t like them, you can enter chat mode and discuss.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/attention-decisions.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The key here is surfacing the right decisions. If the agent found a security issue, it should just fix it: that’s not a good use of human attention. Human-grade decisions (for now at least) are about taste and ambiguity. “Two flights match your criteria: 6am direct or 10am with layover, which fits your day better?” That requires knowing something the agent doesn’t (for now).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Deliverables.&lt;/strong&gt; Pieces of work ready for human review. Code diffs, email drafts, excel sheets. The agent should be proactive. When sorting through email, instead of waiting for me to ask for an email draft, it should prepare one and surface it for approval or editing.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/attention-deliverables.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Escalations.&lt;/strong&gt; When failing to complete a task, the agent should surface the failure and reason. Things that broke. Build failed. Payment declined. Merge conflict. “Email couldn’t be sent: authentication failed, credentials may have expired.” These shouldn’t be buried in activity digests, but visually distinct. They’re clearly problems needing resolution.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/attention-escalations.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Activity.&lt;/strong&gt; What happened while I wasn’t watching? I don’t want a log dump, but something that I can parse with a glance. “Ran 847 tests. Fixed 3 flaky ones. One still failing after repeated fix attempts, here’s the digest” or “Archived 23 uninteresting emails, moved 2 in your read-it-later list, and prepared 5 draft replies.”&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/attention-activity.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Assumptions.&lt;/strong&gt; Implicit choices the agent made for completing a task. The agent acts on beliefs about what you want, and it should surface these assumptions. “Scheduled the meeting for 2pm because you usually prefer afternoon calls.” “Chose the direct flight over the cheaper option with a layover because you’ve picked direct 4 out of 5 times.” “I used casual tone because you rejected formal twice.”&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/attention-assumptions.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Surfacing assumptions is how trust gets calibrated. Ideally the agent learns over time from your decisions. How exactly that learning works is an open problem (more on this below), but the interface should surface agent assumptions.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/attention-command-center.webp&quot; alt=&quot;&quot; /&gt;
Nerfed version of what a command center could look like. Busier version at &lt;a href=&quot;/nexus&quot;&gt;aristotelis.eco/nexus&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In practice, decisions, deliverables, and escalations are all inbox items that appear in a queue. The reason I break them down here is to point out different types of information that are useful. The agent’s activity and assumptions aren’t actionable most times, and should command less of the user’s attention.&lt;/p&gt;

&lt;p&gt;One more thing: an overarching approach when building agentic interfaces.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Clay.&lt;/strong&gt; Functionality should be moldable. The layouts, UI, components, information structures shouldn’t be hardcoded. Good &lt;a href=&quot;https://every.to/guides/agent-native&quot;&gt;agent-native applications&lt;/a&gt; will be &lt;a href=&quot;https://lucumr.pocoo.org/2026/1/31/pi/&quot;&gt;malleable like clay&lt;/a&gt;. Two reasons: first, it allows for intelligent emergent behavior that the software author didn’t explicitly design for. Second, it’s the only way for software to stay relevant as models improve.&lt;/p&gt;

&lt;h2 id=&quot;open-questions&quot;&gt;Open Questions&lt;/h2&gt;

&lt;p&gt;There are problems I’m still not sure about. Most are model rather than interface problems though, so interfaces might just need to deal with them in a good-enough way and trust that new models won’t have the same issues.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Agent memory, continual learning.&lt;/strong&gt; Right now, “learning” mostly means updating text files that persist between sessions. This kind-of works, but there are issues: files drift from reality, or they make behavior too rigid, or agents forget to update them. Also, agents aren’t good at forgetting irrelevant information, which is an &lt;a href=&quot;https://www.cell.com/neuron/fulltext/S0896-6273(17)30365-3&quot;&gt;integral part of intelligence&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Heavy-handed engineering solutions feel like swimming upstream when you recognize that all of this file manipulation is suspiciously &lt;a href=&quot;http://www.incompleteideas.net/IncIdeas/BitterLesson.html&quot;&gt;bitter-lesson-y&lt;/a&gt;. What you eventually want is for memory and learning to be trained behaviors instead of bolted-on. &lt;a href=&quot;https://x.com/daniel_mac8/status/2003479300490559543&quot;&gt;Dario and Sholto&lt;/a&gt; think models will get there soon.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Multi-agent coordination.&lt;/strong&gt; Beyond here be dragons. Some approaches are &lt;a href=&quot;https://cursor.com/blog/scaling-agents&quot;&gt;simpler&lt;/a&gt; than &lt;a href=&quot;https://github.com/steveyegge/gastown&quot;&gt;others&lt;/a&gt;. All the problems of a single agent are amplified in a swarm. My gut leans towards engineering the simplest thing that works OK, while waiting for models to solve coordination through RL, like &lt;a href=&quot;https://www.kimi.com/blog/kimi-k2-5&quot;&gt;Kimi K2.5&lt;/a&gt; (bitter lesson again).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Interruption budget.&lt;/strong&gt; How much should the agent escalate? How often? If the agent interrupts you for every decision, you’re babysitting. If it never interrupts, you have no control. The right balance depends on stakes, reversibility, and confidence. Turning off a light: low stakes, reversible. Don’t interrupt. Sending an email: medium stakes, irreversible. Maybe interrupt. Booking a flight: high stakes, involves money. Definitely interrupt. How much should the user configure this? Per-tool rules get complex very fast.&lt;/p&gt;

&lt;p&gt;Part of the reliable escalation problem feels like it should be solved with continual learning (agents will learn your preferences over time), but it’s also an alignment problem in miniature: the agent must know when it’s uncertain, when stakes are high, what a human would want to know, and it must want to do the right thing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Failure recovery.&lt;/strong&gt; How to effectively deal with agents looping into failure or crashing? How many retries should an agent attempt? How much token budget should a crash-looping agent spend? Here I lean towards simple again. New models will overcome current failure modes and introduce different ones. Heavy investment in failure handling for today’s models may not transfer.&lt;/p&gt;

&lt;h2 id=&quot;closing&quot;&gt;Closing&lt;/h2&gt;

&lt;p&gt;Horseless carriages or not, the best agentic tool out there is a souped-up CLI. Models far outpaced the interfaces.&lt;/p&gt;

&lt;p&gt;We’re entering a period where the bottleneck is human attention, not model capability. Scaling human attention is the next step. The people who figure out how to manage that attention well, how to supervise ten agents as easily as one, will have &lt;a href=&quot;https://github.com/steipete&quot;&gt;leverage that looks like magic&lt;/a&gt;.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;Thank you to &lt;a href=&quot;https://www.linkedin.com/in/masha-stroganova/&quot;&gt;Masha Stroganova&lt;/a&gt;, &lt;a href=&quot;https://x.com/sarahcat21&quot;&gt;Sarah Catanzaro&lt;/a&gt;, &lt;a href=&quot;https://robotproctor.substack.com/&quot;&gt;John Carpenter&lt;/a&gt;, &lt;a href=&quot;https://x.com/MatthewWSiu&quot;&gt;Matthew Siu&lt;/a&gt;, and &lt;a href=&quot;https://x.com/rohan_virani&quot;&gt;Rohan Virani&lt;/a&gt; for reading drafts of this essay.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The essay reflects my personal thoughts and exploration and is not affiliated with Google DeepMind.&lt;/em&gt;&lt;/p&gt;

&lt;h2 id=&quot;notes--further-reading&quot;&gt;Notes &amp;amp; Further Reading&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;I am using “Claude Code” as a catch-all for all similar interfaces that came after it: Gemini CLI, Open Code, etc.&lt;/li&gt;
  &lt;li&gt;I’ve been exploring the idea of a command center at &lt;a href=&quot;/nexus&quot;&gt;aristotelis.eco/nexus&lt;/a&gt;. It’s an early prototype with mocked data. I like the experience more than other tools I’ve tried. It still doesn’t flow the way a good strategy game does.&lt;/li&gt;
  &lt;li&gt;Even with the ideas I share executed well, multiple agents running in parallel quickly produce visual noise with high attention tax. Humans are bad at monitoring multiple asynchronous streams. In addition to the suggestions in the essay, a good command center probably needs a combination of hierarchical aggregation + strong prioritization + “drill-down on demand” mechanics. Here, too, there is a lot to learn from game design, but this topic deserves its own essay.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Relevant work I’ve enjoyed, or discovered while writing this:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://x.com/ivanhzhao/article/2003192654545539400&quot;&gt;Steam, Steel, and Infinite Minds — Ivan Zhao&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://cursor.com/blog/scaling-agents&quot;&gt;Scaling long-running autonomous coding — Cursor&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents&quot;&gt;Effective harnesses for long-running agents — Anthropic&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://steve-yegge.medium.com/welcome-to-gas-town-4f25ee16dd04&quot;&gt;Welcome to Gas Town — Steve Yegge&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.kimi.com/blog/kimi-k2-5.html&quot;&gt;Kimi K2.5: Visual Agentic Intelligence — Kimi&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://koomen.dev/essays/horseless-carriages/&quot;&gt;AI Horseless Carriages — Pete Koomen&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://julian.digital/2025/03/27/the-case-against-conversational-interfaces/&quot;&gt;The case against conversational interfaces — Julian Digital&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://every.to/guides/agent-native&quot;&gt;Agent-native Architectures: How to Build Apps After Code Ends — Dan Shipper&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://blog.davidkaye.co/p/ai-needs-game-designers&quot;&gt;AI Needs Game Designers — David Kaye&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://steipete.me/posts/2025/shipping-at-inference-speed&quot;&gt;Shipping at Inference-Speed — Peter Steinberger&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://lucumr.pocoo.org/2026/1/31/pi/&quot;&gt;Pi: The Minimal Agent Within OpenClaw — Armin Ronacher&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="posts"/></entry><entry>
  <title type="html">The Cities We Build</title>
  <link href="https://aristotelis.eco/the-cities-we-build" rel="alternate" type="text/html" title="The Cities We Build"/>
  <published>2025-11-08T00:00:00-08:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/the-cities-we-build</id>
  <content type="html">&lt;p&gt;We spend most of our lives in cities. Walking past buildings, working inside them, commuting between one another. Cities are the background of our civilization.&lt;/p&gt;

&lt;p&gt;And yet, something fundamentally changed about how we think about them during the 20th century.&lt;/p&gt;

&lt;p&gt;Take Penn Station in New York. The original, built in 1910, had vaulted ceilings modeled after Roman baths. Marble columns rose to meet enormous arched windows that flooded the space with light. It made you feel that arriving in New York meant something.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-pennstation.webp&quot; alt=&quot;&quot; /&gt;
Main Waiting Room of the original Penn Station, completed in 1910&lt;/p&gt;

&lt;p&gt;They demolished it in 1963 and replaced it with an underground hub. Low ceilings, fluorescent lights, narrow corridors. Some call it New York’s most hated building.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-pennstationtoday.webp&quot; alt=&quot;&quot; /&gt;
Penn Station today&lt;/p&gt;

&lt;p&gt;Same city. Same purpose. Sixty years apart.&lt;/p&gt;

&lt;p&gt;What’s strange isn’t just that we replaced something beautiful with something ugly. It’s that this happened everywhere, roughly between 1940 and 1970. Train stations, schools, churches, apartment buildings, entire neighborhoods.&lt;/p&gt;

&lt;p&gt;We changed how we build things.&lt;/p&gt;

&lt;p&gt;Why?&lt;/p&gt;

&lt;h2 id=&quot;it-wasnt-capitalism&quot;&gt;It Wasn’t Capitalism&lt;/h2&gt;

&lt;p&gt;The easiest explanation is capitalism. When profit-driven private individuals build without accountability in a free market, we get soulless, boring things.&lt;/p&gt;

&lt;p&gt;Except this doesn’t hold up.&lt;/p&gt;

&lt;p&gt;Look back to the 19th century, when capitalism was raw and unregulated. Victorian London, with its iconic row houses and grand stations, was built by profit-driven developers.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-naturalhistorymuseum.webp&quot; alt=&quot;&quot; /&gt;
Central Hall of the Natural History Museum in London, completed in 1881&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-westminster.webp&quot; alt=&quot;&quot; /&gt;
Palace of Westminster, completed in 1870&lt;/p&gt;

&lt;p&gt;In New York, Frank Woolworth commissioned his Gothic skyscraper in 1913, during the Gilded Age. Peak capitalism. Maximum inequality. He paid for beauty because it boosted his brand and legacy.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-woolworth.webp&quot; alt=&quot;&quot; /&gt;
The Woolworth Building, opened in 1913&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-woolworth-details.webp&quot; alt=&quot;&quot; /&gt;
Gothic details from the Woolworth Building&lt;/p&gt;

&lt;p&gt;Beauty sold then, just as it does now. Apple is one of the world’s most valuable companies, and they sell the opposite of cheap and soulless.&lt;/p&gt;

&lt;p&gt;Then there’s socialism to compare. Soviet Khrushchyovkas were mass-produced concrete boxes, as ugly as anything capitalism produced in the 1960s.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-moscow1960.webp&quot; alt=&quot;&quot; /&gt;
1960s residential district in Moscow, built to address housing shortage&lt;/p&gt;

&lt;p&gt;Berlin is the perfect test case. East Berlin was managed by communists, West Berlin by capitalists. Both sides built the same bland blocks. The economic system didn’t matter.&lt;/p&gt;

&lt;p&gt;Something else drove the transformation. Something ideological.&lt;/p&gt;

&lt;h2 id=&quot;the-industrial-revolution&quot;&gt;The Industrial Revolution&lt;/h2&gt;

&lt;p&gt;For most of history, life didn’t change much. Your grandfather’s world looked much like yours.&lt;/p&gt;

&lt;p&gt;Until suddenly it didn’t.&lt;/p&gt;

&lt;p&gt;Over the course of the 19th century, Europe got trains, electricity, telephones, cars, x-rays, and radios. Your son, helping you with farming in your little village, could move to a city with millions of people and work in a factory. You could see a photo of Tokyo without leaving London.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/cities-gdp.webp&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;This transformation brought unprecedented wealth. Private individuals suddenly had fortunes greater than kingdoms of the past. They poured fortunes into beautiful Victorian buildings mixing architectural elements from different historical periods.&lt;/p&gt;

&lt;p&gt;We romanticize those buildings, but it’s easy to forget how bad it was for most people living through it.&lt;/p&gt;

&lt;p&gt;Factories brought assembly lines. Millions migrated to cities for work. Hundreds of workers packed into dark airless rooms with shared toilets in hallways. Cholera outbreaks killed thousands at a time. Tuberculosis was the leading cause of death. Children worked in factories, breathing air thick with coal smoke. In places like Manchester, the working poor could hardly expect 25 years of life. Even the mighty Thames got so polluted that the local government declared an emergency to deal with the “Great Stink” of 1858.&lt;/p&gt;

&lt;p&gt;The beautiful Victorian buildings existed alongside grimy slums.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-london1865.webp&quot; alt=&quot;&quot; /&gt;
Street with common houses, London in 1865&lt;/p&gt;

&lt;p&gt;By the early 1900s, thinkers across Europe started questioning this chaos. The lavish Victorian designs, with their fake historical flourishes slapped onto cheap mass-produced bricks felt dishonest. Reformers looked at ships, factories, and machines with their clean, functional lines. If this was what modern beauty looked like, why were we still copying Greek temples? Decoration, they argued, is primitive and wasteful. Advanced, enlightened civilizations should embrace scientific and rational design.&lt;/p&gt;

&lt;p&gt;This was the start of modernism. But it was still just an idea, confined mostly to theory and small experiments.&lt;/p&gt;

&lt;p&gt;Then came World War I.&lt;/p&gt;

&lt;h2 id=&quot;breaking-free-from-the-past&quot;&gt;Breaking Free From the Past&lt;/h2&gt;

&lt;p&gt;World War I was the first global conflict. Fifteen million people died with industrial efficiency. Much of Europe lay in ruins. Kings, generals, and politicians had led Europe into hell.&lt;/p&gt;

&lt;p&gt;After 1918, people wanted more than reconstruction. They wanted a clean break, not just from war, but from everything associated with the old order that had failed so catastrophically.&lt;/p&gt;

&lt;p&gt;The architectural styles of the pre-war era became wrapped up with the political and social systems that had produced the war. If you wanted to build a new world, you needed new architecture.&lt;/p&gt;

&lt;h3 id=&quot;three-men-and-a-movement&quot;&gt;Three Men and a Movement&lt;/h3&gt;

&lt;p&gt;In 1919, Walter Gropius founded the Bauhaus in Germany. A design school that combined art, craft, and industrial production.&lt;/p&gt;

&lt;p&gt;Germany in the 1920s was chaotic. Hyperinflation, political violence, traumatized veterans. The Bauhaus wasn’t just about aesthetics. It was trying to build a new kind of society.&lt;/p&gt;

&lt;p&gt;Bauhaus members believed quality design should be accessible to everyone, not just the wealthy. Mass production could make good housing affordable. Function over decoration meant spending money on better materials and safety instead of ornamental details for wealthy patrons.&lt;/p&gt;

&lt;p&gt;From their perspective, traditional architecture was part of the problem. It served the elite, required expensive craftsmen, and was slow to build when millions needed housing immediately.&lt;/p&gt;

&lt;p&gt;Le Corbusier, a Swiss-French architect, proclaimed that “a house is a machine for living in.” He thought buildings should be standardized like automobiles. Cities should be organized rationally: towers in parks, separated by function.&lt;/p&gt;

&lt;p&gt;In 1925, he proposed demolishing the historic center of Paris and replacing it with 18 identical 60-story towers housing 3 million people. It was never built, but his ideas shaped a generation of architects.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-planvoisin.webp&quot; alt=&quot;&quot; /&gt;
Le Corbusier’s “Plan Voisin” in 1925 to replace the historical center of Paris&lt;/p&gt;

&lt;p&gt;Ludwig Mies van der Rohe, a German who worked with Gropius, redefined modernism aesthetically. His designs proved that radical simplification could be elegant, not just efficient. “Less is more” is one of his famous principles.&lt;/p&gt;

&lt;p&gt;Gropius, Mies, and Le Corbusier held a revolutionary exhibition in 1927 alongside other prominent modernist architects to demonstrate modern architecture. The goal was an existence proof for modernism’s promises: inexpensive, simple, efficient, and good-quality housing.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-weissenhofestate.webp&quot; alt=&quot;&quot; /&gt;
Weissenhof Estate, Stuttgart. 1927. The buildings look completely commonplace today. That’s only because Bauhaus architects were so tremendously successful at spreading their design philosophy, that it’s now everywhere.&lt;/p&gt;

&lt;p&gt;Around 1928, modernist architects formed CIAM, the International Congresses of Modern Architecture. The scattered individual architects transformed into a coordinated movement with shared principles and manifestos.&lt;/p&gt;

&lt;p&gt;Their framing was simple: modernism equals progress, science, health, democracy. Traditional equals nostalgia, disease, authoritarianism.&lt;/p&gt;

&lt;p&gt;Even the early Soviet Union invited modernist architects, seeing rationalist planning as compatible with communist ideals.&lt;/p&gt;

&lt;h2 id=&quot;modernism-arrives-in-america&quot;&gt;Modernism Arrives in America&lt;/h2&gt;

&lt;p&gt;The Nazis hated modernism. They called it “degenerate art” and shut down the Bauhaus. Many of its architects, often left-wing or Jewish, fled to North America.&lt;/p&gt;

&lt;p&gt;Walter Gropius went to Harvard. Mies van der Rohe went to the Illinois Institute of Technology. Other Bauhaus architects spread across American universities.&lt;/p&gt;

&lt;p&gt;This was a crucial moment. America in the 1940s and 50s saw itself as modern, progressive, and scientific: the perfect soil for modernist ideology to take root. American universities competed to hire these famous European intellectuals who were fleeing fascism.&lt;/p&gt;

&lt;p&gt;MoMA’s 1932 “International Style” exhibition, featuring works of Le Corbusier and Mies, had already established modernism as sophisticated and cultured in American minds. Now the masters themselves were here, ready to train the next generation.&lt;/p&gt;

&lt;p&gt;Meanwhile, World War II had flattened even more cities than WWI. Entire city centers were gone. There was urgency to rebuild, and blank slates to build on.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-tokyo1945.webp&quot; alt=&quot;&quot; /&gt;
Tokyo after the bombing in March 1945&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-warsaw1948.webp&quot; alt=&quot;&quot; /&gt;
Warsaw in 1948&lt;/p&gt;

&lt;p&gt;The war had just proven with tanks, planes, and ships that mass production could work at enormous scale. Why not buildings?&lt;/p&gt;

&lt;p&gt;The total war economy mindset carried over into postwar reconstruction. Modernist architecture fit perfectly: it was rational, planned, efficient, and standardized.&lt;/p&gt;

&lt;p&gt;Traditional building was slow, required skilled craftsmen, was expensive. And importantly, the Nazis had rejected modernism, which tainted traditional architecture by association. Modernism became the architecture of democracy.&lt;/p&gt;

&lt;p&gt;By 1950, Gropius and Mies had trained a generation of American architects. If you wanted to be taken seriously, you studied with them. They taught that decoration is dishonest. Form follows function. Less is more.&lt;/p&gt;

&lt;p&gt;Architecture schools stopped accepting traditional designs. Professional journals, architectural awards, planning departments, and licensing boards were all led by people aligned with modernist principles. It became the official style of American power and education.&lt;/p&gt;

&lt;p&gt;When Mies designed the Seagram Building in 1958, it became a template copied in every major city worldwide.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-seagram1958.webp&quot; alt=&quot;&quot; /&gt;
Mies’s Seagram Building, 1958&lt;/p&gt;

&lt;h2 id=&quot;lock-in&quot;&gt;Lock-In&lt;/h2&gt;

&lt;p&gt;Here is where it gets interesting.&lt;/p&gt;

&lt;p&gt;Modern zoning rules started as early as 1916, but most were implemented in the decades after World War II.&lt;/p&gt;

&lt;p&gt;The people writing zoning codes in the 1950s had all been trained by modernists. That’s what everyone learned in architecture school. So the codes embedded modernist assumptions.&lt;/p&gt;

&lt;p&gt;Separation of uses. Wide streets for cars. Minimum parking requirements. Buildings needed to be set back from streets. Height limits and floor-area ratios favored simple geometries.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-floridazoning.webp&quot; alt=&quot;&quot; /&gt;
Separation of uses in Florida, USA&lt;/p&gt;

&lt;p&gt;These rules weren’t written to ban traditional architecture explicitly. They were written to solve practical problems: avoid factories next to homes, ensure enough light and air, stop overcrowding.&lt;/p&gt;

&lt;p&gt;But the solutions made traditional urbanism nearly impossible.&lt;/p&gt;

&lt;p&gt;You can’t build a mixed-use building with shops below and apartments above. Use separation forbids it. You can’t build to the sidewalk edge, forming a continuous street wall. Setback requirements prevent it. You can’t create traditional street grids with small blocks. Road width and parking requirements make it unworkable.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-setbacks.webp&quot; alt=&quot;&quot; /&gt;
Residential setback requirements&lt;/p&gt;

&lt;p&gt;Parking minimums were especially destructive. Traditional neighborhoods relied on walking and transit. New codes required two parking spaces per unit, making that density impossible.&lt;/p&gt;

&lt;p&gt;Fire codes were developed with concrete and steel in mind. You could technically build in wood or masonry, but you had to shoulder the burden of proving safety yourself.&lt;/p&gt;

&lt;p&gt;This created a self-reinforcing system. Only modern buildings could easily get permits. Architecture students learned to design what could actually be approved. Planning departments only knew how to evaluate modern designs. Traditional building skills disappeared because no one needed them anymore.&lt;/p&gt;

&lt;p&gt;By 1970, the system was locked in.&lt;/p&gt;

&lt;p&gt;Under most current regulations in most cities, it is literally illegal to build Paris or Amsterdam.&lt;/p&gt;

&lt;h2 id=&quot;what-we-have-now&quot;&gt;What We Have Now&lt;/h2&gt;

&lt;p&gt;Why the history lesson?&lt;/p&gt;

&lt;p&gt;As Winston Churchill said, &lt;em&gt;“The longer you can look back, the farther you can look forward.”&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Modernism solved real, terrible problems. Slums in 1900 were disease-ridden deathtraps. The housing shortage after WWII was desperate. Within a few decades, we developed efficient systems for building. Modern apartments are dramatically safer, cleaner, and warmer than 19th century houses.&lt;/p&gt;

&lt;p&gt;The only reason we can stop and wonder why cities don’t feel right anymore is because modern codes work so well at the material level that we can’t even imagine how dangerous things used to be.&lt;/p&gt;

&lt;p&gt;But.&lt;/p&gt;

&lt;p&gt;Walk through a city built after the 1950s. Everything works. Nothing is broken. The buildings are safe and the systems are efficient. But nothing feels like it’s for you.&lt;/p&gt;

&lt;p&gt;Buildings don’t acknowledge your presence. They could be anywhere, Phoenix, Frankfurt, Singapore. They belong to no place and no one.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-frankfurttoday.webp&quot; alt=&quot;&quot; /&gt;
Frankfurt, Germany&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-phoenixtoday.webp&quot; alt=&quot;&quot; /&gt;
Phoenix, Arizona, USA&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-singaporetoday.webp&quot; alt=&quot;&quot; /&gt;
Singapore&lt;/p&gt;

&lt;p&gt;Historic cities are different. They have layers of different eras visible at once. Buildings at human scale. When you pay close attention, you notice rewarding little details, like layers in your favorite music. Streets shaped for lingering, not just passing through. The city tells you: people were here before you, and people will be here after. You’re part of something continuous.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-florencetoday.webp&quot; alt=&quot;&quot; /&gt;
Cities like Florence have museums, cafes, shops, and churches all intertwined.&lt;/p&gt;

&lt;p&gt;This isn’t nostalgia. When people travel, they overwhelmingly prefer historic cities. Prague, Florence, old Montreal. Not because people are “stuck in the past” but because those places feel alive in a way modern cities don’t.&lt;/p&gt;

&lt;p class=&quot;caption&quot;&gt;&lt;img src=&quot;/assets/img/cities-oldmontrealtoday.webp&quot; alt=&quot;&quot; /&gt;
Old Montreal&lt;/p&gt;

&lt;p&gt;Modern cities often tell you: you’re a functional unit in an efficient system.&lt;/p&gt;

&lt;h2 id=&quot;what-next&quot;&gt;What Next?&lt;/h2&gt;

&lt;p&gt;It’s 2025, but we’re living in cities shaped by ideas from 1960.&lt;/p&gt;

&lt;p&gt;Ideas developed under different circumstances, with different needs, different technologies, different constraints. Ideas that seemed obviously correct then, but we now know were incomplete. Ideas shaped by disease, war, and poverty. Ideas that aren’t mandated by laws of nature, economics, or history. Do these ideas still serve us?&lt;/p&gt;

&lt;p&gt;People often assume that boring cities are the inescapable price of progress. Capitalism’s iron logic. Are they?&lt;/p&gt;

&lt;p&gt;The constraints that created soulless cities have changed. We have materials and methods that previous generations couldn’t imagine. Digital fabrication, advanced engineering, new materials that outperform anything from the past. The technical barriers are lower than they’ve ever been. Construction technology today would seem like alien magic to Michelangelo designing Saint Peter’s Basilica back in the 16th century.&lt;/p&gt;

&lt;p&gt;The question isn’t whether to rebuild old Paris. It had too many problems that we worked too hard to solve. And there are still problems to solve, enough to make you miserable if you think about all of them at once.&lt;/p&gt;

&lt;p&gt;But life cannot only be about solving one problem after another. There has to be more than that. Cities can’t be just infrastructure. They’re where we spend our entire lives. Where our children will grow up. What we leave behind. They don’t just shape how efficiently we move from place to place, but how we feel, what we notice, what we remember.&lt;/p&gt;

&lt;p&gt;History’s greatest cities understood this. They had figured out things about human psychology and social dynamics that we forgot to include in our attempt to redesign everything from scratch. Like teenagers rebelling against their parents, we threw out things that actually worked along with things that didn’t.&lt;/p&gt;

&lt;p&gt;We can build cities that inspire again. Places we’re excited to wake up in, proud to show visitors, honored to pass on.&lt;/p&gt;

&lt;p&gt;The future doesn’t have to look like the past. But it also doesn’t have to look like a parking lot.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Key Inspiration:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Cultural Tutor, especially his first YouTube video&lt;/li&gt;
  &lt;li&gt;Monumental Labs and their vision&lt;/li&gt;
  &lt;li&gt;Altissia from FFXV&lt;/li&gt;
  &lt;li&gt;The magnificent cities that we used to build when we were vastly poorer and technologically primitive than we are now&lt;/li&gt;
&lt;/ul&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="posts"/></entry><entry>
  <title type="html">Why LLMs might actually lead to AGI</title>
  <link href="https://aristotelis.eco/llms-to-agi" rel="alternate" type="text/html" title="Why LLMs might actually lead to AGI"/>
  <published>2025-04-20T00:00:00-07:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/llms-to-agi</id>
  <content type="html">&lt;p&gt;Search “will llms agi” on Google and you will find completely contradicting opinions.&lt;/p&gt;

&lt;p&gt;Sam Altman &lt;a href=&quot;https://www.businessinsider.com/openai-nears-ai-systems-reason-cause-concern-sam-altman-chatgpt-2024-7&quot;&gt;promises AGI in 2025&lt;/a&gt;. Dario Amodei dreams about &lt;a href=&quot;https://www.darioamodei.com/essay/machines-of-loving-grace&quot;&gt;Machines of Loving Grace&lt;/a&gt;. Yann LeCun straightaway declares that &lt;a href=&quot;https://www.reddit.com/r/singularity/comments/1jfwp9m/yann_is_still_a_doubter/&quot;&gt;scaling LLMs is just complete BS&lt;/a&gt;. Ilya Sutskever encourages young researchers to &lt;a href=&quot;https://youtu.be/1yvBqasHLZs?si=xZxgQQR1XbxhRYiQ&quot;&gt;think new ideas&lt;/a&gt;, and Francois Chollet struggles to &lt;a href=&quot;https://youtu.be/UakqL6Pj9xo?si=6V1g-OH8bZZrVcMj&quot;&gt;come up with a benchmark&lt;/a&gt; that can even define what AGI is.&lt;/p&gt;

&lt;p&gt;Still, we’re confidently investing billions of dollars into LLMs. This seems irrational until you understand what problem LLMs actually solve.&lt;/p&gt;

&lt;h2 id=&quot;the-bottleneck-of-ai-progress&quot;&gt;The bottleneck of AI progress&lt;/h2&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;strong&gt;AI progress is bounded by &lt;em&gt;research iteration speed&lt;/em&gt; and the total amount of &lt;em&gt;energy available for computation&lt;/em&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Research speed&lt;/strong&gt; means how quickly we can test ideas and make them work in practice. Think of it as the time between researchers conceptualizing “thinking models”, and o1 being live on ChatGPT.&lt;/p&gt;

&lt;p&gt;Better algorithms, evals, and model architectures are all research outputs that give us more “intelligence”. New chips, scaling methods, and infrastructure optimizations give us more FLOPs per watt.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Energy for computation&lt;/strong&gt; means how many watts we have for running AI. Building more datacenters increases our total available wattage.&lt;/p&gt;

&lt;p&gt;Since AI is just matrix multiplications at scale, more FLOPs means faster iteration. More FLOPs come from research, and more wattage from datacenter capacity. The combination of the two gives us how many operations we can do, or, how many things we can try.&lt;/p&gt;

&lt;p&gt;Everything is reduced to two variables: &lt;em&gt;research speed&lt;/em&gt; and &lt;em&gt;energy&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;(I won’t talk much about energy in this post.)&lt;/p&gt;

&lt;h2 id=&quot;what-changed-within-a-year&quot;&gt;What changed within a year&lt;/h2&gt;

&lt;p&gt;LLMs today can easily make beautiful landing pages and demo apps, contribute to existing codebases, and perform basic tasks in containerized computer environments like ordering pizza or booking tickets. As almost everyone experienced a month ago, AI can now turn any picture into a &lt;a href=&quot;https://x.com/xprunie/status/1904786623939895542&quot;&gt;Ghibli scene&lt;/a&gt; and &lt;a href=&quot;https://x.com/ginacostag_/status/1906321565719076896&quot;&gt;follow visual instructions&lt;/a&gt; surprisingly well.&lt;/p&gt;

&lt;p&gt;These tasks sound boring, but that’s because &lt;a href=&quot;https://blog.samaltman.com/the-gentle-singularity&quot;&gt;the more hype AI gets, the higher our expectations go&lt;/a&gt;. A year ago, &lt;em&gt;none&lt;/em&gt; of this worked &lt;sup id=&quot;fnref:1&quot;&gt;&lt;a href=&quot;#fn:1&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;. We didn’t even have multimodal or thinking models yet, both of which were instrumental in making agents possible &lt;sup id=&quot;fnref:2&quot;&gt;&lt;a href=&quot;#fn:2&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;

&lt;p&gt;Within less than a year, we got from AI barely completing toy tasks, to autonomous delivery of economically valuable work.&lt;/p&gt;

&lt;p&gt;The image below succinctly summarizes the progress:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/img/llm-iq-2024-2025.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;But what does this have to do with AGI? Yes, models are improving fast, but a cat is still, in some ways, more intelligent than an LLM.&lt;/p&gt;

&lt;p&gt;I suspect that no person on earth today has any &lt;em&gt;concrete&lt;/em&gt; idea how to get to AGI. But we still have a simple path to get there.&lt;/p&gt;

&lt;h2 id=&quot;ai-research-is-boring-work&quot;&gt;AI research is boring work&lt;/h2&gt;

&lt;p&gt;Walk into any frontier lab and ask a researcher how they spend their week. You will hear about failed training runs that need debugging, broken pipelines that need fixing, hardware issues that they don’t understand.&lt;/p&gt;

&lt;p&gt;On a good week, they might get a few hours of actual creative work: designing experiments, formulating hypotheses, interpreting results.&lt;/p&gt;

&lt;p&gt;Parsing ten-thousand-line error logs doesn’t require brilliance. Babysitting a job and restarting it when things go wrong isn’t creative. Running multiple experiments with different hyperparameters is tedious. And importantly, humans are remarkably bad at all these tasks.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;strong&gt;We are &lt;em&gt;not&lt;/em&gt; out of ideas. People have tons of ideas and too little time to try them out. The boring, repetitive work is the bottleneck to AI progress.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2 id=&quot;llms-are-a-research-catalyst&quot;&gt;LLMs are a research catalyst&lt;/h2&gt;

&lt;p&gt;We’re left with two statements:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;AI progress is bounded by research speed.&lt;/li&gt;
  &lt;li&gt;Much of research is boring work.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If these are true, we &lt;em&gt;should&lt;/em&gt; be able to automate research.&lt;/p&gt;

&lt;p&gt;Humans are good at having ideas, but exploring multiple similar approaches, parsing lots of information, and debugging are slow and tedious tasks. Machines are excellent at exploring variations, parsing logs, and crunching data, but they don’t know how to interpret the results. The two complement each other.&lt;/p&gt;

&lt;p&gt;Which leads us to the main point of this whole thoughtstream:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;strong&gt;It doesn’t matter whether LLMs ever lead to AGI. What matters is that they can become &lt;em&gt;research accelerators&lt;/em&gt;. LLMs will do the gruntwork that humans are bad and slow at, freeing us to focus on what we’re good at: exploring ideas.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If the secret to AGI is hidden in a combinatorial explosion of experiments and ideas, we now have a few highly trained humans crawling through the possibilities. LLM agents will allow each researcher to supervise a thousand explorations in parallel.&lt;/p&gt;

&lt;p&gt;And we are &lt;em&gt;almost&lt;/em&gt; there. The only remaining piece is having agents that can handle the boring parts of research.&lt;/p&gt;

&lt;p&gt;Early tools like &lt;a href=&quot;https://manus.im/&quot;&gt;Manus AI&lt;/a&gt; and &lt;a href=&quot;https://replit.com/&quot;&gt;Replit&lt;/a&gt; already do useful work. Google is &lt;a href=&quot;https://research.google/blog/accelerating-scientific-breakthroughs-with-an-ai-co-scientist/&quot;&gt;training AI co-scientists&lt;/a&gt; and I would be surprised if the others are not exploring similar ideas. My current guess is that the big AI labs will be deploying agents that can do basic research tasks before the end of the year. After that, it will probably take another year for these agents to automate significant parts of the process.&lt;/p&gt;

&lt;p&gt;Once LLM agents can run experiments, summarize logs, and debug pipelines, many bottlenecks are gone. We can try more ideas. Good ones get refined faster. That leads to better, more autonomous models, and the whole system accelerates.&lt;/p&gt;

&lt;p&gt;Maybe this leads to AGI. Probably it just leads to much better models. Either way, our chances to find the next breakthrough increase.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;strong&gt;LLMs are the most straightforward way to meaningfully speed things up.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Notice that there is no magic ingredient here and, importantly, no hand-wavy statements like “AI will recursively improve itself leading to intelligence explosion.” All you need to believe is that LLM agents can automate boring work. This would already be enough for transformative AI improvements and economic growth.&lt;/p&gt;

&lt;h2 id=&quot;where-this-leaves-us&quot;&gt;Where this leaves us&lt;/h2&gt;

&lt;p&gt;Whether or not you believe that LLMs will become AGI, there is no doubt that they will massively accelerate research &lt;em&gt;towards&lt;/em&gt; AGI.&lt;/p&gt;

&lt;p&gt;Going back to the two constraints for AI progress: research iteration, and energy. LLMs will take care of the speed constraint.&lt;/p&gt;

&lt;p&gt;The world’s two superpowers are in a full-throttle arms race to build datacenters and power plants. That’s the energy constraint.&lt;/p&gt;

&lt;p&gt;As long as speed and energy are progressing, we are getting closer to AGI. In other words, LLMs might lead to AGI.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Thanks to &lt;a href=&quot;https://www.linkedin.com/in/masha-stroganova/&quot;&gt;Masha Stroganova&lt;/a&gt; and &lt;a href=&quot;https://robotproctor.substack.com/&quot;&gt;John Carpenter&lt;/a&gt; for reading drafts.&lt;/em&gt;&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Notes:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;This essay is strictly my personal opinion.&lt;/li&gt;
  &lt;li&gt;Essays you should read about AI predictions:
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.lesswrong.com/posts/6Xgy6CAf2jqHhynHL/what-2026-looks-like&quot;&gt;What 2026 looks like&lt;/a&gt;, written in 2021 by Daniel Kokotajlo. It got many things right astonishingly right, but it was thankfully too pessimistic about social predictions.&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;https://gwern.net/scaling-hypothesis&quot;&gt;The Scaling Hypothesis&lt;/a&gt;, written between 2020 and 2022 by Gwern. This was one of the core works that reinforced the idea that scaling results in new capabilities, emergent properties not found in smaller scale.&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;https://situational-awareness.ai/&quot;&gt;Situational Awareness&lt;/a&gt;, written mid-2024 by Leopold Aschenbrenner.&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;https://ai-2027.com/&quot;&gt;AI 2027&lt;/a&gt;, released a few weeks ago by Daniel Kokotajlo, Scott Alexander, and a few others. I read this midway through writing my post. Seeing a similar narrative made me a bit more confident in mine. I think (hope?) that their social predictions are too pessimistic, similar to Daniel’s past essay.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&quot;footnotes&quot; role=&quot;doc-endnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:1&quot;&gt;
      &lt;p&gt;You can probably point out toy cases where models could &lt;em&gt;kind of&lt;/em&gt; build end-to-end code, or some GitHub repo that attempted “agentic” behavior. In practice, the models needed a lot of handholding, they would fail a lot, and they could only tackle much simpler problems. &lt;a href=&quot;#fnref:1&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li id=&quot;fn:2&quot;&gt;
      &lt;p&gt;GPT-4o was released on May 13 2024, and o1 started previewing on September 12 2024. &lt;a href=&quot;#fnref:2&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="posts"/></entry><entry>
  <title type="html">Life Advice</title>
  <link href="https://aristotelis.eco/life-advice" rel="alternate" type="text/html" title="Life Advice"/>
  <published>2024-09-29T00:00:00-07:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/life-advice</id>
  <content type="html">&lt;p&gt;&lt;img src=&quot;/assets/img/7060_85e87bebe7e36ab5a9b04bb69660402a3306116665dd5f9d7be6ca77227ec150.png&quot; alt=&quot;how to draw an owl meme&quot; /&gt;&lt;/p&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="posts"/></entry><entry>
  <title type="html">Mecca</title>
  <link href="https://aristotelis.eco/mecca" rel="alternate" type="text/html" title="Mecca"/>
  <published>2024-06-18T00:00:00-07:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/mecca</id>
  <content type="html">&lt;p&gt;Every field, every era, has one.&lt;/p&gt;

&lt;p&gt;A place where the brightest minds collide, sparking new ideas and pushing boundaries. Athens had its philosophers, Florence its artists, Paris its writers. These places become like hives, attracting talented people drawn by the energy and opportunity.&lt;/p&gt;

&lt;p&gt;The field’s heroes band together and create communities with such fervor that it feels almost religious. As if they’re pilgrims in the holy lands.&lt;/p&gt;

&lt;p&gt;A Mecca.&lt;/p&gt;

&lt;p&gt;For tech, that place has been Silicon Valley for more than five decades. Since the 1980s, almost every successful tech entrepreneur and company has had ties to Silicon Valley. Sure, today’s world is more connected than ever. We have virtual networks and online communities. But there’s a different kind of energy when you’re physically present, when you can meet a legendary engineer at a coffee shop or bump into your future co-founder at McDonald’s.&lt;/p&gt;

&lt;p&gt;It’s like Hamming said. You need to find where the people doing interesting things in your field are, and go there.&lt;/p&gt;

&lt;p&gt;San Francisco, here I come.&lt;/p&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="blog-post"/><category term="posts"/></entry><entry>
  <title type="html">Problems with advice</title>
  <link href="https://aristotelis.eco/advice" rel="alternate" type="text/html" title="Problems with advice"/>
  <published>2024-05-23T00:00:00-07:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/advice</id>
  <content type="html">&lt;p&gt;Navigating advice is tricky.&lt;/p&gt;

&lt;p&gt;First, you have to solve the problem of motives. Does the person giving the advice really have your best interests in mind? Are they trying to manipulate you for their benefit? Maybe they’re just reminiscing their own regrets?&lt;/p&gt;

&lt;p&gt;Even when motives align, the advise-giver might not be entirely honest. Take the example of the entrepreneur YouTuber. She teaches you how to start a business, but her business is selling courses to you. In this case, the motives are aligned: the YouTuber wants to make money, and you hope to learn how to create a business. However, the YouTuber carefully omits that you are her primary source of income.&lt;/p&gt;

&lt;p&gt;And even if someone has good intentions, you have another problem which is not solvable. &lt;strong&gt;Everyone is bounded and biased by their life experiences.&lt;/strong&gt; A simple way to observe this is how generational opinions about investing in the stock market correlate strongly with how the stock market performs from the early 20s to the late 30s of each generation.&lt;/p&gt;

&lt;p&gt;Even excellent thinkers like Charlie Munger are limited by what they’ve learned and experienced. His decisions and their outcomes shaped his world models and understanding of how the world operates. This isn’t because Charlie Munger isn’t smart enough, but simply because one cannot create causal models from information that never entered one’s brain.&lt;/p&gt;

&lt;p&gt;Being shaped by experiences means that everyone’s context is different. The environment you grow up in, the people you interact with, the time period, and the place you live all shape your worldview. What might have worked during a booming economy of rapid industrialization might not be effective in a recession. Not to mention that &lt;strong&gt;people have different goals and values&lt;/strong&gt;. One might be maximizing asset value, another might be idolizing freedom, and you might be going for a mix between freedom, wealth, and family.&lt;/p&gt;

&lt;p&gt;This doesn’t mean all advice is useless. Having good mentors is one of the most powerful ways to level up extremely fast.&lt;/p&gt;

&lt;p&gt;Advice comes from the giver’s world model, which is formed by their experiences. Experiences are information. &lt;strong&gt;To benefit from the knowledge and experience of others, reduce their advice to information.&lt;/strong&gt; Information is much easier to work with because it can be examined, dissected, and analyzed. Then it’s easy to keep what is useful and discard the rest. &lt;strong&gt;From the useful information, you can build your own conclusions&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;To reduce advice to useful information, ask the person about their choices and experiences rather than looking for direct advice about your situation.&lt;/strong&gt; If you drill down enough, you will understand the criteria, circumstances, and outcomes of each decision.&lt;/p&gt;

&lt;p&gt;Bad questions:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;How should we go about our manufacturing process?&lt;/li&gt;
  &lt;li&gt;What’s the best way to hire people?&lt;/li&gt;
  &lt;li&gt;Should I start an AI company?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Good questions:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;Why did you choose sourcing from China and building in-house?&lt;/li&gt;
  &lt;li&gt;What were the greatest challenges in scaling production?&lt;/li&gt;
  &lt;li&gt;Did you come up with a repeatable way of hiring good talent?&lt;/li&gt;
  &lt;li&gt;Why did you pick a16z instead of Sequoia to lead the investment round?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most advice is bad because it doesn’t apply to your situation. &lt;strong&gt;Following bad advice is confusing, and disorients your internal compass.&lt;/strong&gt; And your capacity to make decisions and take action based on your own judgment largely defines where you end up in life.&lt;/p&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="posts"/></entry><entry>
  <title type="html">Positive thinking 101</title>
  <link href="https://aristotelis.eco/pos101" rel="alternate" type="text/html" title="Positive thinking 101"/>
  <published>2024-02-21T00:00:00-08:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/positive-thinking-101</id>
  <content type="html">&lt;p&gt;A few months ago, I attended a friend’s housewarming party and ended up striking a conversation with a university colleague.&lt;/p&gt;

&lt;p&gt;Among our life updates, I shared my experience of a self-reinforcing feedback loop: delusional optimism leading to positive thinking, resulting in unexpectedly heightened performance leading to delusional optimism. Excitedly, I was trying to convey how interesting the phenomenon was, when he cut me off with the world’s flattest voice:&lt;/p&gt;

&lt;p&gt;“That’s positive thinking 101. Everyone knows that.”&lt;/p&gt;

&lt;p&gt;Funnily, throughout our exchange, my classmate engaged in not-that-positive thinking and self-limiting beliefs, being critical even to the effectiveness of positive thinking itself.&lt;/p&gt;

&lt;p&gt;“That’s positive thinking 101”. I chuckle to this day when I remember his tone. But the reason the conversation keeps persisting in my head is the stark contradiction between “everyone knows about positive thinking” and his (conscious or subconscious) resistance to apply it.&lt;/p&gt;

&lt;p&gt;There are at least two interesting observations to be made:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Lack of knowledge is not the bottleneck towards behavioral change. We know what is helpful or harmful in the majority of cases, which is why we almost never learn anything new when reading self-help books. We re-read familiar concepts phrased in a different way, hoping that a previously unexamined angle will lead to change.&lt;/li&gt;
  &lt;li&gt;What you &lt;em&gt;know&lt;/em&gt;, &lt;em&gt;say&lt;/em&gt;, or &lt;em&gt;think&lt;/em&gt; are all footnotes of what you &lt;em&gt;do&lt;/em&gt;. Action is what that takes your knowledge, words, and thoughts, and makes it tangible. Thoughts and emotions might be driving actions, but without action you are left with an open loop. Current is not flowing. Energy is not converted, it is merely consumed. Nothing happens.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Positive thinking is marginally useful. Practice positive acting 101 instead.&lt;/p&gt;

</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="posts"/></entry><entry>
  <title type="html">You are constantly voting</title>
  <link href="https://aristotelis.eco/voting" rel="alternate" type="text/html" title="You are constantly voting"/>
  <published>2023-12-26T00:00:00-08:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/You-are-constantly-voting</id>
  <content type="html">&lt;p&gt;Most people like the concept of voting.
While I’m uncertain why, I suspect that feeling heard and acknowledged contributes to it.
There is also general agreement that you should vote in presidential elections and other processes that directly affect you.&lt;/p&gt;

&lt;p&gt;However, beyond these formal instances, a subtler form of voting takes place in daily life.&lt;/p&gt;

&lt;p&gt;Buying groceries from Amazon is a vote supporting the company.
Engaging with a social media post is a vote towards making the content viral.
Even greeting people with a smile casts a vote for your public perception as a cheerful individual.&lt;/p&gt;

&lt;p&gt;Although not always evident, every action is part of an implicit election.&lt;/p&gt;

</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="posts"/></entry><entry>
  <title type="html">A 1000 points of view</title>
  <link href="https://aristotelis.eco/1000-pov" rel="alternate" type="text/html" title="A 1000 points of view"/>
  <published>2023-08-20T00:00:00-07:00</published>
  <updated>2024-03-31T00:00:00-07:00</updated>
  <id>https://aristotelis.eco/1000-points-of-view</id>
  <content type="html">&lt;p&gt;For nearly every topic, idea, argument, belief, there are a 1000 points of view.&lt;/p&gt;

&lt;p&gt;Addressing every single one is counterproductive for several reasons. It dilutes the core message, weakening its impact and clarity. It makes your view harder to follow and confusing to your audience. Even worse, it exhausts their attention. Covering every possible viewpoint rarely benefits anyone.&lt;/p&gt;

&lt;p&gt;Skilled writers tend to be aware of unexplored arguments and subtleties in their work. They deliberately limit their scope to maximize their impact.&lt;/p&gt;

&lt;p&gt;A receptive reader understands that a writer’s message is contextual, choosing to benefit from the main point rather than nitpicking “flaws”.&lt;/p&gt;

&lt;p&gt;After all, the utility of any literary work lies in its potential to inspire ideas, invoke action, or trigger contemplation. Such potential is increased when the work is succinct, sharp and focused.&lt;/p&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="posts"/></entry><entry>
  <title type="html">Mountain peaks don't move</title>
  <link href="https://aristotelis.eco/peaks" rel="alternate" type="text/html" title="Mountain peaks don't move"/>
  <published>2023-07-04T00:00:00-07:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/mountain-peaks-dont-move</id>
  <content type="html">&lt;p&gt;After months away from biking, I got a new bike last week.&lt;/p&gt;

&lt;p&gt;Weekend arrived, and the weather was beautiful. The sky was blue, and I was excited to have a bike after so long, so I decided to ride to the top of Üetliberg &lt;sup id=&quot;fnref:mountain&quot;&gt;&lt;a href=&quot;#fn:mountain&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;

&lt;p&gt;The incline was already tiring from the first minutes. My legs started burning even before the asphalt road gave way to the dirt path. Doubt filled my mind as I entered the forest, and the peak seemed impossible to reach. My brain was heavily protesting against the endeavor.&lt;/p&gt;

&lt;p&gt;Several people passed by me effortlessly, ascending with ease.&lt;/p&gt;

&lt;p&gt;Around 30 minutes into the ride and on the verge of turning back, I had a sudden realization: the peak cannot move. I just need to keep moving forward, no matter how slowly. Moving in the right direction will inevitably lead me the top.&lt;/p&gt;

&lt;p&gt;The trivial fact felt like an epiphany, transforming the entire experience. I stopped being painfully aware of the remaining distance and the passing riders. They were exemplifying what I could achieve with repetition and practice. Though my legs burned, I knew from past experiences that they can endure for a remarkably long time. I just had to pedal consistently.&lt;/p&gt;

&lt;p&gt;But the most intense change occurred within my mind — I was no longer desperate. Loud thoughts and mental pain evaporated. I could enjoy the beautiful scenery, the endorphin rush, and above all, the pure joy of the ride.&lt;/p&gt;

&lt;p&gt;At the top, I got myself the biggest ice cream I could find, and sat to admire the view. The thought persisted in my head: goals are immobile, and persistence leads to their inevitable conquest.&lt;/p&gt;
&lt;div class=&quot;footnotes&quot; role=&quot;doc-endnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:mountain&quot;&gt;
      &lt;p&gt;Zurich’s own &lt;a href=&quot;https://www.zuerich.com/en/visit/attractions/uetliberg&quot;&gt;“mountain”&lt;/a&gt; (which is more of a hill). &lt;a href=&quot;#fnref:mountain&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="story"/><category term="posts"/></entry><entry>
  <title type="html">Scrambled eggs or omelet?</title>
  <link href="https://aristotelis.eco/omelet" rel="alternate" type="text/html" title="Scrambled eggs or omelet?"/>
  <published>2023-06-19T00:00:00-07:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/omelet</id>
  <content type="html">&lt;p&gt;Yesterday, my girlfriend asked me whether I’d like scrambled eggs or an omelet for breakfast.&lt;/p&gt;

&lt;p&gt;Throughout my life, I had always preferred scrambled eggs. My mom would frequently whip up omelets, but I would only have scrambled eggs during special occasions like hotel breakfasts or when my dad took charge of the morning meal. Scrambled was the premium deal.&lt;/p&gt;

&lt;p&gt;But I’ve been working at Google for the past 10 months. Every morning at 9 o’clock,  I enjoy my breakfast at the office. On my plate, there’s a dark bread bun topped with cheese, turkey ham, tomato, and three slices of cucumber. Accompanying it is another plate with a serving of scrambled eggs and steamed vegetables.&lt;/p&gt;

&lt;p&gt;Considering that I spend, on average, four days a week at the office, I’ve consumed scrambled eggs about 160 times since last August.&lt;/p&gt;

&lt;p&gt;So, after pondering my girlfriend’s question for a second, I was surprised to hear myself answering her: ‘omelet’.&lt;/p&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="story"/><category term="posts"/></entry><entry>
  <title type="html">On refining published writing</title>
  <link href="https://aristotelis.eco/refine" rel="alternate" type="text/html" title="On refining published writing"/>
  <published>2023-03-06T00:00:00-08:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/refine</id>
  <content type="html">&lt;p&gt;Writing is a tool for crystallizing one’s distilled thoughts through language.
It allows the author to capture their way of thinking and writing at a specific moment in time.&lt;/p&gt;

&lt;p&gt;However, any written text is inevitably outdated by the time it is read, since it reflects the author’s thoughts at a past moment in time.
Our opinions and understanding of the world continuously evolve, based on new evidence and experiences.&lt;/p&gt;

&lt;p&gt;Traditionally, published writing has been viewed as a static entity, but
with digital technology continuous iteration is available at the click of a button.
This poses the question: should writing stay untouched once published, or should it be continuously iterated on?&lt;/p&gt;

&lt;p&gt;Keeping text unedited can be valuable both to the reader and the author.
Readers can visit old texts and compare it with current works, gaining insight into the author’s evolution as a thinker and writer.
For the author, keeping old work untouched can serve as a reminder of their progress.&lt;/p&gt;

&lt;p&gt;On the other hand, many famous creators, from writers to scientists to artists, have been known to continuously edit and refine their work.
It is not hard to imagine that they published frozen snapshots of their work reluctantly, and only due to the lack of technology and interfaces permitting otherwise.&lt;/p&gt;

&lt;p&gt;Attempting to give a definite answer to the question is probably naive. As is often the case, it seems to depend on context.
For  example, in peer-reviewed publications in scientific work, it makes sense to have static content, since the reviewers “approved” a specific iteration of the text.&lt;/p&gt;

&lt;p&gt;An interesting interface would be to allow viewers see multiple revisions of a work through version control.
Something not too unlike git &lt;sup id=&quot;fnref:git&quot;&gt;&lt;a href=&quot;#fn:git&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;, but oriented towards the general public rather than software engineers.
In this way, continuous iteration is enabled without loss of context and history.&lt;/p&gt;

&lt;div class=&quot;footnotes&quot; role=&quot;doc-endnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:git&quot;&gt;
      &lt;p&gt;&lt;a href=&quot;https://git-scm.com/&quot;&gt;https://git-scm.com/&lt;/a&gt; &lt;a href=&quot;#fnref:git&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="writing"/><category term="posts"/></entry><entry>
  <title type="html">Surprise as a tool for thought</title>
  <link href="https://aristotelis.eco/surprise" rel="alternate" type="text/html" title="Surprise as a tool for thought"/>
  <published>2023-02-23T00:00:00-08:00</published>
  <updated></updated>
  <id>https://aristotelis.eco/surprise</id>
  <content type="html">&lt;p&gt;Writing has been historically used as a means of understanding the world around us, and there is extensive research supporting the benefits of &lt;a href=&quot;https://scholar.google.com/scholar?q=writing+thinking&quot;&gt;writing as a tool for thinking&lt;/a&gt;.
Meanwhile, with the advent of the internet, all human knowledge has become universally accessible.
Physics equations, nutrition facts, programming idioms, disease symptoms, can all be found in seconds.
What is worth keeping note of then?&lt;/p&gt;

&lt;p&gt;Many ideas are obvious, and make intuitive sense, while some are surprising.
Initially they don’t make sense at all, until a euphoric moment of clarity where everything ties together.
Other ideas make so much immediate, intuitive sense that they are equally surprising.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Claude_Shannon&quot;&gt;Claude Shannon&lt;/a&gt; quantified the &lt;a href=&quot;https://en.wikipedia.org/wiki/Information_content&quot;&gt;amount of information&lt;/a&gt; contained in a message by how surprising it is.
I take note of things that surprise me.
This seems to be a reliable heuristic for what’s worth keeping note of.&lt;/p&gt;

&lt;p&gt;What was I surprised by, why, and how I ultimately came to understand the concept.
Apart from helping me understand the concept better, writing allows me to track how my understanding evolves over time.
When I revisit my notes, I can compare my initial reaction to an idea to my brain’s current interpretation.&lt;/p&gt;
</content>
  <author>
    <name>Aristotelis</name>
  </author><category term="writing"/><category term="note-taking"/><category term="posts"/></entry><entry>
  <title type="html">Notes for The Evolution of Cooperation, by Robert Axelrod</title>
  <link href="https://aristotelis.eco/books/evolution-of-cooperation" rel="alternate" type="text/html" title="Notes for The Evolution of Cooperation, by Robert Axelrod"/>
  <published>2022-11-06T00:00:00-07:00</published>
  <id>https://aristotelis.eco/books/evolution-of-cooperation</id>
  <summary type="html">This book takes a classic problem in Game Theory, the Iterated Prisoner&apos;s Dilemma, and uses it to examine how cooperation emerges in societies. It is a very enjoyable read since there is no fluff in it. The author explains the experiments he did, presents the outcomes, and then tries to interpret and explain them. Incredible insights arise from this simple approach, including how cooperation can emerge among egoists, what can we do to encourage cooperation, and when you shouldn&apos;t even try to cooperate.</summary>
  <content type="html">&lt;h2 id=&quot;understanding-the-iterated-prisoners-dilemma&quot;&gt;Understanding the Iterated Prisoner’s Dilemma&lt;/h2&gt;

&lt;p&gt;The entire book is based on a classic &lt;a href=&quot;https://en.wikipedia.org/wiki/Game_theory&quot;&gt;Game Theory&lt;/a&gt; problem called &lt;a href=&quot;https://en.wikipedia.org/wiki/Prisoner%27s_dilemma&quot;&gt;Prisoner’s Dilemma&lt;/a&gt;, so I will first try to explain the idea behind it, before we get to the book notes themselves.&lt;/p&gt;

&lt;p&gt;The Prisoner’s Dilemma describes a scenario where two players can either cooperate or defect (cheat / betray / be uncooperative). Based on what each of them does, they get a certain reward (or punishment).&lt;/p&gt;

&lt;p&gt;In the classic scenario, there are two prisoners, Joe and Tuna, which are being interrogated. They have no way of communicating with each other, and therefore cannot agree on a strategy beforehand. The interrogator is asking each of them separately to give criminalizing information about the other, such that they can take them to court. In exchange, the interrogator promises that they will get beneficial treatment for helping.&lt;/p&gt;

&lt;p&gt;So Joe and Tuna can cooperate with each other by staying silent, or they can defect by giving information to the interrogator. There are four possible outcomes:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Both of them cooperate, and they give no information about each other to the interrogators. They both get a 2-year sentence.&lt;/li&gt;
  &lt;li&gt;Tuna cooperates, by giving no information to the interrogator, but Joe betrays him. Tuna gets a 10-year sentence, while Joe gets set free (as a favor for helping the interrogators).&lt;/li&gt;
  &lt;li&gt;Vice-versa (Joe stays silent and Tuna defects). Tuna gets set free and Joe gets the 10-year sentence.&lt;/li&gt;
  &lt;li&gt;Both defect and give information about each other, they each get a 5-year sentence.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So the outcomes can be summarized on a table like this:&lt;/p&gt;

&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th&gt; &lt;/th&gt;
      &lt;th&gt;Joe cooperates&lt;/th&gt;
      &lt;th&gt;Joe defects&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;strong&gt;Tuna cooperates&lt;/strong&gt;&lt;/td&gt;
      &lt;td&gt;2Y each&lt;/td&gt;
      &lt;td&gt;0Y Joe, 10Y Tuna&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;strong&gt;Tuna defects&lt;/strong&gt;&lt;/td&gt;
      &lt;td&gt;5Y each&lt;/td&gt;
      &lt;td&gt;10Y Joe, 0Y Tuna&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;The problem can be generalized to any situation where:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;If you cooperate with someone you both get good results.&lt;/li&gt;
  &lt;li&gt;If you trick them into cooperating but you defect you get great results and they get terrible results (and vice-versa).&lt;/li&gt;
  &lt;li&gt;If neither cooperates you get mediocre to bad results.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The &lt;strong&gt;Iterated Prisoners Dilemma&lt;/strong&gt; is exactly the same concept, but instead of playing the game once, you play it for many times (i.e. in iteration). This is a small but important change, since you are now choosing your action knowing that you will be faced with the other player again, and they will remember what you did.&lt;/p&gt;

&lt;p&gt;This situation comes up all the time in real life between individuals, companies, even between states. The entire book is about comparing various strategies one can use in such a setting, and finding out what impact different strategies have.&lt;/p&gt;

&lt;p&gt;A strategy is a set of rules that one uses to choose their action in an Iterated Prisoner’s Dilemma game.&lt;/p&gt;

&lt;p&gt;Example strategies:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;ALL D: Always defect.&lt;/li&gt;
  &lt;li&gt;ALL C: Always cooperate.&lt;/li&gt;
  &lt;li&gt;RANDOM: Cooperate or defect randomly.&lt;/li&gt;
  &lt;li&gt;TIT FOR TAT: Start with cooperation. Then do whatever the other did in the previous round.&lt;/li&gt;
  &lt;li&gt;SPITEFUL: Start with cooperation. If the other ever defects, always defect from that point on.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Spoiler alert: You might want to keep TIT FOR TAT in mind. It will appear often.&lt;/p&gt;

&lt;h2 id=&quot;my-notes&quot;&gt;My Notes&lt;/h2&gt;

&lt;h3 id=&quot;computer-tournaments-teach-us-about-cooperation&quot;&gt;Computer tournaments teach us about cooperation&lt;/h3&gt;

&lt;p&gt;Axelrod presents the results of various computer tournaments he organized, where he asked people to write computer programs to play the Iterated Prisoner’s Dilemma game against each other. So the participants would submit their code, which was playing with specific rules. At the end of each tournament, some computer programs (which we will refer to as strategies) would get more points than others, and Axelrod would try to understand which strategies did well and why.&lt;/p&gt;

&lt;p&gt;This simple experiment, resulted in remarkable insight on how cooperation emerges among people, societies, and even biological systems (for example birds feeding in a crocodile’s mouth, and the crocodile not eating them, because they are cleaning its teeth).&lt;/p&gt;

&lt;p&gt;Based on the results of the tournament, there are four behaviors that can best ensure that a strategy will do well:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Be nice. Avoid unnecessary conflict. Cooperate as long as the other person is cooperating. This creates a stable environment where you both get good rewards.&lt;/li&gt;
  &lt;li&gt;React when the other is defecting for no reason. Otherwise you look exploitable and players will try to exploit you.&lt;/li&gt;
  &lt;li&gt;After you respond to the defection, forgive. Don’t be spiteful, because it can create an endless loop of defecting at each other, resulting in both players getting the lowest reward possible, and therefore you both lose.&lt;/li&gt;
  &lt;li&gt;Follow a simple strategy, such that others can recognize it, and adapt to it. If your reactions are complex, they are as good as random to the other person, and they cannot learn how to cooperate with you.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Being nice was the single most important property that differentiated the high scoring strategies from the low performing ones in the tournament. By nice, we mean that you should never defect first, and cooperate as long as the other player cooperates.&lt;/p&gt;

&lt;h3 id=&quot;eye-for-an-eye-or-do-unto-others-as-you-would-have-them-do-unto-you&quot;&gt;“Eye for an eye” or “Do unto others as you would have them do unto you”?&lt;/h3&gt;

&lt;p&gt;The most robust strategy was TIT FOR TAT. It did well against all other players. And it displays all of the characteristics of well performing strategies:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;It always starts with cooperation, so it’s a nice strategy.&lt;/li&gt;
  &lt;li&gt;It always retaliates defection immediately, so it cannot be exploited.&lt;/li&gt;
  &lt;li&gt;It always forgives right after retaliating, so it does not end up in defection loops.&lt;/li&gt;
  &lt;li&gt;It is easy to recognize, so others can easily adapt to it.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;As a bonus, it is a very, very patient strategy. It will always forgive once it retaliates, no matter how many times it is provoked.&lt;/p&gt;

&lt;p&gt;Interestingly, TIT FOR TAT never scored better in a single game than the other player. It cannot, since it always lets the other player defect first, and never defects more times than the other player. So it will always get the same score as the other player or less.&lt;/p&gt;

&lt;p&gt;However, TIT FOR TAT won in all the tournaments. This was because it was good at eliciting such behavior from other players that enabled them both to do well. It won by consistently being able to make other players cooperate, resulting in mutually rewarding outcomes.&lt;/p&gt;

&lt;p&gt;TIT FOR TAT can elicit good behavior by other strategies so well because it is simple to recognize. The other person can see what you are doing very easily. Your pattern is straightforward to predict, and the other person can easily learn that the best they can do with you is cooperate.&lt;/p&gt;

&lt;p&gt;If your behavior is too complex, it looks no better than total chaos for the other player. They cannot tell what you do, or why, and you appear unresponsive. This gives no incentive to the other player to try to cooperate, making it hard to elicit good behavior from them.&lt;/p&gt;

&lt;p&gt;TIT FOR TAT sounds mean to most of us because it is essentially following the “Eye for an eye” rule, which is a bit harsh. The question one can ask, is, are there any better alternatives? For example, the most widely accepted moral rule is “Do unto others as you would have them do unto you”. In the context of Prisoner’s Dilemma, this means you should always cooperate, since this is what you would want from the other person.&lt;/p&gt;

&lt;p&gt;This provides incentive for other players to exploit you. Moreover, unconditionally cooperating spoils the other player. Thus, implicitly, it hurts innocent players the exploiters will interact with later. And the rest of the community is burdened to reform the spoiled player. Curiously, reciprocity seems to be a better moral foundation than unconditional cooperation.&lt;/p&gt;

&lt;p&gt;As a side note, when there is trustworthy central authority, you can rely on it to enforce the community standards. But in its absence, it falls to the players to give each other the necessary incentives to be cooperative.&lt;/p&gt;

&lt;h3 id=&quot;in-the-wwi-trenches&quot;&gt;In the WWI trenches&lt;/h3&gt;

&lt;p&gt;During the First World War, it was often the case that a battalion would stay at a fixed location for months. Apart from the atrocities that happened during that period, a fascinating aspect of the WWI &lt;a href=&quot;https://en.wikipedia.org/wiki/Trench_warfare&quot;&gt;Trench Warfare&lt;/a&gt; was how the Allies and the Germans developed cooperative behaviors, even though they were enemies, and without prior agreement. The English knew that if they did an aggressive attack, the Germans would reply back equally viciously. If the French let Germans rest during lunch time, the Germans would do the same.&lt;/p&gt;

&lt;p&gt;So they developed various mutually followed behaviors. An account by a British officer facing a Saxon unit of the German army is almost hard not to laugh:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;I was having tea with A Company when we heard a lot of shouting and went out to investigate. We found our men and the Germans standing on their respective parapets. Suddenly a salvo arrived but did no damage. Naturally both sides got down and our men started swearing at the Germans, when all at once a brave German got on to his parapet and shouted out “We are very sorry about that; we hope no one was hurt. It is not our fault, it is that damned Prussian artillery.” (Rutter 1934, p. 29)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In 1914 the two sides even unofficially stopped fighting &lt;a href=&quot;https://en.wikipedia.org/wiki/Christmas_truce&quot;&gt;during Christmas&lt;/a&gt;, and exchanged food and souvenirs. There are even &lt;a href=&quot;https://www.youtube.com/watch?v=goXDAFtkJLw&quot;&gt;songs about it&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Because the two sides would face the same opponents again and again, the stationed battalions of the Allies and the Germans were essentially in an Iterated Prisoner’s Dilemma scenario.&lt;/p&gt;

&lt;h3 id=&quot;life-is-a-non-zero-sum-game&quot;&gt;Life is a non-zero sum game&lt;/h3&gt;

&lt;p&gt;We tend to judge how well they do by what is available in their surroundings, and that is usually other people. We compare with others’ success, which often leads to being envious. Therefore, we try to reach the other player by defecting, but this leads to mutual punishment in the end. Envy is self-destructive.&lt;/p&gt;

&lt;p&gt;How well you are doing compared to how the other players are doing is a bad metric, unless your goal is not to do well, but to destroy the other players. In most situations, you can either not destroy the other player, or it will be very costly to try.&lt;/p&gt;

&lt;p&gt;A better metric is how well you are doing compared to how well someone else could be doing in your shoes. Given the others’ behaviors, are you doing as good as possible? Could someone else in your situation do better with this other player?&lt;/p&gt;

&lt;p&gt;We often think of many situations in life as &lt;a href=&quot;https://en.wikipedia.org/wiki/Zero-sum_game&quot;&gt;zero-sum games&lt;/a&gt;. That means a situation where advantage for one player means equivalent loss to the other, like in a chess game for example. But most situations are not zero-sum.&lt;/p&gt;

&lt;p&gt;Smart people realize that, and find ways that make everyone win, rather than how can they win at the expense of others (think alliances in Big Tech etc.).  In a non zero-sum world, you don’t have to do better than others to do well for yourself. Everybody can win. Therefore, it doesn’t make any sense to be envious if someone is doing a little better than you, as long as you take care to do well for yourself. In fact, in a game with repeated interactions, the other’s success is a prerequisite for yours.&lt;/p&gt;

&lt;h3 id=&quot;how-to-promote-stable-cooperation&quot;&gt;How to promote stable cooperation&lt;/h3&gt;

&lt;p&gt;Cooperation among people can be encouraged by:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;enlarging the shadow of the future&lt;/li&gt;
  &lt;li&gt;changing the payoffs&lt;/li&gt;
  &lt;li&gt;teaching people to care about others&lt;/li&gt;
  &lt;li&gt;teaching the value of reciprocity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you think you will not see the other player ever again, then it makes sense to defect, and get the maximum reward. Therefore to make people cooperate, we should enlarge the “shadow of the future”. Make interactions more durable, and more frequent.&lt;/p&gt;

&lt;p&gt;Another way to promote stable cooperation, is to make the gains from defection smaller than the gains of cooperation. Try to make the long-term incentive for mutual cooperation greater than the short-term incentive for defection.&lt;/p&gt;

&lt;p&gt;For instance, if you are a business, it makes sense to ask for frequent small payments throughout a project, rather than a lump sum at the end. The other player will not try to cheat by taking the product and not paying, since they will only save a small amount of money, and they will not get the entire product.&lt;/p&gt;

&lt;h3 id=&quot;pitfalls-to-avoid&quot;&gt;Pitfalls to avoid&lt;/h3&gt;

&lt;p&gt;When you know that the other player is not reciprocating it doesn’t make sense to cooperate since whatever you do, the other person will keep doing their thing.&lt;/p&gt;

&lt;p&gt;If you are cautious, and try to “play it safe” by starting with defection until the other person cooperates, it will backfire. Your defection will likely trigger a retaliation from the other player. Remember that the most important characteristic of winning strategies in the tournament, was being nice: never defect first.&lt;/p&gt;

&lt;p&gt;It is important to be able to recognize defection when it occurs, in order to retaliate. In practice, this is harder than it sounds, because often you are not sure of the other person’s motives and actions.&lt;/p&gt;

&lt;h3 id=&quot;hierarchies-make-equality-hard&quot;&gt;Hierarchies make equality hard&lt;/h3&gt;

&lt;p&gt;Status hierarchies can have impactful effects on how cooperation evolves among people in different levels. Suppose that everyone when dealing with people below their status, are sometimes cooperating and sometimes defecting. At the same time, they don’t tolerate defection from those below them. When dealing with some one above them, they always cooperate, unless the other defects twice in a row. So with people below you, you are being a bully by often defecting but not tolerating defection, and with people above you, you are tolerating being a sucker sometimes, but only allow certain amount of exploitation.&lt;/p&gt;

&lt;p&gt;This means that people near the top will always do well because they can defect everyone else some times, and get away with it. In contrast, people near the bottom will do poorly because they are meek to everyone. They can’t defect because they will immediately receive defection from those above them. An individual operating alone at the bottom of the social structure is trapped. They are doing poorly, but if they try to react they will do worse.&lt;/p&gt;

&lt;h3 id=&quot;should-you-hide-your-strategy&quot;&gt;Should you hide your strategy?&lt;/h3&gt;

&lt;p&gt;A way to measure the value of any piece of information is to calculate how much better you could do with the information than without it. Thus, the better you can do without the information, the less you need the information, and the less it is worth.&lt;/p&gt;

&lt;p&gt;Depending on your strategy, it might be costly to you if others know it. For example, if you are using a meek strategy that can be exploited, and the other player knows it, you will get exploited. On the other hand, if you are using a strategy that works best with cooperation, like TIT FOR TAT, then you are happy if the others know your strategy, because they know they should cooperate with you.&lt;/p&gt;

&lt;p&gt;With TIT FOR TAT you are asserting a fixed behavior pattern. Since it is very easy to recognize, you let the other player adapt to you. You refuse to be bullied, but do not do any bullying. If the other player adapts, then you have mutual cooperation.&lt;/p&gt;

&lt;h3 id=&quot;the-value-of-reciprocity&quot;&gt;The value of reciprocity&lt;/h3&gt;

&lt;p&gt;The biggest surprise was the value of reciprocity, and especially provocability. Common sense says one should be slow to anger, but the results of the computer tournaments show that it is better to respond quickly to provocation.&lt;/p&gt;

&lt;p&gt;The reason is that if one waits to respond to an uncalled for defection, they risk sending a wrong signal. The longer defections are allowed unchallenged, the more likely that the other player will draw the conclusion that defection can pay. And the more strongly this pattern is established, the harder it will be to break it.&lt;/p&gt;
</content>
  <author>
    <name>Aristotelis Economides</name>
  </author>
 </entry><entry>
  <title type="html">Notes for Autobiography of Benjamin Franklin, by Benjamin Franklin</title>
  <link href="https://aristotelis.eco/books/autobiography-of-benjamin-franklin" rel="alternate" type="text/html" title="Notes for Autobiography of Benjamin Franklin, by Benjamin Franklin"/>
  <published>2022-11-14T00:00:00-08:00</published>
  <id>https://aristotelis.eco/books/autobiography-of-benjamin-franklin</id>
  <summary type="html">A charming and witty narration of various events from Franklin&apos;s life, with nuggets of wisdom often hidden among light-hearted puns and jokes.</summary>
  <content type="html">&lt;p&gt;&lt;strong&gt;Context:&lt;/strong&gt; &lt;a href=&quot;https://en.wikipedia.org/wiki/Benjamin_Franklin&quot;&gt;Benjamin Franklin&lt;/a&gt; was one of the &lt;a href=&quot;https://en.wikipedia.org/wiki/Founding_Fathers_of_the_United_States&quot;&gt;Founding Fathers&lt;/a&gt; of United States. A true polymath, he made significant contributions in politics, science, engineering, and the printing press among other things. He was one of the least controversial Founding Fathers, and maintained amicable relationships with almost everyone.&lt;/p&gt;

&lt;h2 id=&quot;my-notes&quot;&gt;My Notes&lt;/h2&gt;

&lt;p&gt;If you want to be improved from the knowledge of others, don’t present your opinions strongly and in a fixed manner. Wise people, who usually dislike disputing, will let you being wrong and undisturbed.&lt;/p&gt;

&lt;p&gt;Don’t promise to return favors. Instead, just return the favor. When someone lends you money, pay back as soon as you can, pay back in full, and ideally with interest.&lt;/p&gt;

&lt;p&gt;Certain actions may be bad not because they’re forbidden by the Bible, but they were forbidden by the Bible because they were bad. Likewise, some actions are good not because they are commanded, but might be commanded because they’re good.&lt;/p&gt;

&lt;p&gt;There are always some people who foresee doom and failure everywhere. They’re usually wrong.&lt;/p&gt;

&lt;p&gt;When undertaking a collaborative project, avoid presenting yourself as the owner of ideas. It will make people reluctant to cooperate. Put yourself as much as you can out of sight and present it as a project of friends, who asked you to go and propose it to XYZ people because of this and that reason. This will make people less disputing and more agreeable to your cause.&lt;/p&gt;

&lt;p&gt;Franklin spent no time in amusement (taverns, games, etc.) apart from reading, which he did for two hours every single evening since he was young.&lt;/p&gt;

&lt;p&gt;“He that would thrive, must ask his wife”, says an old English proverb. You need an agreeable and collaborative significant other. Someone who assists you in your business, is frugal and does not take up your energy, time, and money.&lt;/p&gt;

&lt;p&gt;Trying to improve yourself over multiple things at once is hard. While your attention is at avoiding one fault, you might do another. Habit might take advantage of inattention, or desire might overpower reason. You need to focus on one small piece every time, making it a habit so that you don’t rely on motivation, willpower, and mental strength. When you have mastered one habit, go on and fix others, while still trying to preserve the one you worked on.&lt;/p&gt;

&lt;p&gt;In addition, merely knowing what is right and virtuous is not enough to ensure one is acting virtuously. Bad habits must be broken in order to have a steady and uniformly good character.&lt;/p&gt;

&lt;p&gt;Never directly contradict what others are saying, nor try to assert your own opinions. Avoid using language expressions that imply a fixed opinion such as “certainly”, “undoubtedly”, etc. Say instead “I imagine something to be so and so”, or “So it seems to me currently”. When someone states something you think flat out wrong, deny yourself the pleasure of abruptly contradicting them and pointing the absurdity in their proposition. In answering, begin by observing how in certain cases or circumstances their opinion would be right, but in the current case there appears to be some difference.&lt;/p&gt;

&lt;p&gt;In this way, you will find that your conversations will be more pleasant. Your opinions will be received with more ease, and with less contradiction. When you’re wrong, it will be less scary. And finally, it’s easier for other people to give up their mistakes, and agree with you, if you don’t fight them.&lt;/p&gt;

&lt;p&gt;The hardest passion to subdue is pride. Even if one manages to overcome it, they would probably be proud of their humility.&lt;/p&gt;

&lt;p&gt;When trying to earn a person’s favor, don’t pay them servitude and respect. Find something they are passionate about, and ask them a favor regarding that subject (e.g. if they would be so kind as to lend you that fascinating rare book they have in their collection). They will be excited to show-off and help you, and they will want to do you more favors.&lt;/p&gt;

&lt;p&gt;On the contrary, when you help people, they might feel indebted to you, which can make them resentful.&lt;/p&gt;

&lt;p&gt;Removing potential adversaries by making them friends is much more useful, and pleasant, than to resent or be hostile.&lt;/p&gt;

&lt;p&gt;Franklin always prepared an idea in the minds of people several months or even years ahead of its possible execution. In this way, he prepared people for change, making them more agreeable to it, and more likely to vote such a proposal. He also usually tried to diffuse the idea through his intellectual circle of friends, who then diffused the idea further in their own circles.&lt;/p&gt;

&lt;p&gt;After getting the first hundred pounds, it is more easy to get the second.&lt;/p&gt;

&lt;p&gt;Partnerships often finish in quarrels. Make sure to be proactive and cautious at the early stages of a deal. Explicitly agree everything such that there is nothing to be disputed in the unfortunate event of a cease of cooperation. No matter how much you may trust and highly esteem the other person at the start of a contract, over time little jealousies and quarrels may arise, which can lead to breach of both partnership and friendship.&lt;/p&gt;

&lt;p&gt;When someone comes to you with a request, avoid answering in a rush, nor in the presence of the person who made the request. Their presence will cloud your judgement, and they might be able to talk you into decisions you wouldn’t have made on your own. Think about it in isolation, and deliver your reply in a hard to negotiate method like a letter, rather than a meeting.&lt;/p&gt;

&lt;p&gt;If asked to perform a duty you believe you’re inadequate for, and want to excuse yourself, you don’t need to proclaim inadequacy as the reason. You can mention other duties that keep you from being able to do this.&lt;/p&gt;

&lt;p&gt;Asked for advice on how to raise funds for an endeavor, Franklin epically replied:&lt;/p&gt;
&lt;blockquote&gt;
  &lt;p&gt;Firstly, ask from all those who you know will give something. Then from those who you are uncertain whether they will give anything or not, and show them the list of those who have given. Lastly, do not neglect those who you are sure will give nothing, because for some of them you may be mistaken.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;People often complain about things they can easily change. Londoners wake up three hours later than sunrise, but complain that candlelight is expensive.&lt;/p&gt;

&lt;p&gt;Happiness is not produced by strokes of great fortune that rarely happen, but by little advantages that occur every day.&lt;/p&gt;

&lt;p&gt;Disputing, contradicting and confuting people are generally unfortunate in their affairs. They might get victory sometimes, but they never get good will, which is much more useful.&lt;/p&gt;

&lt;p&gt;When people keep themselves busy with work, they are content and cheerful. When they are idle all day, they start complaining about their food, and finding faults among each other.&lt;/p&gt;

&lt;p&gt;A priest once complained that soldiers did not attend his prayers. They were, however, very punctual in attending to receive their daily ration of rum. So Franklin advised the priest to act as steward of the rum, dealing it out only after the prayers.&lt;/p&gt;

&lt;p&gt;Big part of people’s misery, comes from them giving up too much for something they value, whose value they falsely estimated. They give too much for their whistles:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;When I was a child of seven year old, my friends filled my pocket with coppers. I went directly to a shop where they sold toys for children, and being charmed with the sound of a whistle, that I met by the way in the hands of another boy, I voluntarily offered and gave all my money for one.&lt;/p&gt;

  &lt;p&gt;I then came home, and went whistling all over the house, much pleased with my whistle, but disturbing all the family. My brothers, and sisters, and cousins, understanding the bargain I had made, told me I had given four times as much for it as it was worth. They put me in mind what good things I might have bought with the rest of the money, and laughed at me so much for my folly, that I cried with vexation. The reflection gave me more chagrin than the whistle gave me pleasure.&lt;/p&gt;

  &lt;p&gt;This, however, was afterwards of use to me, the impression continuing on my mind. Often, when I was tempted to buy some unnecessary thing, I said to myself, “Don’t give too much for the whistle” and I saved my money.&lt;/p&gt;

  &lt;p&gt;As I grew up, came into the world, and observed the actions of men, I thought I met with many, very many, who gave too much for their whistle.&lt;/p&gt;
&lt;/blockquote&gt;
</content>
  <author>
    <name>Aristotelis Economides</name>
  </author>
 </entry><entry>
  <title type="html">Notes for Anything You Want, by Derek Sivers</title>
  <link href="https://aristotelis.eco/books/anything-you-want" rel="alternate" type="text/html" title="Notes for Anything You Want, by Derek Sivers"/>
  <published>2022-11-15T00:00:00-08:00</published>
  <id>https://aristotelis.eco/books/anything-you-want</id>
  <summary type="html">A very short, easy to read, beautiful, honest book. Derek shares some of the lessons he learned through his journey of creating, growing, and finally selling his company CD Baby. The book feels incredibly honest and simple. Just read it. You will smile many times, and nod your head in agreement several others.</summary>
  <content type="html">&lt;p&gt;&lt;strong&gt;Context:&lt;/strong&gt; &lt;a href=&quot;https://sive.rs/&quot;&gt;Derek Sivers&lt;/a&gt; started a business by mistake, because he wanted to sell his music online, but he had no deal with a big record label. Back then, you couldn’t sell online if it wasn’t through a record label. So he created a website, to be able to sell his CDs. Then some friends asked him if he can sell their CDs on the website too. Then his friends of friends started asking. And so &lt;a href=&quot;https://en.wikipedia.org/wiki/CD_Baby&quot;&gt;CD Baby&lt;/a&gt; was born.&lt;/p&gt;

&lt;h2 id=&quot;my-notes&quot;&gt;My Notes&lt;/h2&gt;

&lt;h3 id=&quot;on-creating-and-managing-a-business&quot;&gt;On creating and managing a business&lt;/h3&gt;

&lt;p&gt;You don’t need to advertise things that people really want. Make things that people want, i.e. solve their problems. Persist by improving and inventing, not by repeatedly doing something that’s not working.&lt;/p&gt;

&lt;p&gt;A business plan doesn’t need more than a few hours of work, and ideally no more than a few minutes. Simple plans can take you a long way.&lt;/p&gt;

&lt;p&gt;Famous quote from &lt;a href=&quot;https://en.wikipedia.org/wiki/Steve_Blank&quot;&gt;Steve Blank&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;No business plan survives first contact with customers.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Continuously adapt. When Derek created CD Baby back in 1998, he thought it was a card processing service. A week after he launched his website, a customer emailed to ask if there are any new releases, thinking that CD Baby was a store. So Derek changed his “business plan”. When iTunes launched 5 years later, Apple asked CD Baby to be a digital distributor, and so it happened.&lt;/p&gt;

&lt;p&gt;Investors can skew your mission/vision. You should only spending effort on pleasing your customers, no one else.&lt;/p&gt;

&lt;p&gt;Never promise a customer you can do something that is not in your full control.&lt;/p&gt;

&lt;p&gt;When you have no funding, you only spend money on essentials, and you build the rest yourself. Your customers don’t care if you spent $100000 for something or you built it yourself for $1000. They only care about user-facing improvement of your product.&lt;/p&gt;

&lt;p&gt;Don’t punish everyone, past and future customers, employees, friends, for one person’s mistake. Also, don’t make decisions when you are angry. That’s the worst time to roll out a new policy. Quoting straight from the book, as I love his phrasing:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Several years ago, one guy tried to light his shoes on fire on a plane. Now, and for all future time, millions of people a day have to queue up to take their shoes off at the airport—because of that one dumb moment.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If your business crumbles the moment you leave it alone, you’re self-employed. You are a business owner when you leave for a year and your business is doing even better when you come back.&lt;/p&gt;

&lt;p&gt;Execution is all that matters. The idea is just a multiplier of the execution:&lt;/p&gt;

&lt;table&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;weak idea&lt;/td&gt;
      &lt;td&gt;1&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;good idea&lt;/td&gt;
      &lt;td&gt;10&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;great idea&lt;/td&gt;
      &lt;td&gt;20&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;

&lt;table&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;no execution&lt;/td&gt;
      &lt;td&gt;$1&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;weak execution&lt;/td&gt;
      &lt;td&gt;$1000&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;great execution&lt;/td&gt;
      &lt;td&gt;$100,000&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;brilliant execution&lt;/td&gt;
      &lt;td&gt;$10,000,000&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;

&lt;h3 id=&quot;a-business-exists-to-serve-its-customers&quot;&gt;A business exists to serve its customers&lt;/h3&gt;

&lt;p&gt;Make every business decision (including expansions, raises, promotions etc.) according to what is best for the customer. If you don’t know what to prioritize, ask the customer what do they want. Then satisfy that.&lt;/p&gt;

&lt;p&gt;No customer will ask you to expand. Your customers want you to have your attention on them. Focus entirely on your existing customers, and make them love you. Your business will grow because they’ll tell everyone.&lt;/p&gt;

&lt;p&gt;Remember your reason for doing something. Refuse opportunities, partnerships, and offers that go against your reasons, even if it means big money for you.&lt;/p&gt;

&lt;p&gt;No customer would ask you to put ads on your website, so don’t do it. Read this &lt;a href=&quot;https://sive.rs/noads&quot;&gt;funny story from Derek&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Rule No. 1 of a good service: it’s all about the customer. When ordering from CD Baby, this is the email you would get:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Your CD has been gently taken from our CD Baby shelves with sterilized contamination-free gloves and placed onto a satin pillow.&lt;/p&gt;

  &lt;p&gt;A team of 50 employees inspected your CD and polished it to make sure it was in the best possible condition before mailing.&lt;/p&gt;

  &lt;p&gt;Our packing specialist from Japan lit a candle and a hush fell over the crowd as he put your CD into the finest gold-lined box that money can buy.&lt;/p&gt;

  &lt;p&gt;We all had a wonderful celebration afterwards and the whole party marched down the street to the post office where the entire town of Portland waved “Bon Voyage!” to your package, on its way to you, in our private CD Baby jet on this day, Friday, June 6th.&lt;/p&gt;

  &lt;p&gt;I hope you had a wonderful time shopping at CD Baby. We sure did. Your picture is on our wall as “Customer of the Year.” We’re all exhausted but can’t wait for you to come back to CDBABY.COM!!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Such a tiny piece of genius. See &lt;a href=&quot;https://sive.rs/cdbe&quot;&gt;Derek’s post&lt;/a&gt;.&lt;/p&gt;

&lt;h3 id=&quot;why-are-you-doing-this&quot;&gt;Why are you doing this?&lt;/h3&gt;

&lt;p&gt;If you’re not excited about something, &lt;a href=&quot;https://sive.rs/n&quot;&gt;say no&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;You can’t expect to start big. If you don’t want to start without being big, maybe you are more interested in fame than doing what you have in mind. Start now with 1% of your vision. It will not be grand, but you will be in the game. You’ll be ahead of the rest because you started, while others are waiting for the finish line to appear on the starting line. Just focus on helping people today.&lt;/p&gt;

&lt;p&gt;Never forget why you are really doing what you’re doing. If your goal is to be happy and help people, do you want to spend your nights turning in bed thinking how to maximize profits?&lt;/p&gt;

&lt;p&gt;Know what is important to you, and how you grade yourself. This will be your guiding compass when others loudly and confidently say what &lt;em&gt;they&lt;/em&gt; think you should be doing. There will always be people telling you you’re wrong. Be mindful of what excites you and what drains you. Pay attention to when you’re being the real you and when you’re trying to impress.&lt;/p&gt;

&lt;p&gt;You can always do things more efficiently, outsource them, do all kinds of growth tricks. Do you want this? Why are you doing your project/business in the first place? Isn’t the point to &lt;a href=&quot;/have-fun&quot;&gt;have fun and be happy&lt;/a&gt;? You are doing things because of who you want to be, not what you want to have. Being requires learning, practicing and honing your craft.&lt;/p&gt;

&lt;p&gt;Everyone assumes a business’ goal is to be as big as possible, but that means spending most of your time on meetings, investors, bankers, media etc. This has probably nothing to do with why you started the business in the first place. Always keep in mind your reasons for doing things. Even if your reason is money, you want money to &lt;em&gt;do something&lt;/em&gt; with it, and that something will supposedly give you happiness.&lt;/p&gt;

&lt;p&gt;Anything you hate doing, someone else loves. If you love programming, but hate management, find someone who loves management and let them do it. Doing things you hate will make you lose interest in the whole thing.&lt;/p&gt;

&lt;p&gt;Keep examining and realigning yourself with your actions. If you find that your project grew or changed beyond of what aligns with your identity, let it go.&lt;/p&gt;

&lt;p&gt;See Derek’s story of how &lt;a href=&quot;https://sive.rs/done&quot;&gt;he knew he was done with CD Baby&lt;/a&gt;, and &lt;a href=&quot;https://sive.rs/trust&quot;&gt;the astonishing way he sold it&lt;/a&gt;.&lt;/p&gt;

&lt;h3 id=&quot;create-your-small-utopia&quot;&gt;Create your small utopia&lt;/h3&gt;

&lt;p&gt;A business - or a website, a book, anything you create - is the reflection of it’s creator. It can be as unconventional and as quirky as you want.&lt;/p&gt;

&lt;p&gt;Creating a business is like making a little universe where you control all the rules. Your own utopia. How would a business work in your utopia? What would be the 5 things that would be true in your perfect world? Write them down, and make them the guiding principles for your business. If you make a dream come true for yourself, it might be a dream come true for others too.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Revolution is just succeeding by doing things differently. When you are onto something great, it doesn’t feel like revolution, it just feels like uncommon sense.&lt;/p&gt;
&lt;/blockquote&gt;
</content>
  <author>
    <name>Aristotelis Economides</name>
  </author>
 </entry><entry>
  <title type="html">Notes for Show Your Work, by Austin Kleon</title>
  <link href="https://aristotelis.eco/books/show-your-work" rel="alternate" type="text/html" title="Notes for Show Your Work, by Austin Kleon"/>
  <published>2023-02-26T00:00:00-08:00</published>
  <id>https://aristotelis.eco/books/show-your-work</id>
  <summary type="html">Showing your work publicly is the best way to connect with people who are passionate about the same things as you. It helps you invent yourself, lets your fans find you, and helps you improve at what you do. People who you look up to probably share their work as part of their routine.</summary>
  <content type="html">&lt;h2 id=&quot;my-notes&quot;&gt;My Notes&lt;/h2&gt;

&lt;h3 id=&quot;creativity-doesnt-come-as-a-lightning-bolt&quot;&gt;Creativity doesn’t come as a lightning bolt&lt;/h3&gt;

&lt;p&gt;Good work doesn’t come out of nowhere. It comes from interacting with ideas of other people. Many of the “lone geniuses” throughout history were part of  a community who were supporting each other, looking at each other’s work, and giving and taking ideas.&lt;/p&gt;

&lt;h3 id=&quot;its-okay-to-be-an-amateur-it-gives-you-freedom-and-perspective&quot;&gt;It’s okay to be an amateur. It gives you freedom and perspective&lt;/h3&gt;

&lt;p&gt;You have no reputation to live up to, nothing to lose and people are have less expectation out of your work. You can experiment, make mistakes, and look ridiculous. Also, as an amateur, you can sometimes give better advice to other amateurs, since the expert is so far ahead in his craft that he may have trouble seeing what the amateur is struggling with.&lt;/p&gt;

&lt;h3 id=&quot;to-find-your-voice-you-need-to-use-it&quot;&gt;To “find your voice” you need to use it&lt;/h3&gt;

&lt;p&gt;Share what you like reading, what thoughts you’re obsessed with, what music you can’t keep out of your head. Talk about what you love, and don’t self-censor.&lt;/p&gt;

&lt;h3 id=&quot;you-will-die-and-so-will-everyone-else-its-not-that-scary-to-put-yourself-out-there&quot;&gt;You will die, and so will everyone else. It’s not that scary to put yourself out there&lt;/h3&gt;

&lt;p&gt;To quote Steve Jobs:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Remembering that I’ll be dead soon is the most important tool I’ve ever encountered to help me make the big choices in life. Because almost everything—all external expectations, all pride, all fear of embarrassment or failure—these things just fall away in the face of death, leaving only what is truly important. Remembering that you are going to die is the best way I know to avoid the trap of thinking you have something to lose. You are already naked.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3 id=&quot;document-everything-you-do-and-share-your-process&quot;&gt;Document everything you do and share your process&lt;/h3&gt;

&lt;p&gt;Human beings are social. They want to see what other humans are doing and how and why. Sharing your work helps you form relationships with other people.&lt;/p&gt;

&lt;p&gt;Especially if the outcome of your work isn’t easily shared, if you’re still in the apprentice stage of your work, or if your process doesn’t lead to tangible finished products, the process is all you have to share.&lt;/p&gt;

&lt;h3 id=&quot;share-something-small-every-day&quot;&gt;Share something small every day&lt;/h3&gt;

&lt;p&gt;No-one had overnight success. Building a body of quality work takes a lifetime. Focus on shipping a bite-size of work every day. It can be your influences, your sources, your method, what you learned, anything. Share this on your social media. Even if 90% of it is crap, if you share daily, you will have 36 good posts in a year.&lt;/p&gt;

&lt;p&gt;You have to make time for it. Everyone has 24hrs/day. If it’s important, you will make the time. Stay up a bit later, wake up a bit earlier, do it during commute.&lt;/p&gt;

&lt;p&gt;Sharing shouldn’t take precedence over producing actual work.&lt;/p&gt;

&lt;h3 id=&quot;dont-share-useless-things&quot;&gt;Don’t share useless things&lt;/h3&gt;

&lt;p&gt;You’re sharing with people because you care, not to spam their feeds. If it’s not interesting, useful, or entertaining don’t share it. If you wouldn’t be comfortable with your mom or your boss seeing it don’t share it. If you’re unsure, share something else instead and put this back in the drawer. Sleep on it, there’s no reason to rush.&lt;/p&gt;

&lt;h3 id=&quot;combine-your-small-daily-shares-into-larger-bodies-of-work&quot;&gt;Combine your small daily shares into larger bodies of work&lt;/h3&gt;

&lt;p&gt;There are themes and patterns in the daily bite-sized chunks you share Collect and organize what you’re sharing. Keep your sources accessible and searchable. Have an archive. Go back through your notes, and piece them together to bigger bodies of work &lt;!--(#TODO: write Zettelkasten/PKM/EvergreenNotes and link it here)--&gt;. Tweets become blog posts. Blog posts become book chapters.&lt;/p&gt;

&lt;h3 id=&quot;claim-your-corner-of-the-internet&quot;&gt;Claim Your corner of the internet&lt;/h3&gt;

&lt;p&gt;Social media are useful, but they come and go like any other trend. Have a corner of the internet that’s yours. You can be anything and anyone you want online. Build your own website and publish everything you do there. Make it your own small utopia &lt;!--(#TODO: write note and link here)--&gt; and fill it with your ideas and the things you care about.&lt;/p&gt;

&lt;h3 id=&quot;share-your-influences-and-inspiration-sources&quot;&gt;Share your influences and inspiration sources&lt;/h3&gt;

&lt;p&gt;When starting out anything, you will not be good enough. Becoming good takes time and practice. Share your inspiration if you don’t feel comfortable sharing your early attempts. What are you reading? What blogs are you subscribed to? Who are your heroes? Who do you look up to?&lt;/p&gt;

&lt;p&gt;All these are part of who you are. People are social. They want to know you. Share away!&lt;/p&gt;

&lt;h3 id=&quot;be-open-and-honest-about-what-you-like-dont-self-censor&quot;&gt;Be open and honest about what you like. Don’t self-censor&lt;/h3&gt;

&lt;p&gt;You love things that someone else probably thinks are garbage. That’s fine. Love your garbage. When you genuinely enjoy something, don’t feel guilty about it. Share it. It’s the best way to connect with people who like it too.&lt;/p&gt;

&lt;p&gt;If you self-censor and only share things that you think other people will find cool, you will never connect with people over the things you actually care about. That’s a lonely life to live.&lt;/p&gt;

&lt;h3 id=&quot;always-credit-the-work-youre-sharing&quot;&gt;Always credit the work you’re sharing&lt;/h3&gt;

&lt;p&gt;Whenever you are sharing work of others, credit it. Always. Treat work of others as if it were your own.&lt;/p&gt;

&lt;p&gt;Say what the work is, who made it, how they made it, when and where, and why are you sharing it. You can also shout-out to the people who helped you find the work you’re sharing; you share your inspiration sources, and help them get more visibility at the same time.&lt;/p&gt;

&lt;p&gt;Lastly, always include a link. People are lazy. If you don’t add a link, almost no-one will bother searching the source you’re attributing.&lt;/p&gt;

&lt;h3 id=&quot;learn-to-tell-good-stories-about-your-work&quot;&gt;Learn to tell good stories about your work&lt;/h3&gt;

&lt;p&gt;Words are important. The stories you tell about your work vastly shape how people perceive your work. It shapes how they feel, what they understand about it, and how they value it. The way you email, text, tweet, blog, comment is all part of a narrative you are constructing about your work. Learn what is a good story and how to tell one.&lt;/p&gt;

&lt;p&gt;There is a vast body of work studying storytelling&lt;!--  (#TODO: Re-read The Science of Storytelling, write notes, link them. Also write personal note for storytelling)--&gt;. A simple, but effective plot for stories by John Gardner:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;A character wants something, goes after it despite opposition (perhaps including his own doubts), and so arrives at a win, lose, or draw.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3 id=&quot;learn-to-talk-about-yourself-in-an-interesting-but-humble-way&quot;&gt;Learn to talk about yourself in an interesting but humble way&lt;/h3&gt;

&lt;p&gt;Have a pitch when people ask you &lt;em&gt;“What do you do?”&lt;/em&gt;. It’s an opportunity to connect with somebody who might be genuinely interested in your work. Keep your audience in mind: you should be able to explain what you do to a 5-year-old, to your grandmother, to someone in your field, and everyone else.&lt;/p&gt;

&lt;p&gt;Saying “I’m a software engineer who draws and plays music” is ok. If you don’t feel comfortable with your title, ask yourself why. Maybe you need to reflect upon your life decisions.&lt;/p&gt;

&lt;p&gt;Stick to the facts. Quoting straight from the book:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;If you take photos, you’re not an “aspiring” photographer, and you’re not an “amazing” photographer, either. You’re a photographer. Don’t get cute. Don’t brag.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3 id=&quot;teach-your-craft-and-share-your-knowledge&quot;&gt;Teach your craft and share your knowledge&lt;/h3&gt;

&lt;p&gt;Sharing your techniques doesn’t mean anyone can emulate them. It usually requires years of practice to master something, and most people are not even interested in mastering it in the first place. But they still can be fascinated in witnessing the process&lt;sup id=&quot;fnref:3&quot;&gt;&lt;a href=&quot;#fn:3&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;

&lt;p&gt;Share what you learn, your reading list, helpful reference materials. Create tutorials. Teach what you know. It generates interest in your field, which helps your work. Teaching helps internalizing knowledge&lt;!--(#TODO: link to tools for thinking note)--&gt;. People reach out to you with helpful reading material and they bring you in contact with people in the field.&lt;/p&gt;

&lt;h3 id=&quot;if-you-want-to-be-noticed-you-have-to-notice&quot;&gt;If you want to be noticed, you have to notice&lt;/h3&gt;

&lt;p&gt;No-one likes the &lt;em&gt;“I write, but I don’t read”&lt;/em&gt;  kind of people. If you only shout-out to your own work you are playing the game wrongly, and no-one will want to play with you. You need to be a fan before you have fans. You have to care about others’s work if you want people to care about yours.&lt;/p&gt;

&lt;h3 id=&quot;care-about-who-is-following-you-not-how-many&quot;&gt;Care about Who is following you, not how many&lt;/h3&gt;

&lt;p&gt;It’s much better to have &lt;a href=&quot;https://kk.org/thetechnium/1000-true-fans/&quot;&gt;1000 true fans&lt;/a&gt; than 10000 followers who don’t care about what you are doing. Connections are important in life, but meaningful connections only arise through genuine interest and care. Make stuff you love and you will attract people who love that kind of stuff.&lt;/p&gt;

&lt;h3 id=&quot;keep-away-from-people-who-suck-your-energy&quot;&gt;Keep away from people who suck your energy&lt;/h3&gt;

&lt;p&gt;Spending time with some people will make you feel energized. With others, you will feel depleted. The latter suck your energy. Remove them from your life at all cost. Same with any other &lt;a href=&quot;https://sive.rs/compass&quot;&gt;activity that drains you&lt;/a&gt;.&lt;/p&gt;

&lt;h3 id=&quot;find-the-few-people-who-match-your-weird-and-make-them-your-trusted-circle&quot;&gt;Find the few people who match your weird and make them your trusted circle&lt;/h3&gt;

&lt;p&gt;There are a few people that match your weirdness. They share your obsessions, they have a similar mission to you, and you share mutual respect. Collaborate with them, praise them, and keep them as close as you can.&lt;/p&gt;

&lt;h3 id=&quot;meet-with-people-in-real-life&quot;&gt;Meet with people in real life&lt;/h3&gt;

&lt;p&gt;Over time you will make a great online network. Meet with these people in real life too.&lt;/p&gt;

&lt;h3 id=&quot;learn-to-take-criticism-without-making-it-personal&quot;&gt;Learn to take criticism without making it personal&lt;/h3&gt;

&lt;p&gt;The more work you share, and the more popular you become, the more criticism you will face. Get used to criticism. Learn to differentiate your work from self-identity. Use the useful critiques to become better, and ignore the hateful ones.&lt;/p&gt;

&lt;p&gt;Some people will hate your work with passion. Make more of it. Hate and love are two sides of the same coin.&lt;/p&gt;

&lt;h3 id=&quot;its-fine-to-make-money-as-a-creative&quot;&gt;It’s fine to make money as a creative&lt;/h3&gt;

&lt;p&gt;Quoting from the book:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Everybody says they want artists to make money, and then when they do, everybody hates them for it.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Don’t be jealous when people you like do well. Don’t be bitter.&lt;/p&gt;

&lt;h3 id=&quot;ask-funding-for-your-work&quot;&gt;Ask funding for your work&lt;/h3&gt;

&lt;p&gt;When your work becomes sufficiently good that you think it deserves funding, ask for it. Add a “Like this? Buy me a coffee.” to your website. Send an email to your newsletter subscribers asking them to fund your next book.&lt;/p&gt;

&lt;p&gt;Be careful when crowdfunding. Sometimes feel that they have some say in how their money is being used (not too unlike how investors want to influence a startup).&lt;/p&gt;

&lt;h3 id=&quot;have-a-mailing-list-of-people-who-like-your-work&quot;&gt;Have a mailing list of people who like your work&lt;/h3&gt;

&lt;p&gt;Email outlasted every other online communication channel so far. Keep a mailing list of people who like your work, and send them emails with useful and interesting content.&lt;/p&gt;

&lt;p&gt;When you need to advertize your new project, ask for funding for your new startup, or need help proofreading your upcoming book, your mailing list will be a warm audience responding to your needs.&lt;/p&gt;

&lt;p&gt;People who sign up to your mailing list trust you. Respect them and don’t betray their trust.&lt;/p&gt;

&lt;h3 id=&quot;be-open-to-opportunities-for-that-help-you-do-more-of-what-you-like&quot;&gt;Be open to opportunities for that help you do more of what you like&lt;/h3&gt;

&lt;p&gt;If something comes along your way that will allow you to do more of the work you love doing, say Yes. If something comes along that would mean more money but less of what you like doing, say No.&lt;/p&gt;

&lt;h3 id=&quot;be-mindful-to-spend-your-time-on-your-craft-not-the-busywork-around-it&quot;&gt;Be mindful to spend your time on your craft, not the busywork around it&lt;/h3&gt;

&lt;p&gt;Quoting &lt;a href=&quot;https://en.wikipedia.org/wiki/Neil_Gaiman&quot;&gt;Neil Gaiman&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;There was a day when I looked up and realised that I had become someone who professionally replied to email, and who wrote as a hobby. I started answering fewer emails, and was relieved to find I was writing much more.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3 id=&quot;persist-and-dont-quit-early&quot;&gt;Persist, and don’t quit early&lt;/h3&gt;

&lt;p&gt;People who succeed are usually the ones who persist long enough. Don’t quit early.&lt;/p&gt;

&lt;h3 id=&quot;keep-a-momentum-with-your-work&quot;&gt;Keep a momentum with your work&lt;/h3&gt;

&lt;p&gt;Don’t let your momentum die between projects. Woody Allen used to start writing the script for the next film the day he finished the last one. Ernest Hemmingway used to stop a sentence midway so he knew where to start next morning.&lt;/p&gt;

&lt;p&gt;Taking breaks, waiting for feedback and worrying about what’s next all kill your momentum. Use your current project as a link to the next one.&lt;/p&gt;

&lt;h3 id=&quot;dont-burn-out&quot;&gt;Don’t burn out&lt;/h3&gt;

&lt;p&gt;Sometimes it is beneficial to completely remove yourself from your work and what you’re doing. Go to the woods for a week. Spend three months doing something entirely different.&lt;/p&gt;

&lt;p&gt;Sabbaticals - of varying length - will give your brain space to ideate.&lt;/p&gt;

&lt;h3 id=&quot;keep-yourself-an-amateur&quot;&gt;Keep yourself an amateur&lt;/h3&gt;

&lt;p&gt;As you become better at what you do, you will plateau and things will become stale. You need to keep challenging yourself. Try new things, start a new craft, dive in a new domain of knowledge. Become a beginner again, and let the possibilities light up your brain.&lt;/p&gt;
&lt;div class=&quot;footnotes&quot; role=&quot;doc-endnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:3&quot;&gt;
      &lt;p&gt;Did you watch &lt;a href=&quot;https://en.wikipedia.org/wiki/How_It&apos;s_Made&quot; target=&quot;_blank&quot;&gt;&lt;em&gt;How it’s made&lt;/em&gt;&lt;/a&gt; as a kid, or anything else similar? You were probably never interested in becoming a bowling bowl manufacturer, but it was still fascinating to watch how they’re made. &lt;a href=&quot;#fnref:3&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
  <author>
    <name>Aristotelis Economides</name>
  </author>
 </entry><entry>
  <title type="html">Notes for Zero to One, by Peter Thiel</title>
  <link href="https://aristotelis.eco/books/zero-to-one" rel="alternate" type="text/html" title="Notes for Zero to One, by Peter Thiel"/>
  <published>2023-04-05T00:00:00-07:00</published>
  <id>https://aristotelis.eco/books/zero-to-one</id>
  <summary type="html">Opinionated book on startups, companies, businesses. An inspiring read with a positive outlook on the future, that encourages taking ownership of your life and making the best out of it. A refreshing contrast to the &quot;accept what is&quot; western-neobuddhism style that seems to be popular the past decade.</summary>
  <content type="html">&lt;!-- TODO: This should be extracted to an include template. --&gt;

&lt;ul id=&quot;markdown-toc&quot;&gt;
  &lt;li&gt;&lt;a href=&quot;#aim-for-0-to-1-improvements&quot; id=&quot;markdown-toc-aim-for-0-to-1-improvements&quot;&gt;Aim for 0 to 1 improvements&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#the-dot-com-bubble-made-people-cautious-of-innovation-and--big-thinking&quot; id=&quot;markdown-toc-the-dot-com-bubble-made-people-cautious-of-innovation-and--big-thinking&quot;&gt;The dot-com bubble made people cautious of innovation and  big thinking&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#competition-is-usually-bad-for-a-business&quot; id=&quot;markdown-toc-competition-is-usually-bad-for-a-business&quot;&gt;Competition is usually bad for a business&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#monopolies-exaggerate-their-competition-competitive-businesses-exaggerate-themselves&quot; id=&quot;markdown-toc-monopolies-exaggerate-their-competition-competitive-businesses-exaggerate-themselves&quot;&gt;Monopolies exaggerate their competition, competitive businesses exaggerate themselves&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#the-value-of-a-business-today-is-the-sum-of-all-the-money-it-will-make-in-the-future&quot; id=&quot;markdown-toc-the-value-of-a-business-today-is-the-sum-of-all-the-money-it-will-make-in-the-future&quot;&gt;The value of a business today is the sum of all the money it will make in the future&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#characteristics-of-a-monopoly&quot; id=&quot;markdown-toc-characteristics-of-a-monopoly&quot;&gt;Characteristics of a monopoly&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#a-business-should-always-start-with-a-very-niche-market&quot; id=&quot;markdown-toc-a-business-should-always-start-with-a-very-niche-market&quot;&gt;A business should always start with a very niche market&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#people-from-15th-to-20th-century-believed-that-luck-was-to-be-mastered-and-dominated&quot; id=&quot;markdown-toc-people-from-15th-to-20th-century-believed-that-luck-was-to-be-mastered-and-dominated&quot;&gt;People from 15th to 20th century believed that luck was to be mastered and dominated&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#definite-and-optimistic-outlooks-of-life&quot; id=&quot;markdown-toc-definite-and-optimistic-outlooks-of-life&quot;&gt;Definite and optimistic outlooks of life&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#diversification-doesnt-work-well-in-investing-because-great-success-follows-a-power-law-distribution&quot; id=&quot;markdown-toc-diversification-doesnt-work-well-in-investing-because-great-success-follows-a-power-law-distribution&quot;&gt;Diversification doesn’t work well in investing because great success follows a power law distribution&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#why-do-so-many-people-today-believe-there-are-no-secrets-left-to-be-discovered&quot; id=&quot;markdown-toc-why-do-so-many-people-today-believe-there-are-no-secrets-left-to-be-discovered&quot;&gt;Why do so many people today believe there are no secrets left to be discovered?&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#founding-decisions-and-initial-alignment-in-startups-should-be-done-very-carefully&quot; id=&quot;markdown-toc-founding-decisions-and-initial-alignment-in-startups-should-be-done-very-carefully&quot;&gt;Founding decisions and initial alignment in startups should be done very carefully&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#compensation-in-startups-should-align-employee-and-company-interests&quot; id=&quot;markdown-toc-compensation-in-startups-should-align-employee-and-company-interests&quot;&gt;Compensation in startups should align employee and company interests&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#create-a-strong-culture-by-choosing-people-who-work-well-together-and-love-the-company-mission&quot; id=&quot;markdown-toc-create-a-strong-culture-by-choosing-people-who-work-well-together-and-love-the-company-mission&quot;&gt;Create a strong culture by choosing people who work well together and love the company mission&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#why-should-the-20th-employee-join-your-company&quot; id=&quot;markdown-toc-why-should-the-20th-employee-join-your-company&quot;&gt;Why should the 20th employee join your company?&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#everyone-underestimates-sales-because-no-one-likes-to-be-sold-and-sales-tries-hard-to-stay-hidden&quot; id=&quot;markdown-toc-everyone-underestimates-sales-because-no-one-likes-to-be-sold-and-sales-tries-hard-to-stay-hidden&quot;&gt;Everyone underestimates sales because no one likes to be sold and sales tries hard to stay hidden&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#you-need-a-great-distribution-plan-or-your-company-will-fail&quot; id=&quot;markdown-toc-you-need-a-great-distribution-plan-or-your-company-will-fail&quot;&gt;You need a great distribution plan or your company will fail&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#the-seven-questions-every-company-must-answer-in-order-to-succeed&quot; id=&quot;markdown-toc-the-seven-questions-every-company-must-answer-in-order-to-succeed&quot;&gt;The seven questions every company must answer in order to succeed&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#great-founders-are-usually-extreme-figures-and-odd-people&quot; id=&quot;markdown-toc-great-founders-are-usually-extreme-figures-and-odd-people&quot;&gt;Great founders are usually extreme figures and odd people&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;!-- Iterate notes that have the &quot;book-notes/zero-to-one&quot; tag.
     Ignore notes that don&apos;t have book-order (they&apos;re not top-level notes).
     Sort them using the book-order frontmatter. --&gt;

&lt;h2 id=&quot;aim-for-0-to-1-improvements&quot;&gt;Aim for 0 to 1 improvements&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Horizontal/extensive progress: &lt;em&gt;Globalization&lt;/em&gt;. Taking an idea from 1 to n. Easier to imagine.&lt;/li&gt;
  &lt;li&gt;Vertical progress: &lt;em&gt;Technology&lt;/em&gt;. Taking an idea from 0 to 1. Hard to imagine, since it requires doing something that no one has done before.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The only field that has improved dramatically since mid-20th century is computers and communications. There are plenty opportunities in many fields waiting to be uncovered. You need a contrarian view to find them: What valuable company is nobody building?&lt;/p&gt;

&lt;p&gt;The most contrarian thing is not to oppose the crowd, but to think for yourself.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;a href=&quot;Ali-Abdaal&quot;&gt;Ali Abdaal&lt;/a&gt; also had a video on this. He made the point that investing in equipment, knowledge, experiences, etc. that you have never done before gives you much more than marginally improving upon existing things.&lt;/p&gt;

&lt;p&gt;If you already have an iPhone X and it works fine, buying an iPhone 14 would take you from 1 to 1.1. if your main reason for buying the phone is a better camera. You’re better off buying a camera instead. The quality of a professional camera is unmatched compared to the quality of iPhone 14.&lt;/p&gt;

&lt;p&gt;Of course there are contradicting arguments to be made:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;if you would end up not using the camera because it would be inconvenient to carry around, then obviously the new phone might be a better choice overall.&lt;/li&gt;
  &lt;li&gt;if you keep learning new tools instead of mastering the ones you know, you will never become productive. &lt;a href=&quot;Principles-for-software-engineers-and-other-makers&quot;&gt;Principles for software engineers and other makers&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It might also be applied to productivity and business I guess. Learning a new tool that does a job you could previously just couldn’t do, might be better than improving your workflow with a tool that you are already quite acquainted with?&lt;/p&gt;

&lt;h2 id=&quot;the-dot-com-bubble-made-people-cautious-of-innovation-and--big-thinking&quot;&gt;The dot-com bubble made people cautious of innovation and  big thinking&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Dot-com_bubble&quot;&gt;Dot-com bubble&lt;/a&gt; happened during a period where everything was pessimistic and in decline except computers and the internet. A lot of people were quitting well-paying jobs to found or join startups.&lt;/p&gt;

&lt;p&gt;Effect of dot-com bubble burst on people’s outlook:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;treat the future as indefinite. dismiss long-term plans as extreme. Promote globalization stay away from technology.&lt;/li&gt;
  &lt;li&gt;Silicon valley thinking after dot-com crash:
    &lt;ul&gt;
      &lt;li&gt;incremental advances over grand visions&lt;/li&gt;
      &lt;li&gt;be lean (unplanned) and flexible. planning is arrogant and rigid. iterate agnostically until it works.&lt;/li&gt;
      &lt;li&gt;improve on competition. new markets are dangerous.&lt;/li&gt;
      &lt;li&gt;focus on product development. sales and distribution will follow. advertising is wasteful.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This lead people away from &lt;a href=&quot;Definite-and-optimistic-outlooks-of-life&quot;&gt;Definite-and-optimistic-outlooks-of-life&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;It is easy to see why the thinking is wrong, and the opposite principles make more sense. Some examples:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;Competition-is-usually-bad-for-a-business&quot;&gt;Competition is usually bad for a business&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;You-need-a-great-distribution-plan-or-your-company-will-fail&quot;&gt;You-need-a-great-distribution-plan-or-your-company-will-fail&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;Everyone-underestimates-sales-because-no-one-likes-to-be-sold-and-sales-tries-hard-to-stay-hidden&quot;&gt;Everyone-underestimates-sales-because-no-one-likes-to-be-sold-and-sales-tries-hard-to-stay-hidden&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;competition-is-usually-bad-for-a-business&quot;&gt;Competition is usually bad for a business&lt;/h2&gt;

&lt;p&gt;In perfect competition, no company makes economic profit. Capitalism and competition are opposites: capitalism believes in the accumulation of capital and competition balances pricing such that profits are competed away.&lt;/p&gt;

&lt;p&gt;Taking monopoly and perfect competition as two ends of the spectrum, we tend to think that most companies are somewhere in the middle. This is because both monopolies and competitive businesses have incentive to make it look like that: &lt;a href=&quot;Monopolies-exaggerate-their-competition-competitive-businesses-exaggerate-themselves&quot;&gt;Monopolies exaggerate their competition, competitive businesses exaggerate themselves&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;In reality, most businesses are much closer to either perfect competition or monopoly.&lt;/p&gt;

&lt;p&gt;Monopolies can afford to think about things other than money because their profit margins are big. Competitions struggle to survive, so long-term planning is harder.&lt;/p&gt;

&lt;p&gt;Everyday business language uses war metaphors: headcount, sales force, captive market. Competition is like war, but a great business shouldn’t be.&lt;/p&gt;

&lt;p&gt;In competition you can lose sight of what matters and focus on what your rivals are doing instead. Microsoft and Google were waging war on each other: Google Search - Bing, Chrome - Edge, Surface - Chromebook. Winning is better than losing, but everyone loses in a war: Apple did its own thing and overtook both of them.&lt;/p&gt;

&lt;p&gt;Creative monopoly: give customers more choices by adding new categories of abundance, rather than competing on existing ones.&lt;/p&gt;

&lt;p&gt;Monopoly is a &lt;em&gt;condition&lt;/em&gt; for a successful business: it succeeds when it can do something others cannot.&lt;/p&gt;

&lt;p&gt;All successful companies are different, since they earn a monopoly by solving a unique problem. All failed companies are the same: they fail to escape competition.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;The trend for “disruptive startups” is counterproductive since such startups see themselves through the eyes of the eyes of the old players in a market. They define themselves as competition. If your business can be summarized as a competition to existing markets, you’re probably not creating something new, and therefore it’s unlikely to become a monopoly. Also, disruptive companies gather attention, sometimes picking fights they can’t win. When expanding to adjacent markets, don’t disrupt. Frame your market in a way that avoids competition as long as possible.&lt;/p&gt;

&lt;h2 id=&quot;monopolies-exaggerate-their-competition-competitive-businesses-exaggerate-themselves&quot;&gt;Monopolies exaggerate their competition, competitive businesses exaggerate themselves&lt;/h2&gt;

&lt;p&gt;Monopolies lie to protect themselves. They try to conceal the monopoly, and exaggerate the power of their competition, to avoid unwanted (regulatory and media) attention. They frame their market as a &lt;em&gt;union&lt;/em&gt; of several large markets to look smaller.&lt;/p&gt;

&lt;p&gt;Competitive businesses exaggerate the difference of their company compared to competitors to differentiate themselves and exaggerate their (market) power. They define their market as an &lt;em&gt;intersection&lt;/em&gt; of smaller markets to look big &lt;sup id=&quot;fnref:examples&quot;&gt;&lt;a href=&quot;#fn:examples&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;

&lt;h2 id=&quot;the-value-of-a-business-today-is-the-sum-of-all-the-money-it-will-make-in-the-future&quot;&gt;The value of a business today is the sum of all the money it will make in the future&lt;/h2&gt;

&lt;p&gt;Nightclubs and restaurants are extreme examples of competition. They are all the same, exaggerate minor differences, and fade into non-relevance once their trend period is over. They accumulate decent amounts of money today but their profits often dwindle over time.&lt;/p&gt;

&lt;p&gt;Tech companies usually lose money for the first few years. Most of their value comes 10-15 years in the future. Therefore, a tech company must grow &lt;em&gt;and&lt;/em&gt; endure. Most companies focus on growth, which is easily measurable, and forget durability. The most important question for a business is: will this company still be around a decade from now? To answer this you must think about the qualitative characteristics of your business, which are usually hard to measure.&lt;/p&gt;

&lt;p&gt;Future cash flows should be discounted since money today is worth more than in the future.&lt;/p&gt;

&lt;h2 id=&quot;characteristics-of-a-monopoly&quot;&gt;Characteristics of a monopoly&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;proprietary technology&lt;/strong&gt;: &lt;a href=&quot;A-business-needs-10x-technological-improvement-to-have-real-monopolistic-advantage&quot;&gt;A business needs 10x technological improvement to have real monopolistic advantage&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;network effects&lt;/strong&gt;: Network effects make a product more useful as more people use it. Your product needs to be valuable when the network is still small, otherwise it will never become a big network. Therefore network effect businesses must start with very small markets. Successful network effects businesses rarely get started from business people because the initial markets are so small that they don’t appear to be business opportunities at all.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;economies of scale&lt;/strong&gt;: Economies of scale work best when the cost of production, distribution, operation etc. doesn’t scale with the customer base. Software startups are exemplary examples since producing copies of the product has near zero cost. Service businesses are hard to make monopolies since they are hard to scale.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;branding&lt;/strong&gt;: A strong branding can be a powerful ace in claiming a monopoly. Branding only works with strong underlying substance. Apple has superior materials, hardware, better software integration etc. Their branding only binds and strengthens everything else.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;a-business-should-always-start-with-a-very-niche-market&quot;&gt;A business should always start with a very niche market&lt;/h2&gt;

&lt;p&gt;Startups should start with a very, very niche market. When in doubt, it’s almost always better to start smaller. It’s much easier to reach a few thousand people who desperately need your product than compete for the attention of a million scattered individuals. Small market doesn’t mean nonexistent.&lt;/p&gt;

&lt;p&gt;Go for a small market of concentrated people served by a few or no competitors. Large markets either lack a good starting point, or they are open to competition. Competition means marginal to no profits.&lt;/p&gt;

&lt;p&gt;First dominate your niche market, and then you can scale up. Amazon started selling only books. Then they expanded to CDs, videos and software, which were similar markets. Today they sell everything. Expanding gradually and with the right sequence is hard and requires strong discipline.&lt;/p&gt;

&lt;p&gt;Being the first to dominate a market is irrelevant to the success of your business. You want to be the last dominating: make a great improvement and enjoy monopolistic advantage for years/decades.&lt;/p&gt;

&lt;p&gt;Dominate your tiny niche market first, and then scale up to your grand long-term vision. Similar to start helping today rather than dreaming of big big big - &lt;a href=&quot;_book_notes/anything-you-want.md&quot;&gt;Anything you want&lt;/a&gt;, &lt;a href=&quot;Notes/ꆜ%20Derek%20Sivers.md&quot;&gt;ꆜ Derek Sivers&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&quot;people-from-15th-to-20th-century-believed-that-luck-was-to-be-mastered-and-dominated&quot;&gt;People from 15th to 20th century believed that luck was to be mastered and dominated&lt;/h2&gt;

&lt;p&gt;Proving whether success is luck or skill is impossible since each person/company starts only once, and always in unique circumstances. If it is luck, “serial entrepreneurship” is not explainable. Successful people can create new things easier, but dismissing all planned success as luck or privilege (&lt;a href=&quot;https://en.wikipedia.org/wiki/Matthew_effect&quot;&gt;Matthew effect&lt;/a&gt;) seems indignant.&lt;/p&gt;

&lt;p&gt;From 15th to 20th century (Renaissance, Enlightenment, Industrial Revolution), luck was something to be mastered, dominated and controlled. Everyone agreed that you should focus on what you can control, not what you can’t. People believed in making their own luck by working hard rather than focusing on possible misfortunes.&lt;/p&gt;

&lt;p&gt;People who think they can control the future make concrete and definite plans: &lt;a href=&quot;Definite-and-optimistic-outlooks-of-life&quot;&gt;Definite-and-optimistic-outlooks-of-life&lt;/a&gt;. People who think the future is indefinite, diversify to be “prepared for everything”.&lt;/p&gt;

&lt;h2 id=&quot;definite-and-optimistic-outlooks-of-life&quot;&gt;Definite and optimistic outlooks of life&lt;/h2&gt;

&lt;p&gt;Depending on one’s beliefs about the definiteness of the future, and their outlook (optimism/pessimism), we can have four different scenarios.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Indefinite pessimism&lt;/strong&gt;: the future will be bad, and I have no idea what to do about it. A good example are Europeans: they react to things as they happen and hope things won’t get worse.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Definite pessimism&lt;/strong&gt;: the future will be bad in a known way, and I need to prepare for it. An example is China: they have experienced intense poverty and can project how it looks like in the future. Therefore they work hard to avoid it. They copy everything that worked well in the West: capitalism, factories, skyscrapers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Indefinite optimism&lt;/strong&gt;: the future will be better but I don’t know how, so I make no plans. I strive to prepare for everything. An example is high-performing students today: they gain diversified general knowledge, and go on to work as consultants or banking investors, keeping their options open. This might be a byproduct of Baby Boomers born in the 50s: things got better every year of their early life, without them causing it through their actions. So they had great expectations and few plans.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Definite optimism&lt;/strong&gt;: the future will be better, if I plan and work to make it so. &lt;a href=&quot;People-from-15th-to-20th-century-believed-that-luck-was-to-be-mastered-and-dominated&quot;&gt;People-from-15th-to-20th-century-believed-that-luck-was-to-be-mastered-and-dominated&lt;/a&gt;. Each generation’s inventors and visionaries until 1960s surpassed their predecessors. Today, great plans from unknown people are mocked and long-range visions from powerful people are considered hubris.&lt;/p&gt;

&lt;p&gt;In an indefinite world, money is more valuable than what you can do with it, because it provides unlimited optionality. In a definite future, money is a means to an end.&lt;/p&gt;

&lt;p&gt;In today’s philosophy, politics, and business, everyone glorifies processes and shies away from plans.&lt;/p&gt;

&lt;p&gt;Indefinite optimism is the only view of the future that cannot work: how can the future get better if no one plans for it?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Side note on startups:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Lean startups that adapt and evolve in an ever-changing environment making minimum viable products and iterating to success are the hallmark of indefinite optimism: we don’t know what will work so let’s just try things and see what sticks. But why would you expect a business to succeed without a plan to make that happen?&lt;/p&gt;

&lt;p&gt;Founders only sell when they have no concrete visions of the company. The acquirer usually under or overpays. Definite founders with robust plans don’t sell, because they know what they will do with their company.&lt;/p&gt;

&lt;p&gt;Steve Jobs was a definite optimist. Above all, he was a grand designer. He planned everything meticulously.&lt;/p&gt;

&lt;h2 id=&quot;diversification-doesnt-work-well-in-investing-because-great-success-follows-a-power-law-distribution&quot;&gt;Diversification doesn’t work well in investing because great success follows a power law distribution&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Diversification for VC funds&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Having a diversified portfolio as a VC fund doesn’t make sense since the companies you invest in don’t follow a normal distribution: a handful of companies will vastly outperform all others. The vast majority of startups fail, some have mediocre success and few take off. &lt;a href=&quot;Notes/Power-law-is-omnipresent-in-human-society.md&quot;&gt;Power-law-is-omnipresent-in-human-society&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;One investment usually equals or outperforms the entire rest of the fund combined. Funds should &lt;em&gt;only&lt;/em&gt; invest in companies that have the potential to return the value of the entire fund.&lt;/p&gt;

&lt;p&gt;When you invest in 10 startups, they all will have similar trajectory initially. Only after 10 years you will be able to see the dominant investment. It’s easy to miss the power law, since it doesn’t reflect daily experience.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Diversification for everyone else&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;Notes/Everyone-is-an-investor.md&quot;&gt;Everyone-is-an-investor&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You shouldn’t necessarily start your own company. Too many people start their own companies. Joining the very best company while it’s growing fast and owning 2% can be much more profitable than owning 100% of your own unsuccessful company. Also, roles between companies are much more important than roles inside companies.&lt;/p&gt;

&lt;h2 id=&quot;why-do-so-many-people-today-believe-there-are-no-secrets-left-to-be-discovered&quot;&gt;Why do so many people today believe there are no secrets left to be discovered?&lt;/h2&gt;

&lt;p&gt;To build something great, you need a secret: a hard to discover, unpopular, and &lt;em&gt;correct&lt;/em&gt; belief. It has to be hard but not impossible, because then it’s a mystery (what happens when we approach a black hole? what happens after death?). Not easy because then many people can find it, and it’s not a secret anymore.&lt;/p&gt;

&lt;p&gt;A lot of people today act as if there are no more secrets to be discovered. If everything worth doing has already been done, you throw in the towel, feign an allergy to achievement, and become a barista.&lt;/p&gt;

&lt;p&gt;Fundamentalists think that there are easy truths that everyone knows, and the mysteries of God/the universe. The hard truths in between are heretic.&lt;/p&gt;

&lt;p&gt;Why did people lose the wonder of secrets?&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;Most of geographical exploration is finished. There are no blank spaces on the map left  anymore.&lt;/li&gt;
  &lt;li&gt;Incrementalism: Most social environments reinforce the idea that the right way to do things is one step at a time. If you overachieve, you don’t earn credit. If you do exactly what is asked of you, you get an A. If you publish a lot of papers (instead of discovering new science), you will get tenure track.&lt;/li&gt;
  &lt;li&gt;Risk aversion: Being wrong is hard and annoying. If you are looking for secrets, it’s a lonely road since, by definition, you’re looking for something that most people don’t believe in. Believing in the wrong secret can be soul crashing: you’ll be wrong &lt;em&gt;and&lt;/em&gt; lonely.&lt;/li&gt;
  &lt;li&gt;Complacency: The welcoming message of most elite education institutions is something along the lines of “You managed to get in here, and you can now chill. You are set for life.”&lt;/li&gt;
  &lt;li&gt;The world has become flat: &lt;a href=&quot;Globalization-increased-competition-to-a-level-where-it-is-discouraging-to-try&quot;&gt;Globalization increased competition to a level where it is discouraging to try&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As a result, very few people take unorthodox ideas seriously today. As a cost for having less cults and conspiracy theories, we have given up our sense of wonder at secrets left to be discovered.&lt;/p&gt;

&lt;p&gt;Finding secrets&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;What secrets is nature not telling you?&lt;/li&gt;
  &lt;li&gt;What secrets are people not telling you?&lt;/li&gt;
  &lt;li&gt;Look where no one else is looking
    &lt;ul&gt;
      &lt;li&gt;are there any fields that matter but haven’t been standardized and institutionalized? Example: nutrition. Most research is old, and paid by companies to promote certain agendas.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You should keep secrets to yourself, and the few people who need to know. Unconventional beliefs are often crucified and shamed. A great company is a conspiracy to change the world, and everyone involved is a fellow conspirator.&lt;/p&gt;

&lt;h2 id=&quot;founding-decisions-and-initial-alignment-in-startups-should-be-done-very-carefully&quot;&gt;Founding decisions and initial alignment in startups should be done very carefully&lt;/h2&gt;

&lt;p&gt;Making bad decisions at the founding phase of a startup is like writing a bad constitution for a country. It’s almost impossible to fix that along the way.&lt;/p&gt;

&lt;p&gt;Choosing co-founders is like getting married, and founder conflict is as ugly as a divorce. Founders should have a solid pre-history, otherwise they’re just rolling dice.&lt;/p&gt;

&lt;p&gt;Areas of alignment at founding of startups:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;Ownership: who owns the company’s equity?&lt;/li&gt;
  &lt;li&gt;Possession: who runs the company day-to-day?&lt;/li&gt;
  &lt;li&gt;Control: who governs the company’s affairs?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Distributing these functions among different people ensures utilization of different people’s strengths, but it also increases the opportunities for misalignment. Most conflicts in startups are between ownership and control: the founders, and investors on the board.&lt;/p&gt;

&lt;p&gt;Ideal size of a board is 3 people. It should never exceed 5 people, unless the company is public, where government regulations mandate otherwise. Large boards increase misalignment, reduce accountability, and cover-up who actually runs things. The corollary to having small boards, is that it should be chosen very carefully, since misalignment between the board and the founders can be catastrophic.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;The founding of a company lasts as long as the company keeps creating new things. When creation stops, so does the founding. Try to extend the venture’s founding as long as possible.&lt;/p&gt;

&lt;h2 id=&quot;compensation-in-startups-should-align-employee-and-company-interests&quot;&gt;Compensation in startups should align employee and company interests&lt;/h2&gt;

&lt;p&gt;Anyone who doesn’t own stock options or get their main salary from your company is de-facto misaligned with your company’s vision.&lt;/p&gt;

&lt;p&gt;Paying employees&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;cash promotes employees claiming from the current company’s value, rather than incentivizing them to invest their time in increasing the future company’s value.&lt;/li&gt;
  &lt;li&gt;cash bonus incentivizes performance, but still no interest in the future of the company&lt;/li&gt;
  &lt;li&gt;equity incentivizes thinking of the future&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s very hard to distribute equity fairly:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;Giving equal shares is wrong, since not everyone has equal impact.&lt;/li&gt;
  &lt;li&gt;Giving different amounts upfront, is unfair, since noone has proven their impact yet.&lt;/li&gt;
  &lt;li&gt;Early employees get more equity since they take more risk, but later employees might have more crucial contributions to the company’s success.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Solution to this problem: Keep equity details secret.&lt;/p&gt;

&lt;p&gt;Side note: One of the clearest patterns observed from investing in startups is that a company does better the less it pays the CEO. No more than $150.000 at an early stage venture backed startup (the book is from 2014).&lt;/p&gt;

&lt;h2 id=&quot;create-a-strong-culture-by-choosing-people-who-work-well-together-and-love-the-company-mission&quot;&gt;Create a strong culture by choosing people who work well together and love the company mission&lt;/h2&gt;

&lt;p&gt;Cultures don’t exist apart from their companies. A company doesn’t &lt;em&gt;have&lt;/em&gt; a culture, it &lt;em&gt;is&lt;/em&gt; a culture. A company is a group of people on a mission. Therefore, the people and how well do they work together is what defines the culture, and the success of a venture.&lt;/p&gt;

&lt;p&gt;Hiring the most talented people and pitching them together is not sufficient. People should like working with each other. They should be passionate about the work they are doing. They should believe in the company’s mission. Hiring talented people that work well together and care about what they’re doing will take you much further than hiring the “best” who might view the job purely transactionally.&lt;/p&gt;

&lt;p&gt;From outside of the company, all company’s employees should look different than all other employees, but similar to each other. A tribe of like-minded people devoted to the company’s mission.&lt;/p&gt;

&lt;p&gt;Inside of the company, everyone should have sharply distinguished roles. Each employee should have one thing they’re responsible for, and know that they’ll be evaluated only on that thing. This increases accountability, and eliminates competition. This way, employees build relationships that far transcend mere professionalism.&lt;/p&gt;

&lt;p&gt;You want your team to have an almost cult-like spirit. Cults are groups of people who are usually fanatically &lt;em&gt;wrong&lt;/em&gt; about something. A good startup is a team of people who are fanatically &lt;em&gt;right&lt;/em&gt; about something people outside have missed. The extreme opposite of cults are consulting firms: the company lacks a discriminative mission on its own, and employees drop in and out with no long-term connection to the company.&lt;/p&gt;

&lt;h2 id=&quot;why-should-the-20th-employee-join-your-company&quot;&gt;Why should the 20th employee join your company?&lt;/h2&gt;

&lt;p&gt;The first people who will join the company will do so because they will have great equity and important roles. Why should the 20th employee join your company? Talented people don’t need to work for you, they have plenty of options. Why should one work for you when they can work for Google for more safety, money, and prestige?&lt;/p&gt;

&lt;p&gt;The only good answers to this question are specific to your team, and have to do with your team, and your mission. Avoid the perk war at all cost. Anyone who will prefer the perks against the people and the mission is misaligned. You can’t beat Google’s offering in 2014 but you can be like Google in 1999.&lt;/p&gt;

&lt;h2 id=&quot;everyone-underestimates-sales-because-no-one-likes-to-be-sold-and-sales-tries-hard-to-stay-hidden&quot;&gt;Everyone underestimates sales because no one likes to be sold and sales tries hard to stay hidden&lt;/h2&gt;

&lt;p&gt;Customers will not come just because you built a product. You need to sell it. And &lt;a href=&quot;You-need-a-great-distribution-plan-or-your-company-will-fail&quot;&gt;You-need-a-great-distribution-plan-or-your-company-will-fail&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;We don’t like salesmen because their priority is persuasion, not sincerity. No one likes being sold. But we only react to obvious and awkward salesmen, the bad ones. Great salesmen sell without you even noticing you’re being sold.&lt;/p&gt;

&lt;p&gt;Sales works best when hidden. This is why job titles related with sales, have nothing to do with sales.&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;account executives: sell advertising&lt;/li&gt;
  &lt;li&gt;business development: sell customers&lt;/li&gt;
  &lt;li&gt;investment bankers: sell companies&lt;/li&gt;
  &lt;li&gt;politicians: sell themselves&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The most fundamental reason that everyone underestimates the importance of sales is the systematic effort to hide it at every level of every field  in a world driven by it.&lt;/p&gt;

&lt;p&gt;Everyone wants to believe that we make up our own minds, and sales doesn’t work on us. But everybody around us is selling.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;Apart from the product, your company needs to sell to investors and employees. There are equivalent lies for these markets to the lies that the company tells about it’s product. To employees: “this company is so great that everyone will want to join it”. To investors: “this company will be so valuable that all investors will want to get shares”. Selling the company to the media is necessary for selling it to everyone else.&lt;/p&gt;

&lt;h2 id=&quot;you-need-a-great-distribution-plan-or-your-company-will-fail&quot;&gt;You need a great distribution plan or your company will fail&lt;/h2&gt;

&lt;p&gt;If you have invented something and you haven’t invented a good way to sell it, you have a bad business, no matter how good is the product. &lt;a href=&quot;Everyone-underestimates-sales-because-no-one-likes-to-be-sold-and-sales-tries-hard-to-stay-hidden&quot;&gt;Everyone-underestimates-sales-because-no-one-likes-to-be-sold-and-sales-tries-hard-to-stay-hidden&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Superior sales and distribution can create a monopoly even for a non-differentiated product. A superior differentiated product with bad sales and distribution cannot, and will probably fail. Most common cause of failure for companies is poor sales because of bad distribution, not a bad product.&lt;/p&gt;

&lt;p&gt;Customer lifetime value (CLV): total net profit earned on average over the course of your relationship with the customer.&lt;/p&gt;

&lt;p&gt;Customer acquisition cost (CAC): amount you spend on average to acquire a new customer.&lt;/p&gt;

&lt;p&gt;As a general principle, the higher the value of the product, the more you have to spend to make a sale.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Complex sales ~ O($10M): Every deal requires close personal attention. It takes months to develop the right relationships. You make sales every couple of years. They are hard. Customers want to talk to the CEO, not VP of sales. They succeed if they achieve 50-100% year-to-year growth over a decade. Example: SpaceX, Palantir.&lt;/li&gt;
  &lt;li&gt;Personal sales ~ O($10K - $100K): The challenge lies in establishing a process by which a sales team of modest size  can move the product to a wide audience.&lt;/li&gt;
  &lt;li&gt;Dead zone ~ O($100 - $10K): Personal sales efforts are not justified, and traditional marketing is not enough. Most small businesses lie in here. They are small because distribution is the hidden bottleneck.&lt;/li&gt;
  &lt;li&gt;Marketing &amp;amp; Advertising ~ O($100): Nike, Apple, etc.&lt;/li&gt;
  &lt;li&gt;Viral marketing ~ O($1): A product whose core functionality encourages users to invite their friends to become users too. Should be as quick and frictionless as possible. Whoever is the first to dominate the most important segment of a market with viral potential will be the last mover in the whole market for several years (PayPal, social media platforms, messaging platforms).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Like in everywhere else, the power law is true for sales too. One distribution method will be far more powerful than any other for a given business. You need to get one distribution method to work perfectly for your business to survive.&lt;/p&gt;

&lt;h2 id=&quot;the-seven-questions-every-company-must-answer-in-order-to-succeed&quot;&gt;The seven questions every company must answer in order to succeed&lt;/h2&gt;

&lt;ol&gt;
  &lt;li&gt;Engineering: can you create a breakthrough technology rather than incremental improvements? &lt;a href=&quot;A-business-needs-10x-technological-improvement-to-have-real-monopolistic-advantage&quot;&gt;A business needs 10x technological improvement to have real monopolistic advantage&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Timing: is now the right time to start your particular business? Keep in mind: entering a slow moving market can be a good strategy, if and only if you have a definite and realistic plan to take it over.&lt;/li&gt;
  &lt;li&gt;Monopoly: are you starting with a big share of a small market? &lt;a href=&quot;A-business-should-always-start-with-a-very-niche-market&quot;&gt;A business should always start with a very niche market&lt;/a&gt;. The trap to avoid here is exaggerating your own uniqueness: &lt;a href=&quot;Monopolies-exaggerate-their-competition-competitive-businesses-exaggerate-themselves&quot;&gt;Monopolies exaggerate their competition competitive businesses exaggerate themselves&lt;/a&gt;. If you run a solar company that owns 10% of US solar energy market, it sounds cool. You are 1% of the global solar energy market though, and 0.02% of renewable energy market. This is not a market you can dominate.&lt;/li&gt;
  &lt;li&gt;People: do you have the right team? &lt;a href=&quot;Create-a-strong-culture-by-choosing-people-who-work-well-together-and-love-the-company-mission&quot;&gt;Create-a-strong-culture-by-choosing-people-who-work-well-together-and-love-the-company-mission&lt;/a&gt;. If the CEO walks around with suit and tie, it’s a red flag. There’s nothing wrong about a CEO who can sell, but a CEO who &lt;em&gt;looks&lt;/em&gt; like a salesman is probably bad at sales and worse at tech.&lt;/li&gt;
  &lt;li&gt;Distribution: do you have a way to deliver your product? &lt;a href=&quot;You-need-a-great-distribution-plan-or-your-company-will-fail&quot;&gt;You-need-a-great-distribution-plan-or-your-company-will-fail&lt;/a&gt;.&lt;/li&gt;
  &lt;li&gt;Durability: will your market position be defensible 10 years into the future? You should be the last mover. Ask what will the world look like 10 years from now, and how does your company fit in.&lt;/li&gt;
  &lt;li&gt;Secret: have you identified a unique opportunity that others don’t see?&lt;/li&gt;
&lt;/ol&gt;

&lt;h2 id=&quot;great-founders-are-usually-extreme-figures-and-odd-people&quot;&gt;Great founders are usually extreme figures and odd people&lt;/h2&gt;

&lt;p&gt;( #TODO: the bell curves are nice here)&lt;/p&gt;

&lt;p&gt;Companies that create new technology often resemble feudal monarchies rather than modern organizations. Powerful founders can make authoritative decisions, inspire strong personal loyalty, and plan ahead for decades.&lt;/p&gt;

&lt;p&gt;We should be more tolerant of founders who seem strange or extreme. We need unusual individuals who can lead companies beyond incrementalism, towards innovation.&lt;/p&gt;

&lt;p&gt;Founders are important not because they are the only ones whose work has value, but rather because of their ability to bring out the best work from everyone in their company.&lt;/p&gt;

&lt;p&gt;Prominence and adulation cannot be enjoyed without the possibility of it being exchanged for notoriety and demonization at any moment.&lt;/p&gt;

&lt;p&gt;The greatest danger for a founder is to become deluded by their own myth (sell themselves what they’re selling to everyone else), and lose their mind.&lt;/p&gt;

&lt;script&gt;
    const allDetails = document.querySelectorAll(&apos;details&apos;);
    allDetails.forEach( detail =&gt; {
        detail.addEventListener(&apos;toggle&apos;, OpenOnlyOne)
    });

    function OpenOnlyOne(event) {
        if (this.open) {
            allDetails.forEach( detail =&gt; {
                if (detail != this &amp;&amp; detail.open) {
                    detail.open = false;
                }
            });
        }
    }
&lt;/script&gt;

&lt;div class=&quot;footnotes&quot; role=&quot;doc-endnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:examples&quot;&gt;
      &lt;p&gt;When you hear that most restaurants fail within 1-2 years, you instinct is to come up with a story about how yours is different. No screenwriter wants to admit that their new movie simply rehashes what has already been done before (&lt;a href=&quot;Everything-is-a-remix&quot;&gt;Everything-is-a-remix&lt;/a&gt;). &lt;a href=&quot;#fnref:examples&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
  <author>
    <name>Aristotelis Economides</name>
  </author>
 </entry><entry>
  <title type="html">Notes for The Lessons of History, by Will and Ariel Durant</title>
  <link href="https://aristotelis.eco/books/the-lessons-of-history" rel="alternate" type="text/html" title="Notes for The Lessons of History, by Will and Ariel Durant"/>
  <published>2023-04-12T00:00:00-07:00</published>
  <id>https://aristotelis.eco/books/The-Lessons-of-History</id>
  <summary type="html">Amazing book written by a couple who studied History for their entire lives. The Durants present what History taught them about topics like Equality, Religion, Economics, and Government in short chapters. While compact, I found it incredibly insightful and powerfully calming to read. The most profound realization for me was that human society is in constant flux and that we have been in social-economic-political situations similar to today&apos;s many times in the past.</summary>
  <content type="html">&lt;p&gt;Author’s opening remark: It is impossible to compress the entire human history into a 100 pages of conclusions.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Equality&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Equality is biologically incompatible. Variety is a fundamental biological mechanism. We are all born unequal, subject to physical, psychological, and social heredity. We have different health, strength, mental capacity, and character.&lt;/p&gt;

&lt;p&gt;Inequality grows with invention, discovery, and economic growth. The competitive and strong become stronger and the comparatively weak become weaker.&lt;/p&gt;

&lt;p&gt;Under total freedom (lack of control), inequalities grow.&lt;/p&gt;

&lt;p&gt;People below average economic ability desire equality. People with superior ability desire freedom.&lt;/p&gt;

&lt;p&gt;In the best case, humans can have approximate equality of legal justice and educational opportunity.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Race&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Racial antipathy is likely predominantly created through differences in culture rather than ethnic origin. Broadened education &lt;sup id=&quot;fnref:indoctrination&quot;&gt;&lt;a href=&quot;#fn:indoctrination&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; reduces it.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Character&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Behavioral characteristics are similar among humans across time and space. Greeks in Plato’s discourses behaved like modern French, and Romans behaved like modern English. Poor and rich have similar impulses, but the poor have less opportunity or skill to implement them.&lt;/p&gt;

&lt;p&gt;99 out of 100 new ideas are inferior to the established ones they aim to replace. New ideas should be heard because they might be useful or true. Challenge and criticism help filter out mediocre and bad ideas, leaving only the good ones &lt;sup id=&quot;fnref:false-positives&quot;&gt;&lt;a href=&quot;#fn:false-positives&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Morals&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Morals vary over time (and place), and sometimes contradict each other. Changes often coincide with the rise or decay of great civilizations. However, morals are part of every society in every historical period, they just change depending on each context.&lt;/p&gt;

&lt;p&gt;Socratean Athens, Augustean Rome, and post-world-war West experienced similar relaxation of morality.&lt;/p&gt;

&lt;p&gt;Plato, through Socrates more than 2000 years ago, expressed moral concerns that might have very well been expressed today on Twitter.&lt;/p&gt;

&lt;p&gt;Homosexuality was popular in ancient Greece, Renaissance Italy, and rising in popularity today.&lt;/p&gt;

&lt;p&gt;Written history is different to lived history. Historians tend to record the exceptional, extraordinary, interesting events. Everything else that is “normal” remains unwritten.&lt;/p&gt;

&lt;p&gt;Morality changed fundamentally when humans transitioned from hunting-gathering to agriculture &lt;sup id=&quot;fnref:moral-change&quot;&gt;&lt;a href=&quot;#fn:moral-change&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;, a transition that took hundreds of years. We do not know yet if the current relaxation of morality is because of the shift from agriculture to industrialism or because the current dominant civilization is decaying.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Religion&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Religion has been incredibly useful in the history of mankind.&lt;/p&gt;

&lt;p&gt;Most prevalent theologies were dualistic, a good spirit versus a bad spirit. Nature and History do not agree with religion’s definition of good and bad. Good is that which survives and bad is that which perils.&lt;/p&gt;

&lt;p&gt;The moral development of Greeks weakened their belief in the flawed gods of Olympus. Similarly, Christian ethics weakened belief in the vengeful God of traditional theology.&lt;/p&gt;

&lt;p&gt;Modern secularity is a result of the Industrial Revolution. Laws are not commandments of god-given kings, but of confused and fallible humans. Colleges are run by businessmen and scientists. Holydays are now holidays.&lt;/p&gt;

&lt;p&gt;Religion’s popularity varies across centuries. Repression of senses and desires rises when laws are weak, and morals keep people in check. Expression and skepticism rises in powerful governments where stability of the state is not endangered by decline of morality, church, and family.&lt;/p&gt;

&lt;p&gt;There is no significant example in history of society successfully maintaining moral life without aid of religion.&lt;/p&gt;

&lt;p&gt;“As long as there is poverty, there will be gods.”&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Economics&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Economic interpretation explains a lot of history:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Delian Confederacy’s money built the Parthenon.&lt;/li&gt;
  &lt;li&gt;Cleopatra’s treasury revitalized Roman empire.&lt;/li&gt;
  &lt;li&gt;The Crusades were attempts to capture trade routes to the East. Discovery of America was a result of the failure of the Crusades.&lt;/li&gt;
  &lt;li&gt;Medicis financed Florentine Renaissance.&lt;/li&gt;
  &lt;li&gt;French Revolution was a result of middle class rising to economic leadership and needing legislative freedom for their business.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Motives are often economic, but outcomes depend on mass passions. Sometimes, power drives economics, not the other way around.&lt;/p&gt;

&lt;p&gt;In many cases motives are economic, but the outcome is determined by the passionate mass. In other instances, political or military power drives economics rather than the other way around.&lt;/p&gt;

&lt;p&gt;Bankers influence history: Medicis, Fuggers, Rotshschilds, Morgans sat in councils of governments, financed wars and popes, and sparked revolutions. They utilize the fact that history is inflationary and money is the last thing a wise man will hoard.&lt;/p&gt;

&lt;p&gt;All economic systems need the profit motive to stir productivity. Slavery, supervision, ideology are unproductive, expensive, or transient. Generally, people are judged by their ability to produce. (In war they are ranked by their ability to destroy)&lt;/p&gt;

&lt;p&gt;Concentration of wealth is natural and inevitable. When disparity in wealth distribution reaches a critical mass, tension increases and we need partial redistribution. This can be either violent or peaceable.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Socialism&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There have been several socialistic experiments throughout history. They were usually established as war economies. Usually they failed because economic control became increasingly expensive, taxes too high, and bureaucracy overwhelming.&lt;/p&gt;

&lt;p&gt;“The fear of capitalism has compelled socialism to widen freedom, and the fear of socialism has compelled capitalism to increase equality. East is West and West is East, and soon the twain will meet.”&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Government&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Freedom of individuals in society requires regulation of conduct, so, counter-intuitively, limitation of freedom is a condition for its existence. Absolute freedom results in chaos. The prime task of government is to establish order.&lt;/p&gt;

&lt;p&gt;Most governments have been oligarchies. An entire population can rarely organize itself towards united, directed, and specific action.&lt;/p&gt;

&lt;p&gt;Aristocracy is a particularly interesting form of oligarchy, where an individual is trained from birth in statesmanship, culture, morals, knowledge, manners, standards, tastes, etc.&lt;/p&gt;

&lt;p&gt;History doesn’t justify revolutions. Economic developments often achieve similar goals without upheaval. Wealth is often thought as accumulation of goods, but it is more about production and exchange of goods, and it relies on trust (e.g. credit). Violent revolutions rather destroy wealth than redistribute. Human inequality quickly leads to a new imbalance in wealth and power, with a new elites replacing old ones.&lt;/p&gt;

&lt;p&gt;Democracy is the hardest form of government since it requires the widest spread of intelligence. Education improved but intelligence is biologically hindered by the high fertility among the less educated.&lt;/p&gt;

&lt;p&gt;People cannot be equal (due to biological differences), but we can make access to education and opportunity nearly equal.&lt;/p&gt;

&lt;p&gt;The current economy of freedom will turn to dictatorship if it fails to distribute wealth as ably as it created it.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;War&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;History shows that long peace can weaken the martial ability of a nation, often leading to its decline or perish.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Civilization growth and decay&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Inequality rises in a growing economy, dividing society into a cultured minority and a less educated majority &lt;sup id=&quot;fnref:inequality-why&quot;&gt;&lt;a href=&quot;#fn:inequality-why&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;. The majority holds back cultural progress.&lt;/p&gt;

&lt;p&gt;As education spreads and religion loses influence, secularism and skepticism rise. This in turn results in moral decay, which results in corruption, which in the end results in civilization decline.&lt;/p&gt;

&lt;p&gt;Civilizations are like generational legacies, passed down to heirs across time and space. Today, technology is uniting nations and preserving the shared heritage of humanity.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;strong&gt;Is progress real?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;History is so vast and varied that one can find examples to support almost any argument.&lt;/p&gt;

&lt;p&gt;Happiness is a bad metric for progress. The average child is happier than the adult or sage.&lt;/p&gt;

&lt;p&gt;Scientific and technological progress brought both good and harm.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Comfort and convenience weakened us physically and morally.&lt;/li&gt;
  &lt;li&gt;We can do everything immensely faster but are also stressed all the time.&lt;/li&gt;
  &lt;li&gt;The same technology that improved transport, communication, etc., is used to kill.&lt;/li&gt;
  &lt;li&gt;We have lower infant mortality, longer lifespans and lower vulnerability to diseases.&lt;/li&gt;
  &lt;li&gt;Education, key to civilization, has vastly improved.&lt;/li&gt;
  &lt;li&gt;…&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;footnotes&quot; role=&quot;doc-endnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:indoctrination&quot;&gt;
      &lt;p&gt;Education and indoctrination are different. Indoctrination is much easier to achieve, as it doesn’t require skilled reasoning or understanding, and is the method predominantly used for dealing with sociopolitical topics as much today as in the past. &lt;a href=&quot;#fnref:indoctrination&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li id=&quot;fn:false-positives&quot;&gt;
      &lt;p&gt;&lt;a href=&quot;/notes/Notes/Inertia-in-physics-is-similar-to-habitude-in-human-behavior&quot;&gt;Inertia-in-physics-is-similar-to-habitude-in-human-behavior&lt;/a&gt;. Societal resistance to new ideas is as if humanity behaves like a swarm intelligence, with the goal of minimizing false positives. We are cautious of embracing ideas that seem to be good but turn out to be oopsies two generations later. Similarly to how companies like Google want to minimize false positives when hiring. While in Google it is by design, I don’t think that is the case for collective society. It’s interesting that abundance of good options drives actors to adopt risk averting strategies (minimizing false positives). #TODO: make this a separate note and link. &lt;a href=&quot;#fnref:false-positives&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li id=&quot;fn:moral-change&quot;&gt;
      &lt;p&gt;In hunting, qualities like aggression and greed were good.Agriculture favored industriousness, peace, and family units. Early marriage, chastity, and monogamy were vital. This moral code endured for centuries in Christian Europe and its colonies. &lt;a href=&quot;#fnref:moral-change&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li id=&quot;fn:inequality-why&quot;&gt;
      &lt;p&gt;This holds true even given equal beginnings, since in a growing economy the biologically lucky minority will always get ahead faster regardless of the sociopolitical environment. Only by artificially hindering the high performers can we sustain equality. &lt;a href=&quot;#fnref:inequality-why&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
  <author>
    <name>Aristotelis Economides</name>
  </author>
 </entry><entry>
  <title type="html">Notes for The Millionaire Fastlane, by MJ DeMarco</title>
  <link href="https://aristotelis.eco/books/the-millionaire-fastlane" rel="alternate" type="text/html" title="Notes for The Millionaire Fastlane, by MJ DeMarco"/>
  <published>2023-10-08T00:00:00-07:00</published>
  <id>https://aristotelis.eco/books/The-Millionaire-Fastlane</id>
  <summary type="html">A lot of good thinking and insight. Some books take 300 pages to convey an idea that could have been expressed in 10 pages. This book feels like 30 of those books compressed. There is no new or groundbreaking information, but there is a lot of good information all in one place. I think the book is most effective and useful if you ever wanted to start your own business but didn&apos;t, yet. DeMarco&apos;s tone is quite particular and takes some getting used to.</summary>
  <content type="html">&lt;ul id=&quot;markdown-toc&quot;&gt;
  &lt;li&gt;&lt;a href=&quot;#rich-people-often-dont-do-as-they-teach&quot; id=&quot;markdown-toc-rich-people-often-dont-do-as-they-teach&quot;&gt;Rich people often don’t do as they teach&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#success-is-a-process-not-an-event&quot; id=&quot;markdown-toc-success-is-a-process-not-an-event&quot;&gt;Success is a process, not an event&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#true-wealth-money-happiness&quot; id=&quot;markdown-toc-true-wealth-money-happiness&quot;&gt;True wealth, money, happiness&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#choices-luck-ownership-accountability-control&quot; id=&quot;markdown-toc-choices-luck-ownership-accountability-control&quot;&gt;Choices, luck, ownership, accountability, control&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#normal-life-and-being-an-employee&quot; id=&quot;markdown-toc-normal-life-and-being-an-employee&quot;&gt;“Normal” life and being an employee&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#being-an-employee-comes-with-a-limited-financial-ceiling&quot; id=&quot;markdown-toc-being-an-employee-comes-with-a-limited-financial-ceiling&quot;&gt;Being an employee comes with a limited financial ceiling&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#become-an-entrepreneur&quot; id=&quot;markdown-toc-become-an-entrepreneur&quot;&gt;Become an entrepreneur&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#consumer-vs-producer&quot; id=&quot;markdown-toc-consumer-vs-producer&quot;&gt;Consumer vs Producer&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#grow-a-money-tree&quot; id=&quot;markdown-toc-grow-a-money-tree&quot;&gt;Grow a money tree&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#money-is-passive-by-itself&quot; id=&quot;markdown-toc-money-is-passive-by-itself&quot;&gt;Money is passive by itself&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#law-of-effection&quot; id=&quot;markdown-toc-law-of-effection&quot;&gt;Law of effection&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#what-makes-a-good-business&quot; id=&quot;markdown-toc-what-makes-a-good-business&quot;&gt;What makes a good business?&lt;/a&gt;    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;#control-of-the-market&quot; id=&quot;markdown-toc-control-of-the-market&quot;&gt;Control of the market&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#high-entry-barrier&quot; id=&quot;markdown-toc-high-entry-barrier&quot;&gt;High entry barrier&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#there-is-need&quot; id=&quot;markdown-toc-there-is-need&quot;&gt;There is need&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#detaches-income-from-time&quot; id=&quot;markdown-toc-detaches-income-from-time&quot;&gt;Detaches income from time&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#scale&quot; id=&quot;markdown-toc-scale&quot;&gt;Scale&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#you-will-face-pushback-if-you-have-unconventional-ideas&quot; id=&quot;markdown-toc-you-will-face-pushback-if-you-have-unconventional-ideas&quot;&gt;You will face pushback if you have unconventional ideas&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#be-stingy-with-your-time-not-with-money&quot; id=&quot;markdown-toc-be-stingy-with-your-time-not-with-money&quot;&gt;Be stingy with your time, not with money&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#failure-is-the-sweat-of-success&quot; id=&quot;markdown-toc-failure-is-the-sweat-of-success&quot;&gt;Failure is the sweat of success&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#you-dont-need-a-crazy-big-idea-opportunities-are-everywhere&quot; id=&quot;markdown-toc-you-dont-need-a-crazy-big-idea-opportunities-are-everywhere&quot;&gt;You don’t need a crazy big idea, opportunities are everywhere&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#ideas-are-free-bias-towards-action&quot; id=&quot;markdown-toc-ideas-are-free-bias-towards-action&quot;&gt;Ideas are free, bias towards action&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#customer-feedback-is-gold&quot; id=&quot;markdown-toc-customer-feedback-is-gold&quot;&gt;Customer feedback is gold&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#choose-who-you-let-into-your-castle-carefully&quot; id=&quot;markdown-toc-choose-who-you-let-into-your-castle-carefully&quot;&gt;Choose who you let into your castle carefully&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#avoid-competition&quot; id=&quot;markdown-toc-avoid-competition&quot;&gt;Avoid competition&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#marketing-is-the-queen-of-business&quot; id=&quot;markdown-toc-marketing-is-the-queen-of-business&quot;&gt;Marketing is the Queen of business&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h5 id=&quot;rich-people-often-dont-do-as-they-teach&quot;&gt;Rich people often don’t do as they teach&lt;/h5&gt;

&lt;p&gt;Success and financial advice often given by “experts” does not align with the actions they took themselves to attain success and wealth. Their teachings don’t necessarily work, but selling them does.&lt;/p&gt;

&lt;p&gt;Listen to those who practice what they preach and back their advice with a proven track record.&lt;/p&gt;

&lt;p&gt;Many financial experts promote strategies, but their wealth often comes from different sources.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;success-is-a-process-not-an-event&quot;&gt;Success is a process, not an event&lt;/h5&gt;

&lt;p&gt;Success is usually experienced by observers as an event: Beatles having a hit single and instantly rising to fame, an entrepreneur sells their company and suddenly becomes a millionaire etc. Behind those events there is process. Events are byproducts of process. Without process there is no event.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;true-wealth-money-happiness&quot;&gt;True wealth, money, happiness&lt;/h5&gt;

&lt;p&gt;True wealth and happiness can usually be described by the quality of your relationships, your physical health, and the amount of freedom you enjoy. The three Fs: family, fitness, freedom.&lt;/p&gt;

&lt;p&gt;True wealth is the freedom to do what you want. You know what you want, the price you want to pay, and can go do it. If you think you can’t afford it, you probably can’t. If you think you can afford it but only if a certain condition stays the same or changes, you can’t afford it. You can afford it when you don’t need to think about it, and the impact of the purchase to your life is unconditional to future circumstances.&lt;/p&gt;

&lt;p&gt;Freedom is the most important of the wealth trinity, because it protects the other two (family, fitness). Freedom gives you ownership of your time. You are much less likely to take actions that sacrifice your relationships and health if you are not financially “forced” to.&lt;/p&gt;

&lt;p&gt;Everyone’s personal definition of freedom is different. Knowing your personal definition defines your goals and allows you to plan your actions.&lt;/p&gt;

&lt;p&gt;A lot of studies come to the conclusion that money doesn’t buy happiness. An underlying problem with such studies is that they don’t study correlations that may lead to such results. Lack of happiness is caused by servitude, not by money. Most people earn more money by sacrificing more of their freedom. This results in less true wealth: worse freedom, family, and fitness.&lt;/p&gt;

&lt;p&gt;The happiest people according to studies report to have tight sense of community, social support, and strong family bonds.&lt;/p&gt;

&lt;p&gt;Many millionaires are miserable and it has nothing to do with their wealth, and all to do with their lack of freedom.&lt;/p&gt;

&lt;p&gt;Wealth and health are both hard to obtain. They require long-term thinking, consistency, and embracing delayed gratification.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;choices-luck-ownership-accountability-control&quot;&gt;Choices, luck, ownership, accountability, control&lt;/h5&gt;

&lt;p&gt;Luck is a residue of process. When you consistently act and bombard the world with your efforts, creating waves and interacting with the waves of others, things happen. You improve your probabilities of events happening. You change your probabilities from impossible, to unlikely, to possible, to likely.&lt;/p&gt;

&lt;p&gt;When you play, you allow luck to work for you. If you don’t play you can’t win.&lt;/p&gt;

&lt;p&gt;Unsuccessful people have a victim narrative. They give control of their life to others, and when things don’t work out, they blame others. You cannot be a victim if you do not surrender power to someone capable of making you one.&lt;/p&gt;

&lt;p&gt;Statements like “they didn’t tell me”, “they raised my rent”, “they laid me off”, etc. are all abdications of taking ownership and control. The landlord’s right to increase the rent was in the lease agreement, and no one forced you to work for the employer that you chose.&lt;/p&gt;

&lt;p&gt;You cannot be a victim if you claim responsibility and ownership of your actions. Most bad situations are consequences of bad choices. Owning your decisions allows you to acquire wisdom rather than adopting a victim attitude.&lt;/p&gt;

&lt;p&gt;People whose life is out of control usually blame external factors (other people, events, institutions etc.) for their situation.&lt;/p&gt;

&lt;p&gt;Accountability means facing consequences and changing your actions to avoid them.&lt;/p&gt;

&lt;p&gt;To control your life you need to take responsibility, and follow up with accountability.&lt;/p&gt;

&lt;p&gt;You only deserve what your actions have or have not earned.&lt;/p&gt;

&lt;p&gt;If you have been doing the same thing over years and you are not happy with the results you are getting, it makes little sense to keep doing it.&lt;/p&gt;

&lt;p&gt;There are a lot of “rich” people who have more financial trouble and their lives more out of control than “poor” people. Money does not solve poor financial management and lack of financial discipline.&lt;/p&gt;

&lt;p&gt;Poor results are the outcome of poor choices. If you are not where you want to be, the problem is your choices.&lt;/p&gt;

&lt;p&gt;Actions, beliefs, perceptions, are all what creates your reality. All these are choices you make.&lt;/p&gt;

&lt;p&gt;You are exactly where you decide(d) to be.&lt;/p&gt;

&lt;p&gt;Taking ownership of your choices is taking ownership of your life. Ownership is the only way to control and direct your life.&lt;/p&gt;

&lt;p&gt;You cannot undo your choices. Depending on their magnitude, some choices can impact or handicap you for life.&lt;/p&gt;

&lt;p&gt;Everyday decisions you make today will ripple years in the future.&lt;/p&gt;

&lt;p&gt;Success is a lot of good choices. Lot of good choices are a process. Consistent process is a lifestyle.&lt;/p&gt;

&lt;p&gt;Choice is the most powerful control you have in life.&lt;/p&gt;

&lt;p&gt;Perception and belief precedes action.&lt;/p&gt;

&lt;p&gt;Create a system for yourself that allows you to evaluate the risks and worst-case scenarios of actions you are considering. Similar to &lt;a href=&quot;/notes/Notes/Tim%20Ferris&quot;&gt;Tim Ferris&lt;/a&gt;’s &lt;a href=&quot;/notes/Notes/Assess-the-risk-of-your-fears&quot;&gt;Assess-the-risk-of-your-fears&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Stop being self-restrained by the past. The universe doesn’t care about your past, nor do most people on Earth. If you are fully defined by your past, you cannot become who you want to be in the future.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;normal-life-and-being-an-employee&quot;&gt;“Normal” life and being an employee&lt;/h5&gt;

&lt;p&gt;The traditional path to wealth is to get a good job, invest your savings in the stock market, do it for 30 years, and you will be a millionaire. It’s problematic because:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;it’s linearly tied to your time - and takes a lifetime to achieve&lt;/li&gt;
  &lt;li&gt;it’s dependent on too many factors you don’t control - such as the stock market, your employer, etc.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Conventional wealth advice is bad advice coming from people you trust like family, school, financial experts etc.&lt;/p&gt;

&lt;p&gt;Normal life today is to wake up at 06:00, work 09:00-17:00 Monday-Friday, save 10%, invest 10% in the stock market, repeat for 50 years. Normal does not make sense at all to any human who hears it for the first time. Normal is indoctrinated irrationality.&lt;/p&gt;

&lt;p&gt;The conventional wealth plan is work + save + invest for 50 years, and be rich at retirement.&lt;/p&gt;

&lt;p&gt;A plan whose key parts you don’t control is a bad plan. Without a job, the plan fails. If the stock market crashes, your plan fails. If the housing market crashes, your plan fails. The plan depends on time and external factors, and you don’t control any of them.&lt;/p&gt;

&lt;p&gt;By working as an employee you accept to trade 5 days of work, for 2 days of freedom. While most people recognize that 5-for-2 is a bad deal with money (60% negative return), they do it willingly with their time.&lt;/p&gt;

&lt;p&gt;The 5-2 trade never changes no matter how long or hard you work as an employee. No matter how much time you invest, if you choose to work 4 days, you get 80% of the salary.&lt;/p&gt;

&lt;p&gt;In most jobs - including charging insanely high rates for high-quality freelancing work - you sell time your time for money. If you don’t work for a week, that’s a week’s worth less money.&lt;/p&gt;

&lt;p&gt;Trading time for freedom is not a good trade, unless you trade time for a process that can eventually give you better return on your time.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;By working faithfully 8 hours a day, you may eventually get to be a boss and work 12 hours a day.&lt;/p&gt;

  &lt;p&gt;~ Robert Frost&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As an employee, you sell freedom to get freedom. You sell your life, to get money, to live your life.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;being-an-employee-comes-with-a-limited-financial-ceiling&quot;&gt;Being an employee comes with a limited financial ceiling&lt;/h5&gt;

&lt;p&gt;Most jobs provide you with limited, specialized experience and knowledge. (See also Paul Graham’s &lt;a href=&quot;http://paulgraham.com/boss.html&quot;&gt;You weren’t meant to have a boss&lt;/a&gt;.)&lt;/p&gt;

&lt;p&gt;As an employee, your income is in the control of your employer. If you are working for freedom, and your financial plan is your job, then you don’t control your freedom.&lt;/p&gt;

&lt;p&gt;Taxes and deductions take cuts off your money before you see them, leaving you with minimal control over your finances. Your ability to leverage pre-tax income is restricted.&lt;/p&gt;

&lt;p&gt;When owning a corporation, you dissociate yourself from your business. This gives you limited liability, and space for tax creativity.&lt;/p&gt;

&lt;p&gt;Your salary is capped by company policies. If you give 10x value to a company with your work, they will not give you 1000% raise. Your negotiation power is constrained.&lt;/p&gt;

&lt;p&gt;The conventional “get a good job, save, and invest” path to wealth provides you with uncontrollable, limited leverage. Your theoretical ceiling for wealth is limited.&lt;/p&gt;

\[Wealth = Job + Investments\]

&lt;p&gt;where,&lt;/p&gt;

\[Job = HourlyPayRate \times HoursWorked\]

&lt;p&gt;and&lt;/p&gt;

\[Investments = InvestedSum \times (1 + Yield)^{time}\]

&lt;p&gt;Your job income is limited to the amount of time available in a day. You cannot work for 400 hours. Time has no leverage.&lt;/p&gt;

&lt;p&gt;Your investment income is limited again by time (years of compound interest), AND the market returns. You control none of the two.&lt;/p&gt;

&lt;p&gt;Hope is not a plan.&lt;/p&gt;

&lt;p&gt;Your hourly pay rate is usually correlated to the intrinsic value attributed to you by society. You can raise this value through education, but education is expensive both in time and money &lt;sup id=&quot;fnref:education&quot;&gt;&lt;a href=&quot;#fn:education&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;

&lt;p&gt;Life can be precarious and unpredictable. When expecting to build your wealth through save-invest-compound, you are betting with your most precious asset, time.&lt;/p&gt;

&lt;p&gt;There are people who become wealthy through the conventional path. They are usually either extremely talented, elderly, or overworked.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Fame is a way - even though unlikely - to break through.&lt;/li&gt;
  &lt;li&gt;Becoming a CEO is another. Most CEOs are old (Sundar, Tim Cook, Satya, …).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A net worth of \$1,000,000 today is barely upper middle class. You don’t get to live much more differently than a person earning \$100,000/yr.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;become-an-entrepreneur&quot;&gt;Become an entrepreneur&lt;/h5&gt;

&lt;p&gt;Mindset:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;debt is a tool&lt;/li&gt;
  &lt;li&gt;time is the most important asset&lt;/li&gt;
  &lt;li&gt;continuous education is paramount&lt;/li&gt;
  &lt;li&gt;money is abundant&lt;/li&gt;
  &lt;li&gt;wealth reflects the value you created&lt;/li&gt;
  &lt;li&gt;responsibility and ownership of one’s life, resulting in control&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As an employee you trade your work for your employer’s cash. You keep training to be stronger, to lift heavier stones.&lt;/p&gt;

&lt;p&gt;As an entrepreneur you trade your work to build systems. Those systems lift the stones for you.&lt;/p&gt;

&lt;p&gt;Entrepreneurship results in accelerated knowledge, acquired through engagement, action, and feedback.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Only those who will risk going too far can possibly find out how far one can go.&lt;/p&gt;

  &lt;p&gt;TS Eliot&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As an entrepreneur you can exert much higher leverage compared to an employee.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;You control the units. You can sell 1,000 units in a day. Or 10,000. Or 100,000. You cannot sell more than 24hours of work.&lt;/li&gt;
  &lt;li&gt;You control the price. Increasing the unit profit by \$0.50 when selling 1000 units a day, you increase your revenue by $15,000/month.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Small numbers have a gravity towards mediocrity.&lt;/p&gt;

&lt;p&gt;The vast majority of wealthy people experience exponential or chunked growth of their wealth. A big amount of money, after several hard working years.&lt;/p&gt;

&lt;p&gt;When you create a profit generating asset - like a service, or a product - the asset’s value grows. This means that by increasing the profits of your business, you increase its value, which increases your profit when you sell equity. You are essentially getting double payback for your effort.&lt;/p&gt;

&lt;p&gt;Stocks define the value multiplier for publicly traded companies, through the price-to-earnings ratio.&lt;/p&gt;

&lt;p&gt;Value on paper is illiquid, as you cannot buy anything with it. Valuations are nothing but current perceived value, since a company valued today at \$60M can be valued next year at $1M if they do poor decisions. Illiquid wealth is always in risk of having it’s subjective value changed.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;consumer-vs-producer&quot;&gt;Consumer vs Producer&lt;/h5&gt;

&lt;p&gt;As a consumer, you demand, want, need, buy. As a producer, you create value and fulfill needs. You need to shift your perspective to a producer to succeed in entrepreneurship.&lt;/p&gt;

&lt;p&gt;When encountered with advertisement, examine it as a producer.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;How does this company make money?&lt;/li&gt;
  &lt;li&gt;What strategy do they use to make me buy?&lt;/li&gt;
  &lt;li&gt;What are the operational processes involved to offer this product of service?&lt;/li&gt;
  &lt;li&gt;Is the company profitable?&lt;/li&gt;
  &lt;li&gt;What is the revenue model?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Watch infomercials to learn what the experts do.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;grow-a-money-tree&quot;&gt;Grow a money tree&lt;/h5&gt;

&lt;p&gt;In order to stop trading time for money, you need to create a system that generates revenue even when you don’t put time into it, e.g. when you are sleeping. You need to grow a money tree. A passive income source.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;rental systems (real estate, licensing, patents, …)&lt;/li&gt;
  &lt;li&gt;computer systems (software, subscriptions, apps, infrastructure, …)&lt;/li&gt;
  &lt;li&gt;content systems (books, blogs, youtube, …)&lt;/li&gt;
  &lt;li&gt;distribution systems (franchises, chains, …)&lt;/li&gt;
  &lt;li&gt;human-resource systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Human resource systems are expensive to manage and implement. Also humans are unpredictable.&lt;/p&gt;

&lt;p&gt;Content systems are less likely to succeed even when executed well. Entry barrier is extremely low, so competition is extremely high, and in most cases revenue comes from affiliate programs (hitchhiker instead of driver).&lt;/p&gt;

&lt;p&gt;Lead generation systems benefit from fragmented industries where the players are small-to-medium sized businesses.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;money-is-passive-by-itself&quot;&gt;Money is passive by itself&lt;/h5&gt;

&lt;p&gt;Money is inherently passive by itself. Once you have money, it’s very easy to invest it to generate more of it.&lt;/p&gt;

&lt;p&gt;Investing \$10M at 5% results in a monthly passive stream of $41,667.&lt;/p&gt;

&lt;p&gt;Compound interest is a source of passive income, not a tool for wealth (fast) growth.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;law-of-effection&quot;&gt;Law of effection&lt;/h5&gt;

&lt;p&gt;Law of effection &lt;sup id=&quot;fnref:effect&quot;&gt;&lt;a href=&quot;#fn:effect&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;: the more lives you affect, in scale and/or magnitude, the wealthier you will become.&lt;/p&gt;

\[Profit = UnitsSold \times UnitProfit\]

&lt;p&gt;where $UnitsSold$ is scale and $UnitProfit$ is magnitude.&lt;/p&gt;

&lt;p&gt;You need scale, magnitude, or both. With scale or magnitude, you create millions. With both, you create billions.&lt;/p&gt;

&lt;p&gt;The closer you are to the source of big numbers, the closer you get to wealth.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;what-makes-a-good-business&quot;&gt;What makes a good business?&lt;/h5&gt;

&lt;h6 id=&quot;control-of-the-market&quot;&gt;Control of the market&lt;/h6&gt;

&lt;p&gt;The one who controls a system/market/technology makes the big money. Everyone who hitchhikes, makes good money at best. You need to control almost every aspect of your system &lt;sup id=&quot;fnref:control-system&quot;&gt;&lt;a href=&quot;#fn:control-system&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Stop climbiing pyramids and start building them.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h6 id=&quot;high-entry-barrier&quot;&gt;High entry barrier&lt;/h6&gt;

&lt;p&gt;The lower the entry barrier to a field, the more competition you face. If anyone can start your business within hours, choose a different business.&lt;/p&gt;

&lt;p&gt;If you are exceptional, you don’t need to worry about low entry barrier.&lt;/p&gt;

&lt;p&gt;Real startups are processes, not events.&lt;/p&gt;

&lt;p&gt;When “everyone is doing it”, you have to be really thoughtful about whether it’s a good idea. It’s most likely not.&lt;/p&gt;

&lt;h6 id=&quot;there-is-need&quot;&gt;There is need&lt;/h6&gt;

&lt;p&gt;No one cares about your desires, wants, needs, or reasons you want to do things. You have to show people what’s in it for them. To succeed as a producer, you need to give up your own selfishness and address the selfishness of others.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Stop chasing money and start chasing needs.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Address other people’s needs, problems, pain points, service deficiencies, and emotions.&lt;/p&gt;

&lt;p&gt;Money is like love and happiness. The more you focus on it, the more elusive it becomes. Instead of trying to attract money, think of what attracts money. Solve problems and needs.&lt;/p&gt;

&lt;p&gt;People are voting all the time with their time, thoughts, or money. Get their vote by:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;making them feel better&lt;/li&gt;
  &lt;li&gt;helping them solve a problem&lt;/li&gt;
  &lt;li&gt;educating them&lt;/li&gt;
  &lt;li&gt;making them look better&lt;/li&gt;
  &lt;li&gt;giving them security&lt;/li&gt;
  &lt;li&gt;raising positive emotions&lt;/li&gt;
  &lt;li&gt;satisfying appetites&lt;/li&gt;
  &lt;li&gt;making things easier&lt;/li&gt;
  &lt;li&gt;inspiring their dreams, and giving them hope&lt;/li&gt;
  &lt;li&gt;….&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You need to &lt;a href=&quot;/notes/book_notes/anything-you-want&quot;&gt;know your WHY&lt;/a&gt; for doing things, otherwise you risk being misguided by money (and other people).&lt;/p&gt;

&lt;h6 id=&quot;detaches-income-from-time&quot;&gt;Detaches income from time&lt;/h6&gt;

&lt;p&gt;You need to build a system that detaches income from time. In other words, you need to grow a money tree. Content systems, computer systems, software systems, distribution systems, human resource systems can all be money trees.&lt;/p&gt;

&lt;p&gt;If it doesn’t make money while you sleep, it’s not a money tree.&lt;/p&gt;

&lt;h6 id=&quot;scale&quot;&gt;Scale&lt;/h6&gt;

&lt;p&gt;Same idea as in law of effection: impact millions and you will make millions.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;you-will-face-pushback-if-you-have-unconventional-ideas&quot;&gt;You will face pushback if you have unconventional ideas&lt;/h5&gt;

&lt;p&gt;When you have unconventional ideas, you will be met with resistance. Extraordinary results require extraordinary beliefs and actions. To live unlike everyone you need to be unlike everyone.&lt;/p&gt;

&lt;p&gt;Societal norm is not exactly sane: get up, go to work, come home, watch tv, go to bed, repeat. This is mental. The gravity of society is to be average, not exceptional.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;If you hang out with dogs, you will get fleas.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Family, friends, and the environment will probably be headwind. As a producer, you will be a minority.&lt;/p&gt;

&lt;p&gt;The worst headwind you can have is from your spouse.&lt;/p&gt;

&lt;p&gt;You need to protect yourself and your ideas from negative energy.&lt;/p&gt;

&lt;p&gt;Good people fuel your dreams, motivate you, and extend your opportunity reach.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;be-stingy-with-your-time-not-with-money&quot;&gt;Be stingy with your time, not with money&lt;/h5&gt;

&lt;p&gt;Your time is your life. When you are dedicating time to something or someone, you are dedicating a chunk of your life.&lt;/p&gt;

&lt;p&gt;Time is scarce, money is abundant.&lt;/p&gt;

&lt;p&gt;When you are an employee, you don’t just pay 8 hours a day. You pay 8 hours plus all the time you spend dressing up for work, preparing, commuting, etc.&lt;/p&gt;

&lt;p&gt;You work for freedom. Freedom is freely allocated time. Paying time to get back time doesn’t make a lot of sense.&lt;/p&gt;

&lt;p&gt;When you spend 1 hour driving, to save \$10 by buying a TV cheaper than the store next to your house, you are valuing 1 hour of your life for $10.&lt;/p&gt;

&lt;p&gt;Lifestyle extravagances have double cost: the cost itself, and the time cost.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;failure-is-the-sweat-of-success&quot;&gt;Failure is the sweat of success&lt;/h5&gt;

&lt;p&gt;The same way you can’t exercise hard without sweating, you can’t succeed without failing. If you avoid failure, you avoid success.&lt;/p&gt;

&lt;p&gt;Failure is just an event. If you don’t give up, you will eventually be successful. Success is a process.&lt;/p&gt;

&lt;p&gt;Fear of failure is caused by an overestimated worst-case consequence analysis. Usually, the worst-case scenario is not that bad.&lt;/p&gt;

&lt;p&gt;“Someday” is dangerous and paralyzing. You never get anywhere with it. The same is true with waiting for some arbitrary favorable condition.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;you-dont-need-a-crazy-big-idea-opportunities-are-everywhere&quot;&gt;You don’t need a crazy big idea, opportunities are everywhere&lt;/h5&gt;

&lt;p&gt;Opportunities are everywhere. Buggy software, bad service, annoying call centers. Every little thing that annoys you when using existing products or services is an opportunity.&lt;/p&gt;

&lt;p&gt;Opportunity is rarely a huge big big thing like the light bulb or the car, and most times it’s simply an unmet or poorly met need.&lt;/p&gt;

&lt;p&gt;It’s okay if other people are already doing it &lt;sup id=&quot;fnref:dropbox&quot;&gt;&lt;a href=&quot;#fn:dropbox&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;. The question is, can you do it better? Can you do it cheaper? Most successful entrepreneurs take existing concepts and improve them. They take poorly met needs and solve them better. Instead of focusing on the big idea, they focus on the big execution.&lt;/p&gt;

&lt;p&gt;Your thoughts constantly flood you with business opportunities:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;I hate ….&lt;/li&gt;
  &lt;li&gt;I don’t like ….&lt;/li&gt;
  &lt;li&gt;It’s frustrating that ….&lt;/li&gt;
  &lt;li&gt;Why is it like this?&lt;/li&gt;
  &lt;li&gt;Do I have to?&lt;/li&gt;
  &lt;li&gt;I wish there was ….&lt;/li&gt;
  &lt;li&gt;I’m tired of ….&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Opportunity is exposed in your and other people’s language and thoughts.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;ideas-are-free-bias-towards-action&quot;&gt;Ideas are free, bias towards action&lt;/h5&gt;

&lt;p&gt;Most people don’t do anything even when they know and agree with what needs to be done to succeed. Few people try, but half-ass it. Very few people try, try hard, and stick to it long enough.&lt;/p&gt;

&lt;p&gt;Thinking of a business has no output. Ideas are nothing but electrochemical reactions in your brain. They’re events that require little effort. You have to create the business and execute well. Execution is a process. Execution requires effort, sacrifice, discipline, and persistence.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Execution is the great divider separating winners and losers from their ideas.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;What affects your success in order of importance:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;execution&lt;/li&gt;
  &lt;li&gt;marketing&lt;/li&gt;
  &lt;li&gt;customer service&lt;/li&gt;
  &lt;li&gt;product&lt;/li&gt;
  &lt;li&gt;idea&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;(&lt;a href=&quot;/notes/Notes/ꆜ%20Derek%20Sivers&quot;&gt;ꆜ Derek Sivers&lt;/a&gt; - &lt;a href=&quot;https://sive.rs/multiply&quot;&gt;Ideas are just a multiplier of execution&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Business plans are useless unless they’re backed by tangible execution. You should still do a reasonable financial analysis though.&lt;/p&gt;

&lt;p&gt;Investors back the person, their track record, and the execution, they don’t back a business plan.&lt;/p&gt;

&lt;p&gt;If you have a track record of execution, people will suddenly become interested in your business plan.&lt;/p&gt;

&lt;p&gt;Positivity, belief, visualization etc. are all necessary but not sufficient conditions for success. You need action that affects in scale.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;customer-feedback-is-gold&quot;&gt;Customer feedback is gold&lt;/h5&gt;

&lt;p&gt;Collect customer complains like a maniac. They are free feedback and expose unmet needs in your business.&lt;/p&gt;

&lt;p&gt;When you change things, at least &lt;em&gt;some&lt;/em&gt; people will complain because of habitude. These are hard to validate so you need to use metrics and analytics to gauge if the complaints should be heard.&lt;/p&gt;

&lt;p&gt;Expectation complaints are vital because what you provide didn’t meet the client’s expectation for some reason. Did you offer bad service? Bad product? Do you have misleading marketing? Did customers misunderstand how they are supposed to use your offering? Are there operational issues?&lt;/p&gt;

&lt;p&gt;When customers request something and you don’t have it, it exposes unmet needs. It’s people telling you what they want for free.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;I don’t know what’s the key to success but the key to failure is trying to please everybody.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Bad customer service is so commonplace today that we get surprised when someone offers decent customer service. Use that to your advantage.&lt;/p&gt;

&lt;p&gt;Determine what the customers expect out of your business. Then positively violate this expectation. Spend money on pleasing your existing clients rather than trying to find new ones. Satisfied customers become evangelists and free advertising for your business.&lt;/p&gt;

&lt;p&gt;Look big but act small. Look like you have the power of a big company, but give personal service as if you’re a one-human op. No one likes dealing with bureaucracies and admin work. Also looking big scares away potential competitors.&lt;/p&gt;

&lt;p&gt;Amazing product cannot overpower bad service. Human experience is the no.1 selling weapon.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;choose-who-you-let-into-your-castle-carefully&quot;&gt;Choose who you let into your castle carefully&lt;/h5&gt;

&lt;p&gt;You company is like a fortress. Don’t let just anyone in.&lt;/p&gt;

&lt;p&gt;A company is a collection of people. Bad or mediocre people result in bad or mediocre companies.&lt;/p&gt;

&lt;p&gt;A business partner is like marriage. Partnerships survive on character, synergy, and complimentary attributes.&lt;/p&gt;

&lt;p&gt;Don’t start a company with someone you don’t know well. Would you marry someone after two weeks of dating?&lt;/p&gt;

&lt;p&gt;When hiring, investigate and interview. Get referrals. Anyone with inside access to your company has the potential to ruin it. Employees are the public perception of a company.&lt;/p&gt;

&lt;p&gt;Trust actions, not words.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Trust, but verify.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;When you impact millions, you come in contact with millions. This will inevitably lead to bad contacts. This doesn’t mean the world is bad, there are just some bad people out there.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;avoid-competition&quot;&gt;Avoid competition&lt;/h5&gt;

&lt;p&gt;Products and services that are homogeneous between providers are commoditized, like air travel. In any commoditized product, people are loyal to the price, not the product.&lt;/p&gt;

&lt;p&gt;Mind your own business, not the competition. Otherwise, you neglect your product, and you become reactive rather than proactive.&lt;/p&gt;

&lt;p&gt;Your job is to innovate, skew value, and win customers. Do that well, and then everyone will be following you instead of you seeing what they’re doing.&lt;/p&gt;

&lt;hr /&gt;

&lt;h5 id=&quot;marketing-is-the-queen-of-business&quot;&gt;Marketing is the Queen of business&lt;/h5&gt;

&lt;p&gt;Marketing is extremely powerful. People buy mediocre products and tolerate mediocre services because of great marketing.&lt;/p&gt;

&lt;p&gt;Build a brand that people are loyal to.&lt;/p&gt;

&lt;p&gt;Have a unique selling point that focuses on benefits. This helps the customers choose your company. Provide specific actions and evidence.&lt;/p&gt;

&lt;p&gt;Domino’s didn’t say “Delivered on time”. It said “Delivered within 30 minutes, or it’s free”.&lt;/p&gt;

&lt;p&gt;There is too much noise in marketing today, making it hard for real value to show through. Some ways to get above the noise:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;polarization. People other love or hate you, and it drives traffic&lt;/li&gt;
  &lt;li&gt;sex. It unfortunately always works and never goes out of style. However, it can tarnish your brand.&lt;/li&gt;
  &lt;li&gt;emotion. Most consumer decisions are driven by emotion and the need to feel something.&lt;/li&gt;
  &lt;li&gt;let people talk about themselves. When customers expose part of themselves, they build a relationship with your brand.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Grabbing the attention is half the battle. The other half is communicating enough value to create a sale.&lt;/p&gt;

&lt;p&gt;Marketing should focus on benefits, not features. Who is your buyer? What do they want? What are they trying to solve? What do they want to feel?&lt;/p&gt;

&lt;p&gt;You can use price tricks to reframe value. Price is tied to perceived value. Purchasing a knife for &lt;del&gt;$80&lt;/del&gt; &lt;em&gt;ONLY $20 for a limited time!&lt;/em&gt; feels much better than purchasing a knife for $20.&lt;/p&gt;
&lt;div class=&quot;footnotes&quot; role=&quot;doc-endnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:education&quot;&gt;
      &lt;p&gt;Education is mostly free or ridiculously cheap in Europe. If you study in your home town and thereby don’t have living costs, you are basically studying for free in money terms. But the time cost is still present. &lt;a href=&quot;#fnref:education&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li id=&quot;fn:effect&quot;&gt;
      &lt;p&gt;effect: create, do &lt;a href=&quot;#fnref:effect&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li id=&quot;fn:control-system&quot;&gt;
      &lt;p&gt;This reminds me a lot of how vastly influential entrepreneurs were obsessive with vertical integration (&lt;a href=&quot;/notes/Notes/John%20D.%20Rockefeller&quot;&gt;Rockefeller&lt;/a&gt;, &lt;a href=&quot;/notes/Notes/Jeff%20Bezos&quot;&gt;Bezos&lt;/a&gt;, etc.). &lt;a href=&quot;#fnref:control-system&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li id=&quot;fn:dropbox&quot;&gt;
      &lt;p&gt;When Dropbox founder was pitching the idea to investors they retorted that there’s already dozens of cloud storage and file sharing apps. He then asked them, “yes, but which one are you using?”. He was pointing out the fact that while lots of apps exist, most of them are clunky, and very few people actually use them. There was a pain point in the market, that he thought he could address. &lt;a href=&quot;#fnref:dropbox&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#8617;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
  <author>
    <name>Aristotelis Economides</name>
  </author>
 </entry><entry>
  <title type="html">Notes for Elon Musk, by Walter Isaacson</title>
  <link href="https://aristotelis.eco/books/elon-musk" rel="alternate" type="text/html" title="Notes for Elon Musk, by Walter Isaacson"/>
  <published>2024-04-03T17:00:00-07:00</published>
  <id>https://aristotelis.eco/books/elon-musk</id>
  <summary type="html">Elon Musk is one of the most important figures of the 21st century and this biography is fascinating in all the possible meanings of the word. Whether you feel hate, admiration, or indifference about Elon Musk, I think this book is an astounding read. I look forward to reading more of Isaacson&apos;s biographies.</summary>
  <content type="html">&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; As an experiment, I have not taken notes or highlights while reading this book. Last time I’m doing this, writing in the book while reading is a far superior experience.&lt;/p&gt;

&lt;ul id=&quot;markdown-toc&quot;&gt;
  &lt;li&gt;&lt;a href=&quot;#thoughts-and-impressions-right-after-finishing-the-book&quot; id=&quot;markdown-toc-thoughts-and-impressions-right-after-finishing-the-book&quot;&gt;Thoughts and impressions right after finishing the book&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;#pages-of-the-book-that-i-liked-so-much-that-i-took-a-picture&quot; id=&quot;markdown-toc-pages-of-the-book-that-i-liked-so-much-that-i-took-a-picture&quot;&gt;Pages of the book that I liked so much that I took a picture&lt;/a&gt;    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;#i-need-to-catch-the-internet-wave&quot; id=&quot;markdown-toc-i-need-to-catch-the-internet-wave&quot;&gt;“I need to catch the internet wave”&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#mission-first-business-second&quot; id=&quot;markdown-toc-mission-first-business-second&quot;&gt;Mission first, business second&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#he-preached-spacex-as-a-mandate-from-heaven&quot; id=&quot;markdown-toc-he-preached-spacex-as-a-mandate-from-heaven&quot;&gt;He preached SpaceX as a mandate from Heaven&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#the-laws-of-physics&quot; id=&quot;markdown-toc-the-laws-of-physics&quot;&gt;The laws of physics&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#the-idiot-index&quot; id=&quot;markdown-toc-the-idiot-index&quot;&gt;The idiot index&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#a-hardcore-showman&quot; id=&quot;markdown-toc-a-hardcore-showman&quot;&gt;A hardcore showman&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href=&quot;#the-algorithm&quot; id=&quot;markdown-toc-the-algorithm&quot;&gt;The Algorithm&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;thoughts-and-impressions-right-after-finishing-the-book&quot;&gt;Thoughts and impressions right after finishing the book&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;Elon Musk is an extraordinary human.&lt;/li&gt;
  &lt;li&gt;His ability to reduce extremely complicated problems to simple, precise metrics is astounding.&lt;/li&gt;
  &lt;li&gt;He is constantly faced with pushback on the boundaries of what is possible. He never respects the opinion of anyone on this matter, and only uses his own understanding of the situation to call the shots. It was crazy that they just went into Twitter’s datacenter and Elon started pulling out the plugs of live, running servers out of the blue.&lt;/li&gt;
  &lt;li&gt;His failures are huge, but so are his successes. There’s no other human on earth that is running as many successful companies as Elon.&lt;/li&gt;
  &lt;li&gt;He lacks empathy to the point that makes him a dick, very often. I don’t want to be like Elon.&lt;/li&gt;
  &lt;li&gt;He is probably the most important builder on Earth for the last several decades. If Steve Jobs didn’t make the iPhone it’s very much likely that someone else would have come up with something similar. There is no other space company today that matches SpaceX’s capability, and no other electric car company that comes close to Tesla. Elon Musk might have been the biggest driver towards electric cars.&lt;/li&gt;
  &lt;li&gt;The amount of risk he’s willing to take, and the amount of self-confidence that he has is mind-blowing. He’s making incredibly complicated decisions at insane speed, and the rate with which he takes actions and uses the information gained to inform upcoming actions is unmatched. He basically has an intuitive bias towards epistemic action (&lt;a href=&quot;/notes/externalizing-thought-yields-clarity&quot;&gt;epistemic action&lt;/a&gt;), which allows him to gather orders of magnitude more information than the average human.&lt;/li&gt;
  &lt;li&gt;I am willing to bet that the neurological activity of his &lt;a href=&quot;https://en.wikipedia.org/wiki/Amygdala&quot;&gt;amygdala&lt;/a&gt; (responsible for fear, empathy, and emotional responses) and his &lt;a href=&quot;https://en.wikipedia.org/wiki/Orbitofrontal_cortex&quot;&gt;orbitofrontal cortex&lt;/a&gt; and &lt;a href=&quot;https://en.wikipedia.org/wiki/Anterior_cingulate_cortex&quot;&gt;anterior cingulate cortex&lt;/a&gt; (responsible for regulating impulse control and evaluating the consequences of actions) are &lt;em&gt;significantly&lt;/em&gt; shifted from the average.&lt;/li&gt;
&lt;/ul&gt;

&lt;hr /&gt;

&lt;h3 id=&quot;pages-of-the-book-that-i-liked-so-much-that-i-took-a-picture&quot;&gt;Pages of the book that I liked so much that I took a picture&lt;/h3&gt;

&lt;h4 id=&quot;i-need-to-catch-the-internet-wave&quot;&gt;“I need to catch the internet wave”&lt;/h4&gt;

&lt;p&gt;In 1995 Elon was getting ready to pursue a PhD on solid state capacitors. Like every student who right after uni he was going through a contemplative period, and was asking himself which things will truly affect humanity. He came up with the internet, sustainable energy, and space travel.&lt;/p&gt;

&lt;p&gt;In summer of 1995 Netscape, a web browser, had just IPO’ed reaching a market value of $2.9B. He realized that the internet was. not going to wait for him to finish graduate school, and if he failed, he could always go back to it.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;I need to put everything else on hold. I need to catch the internet wave.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I feel the same about AI the past months. There is a huge wave, and it’s not going to wait for anyone.&lt;/p&gt;

&lt;h4 id=&quot;mission-first-business-second&quot;&gt;Mission first, business second&lt;/h4&gt;

&lt;p&gt;After they sold PayPal, Elon wanted to start SpaceX to make humans a multi-planetary species. He worried that if we don’t colonize Mars, there is a high chance humanity will go extinct.&lt;/p&gt;

&lt;p&gt;Every one of his friends and advisors told him he’s stupid. “How is this a business?”, Reid Hoffman had said.&lt;/p&gt;

&lt;p&gt;Elon starts with a mission, and later finds a way to make it work financially.&lt;/p&gt;

&lt;p&gt;One reason he wanted to start SpaceX was that it scared him that technological progress is not inevitable. It can stop, and even backtrack. Space exploration had basically been stale for 50 years.&lt;/p&gt;

&lt;p&gt;Technology only improves if a lot of people work very hard to make it better.&lt;/p&gt;

&lt;p&gt;Also, life cannot be merely about solving problems. You need to have huge, grand goals, that inspire you and give you purpose.&lt;/p&gt;

&lt;h4 id=&quot;he-preached-spacex-as-a-mandate-from-heaven&quot;&gt;He preached SpaceX as a mandate from Heaven&lt;/h4&gt;

&lt;p&gt;Max Levchin said:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;One of Elon’s greatest skills is the ability to pass of his vision as a mandate from heaven.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;People were trying to convince Elon that SpaceX was a stupidly risky move, which only made him more resolved to do it.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The likeliest outcome is that I will lose all my money. But what’s the alternative? That there be no progress in space exploration? We’ve got to give this a shot, or we’re stuck on Earth forever.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;To my point above about incredibly simple, but on-point metrics: the goal of SpaceX was to &lt;em&gt;minimize cost per pound of payload into orbit&lt;/em&gt;. This was the obsession that drove increasing engine thrust, reducing rocket mass, and making reusable rockets.&lt;/p&gt;

&lt;p&gt;Elon sets unrealistic deadlines that transform projects from completely insane to merely being very late.&lt;/p&gt;

&lt;h4 id=&quot;the-laws-of-physics&quot;&gt;The laws of physics&lt;/h4&gt;

&lt;p&gt;Elon never respects any requirement set by a human unless re-proven to be true. Every requirement had to come with the name of a human who made the requirement. All requirements are merely recommendations.&lt;/p&gt;

&lt;p&gt;The only immutable requirements are the ones necessitated by the laws of physics.&lt;/p&gt;

&lt;h4 id=&quot;the-idiot-index&quot;&gt;The idiot index&lt;/h4&gt;

&lt;p&gt;Elon has an inherent skepticism about everything, and this includes prices of goods. If any product has a high &lt;em&gt;Idiot Index&lt;/em&gt;, it is highly likely that the design is too complex, or the manufacturing process too inefficient.&lt;/p&gt;

\[Idiot \ Index = Total \ cost \ of \ component \over Cost \ of \ raw \ materials\]

&lt;h4 id=&quot;a-hardcore-showman&quot;&gt;A hardcore showman&lt;/h4&gt;

&lt;p&gt;Elon has an inherent tendency towards showmanship. It’s very interesting because he’s a huge introvert.&lt;/p&gt;

&lt;p&gt;When he bought Twitter and cut 75% of it’s workforce he said:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;I’m a big believer that a small number of exceptional people who are highly motivated can do better than a large number of people who are pretty good and moderately motivated.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;He had slept on the floor of his first office at Zip2 in 1995.&lt;/p&gt;

&lt;p&gt;He had slept on Tesla’s Nevada battery factory in 2017.&lt;/p&gt;

&lt;p&gt;He had slept under his desk at the Fremont assembly plant in 2018.&lt;/p&gt;

&lt;p&gt;None of this was truly necessary, but he loved the drama, and the urgency. Above all, he understood the importance of leading by example, like a war general who rallies his troops.&lt;/p&gt;

&lt;p&gt;When he acquired Twitter, it had a vastly different culture than the one he instilled in his companies. In order to show them hardcore, he slept at Twitter headquarters during the entire transition period.&lt;/p&gt;

&lt;h4 id=&quot;the-algorithm&quot;&gt;The Algorithm&lt;/h4&gt;

&lt;p&gt;This is so good that I made it a &lt;a href=&quot;/elon-algorithm&quot;&gt;separate post&lt;/a&gt;.&lt;/p&gt;
</content>
  <author>
    <name>Aristotelis Economides</name>
  </author>
 </entry></feed>
