<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:base="https://kamilrudnicki.com">
  <title>Kamil Rudnicki Personal Website</title>
  <link href="https://kamilrudnicki.com/feed.xml" rel="self"/>
  <link href="https://kamilrudnicki.com"/>
  <updated>2026-08-15T15:26:03Z</updated>
  <id>https://kamilrudnicki.com</id><entry>
    <title>Calculate percentage of dev time using data export and DuckDB in TimeCamp</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/timecamp/calculate-percentage-of-dev-time-using-data-export-and-duck-db-in-time-camp/</id>
    <content type="html">&lt;h1 id=&quot;this-post-is-in-progress&quot; tabindex=&quot;-1&quot;&gt;THIS POST IS IN PROGRESS&lt;/h1&gt;
&lt;h1 id=&quot;calculate-percentage-of-dev-time-using-data-export-and-duck-db-in-time-camp&quot; tabindex=&quot;-1&quot;&gt;Calculate Percentage of Dev Time Using Data Export and DuckDB in TimeCamp&lt;/h1&gt;
&lt;p&gt;Time tracking is essential for understanding where your development team&#39;s hours are going. While TimeCamp provides excellent built-in reporting, sometimes you need deeper insights or custom analytics. By combining TimeCamp&#39;s data export feature with DuckDB, you can perform powerful SQL queries on your time tracking data without setting up a full database infrastructure.&lt;/p&gt;
&lt;p&gt;In this tutorial, we&#39;ll show you how to export your TimeCamp data and use DuckDB to calculate what percentage of your time is spent on actual development versus meetings, admin tasks, and other activities.&lt;/p&gt;
&lt;h2 id=&quot;why-duck-db&quot; tabindex=&quot;-1&quot;&gt;Why DuckDB?&lt;/h2&gt;
&lt;p&gt;DuckDB is an embedded analytical database that&#39;s perfect for this use case. It can:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Query CSV files directly without importing data&lt;/li&gt;
&lt;li&gt;Handle large datasets efficiently&lt;/li&gt;
&lt;li&gt;Run complex SQL queries with ease&lt;/li&gt;
&lt;li&gt;Require zero server setup&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;prerequisites&quot; tabindex=&quot;-1&quot;&gt;Prerequisites&lt;/h2&gt;
&lt;p&gt;Before we begin, make sure you have:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A TimeCamp account with time tracking data&lt;/li&gt;
&lt;li&gt;DuckDB installed on your machine&lt;/li&gt;
&lt;li&gt;Basic SQL knowledge&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;step-1-prepare-and-export-your-time-camp-data&quot; tabindex=&quot;-1&quot;&gt;Step 1: Prepare and Export Your TimeCamp Data&lt;/h2&gt;
&lt;p&gt;First, you&#39;ll need to export your time tracking data from TimeCamp:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Log into your TimeCamp account&lt;/li&gt;
&lt;li&gt;Open &amp;quot;&lt;strong&gt;Custom fields&lt;/strong&gt;&amp;quot; settings and add custom field with name &amp;quot;&lt;strong&gt;Type&lt;/strong&gt;&amp;quot; (available in Ultimate plan)&lt;/li&gt;
&lt;li&gt;Open &amp;quot;Project&amp;quot; page and add value for custom field &lt;strong&gt;Type = project&lt;/strong&gt; to every project you would like to see in statistics. You don&#39;t need to be perfect here, you can repeat this step later if needed.&lt;/li&gt;
&lt;li&gt;Wait about 30 min. for changes to propagate (in the future it will be instant)&lt;/li&gt;
&lt;li&gt;Navigate to &lt;strong&gt;Manage&lt;/strong&gt; → &lt;strong&gt;Data export&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Select your desired date range (e.g., this year)&lt;/li&gt;
&lt;li&gt;Export the report as a &lt;strong&gt;CSV file&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Save the file as &lt;code&gt;timecamp_export.csv&lt;/code&gt; in your working directory.&lt;/p&gt;
&lt;h2 id=&quot;step-2-set-up-duck-db&quot; tabindex=&quot;-1&quot;&gt;Step 2: Set Up DuckDB&lt;/h2&gt;
&lt;p&gt;Install DuckDB if you haven&#39;t already, then launch it in your terminal:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;duckdb timecamp_analysis.db
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;step-3-load-and-explore-your-data&quot; tabindex=&quot;-1&quot;&gt;Step 3: Load and Explore Your Data&lt;/h2&gt;
&lt;p&gt;First, let&#39;s take a look at the structure of your exported data:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-sql&quot;&gt;-- Query placeholder: Select first 10 rows to inspect data structure
SELECT * FROM &#39;timecamp_export.csv&#39; LIMIT 10;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Check the total time tracked:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-sql&quot;&gt;-- Query placeholder: Calculate total hours tracked in the dataset
SELECT [CALCULATION] FROM &#39;timecamp_export.csv&#39;;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;step-4-categorize-development-activities&quot; tabindex=&quot;-1&quot;&gt;Step 4: Categorize Development Activities&lt;/h2&gt;
&lt;p&gt;To calculate the percentage of dev time, you first need to identify which activities count as &amp;quot;development.&amp;quot; This might include tasks tagged with keywords like &amp;quot;coding,&amp;quot; &amp;quot;development,&amp;quot; &amp;quot;bug fix,&amp;quot; &amp;quot;feature,&amp;quot; etc.&lt;/p&gt;
&lt;p&gt;Create a view that categorizes your activities:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-sql&quot;&gt;-- Query placeholder: Create view categorizing activities as dev vs non-dev
CREATE VIEW categorized_time AS
SELECT [COLUMNS],
    CASE
        WHEN [CONDITION] THEN &#39;Development&#39;
        WHEN [CONDITION] THEN &#39;Meetings&#39;
        WHEN [CONDITION] THEN &#39;Admin&#39;
        ELSE &#39;Other&#39;
    END AS activity_category
FROM &#39;timecamp_export.csv&#39;;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;step-5-calculate-development-time-percentage&quot; tabindex=&quot;-1&quot;&gt;Step 5: Calculate Development Time Percentage&lt;/h2&gt;
&lt;p&gt;Now for the main calculation - determining what percentage of your time was spent on development:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-sql&quot;&gt;-- Query placeholder: Calculate percentage of time spent on each category
SELECT 
    activity_category,
    [DURATION_CALCULATION] AS total_hours,
    [PERCENTAGE_CALCULATION] AS percentage
FROM categorized_time
GROUP BY activity_category
ORDER BY total_hours DESC;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;step-6-break-down-by-team-member&quot; tabindex=&quot;-1&quot;&gt;Step 6: Break Down by Team Member&lt;/h2&gt;
&lt;p&gt;If you&#39;re analyzing team data, you&#39;ll want to see individual breakdowns:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-sql&quot;&gt;-- Query placeholder: Calculate dev percentage per team member
SELECT 
    user_name,
    [DEV_TIME_CALCULATION] AS dev_hours,
    [TOTAL_TIME_CALCULATION] AS total_hours,
    [PERCENTAGE_CALCULATION] AS dev_percentage
FROM categorized_time
GROUP BY user_name
ORDER BY dev_percentage DESC;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;step-7-trend-analysis-over-time&quot; tabindex=&quot;-1&quot;&gt;Step 7: Trend Analysis Over Time&lt;/h2&gt;
&lt;p&gt;Understanding how your development time percentage changes over time can reveal important patterns:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-sql&quot;&gt;-- Query placeholder: Calculate weekly dev percentage trends
SELECT 
    [DATE_GROUPING] AS week,
    [PERCENTAGE_CALCULATION] AS dev_percentage
FROM categorized_time
GROUP BY week
ORDER BY week;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;advanced-analysis-project-level-insights&quot; tabindex=&quot;-1&quot;&gt;Advanced Analysis: Project-Level Insights&lt;/h2&gt;
&lt;p&gt;You can also analyze development time at the project level:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-sql&quot;&gt;-- Query placeholder: Calculate dev vs non-dev time per project
SELECT 
    project_name,
    activity_category,
    [TIME_CALCULATION] AS hours,
    [PERCENTAGE_CALCULATION] AS percentage_of_project
FROM categorized_time
GROUP BY project_name, activity_category
ORDER BY project_name, hours DESC;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;exporting-results&quot; tabindex=&quot;-1&quot;&gt;Exporting Results&lt;/h2&gt;
&lt;p&gt;Once you&#39;ve generated your insights, export them for sharing with stakeholders:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-sql&quot;&gt;-- Query placeholder: Export results to CSV
COPY (
    [YOUR_ANALYSIS_QUERY]
) TO &#39;dev_time_analysis.csv&#39; (HEADER, DELIMITER &#39;,&#39;);
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;tips-for-better-analysis&quot; tabindex=&quot;-1&quot;&gt;Tips for Better Analysis&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;1. Consistent Tagging&lt;/strong&gt;: Ensure your team uses consistent tags or project naming conventions in TimeCamp. This makes categorization much easier.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Regular Exports&lt;/strong&gt;: Schedule monthly or quarterly exports to track trends over time.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Custom Categories&lt;/strong&gt;: Adjust the activity categories to match your organization&#39;s needs. You might want to separate &amp;quot;client communication,&amp;quot; &amp;quot;code review,&amp;quot; &amp;quot;testing,&amp;quot; etc.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Combine with Other Data&lt;/strong&gt;: DuckDB can join multiple CSV files. Consider combining your TimeCamp data with project budgets or sprint data for deeper insights.&lt;/p&gt;
&lt;h2 id=&quot;conclusion&quot; tabindex=&quot;-1&quot;&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;By combining TimeCamp&#39;s data export with DuckDB&#39;s analytical power, you can gain deep insights into how your development time is distributed. Whether you&#39;re trying to reduce meeting overhead, justify headcount requests, or optimize team workflows, having concrete data on development time percentages is invaluable.&lt;/p&gt;
&lt;p&gt;The best part? This entire analysis requires no database servers, no ETL pipelines, and minimal setup time. You can run this analysis ad-hoc whenever you need fresh insights.&lt;/p&gt;
&lt;h2 id=&quot;next-steps&quot; tabindex=&quot;-1&quot;&gt;Next Steps&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Automate the export process using TimeCamp&#39;s API&lt;/li&gt;
&lt;li&gt;Create a dashboard using your favorite visualization tool&lt;/li&gt;
&lt;li&gt;Set up alerts when dev time percentage drops below a threshold&lt;/li&gt;
&lt;li&gt;Compare dev time percentages across different teams or departments&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Have you tried analyzing your time tracking data with SQL? Share your insights and queries in the comments below!&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;em&gt;Note: The specific SQL queries will depend on your TimeCamp export structure and your organization&#39;s specific categorization needs. Adjust the placeholder queries according to your data schema.&lt;/em&gt;&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/timecamp/calculate-percentage-of-dev-time-using-data-export-and-duck-db-in-time-camp/"/>
  </entry><entry>
    <title>obsidian</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/personal-projects/done/obsidian/</id>
    <content type="html">&lt;ul class=&quot;task-list&quot;&gt;
&lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_0&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_0&quot;&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Przemyśleć operating principles&lt;/a&gt; &lt;em&gt;(limit 0.5h)&lt;/em&gt;&lt;/label&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Notice: as of 2025-08-16 it&#39;s not reflecting current setup, as it&#39;s constantly evolving.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://stephango.com/vault&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://stephango.com/vault&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Avoid splitting content into multiple vaults.&lt;/li&gt;
&lt;li&gt;Avoid folders for organization.&lt;/li&gt;
&lt;li&gt;Avoid non-standard Markdown.&lt;/li&gt;
&lt;li&gt;Always pluralize categories and tags.&lt;/li&gt;
&lt;li&gt;Use internal links profusely.&lt;/li&gt;
&lt;li&gt;Use &lt;code&gt;YYYY-MM-DD&lt;/code&gt; dates everywhere.&lt;/li&gt;
&lt;li&gt;Use the 7-point scale for ratings.&lt;/li&gt;
&lt;li&gt;Keep &lt;a href=&quot;https://stephango.com/todos&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;a single to-do list&lt;/a&gt; per week.&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;para&quot; tabindex=&quot;-1&quot;&gt;PARA&lt;/h1&gt;
&lt;p&gt;para-areas&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;topic&lt;br /&gt;
para-daily&lt;br /&gt;
para-meetings&lt;/li&gt;
&lt;li&gt;v 2026
&lt;ul&gt;
&lt;li&gt;04
&lt;ul&gt;
&lt;li&gt;10&lt;br /&gt;
v para-people&lt;br /&gt;
v para-projects&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;rag&quot; tabindex=&quot;-1&quot;&gt;RAG&lt;/h1&gt;
&lt;pre&gt;&lt;code class=&quot;language-sh&quot;&gt;python3 -m venv ~/khoj-venv
MAKE_ARGS=&amp;quot;-DGGML_METAL=on&amp;quot; ~/khoj-venv/bin/pip install &#39;khoj[local]&#39;
CMAKE_ARGS=&amp;quot;-DGGML_METAL=on&amp;quot; ~/khoj-venv/bin/pip install &#39;khoj[local]&#39;
~/khoj-venv/bin/pip install --upgrade pip
ource &amp;quot;$HOME/.cargo/env&amp;quot; &amp;amp;&amp;amp; CMAKE_ARGS=&amp;quot;-DGGML_METAL=on&amp;quot; ~/khoj-venv/bin/pip install &#39;khoj[local]&#39;
rm -rf ~/khoj-venv &amp;amp;&amp;amp; /opt/homebrew/bin/python3.12 -m venv ~/khoj-venv
source &amp;quot;$HOME/.cargo/env&amp;quot; &amp;amp;&amp;amp; CMAKE_ARGS=&amp;quot;-DGGML_METAL=on&amp;quot; ~/khoj-venv/bin/pip install &#39;khoj[local]&#39;

cd ~/khoj-venv
source ~/khoj-venv/bin/activate
USE_EMBEDDED_DB=&amp;quot;true&amp;quot; khoj --anonymous-mode
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;&lt;/li&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;direction&quot; tabindex=&quot;-1&quot;&gt;Direction&lt;/h1&gt;
&lt;p&gt;I just like the idea to write in some safe, permanent place. I could use physical notebooks, but I prefer files available everywhere.&lt;br /&gt;
One place to have personal to-dos.&lt;br /&gt;
One place to my diary.&lt;br /&gt;
One place to my goals and dreams. When remembering about my life principles.&lt;br /&gt;
One place to my knowledge. When doing research.&lt;br /&gt;
One place to my writing and future book.&lt;br /&gt;
One place to my reference.&lt;br /&gt;
One place to my life principles. When deciding what to do.&lt;br /&gt;
One place for my projects and documentation.&lt;br /&gt;
Easily retrievable knowledge - just in time.‚&lt;/p&gt;
&lt;h1 id=&quot;folders-structure-ideas&quot; tabindex=&quot;-1&quot;&gt;Folders structure ideas&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;Current:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;archive
&lt;ul&gt;
&lt;li&gt;assets&lt;/li&gt;
&lt;li&gt;bases&lt;/li&gt;
&lt;li&gt;books&lt;/li&gt;
&lt;li&gt;diary &amp;amp; logs&lt;/li&gt;
&lt;li&gt;notes with limited ttls&lt;/li&gt;
&lt;li&gt;person&lt;/li&gt;
&lt;li&gt;personal projects&lt;/li&gt;
&lt;li&gt;readwise&lt;/li&gt;
&lt;li&gt;reference &amp;amp; howtos&lt;/li&gt;
&lt;li&gt;searchable messy knowledge&lt;/li&gt;
&lt;li&gt;snippets&lt;/li&gt;
&lt;li&gt;templates&lt;/li&gt;
&lt;li&gt;wwww&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;periodic
&lt;ul&gt;
&lt;li&gt;daily&lt;/li&gt;
&lt;li&gt;weekly&lt;/li&gt;
&lt;li&gt;monthly&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;personal projects&lt;/li&gt;
&lt;li&gt;work&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Previous:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;inbox&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;areas&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;periodic&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;timecamp&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;projects&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;archive&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;assets&lt;/li&gt;
&lt;li&gt;www&lt;/li&gt;
&lt;li&gt;projects&lt;/li&gt;
&lt;li&gt;templates&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Projects/ → Active work (e.g., “Blog Posts,” “Marketing Plan”)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Areas/ → Ongoing responsibilities (e.g., “Health,” “Finances”)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Resources/ → Reference materials (e.g., “Book Notes,” “Coding Tips”)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Archive/ → Completed or inactive items&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;📂 Fleeting Notes/ → Quick ideas &amp;amp; temporary thoughts&lt;br /&gt;
📂 Literature Notes/ → Notes from books, articles, podcasts&lt;br /&gt;
📂 Permanent Notes/ → Well-processed knowledge notes&lt;br /&gt;
📂 Index/ → High-level structure for quick access&lt;/p&gt;
&lt;h1 id=&quot;customization&quot; tabindex=&quot;-1&quot;&gt;Customization&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;Ctrl-a Jump to beginning of block&lt;/li&gt;
&lt;li&gt;Ctrl-e Jump to end of block&lt;/li&gt;
&lt;li&gt;Ctrl-u search&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;look-and-amp-feel&quot; tabindex=&quot;-1&quot;&gt;Look &amp;amp; Feel&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/kamil-rudnicki/obsidian-minimalistic-theme&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;My own Minimalistic theme&lt;/a&gt; (small changes to Default theme)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Hider&lt;/code&gt; plugin to hide some elements2&lt;/li&gt;
&lt;li&gt;Font-size &lt;code&gt;14px&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Color &lt;code&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#FCB828&quot;&gt;#FCB828&lt;/a&gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Translucent window&lt;/li&gt;
&lt;li&gt;Show inline title, hide ribbon, hide tab title bar&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;plugins&quot; tabindex=&quot;-1&quot;&gt;Plugins&lt;/h2&gt;
&lt;p&gt;AI&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;obsidian-ragsody&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Used a lot&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Recent Notes - &lt;a href=&quot;https://github.com/kamil-rudnicki/obsidian-recent-notes&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;my own &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Tasks&lt;/li&gt;
&lt;li&gt;Quick Switcher++&lt;/li&gt;
&lt;li&gt;Periodic Notes&lt;/li&gt;
&lt;li&gt;Outliner&lt;/li&gt;
&lt;li&gt;Hider&lt;/li&gt;
&lt;li&gt;Git&lt;/li&gt;
&lt;li&gt;Calendar&lt;/li&gt;
&lt;li&gt;Auto Link Title&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Used sometimes&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Advanced Tables&lt;/li&gt;
&lt;li&gt;Better Search Views&lt;/li&gt;
&lt;li&gt;Dataview&lt;/li&gt;
&lt;li&gt;Digital Garden&lt;/li&gt;
&lt;li&gt;Folder Notes&lt;/li&gt;
&lt;li&gt;Footnote Shortcut&lt;/li&gt;
&lt;li&gt;Iconize&lt;/li&gt;
&lt;li&gt;Navigate Cursor History&lt;/li&gt;
&lt;li&gt;Numerals&lt;/li&gt;
&lt;li&gt;Omnisearch&lt;/li&gt;
&lt;li&gt;Readwise Official&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;workflow&quot; tabindex=&quot;-1&quot;&gt;Workflow&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;Keyboard shortcuts whenever I can, setup as similar as posible to vscode&lt;/li&gt;
&lt;li&gt;Git for backups, iClooud for synchronisation&lt;/li&gt;
&lt;li&gt;Tasks should be only in single place with dataview attributes for completion time. How? Use Tasks plugin to create dynamic views. Where? Project have full tasks list. What about periodical tasks? Only those can be copied many times, but preffered to link them in processes.&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;dev&quot; tabindex=&quot;-1&quot;&gt;Dev&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://docs.obsidian.md/Plugins/Releasing/Release+your+plugin+with+GitHub+Actions&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Release your plugin with GitHub Actions - Developer Documentation&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://github.com/kamil-rudnicki/obsidian-recent-notes/issues&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Issues · kamil-rudnicki/obsidian-recent-notes&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://github.com/kamil-rudnicki/obsidian-recent-notes/releases&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Releases · kamil-rudnicki/obsidian-recent-notes&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;ln -s &amp;quot;/Users/kamil/Developer/obsidian-recent-notes&amp;quot; &amp;quot;/Users/kamil/Developer/obsidian-vault/.obsidian/plugins/obsidian-recent-notes&amp;quot;

ln -s &amp;quot;/Users/kamil/Developer/obsidian-recent-notes&amp;quot; &amp;quot;/Users/kamil/Developer/obsidian-vault/.obsidian/plugins/obsidian-recent-notes&amp;quot;
ln -s &amp;quot;/Users/kamil/Developer/hot-reload&amp;quot; &amp;quot;/Users/kamil/Developer/obsidian-vault/.obsidian/plugins/hot-reload&amp;quot;


# MAIN 2026-01-05
ln -s &amp;quot;/Users/kamil/Developer/khoj/src/interface/obsidian&amp;quot; &amp;quot;/Users/kamil/Library/Mobile Documents/iCloud~md~obsidian/Documents/ObsidianCloud2/.obsidian/plugins/khoj&amp;quot;
ln -s &amp;quot;/Users/kamil/Developer/hot-reload&amp;quot; &amp;quot;/Users/kamil/Library/Mobile Documents/iCloud~md~obsidian/Documents/ObsidianCloud2/.obsidian/plugins/hot-reload&amp;quot;

ln -s &amp;quot;/Users/kamil/Developer/obsidian-recent-notes&amp;quot; &amp;quot;/Users/kamil/Library/Mobile Documents/iCloud~md~obsidian/Documents/ObsidianCloud2/.obsidian/plugins/obsidian-recent-notes&amp;quot;
ln -s &amp;quot;/Users/kamil/Developer/obsidian-time-logs&amp;quot; &amp;quot;/Users/kamil/Library/Mobile Documents/iCloud~md~obsidian/Documents/ObsidianCloud2/.obsidian/plugins/obsidian-time-logs&amp;quot;
ln -s &amp;quot;/Users/kamil/Developer/hot-reload&amp;quot; &amp;quot;/Users/kamil/Library/Mobile Documents/iCloud~md~obsidian/Documents/ObsidianCloud2/.obsidian/plugins/hot-reload&amp;quot;
ln -s &amp;quot;/Users/kamil/Documents/Developer/obsidian-sample-plugin&amp;quot; &amp;quot;/Users/kamil/Library/Mobile Documents/iCloud~md~obsidian/Documents/ObsidianCloud2/.obsidian/plugins/personal-productivity&amp;quot;

# RELEASE [Release your plugin with GitHub Actions - Developer Documentation](https://docs.obsidian.md/Plugins/Releasing/Release+your+plugin+with+GitHub+Actions)
npm run version
git tag -a 1.4.5 -m &amp;quot;1.4.5&amp;quot;
git push origin 1.4.5
# [Releases · kamil-rudnicki/obsidian-recent-notes · GitHub](https://github.com/kamil-rudnicki/obsidian-recent-notes/releases)
&lt;/code&gt;&lt;/pre&gt;
</content>
    <link href="https://kamilrudnicki.com/personal-projects/done/obsidian/"/>
  </entry><entry>
    <title>Obsidian to audiobook</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/personal-projects/obsidian-to-audiobook/</id>
    <content type="html">&lt;p&gt;Fun little project: &lt;a href=&quot;https://github.com/kamil-rudnicki/obsidian-to-audiobook&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://github.com/kamil-rudnicki/obsidian-to-audiobook&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Transform your Obsidian knowledge vault into professionally narrated audiobooks. This tool uses AI to weave your markdown notes into engaging narratives with customizable writing styles - from ancient philosophy to modern storytelling. Features multiple TTS providers (OpenAI, ElevenLabs), batch processing, and intelligent content organization.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.reddit.com/r/ObsidianMD/comments/1pzc3wd/i_made_a_tool_that_turns_your_obsidian_vault_into/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.reddit.com/r/ObsidianMD/comments/1pzc3wd/i_made_a_tool_that_turns_your_obsidian_vault_into/&lt;/a&gt;&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/personal-projects/obsidian-to-audiobook/"/>
  </entry><entry>
    <title>5 błedów które zrobiłem przy nawadnianiu działki</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/personal-projects/5-bledow-ktore-zrobilem-przy-nawadnianiu-dzialki/</id>
    <content type="html">&lt;p&gt;Sianie trawy. Okazuje się że nie jest to takie oczywiste. Dobre nawodnienie to klucz. Straciłem już na to z 60h...&lt;/p&gt;
&lt;h1 id=&quot;gdybym-jeszcze-raz-mial-to-robic&quot; tabindex=&quot;-1&quot;&gt;Gdybym jeszcze raz miał to robić:&lt;/h1&gt;
&lt;ol&gt;
&lt;li&gt;Zrobiłbym strefy po maks 4-5 zraszaczy. Łączenie liniowe jest ok. Więcej zraszaczy braknie ciśnienia.&lt;/li&gt;
&lt;li&gt;Zrobiłbym strefę nr. 1, uruchomił ją i dopiero robił kolejną strefę obserwując gdzie dosięga woda, i tak dalej.&lt;/li&gt;
&lt;li&gt;Czym mniej złączek, trójników tym lepiej - np. sterowniki bezpośrednio do kranu jeżeli nie będzie często używany inaczej.&lt;/li&gt;
&lt;li&gt;Zakupy
&lt;ol&gt;
&lt;li&gt;Średnica wew. przepływu wody najlepiej powyżej 15mm+ (standardowe szybkozłączki mają 9mm) - produkty jak Gardena Profi-System&lt;/li&gt;
&lt;li&gt;Węże tylko 3/4 cala&lt;/li&gt;
&lt;li&gt;Trójniki do kranów tylko bez 90 stopni załamania (np. Bächlein Y jest ok), najlepiej kulkowe zamykania&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h1 id=&quot;problemy&quot; tabindex=&quot;-1&quot;&gt;Problemy:&lt;/h1&gt;
&lt;ol&gt;
&lt;li&gt;Nie wiedziałem że trzeba walczyć o przepływ/ciśnienie wody (np. unikając zwężeń, złączek poniżej 9mm, itp). Mam 4 bary w kranie + pompe w zbiorniku.&lt;/li&gt;
&lt;li&gt;Nie wziąłem pod uwagę że wszelkiego rodzaju przyłączki będą zmniejszać przepływ wody&lt;/li&gt;
&lt;li&gt;Nie wiedziałem że przepływ/ciśnienie wody jest tak kluczowe, bo determinuje czy zraszacze w ogóle się obracają i jaki mają zasięg&lt;/li&gt;
&lt;li&gt;Nie uwzględniłem tego rysując strefy na kartce, przez co są miejsca bez podlewania&lt;/li&gt;
&lt;/ol&gt;
&lt;h1 id=&quot;produkty&quot; tabindex=&quot;-1&quot;&gt;Produkty&lt;/h1&gt;
&lt;p&gt;Tak:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Gardena Profi-system&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Jest ok, ale&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Kontroler Cellfast Chronos Ideal (potrzebuje baterie alkaiczne AA, a nie ładowane)&lt;/li&gt;
&lt;li&gt;Zraszacze
&lt;ul&gt;
&lt;li&gt;Cellfast Ideal 51-635 3/4&lt;/li&gt;
&lt;li&gt;IDEAL CELLFAST 52-060&lt;/li&gt;
&lt;li&gt;Gardena 8135-20 impulsowy&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;test-z-przeplywem&quot; tabindex=&quot;-1&quot;&gt;Test z przepływem&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;28 sekund do napełnienia do chwytów z: czarnym Cellfast poczwórnym plus niebieski programator &lt;/li&gt;
&lt;li&gt;?? sekund do napełnienia do chwytów z: trójnik Bächlein plus niebieski programator &lt;/li&gt;
&lt;li&gt;?? sekund do napełnienia do chwytów z: kran plus niebieski programator &lt;/li&gt;
&lt;li&gt;?? sekund do napełnienia do chwytów z: kran sam&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;co-kiedy&quot; tabindex=&quot;-1&quot;&gt;Co kiedy&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;obieg kran na podwórku 1 - 12:00 co 6h na 12 min (zraszacze przy tarasie)&lt;/li&gt;
&lt;li&gt;obieg kran w garażu 1 - 12:15 co 6h na 8 min (zraszacze przy płocie sąsiadki)&lt;/li&gt;
&lt;li&gt;obieg kran na podwórku 2 - 12:30 co 6h na 18 min (zraszacze na środku)&lt;/li&gt;
&lt;li&gt;ręcznie zigbee napełnianie zbiornika na deszczówkę&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;zuzycie-wody&quot; tabindex=&quot;-1&quot;&gt;Zużycie wody&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;355.08&lt;/strong&gt; - 2026-05-27 19:23 (START)&lt;br /&gt;
&lt;strong&gt;356.00&lt;/strong&gt; - 2026-05-27 19:50&lt;br /&gt;
&lt;strong&gt;357.92&lt;/strong&gt; - 2026-05-28 18:10&lt;br /&gt;
&lt;strong&gt;359.55&lt;/strong&gt; - 2026-05-28 19:00&lt;br /&gt;
&lt;strong&gt;360.86 -&lt;/strong&gt; 2026-05-29 13:28 ► 363&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;361.5 13:46&lt;br /&gt;
&lt;strong&gt;367.77&lt;/strong&gt; - 2026-05-31 18:28&lt;br /&gt;
&lt;strong&gt;375.33&lt;/strong&gt; - 2026-06-02 19:02&lt;br /&gt;
&lt;strong&gt;376.55&lt;/strong&gt; - 2026-06-03 07:10 (po dwóch cyklach)&lt;br /&gt;
&lt;strong&gt;385.44&lt;/strong&gt; - 2026-06-07 11:48&lt;br /&gt;
403.35 17 czerwca&lt;br /&gt;
428.64 28 czerwca 10:11&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;kosiarka&quot; tabindex=&quot;-1&quot;&gt;Kosiarka&lt;/h1&gt;
&lt;p&gt;Elektryczna: NAC LE18-42-PI-G - 42cm - mulczowanie - &lt;strong&gt;564 zł&lt;/strong&gt; 👈&lt;br /&gt;
Automatyczna:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;mova lidax ultra 1000 (nowszy i lepszy) (około &lt;strong&gt;4400 zł&lt;/strong&gt;)&lt;/li&gt;
&lt;li&gt;mammotion yuka mini (lepszy od sagway)&lt;/li&gt;
&lt;li&gt;segway navimow i108e lub&lt;br /&gt;
Akumulatorowa: DeWalt DCMWSP156N lub STIGA Combi 753 SQ AE - ponad 2000 zł&lt;br /&gt;
Spalinowa: odpada, tylko do ogromnych trawników&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/personal-projects/5-bledow-ktore-zrobilem-przy-nawadnianiu-dzialki/"/>
  </entry><entry>
    <title>tools</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/tools/</id>
    <content type="html">&lt;p&gt;Last update: 2024-10-05T08:34:00.000+02:00&lt;/p&gt;
&lt;h1 id=&quot;hardware&quot; tabindex=&quot;-1&quot;&gt;Hardware&lt;/h1&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Model&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Why&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;Used&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Microphone for noisy environment at home&lt;/td&gt;
&lt;td&gt;EPOS Impact 1000&lt;/td&gt;
&lt;td&gt;Better than Jabra engage 55, poly voyager 5200 UC, great kids cancelling features, physical mute/unmute&lt;/td&gt;
&lt;td&gt;??&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Microphone on-the-go&lt;/td&gt;
&lt;td&gt;Airpods Pro 2&lt;/td&gt;
&lt;td&gt;For everyday use, always with me for convinience&lt;/td&gt;
&lt;td&gt;2h per day&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Microphone for desk&lt;/td&gt;
&lt;td&gt;Samson Q2U USB&lt;/td&gt;
&lt;td&gt;I spend a lot of time on the meetings, so good microphone makes me look more professional.&lt;/td&gt;
&lt;td&gt;twice per week&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Computer&lt;/td&gt;
&lt;td&gt;Macbook Air 2023&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Phone&lt;/td&gt;
&lt;td&gt;iPhone 13 Pro&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Car&lt;/td&gt;
&lt;td&gt;VW Touran&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Camera&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;Someday:  insta360 / opus c1 or iphone&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h1 id=&quot;software&quot; tabindex=&quot;-1&quot;&gt;Software&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;AI
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/janhq/jan&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Jan&lt;/a&gt; AI assistant MacOS desktop app&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Meetings
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://rustpad.io/#5ybYDK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Collaborative Code Editor&lt;/a&gt; - Collaborative Code Editor&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Legal
&lt;ul&gt;
&lt;li&gt;[An All-In-One Agreements Platform | &lt;a href=&quot;http://agree.com/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Agree.com&lt;/a&gt;](&lt;a href=&quot;https://agree.com/?ref=producthunt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://agree.com/?ref=producthunt&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Dictation
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://willowvoice.com/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Voice Dictation Powered by AI | Willow Voice&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;services&quot; tabindex=&quot;-1&quot;&gt;Services&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;Audible&lt;/li&gt;
&lt;li&gt;Storytel&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;wishlist&quot; tabindex=&quot;-1&quot;&gt;Wishlist&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Diagramming&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://mermaid.live/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://mermaid.live/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Reporting &amp;amp; analytics (low code)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://evidence.dev/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://evidence.dev&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://observablehq.com/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://observablehq.com/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Files&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://localsend.org/#/download&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LocalSend&lt;/a&gt; - send files locally (Airdrop alternative)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Avatar&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://rendernet.ai/?ref=producthunt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RenderNet - Create AI images with Unmatched Control&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;DB&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/drawdb-io/drawdb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GitHub - drawdb-io/drawdb: Free, simple, and intuitive online database design tool and SQL generator.&lt;/a&gt; &lt;a href=&quot;https://news.ycombinator.com/item?id=39955944&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Show HN: Online database diagram editor | Hacker News&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.rev.ai/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Speech to Text API | Speech Recognition Service&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dev&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://kusho.ai/?ref=producthunt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kusho&lt;/a&gt; - Never test your APIs manually again &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;programowanie&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://metroretro.io/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://metroretro.io&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://usabilityhub.com/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://usabilityhub.com&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;UX UI&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://pfpmaker.com/?ref=producthunt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://pfpmaker.com/?ref=producthunt&lt;/a&gt; Make an awesome profile picture from any photo&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;ai-and-amp-machine-learning&quot; tabindex=&quot;-1&quot;&gt;AI &amp;amp; Machine Learning&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.synthesia.io/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.synthesia.io&lt;/a&gt; - AI video creation platform - voice over &amp;amp; avatar&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://fireflies.ai/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://fireflies.ai&lt;/a&gt; - automate meetings notes&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://murf.ai/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://murf.ai&lt;/a&gt; - text to voice&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/openai/whisper&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://github.com/openai/whisper&lt;/a&gt; - speech to text
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;whisper &amp;quot;file&amp;quot; --model medium --language Polish&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;programming&quot; tabindex=&quot;-1&quot;&gt;Programming&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://deno.land/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://deno.land&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;system-tools&quot; tabindex=&quot;-1&quot;&gt;System tools&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://neighbor-share.vercel.app/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NeighborHoodShare: Ditch the Cloud, Share Nearby.&lt;/a&gt; AirDrop alternative&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;saa-s-alternative&quot; tabindex=&quot;-1&quot;&gt;SaaS alternative&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://jitsu.com/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Jitsu&lt;/a&gt; - Capture Event Data into Your Stack&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/FrigadeHQ/trench&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GitHub - FrigadeHQ/trench: Trench — Open-Source Analytics Infrastructure. A single production-ready Docker image built on ClickHouse, Kafka, and Node.js for tracking events, users, page views, and interactions.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://frigade.com/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Frigade – Build better in-product customer journeys.&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/tools/"/>
  </entry><entry>
    <title>productivity-hacks</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/productivity-hacks/</id>
    <content type="html">&lt;h1 id=&quot;productivity-hacks&quot; tabindex=&quot;-1&quot;&gt;Productivity hacks&lt;/h1&gt;
&lt;p&gt;If I spend most of the time in front of the screen and keyboard (8h daily x 200 days x 60 years = 96 000 hours), I can learn some quick tips &amp;amp; tricks. Why not!&lt;/p&gt;
&lt;h2 id=&quot;keyboard&quot; tabindex=&quot;-1&quot;&gt;Keyboard&lt;/h2&gt;
&lt;p&gt;The goal is to use keyboard instead of touchpad as much as possible.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Keyboard shortcuts&lt;/strong&gt;&lt;br /&gt;
Learn standard Visual Studio Code keyboard shortcuts, and use them everywhere possible, like in &lt;a href=&quot;https://github.com/timhor/obsidian-editor-shortcuts&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Obsidian&lt;/a&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;CMD+X — cut entire line.&lt;/li&gt;
&lt;li&gt;CMD+SHIFT+K - delete line.&lt;/li&gt;
&lt;li&gt;CMD+D - select current work.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Use dictation&lt;/strong&gt; whenever possible instead of typing. It can save hundreds of hours in your lifetime, probably.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Vimari for Safari:&lt;/strong&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;quot;hintToggle&amp;quot;: &amp;quot;f&amp;quot;,
&amp;quot;newTabHintToggle&amp;quot;: &amp;quot;shift+f&amp;quot;,
&amp;quot;scrollUp&amp;quot;: &amp;quot;k&amp;quot;,
&amp;quot;scrollDown&amp;quot;: &amp;quot;j&amp;quot;,
&amp;quot;scrollLeft&amp;quot;: &amp;quot;h&amp;quot;,
&amp;quot;scrollRight&amp;quot;: &amp;quot;l&amp;quot;,
&amp;quot;scrollUpHalfPage&amp;quot;: &amp;quot;u&amp;quot;,
&amp;quot;scrollDownHalfPage&amp;quot;: &amp;quot;d&amp;quot;,
&amp;quot;goToPageTop&amp;quot;: &amp;quot;g g&amp;quot;,
&amp;quot;goToPageBottom&amp;quot;: &amp;quot;shift+g&amp;quot;,
&amp;quot;goToFirstInput&amp;quot;: &amp;quot;g i&amp;quot;,
&amp;quot;goBack&amp;quot;: &amp;quot;shift+h&amp;quot;,
&amp;quot;goForward&amp;quot;: &amp;quot;shift+l&amp;quot;,
&amp;quot;reload&amp;quot;: &amp;quot;r&amp;quot;,
&amp;quot;tabForward&amp;quot;: &amp;quot;w&amp;quot;,
&amp;quot;tabBack&amp;quot;: &amp;quot;q&amp;quot;,
&amp;quot;closeTab&amp;quot;: &amp;quot;x&amp;quot;,
&amp;quot;openTab&amp;quot;: &amp;quot;t&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Raycast:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;set CMD+OPTION+1,2,3,4,5 for each app from Dock to quickly open an app&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;siri&quot; tabindex=&quot;-1&quot;&gt;Siri&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;Start a voice memo&lt;/code&gt; to quickly record thought&lt;/p&gt;
&lt;h2 id=&quot;taskbar&quot; tabindex=&quot;-1&quot;&gt;Taskbar&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://sindresorhus.com/day-progress&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Day Progress — Sindre Sorhus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;MeetingBar&lt;/li&gt;
&lt;li&gt;AutoCollapse&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;other&quot; tabindex=&quot;-1&quot;&gt;Other&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Health
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://lookaway.app/#buy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LookAway&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;personal-productivity&quot; tabindex=&quot;-1&quot;&gt;Personal Productivity&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.lennysnewsletter.com/p/time-management-techniques-that-actually&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.lennysnewsletter.com/p/time-management-techniques-that-actually&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;Use your calendar for to-dos ►  tried and didn&#39;t work for me, problem with rescheduling later and later and slots for meetings&lt;/li&gt;
&lt;li&gt;If it takes less than two minutes, just do it ► true!&lt;/li&gt;
&lt;li&gt;Keep a “waiting for” list ► true!&lt;/li&gt;
&lt;li&gt;Keep Do Not Disturb mode on ► true!&lt;/li&gt;
&lt;li&gt;Keep work async ► true!, but not always&lt;/li&gt;
&lt;li&gt;Make a rule: No meetings before as late as possible&lt;/li&gt;
&lt;li&gt;Each morning, write down just 1-3 things you have to accomplish that day ► &lt;mark&gt;have to try&lt;/mark&gt;&lt;/li&gt;
&lt;li&gt;Set up, and fiercely protect, regular deep work time ► &lt;mark&gt;have to try&lt;/mark&gt;&lt;/li&gt;
&lt;li&gt;Get a virtual assistant to take on low-impact work ►  &lt;mark&gt;have to try&lt;/mark&gt;&lt;/li&gt;
&lt;li&gt;Say no more often, even when it’s hard ►  &lt;mark&gt;have to try&lt;/mark&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Odmowa  mówienie nie&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/productivity-hacks/"/>
  </entry><entry>
    <title>now</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/now/</id>
    <content type="html">&lt;p&gt;This is &lt;a href=&quot;https://nownownow.com/about&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;a now page&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&quot;now&quot; tabindex=&quot;-1&quot;&gt;Now&lt;/h1&gt;
&lt;p&gt;Updated 2026-08-15 from my home in Poland.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Building TimeCamp - trying to get rid of my operational tasks to focus on leveraged projects&lt;/li&gt;
&lt;li&gt;Raising kids - they grow so quick...&lt;/li&gt;
&lt;li&gt;Trying to find my new way...&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/now/"/>
  </entry><entry>
    <title>amplitude</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/amplitude/</id>
    <content type="html">&lt;h1 id=&quot;how-to-implement-amplitude-in-one-day&quot; tabindex=&quot;-1&quot;&gt;How to implement Amplitude in one day?&lt;/h1&gt;
&lt;p&gt;We are using Amplute for couple of years and it&#39;s working great for us at TimeCamp. Here are details of practicies we follow.&lt;/p&gt;
&lt;h2 id=&quot;design&quot; tabindex=&quot;-1&quot;&gt;Design&lt;/h2&gt;
&lt;p&gt;Make a &lt;strong&gt;list of events&lt;/strong&gt; you want to track.&lt;br /&gt;
There should be up to 30 events at the beggining - don&#39;t create an event for every little thing, move such micro events as attributes.&lt;br /&gt;
Use consistent naming convenction for example &lt;code&gt;Time Entry Created&lt;/code&gt; .&lt;/p&gt;
&lt;p&gt;Examples:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Time Entry Created&lt;/li&gt;
&lt;li&gt;Timer Started&lt;/li&gt;
&lt;li&gt;Report Generated&lt;/li&gt;
&lt;li&gt;Task Created&lt;/li&gt;
&lt;li&gt;Account Created&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Make a &lt;strong&gt;list of user attributes&lt;/strong&gt;. (30 minutes)&lt;/p&gt;
&lt;p&gt;Examples:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Is Account Owner&lt;/li&gt;
&lt;li&gt;Account Id&lt;/li&gt;
&lt;li&gt;User Id&lt;/li&gt;
&lt;li&gt;Account Plan&lt;/li&gt;
&lt;li&gt;Country&lt;/li&gt;
&lt;li&gt;Account Role&lt;/li&gt;
&lt;li&gt;Language&lt;/li&gt;
&lt;li&gt;NPS&lt;/li&gt;
&lt;li&gt;Refferer&lt;/li&gt;
&lt;li&gt;Landing Page&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;PS. Don&#39;t include email or other user identification for GDPR pseudonymization.&lt;/p&gt;
&lt;h2 id=&quot;implement&quot; tabindex=&quot;-1&quot;&gt;Implement&lt;/h2&gt;
&lt;p&gt;When user create an account send event &lt;code&gt;Account Created&lt;/code&gt; in the backend programming language using API to Amplitude.&lt;/p&gt;
&lt;p&gt;Create a simple function in your programming language in the backend like &lt;code&gt;sendAmplitudeEvent(string name, array params, int userId)&lt;/code&gt; and trigger it for every place you want to track. It can trigger rabbitMQ or similar tasks queue, so your source code doesn&#39;t have to wait for Amplitude API response.&lt;/p&gt;
&lt;p&gt;Inside this function also update user attributes with current values. But don&#39;t do this every time you fire an event to Amplitude. Limit updating user attributes for example once per day.&lt;/p&gt;
&lt;h2 id=&quot;reporting&quot; tabindex=&quot;-1&quot;&gt;Reporting&lt;/h2&gt;
&lt;p&gt;Create master Dashboard with basic reports like:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;New free trials per day&lt;/li&gt;
&lt;li&gt;Weekly active users&lt;/li&gt;
&lt;li&gt;Top events&lt;/li&gt;
&lt;li&gt;Number of active users by plan&lt;/li&gt;
&lt;li&gt;Retention&lt;/li&gt;
&lt;li&gt;Main funnel&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/amplitude/"/>
  </entry><entry>
    <title>What is limiting people</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/what-is-limiting-people/</id>
    <content type="html">&lt;p&gt;&lt;mark&gt;WORK IN PROGRESS &amp;amp; PUBLIC&lt;/mark&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Wasting time (vs. thinking, playing, resting, building, learning)&lt;/li&gt;
&lt;li&gt;Worrying (when it&#39;s unhealthy and it&#39;s about something you can not control)&lt;/li&gt;
&lt;li&gt;Being moody (waiting for perfect moment)&lt;/li&gt;
&lt;li&gt;Fixed mindset (this is who I am, I can not change, there is no hope, black and white thinking without gray)&lt;/li&gt;
&lt;li&gt;Not searching for good feelings, inspirations, dreaming&lt;/li&gt;
&lt;li&gt;Doing things that will be like technical debt&lt;/li&gt;
&lt;li&gt;Ego&lt;/li&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/what-is-limiting-people/"/>
  </entry><entry>
    <title>US bank for startups that have EUR currency</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/us-bank-for-startups-that-have-eur-currency/</id>
    <content type="html">&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;Costs&lt;/th&gt;
&lt;th&gt;FDIC insured&lt;/th&gt;
&lt;th&gt;IBAN&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Wise&lt;/td&gt;
&lt;td&gt;Cost to send EUR wire from 0.43%&lt;/td&gt;
&lt;td&gt;Not FDIC insured&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Airwallex&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;No (funds safeguarded)&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Revolut Business&lt;/td&gt;
&lt;td&gt;0/month, 5 EUR wire transfer&lt;/td&gt;
&lt;td&gt;No (funds safeguarded)&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Truly Financial&lt;/td&gt;
&lt;td&gt;$100/month&lt;/td&gt;
&lt;td&gt;No (funds safeguarded)&lt;/td&gt;
&lt;td&gt;Yes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Requirements:&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;ul&gt;
&lt;li&gt;remote setup for non-residents&lt;/li&gt;
&lt;li&gt;integration &lt;a href=&quot;https://qbo.intuit.com/app/banking?jobId=accounting&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;with&lt;/a&gt; QuickBooks&lt;/li&gt;
&lt;li&gt;EUR account with IBAN&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Nice to have:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;FDIC insured&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Bank that DO NOT meet the cryteria:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Brex - they don&#39;t have EUR account for US companies&lt;/li&gt;
&lt;li&gt;Mercury - they don&#39;t have EUR account for US companies&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/us-bank-for-startups-that-have-eur-currency/"/>
  </entry><entry>
    <title>Thinking about life goals</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/thinking-about-life-goals/</id>
    <content type="html">&lt;p&gt;Let&#39;s start with some questions. How to write life goals? How to make them interesting and impactful and clear? How to feel better thanks to them?&lt;/p&gt;
&lt;p&gt;Life contains up to 80 years. So about 60 yearly gaols note.&lt;/p&gt;
&lt;p&gt;It would be very nice to see what I was thiking years ago about the future.&lt;br /&gt;
It would be nice to have sustinc picture about goals for current year (on one page).&lt;/p&gt;
&lt;p&gt;And I was wrong about creating those goals for current year and future years.&lt;/p&gt;
&lt;h2 id=&quot;method-1&quot; tabindex=&quot;-1&quot;&gt;Method 1&lt;/h2&gt;
&lt;p&gt;Create a note for each year. Add bullet points to current or next year (only couple of bullet points). Add bullet points to some note in the long future.&lt;/p&gt;
&lt;h2 id=&quot;method-2&quot; tabindex=&quot;-1&quot;&gt;Method 2&lt;/h2&gt;
&lt;p&gt;Create a note for each year. Add bullet points to current or next year. In the same note for current year add section &amp;quot;When I will be XX years old&amp;quot; (some distant future). You can copy this section from last year, revisit it, improve it, change it. &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn1&quot; id=&quot;fnref1&quot;&gt;[1]&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Benefits of second method is that&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I plan current year and I see long term goals&lt;/li&gt;
&lt;li&gt;Evolution tracking: Long terms goal evolve. See how your vision of &amp;quot;age XX&amp;quot; changes over time. Understand your growth and changing priorities.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Method 2 is superior&lt;/strong&gt; because it creates a living document that captures both your current intentions and evolving long-term vision, making your goals more meaningful and your future self more grateful for the insight into past thinking.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# 2025 Goals

## This Year&#39;s Focus
- [3-5 key goals with specific outcomes]

## When I&#39;m 45 (2035)
- [Copy from last year, then revise]
- [Note what changed and why]
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;PS. Types of goals&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;one time events (build a house, have 2 weeks retreat)&lt;/li&gt;
&lt;li&gt;habits (meditate 200 times a year)&lt;/li&gt;
&lt;li&gt;feelings (peace, happy atmospehe at home)&lt;/li&gt;
&lt;li&gt;learnings&lt;/li&gt;
&lt;/ul&gt;
&lt;hr class=&quot;footnotes-sep&quot; /&gt;
&lt;section class=&quot;footnotes&quot;&gt;
&lt;ol class=&quot;footnotes-list&quot;&gt;
&lt;li id=&quot;fn1&quot; class=&quot;footnote-item&quot;&gt;&lt;p&gt;Currently I write what I would like to have in life when I will be 50+ years old (I&#39;m 37). &lt;a href=&quot;https://kamilrudnicki.com/#fnref1&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;
</content>
    <link href="https://kamilrudnicki.com/thinking-about-life-goals/"/>
  </entry><entry>
    <title>MacOS Productivity</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/mac-os-productivity/</id>
    <content type="html">&lt;h1 id=&quot;apps-and-amp-configuration&quot; tabindex=&quot;-1&quot;&gt;Apps &amp;amp; Configuration&lt;/h1&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install voiceink
brew install timecamp
brew install tunnelblick
brew install obsidian
brew install meetingbar
brew install modern-csv
brew install cyberduck
brew install pritunl
brew install jan
brew install figma
brew install git
brew install node
brew install zsh
brew install pipx
brew install ffmpeg
brew install slack
brew install --cask transmission
brew install --cask whatsapp
brew install &amp;quot;zsh-autosuggestions&amp;quot;
brew install &amp;quot;zsh-completions&amp;quot;
brew install &amp;quot;zsh-syntax-highlighting&amp;quot;
brew install &amp;quot;zsh-autocomplete&amp;quot;
brew install google-cloud-sdk
brew install localsend
brew install cursor
brew install raycast
brew install google-chrome
brew install postman
brew install imageoptim
brew install bitwarden
brew install docker
brew install zoom
brew install ngrok
brew install clickhouse
brew install duckdb
brew install tableplus
brew install tailscale
brew install the-unarchiver
brew install typescript
brew install --no-quarantine glance-chamburr
brew install poedit
brew install anydesk
brew install uv
brew install sqlite
brew install discord
brew install cyberghost-vpn
# to change default app in Finder (see commands below)
brew install duti 
# to see yaml as text file in Finder (qlmanage -r to apply)
brew install highlight
# better CMD-TAB
brew install contexts
# macos uses pico
brew install nano

&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#oh-my-zsh&quot;&gt;#oh-my-zsh&lt;/a&gt;
sh -c &amp;quot;$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)&amp;quot;

# Smaller gap in taskbar
defaults -currentHost write -globalDomain NSStatusItemSpacing -int 8 
# Show the path bar in the Finder
defaults write com.apple.finder &amp;quot;ShowPathbar&amp;quot; -bool &amp;quot;true&amp;quot; &amp;amp;&amp;amp; killall Finder 
# Keep folders on top in Finder
defaults write com.apple.finder &amp;quot;_FXSortFoldersFirst&amp;quot; -bool &amp;quot;true&amp;quot; &amp;amp;&amp;amp; killall Finder 
# Keep folders on top on Desktop
defaults write com.apple.finder &amp;quot;_FXSortFoldersFirstOnDesktop&amp;quot; -bool &amp;quot;true&amp;quot; &amp;amp;&amp;amp; killall Finder
# Three finger drag using trackpad 
defaults -currentHost write NSGlobalDomain com.apple.trackpad.threeFingerSwipeGesture -int 1 
# Prefer tabs
defaults write -g AppleWindowTabbingMode -string always
# Use list view in all Finder windows by default
# Four-letter codes for the other view modes: `icnv`, `clmv`, `glyv`
defaults write com.apple.finder FXPreferredViewStyle -string &amp;quot;Nlsv&amp;quot;
# Disable the warning before emptying the Trash
defaults write com.apple.finder WarnOnEmptyTrash -bool false
# Expand the following File Info panes:
# “General”, “Open with”, and “Sharing &amp;amp; Permissions”
defaults write com.apple.finder FXInfoPanesExpanded -dict &#92;
        General -bool true &#92;
        OpenWith -bool true &#92; 
# Other
defaults write com.apple.dock autohide -bool true
defaults write com.apple.AppleMultitouchTrackpad Clicking -bool true
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
defaults write com.apple.finder ShowPathbar -bool true
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
defaults write com.apple.finder _FXSortFoldersFirst -bool true
defaults write com.apple.finder FXDefaultSearchScope -string &amp;quot;SCcf&amp;quot;
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false

# Dev
npm install -g appdmg
brew install php
brew install gh
gh auth login
git config --global user.name &amp;quot;Kamil Rudnicki&amp;quot;
git config --global user.email &amp;quot;your.email@example.com&amp;quot;
brew install --cask sf-symbols

# Change default apps
mdls -name kMDItemCFBundleIdentifier -r /Applications/Cursor.app
duti -s com.todesktop.230313mzl4w4u92 public.yaml all
duti -s com.todesktop.230313mzl4w4u92 public.json all
duti -s com.todesktop.230313mzl4w4u92 .log all
duti -s com.todesktop.230313mzl4w4u92 .md all

# nano
nano -V
echo &#39;include &amp;quot;/opt/homebrew/Cellar/nano/NANO_VERSION_NUMBER/share/nano/*.nanorc&amp;quot;&#39;&amp;gt;&amp;gt; ~/.nanorc

# .zshrc
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source /opt/homebrew/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
export PATH=&amp;quot;$PATH:/Users/kamil/.local/bin&amp;quot;
alias python=&#39;python3&#39;
alias pip=&#39;pip3&#39;
alias nano=&#39;/opt/homebrew/bin/nano&#39;
export EDITOR=&amp;quot;/opt/homebrew/bin/nano&amp;quot;
export VISUAL=&amp;quot;$EDITOR&amp;quot;

# .ssh/config 
nano ~/.ssh/config 
Host *
  UseKeychain yes

# No longer used
# brew install jordanbaird-ice
# brew install transmission
# brew install iina
# brew install qlmarkdowno
&lt;/code&gt;&lt;/pre&gt;
&lt;h1 id=&quot;python&quot; tabindex=&quot;-1&quot;&gt;Python&lt;/h1&gt;
&lt;pre&gt;&lt;code class=&quot;language-sh&quot;&gt;# install using brew

# Initialize project
uv init

# Add dependencies from requirements.txt
uv add -r requirements.txt

# Run your script
uv run python script.py
uv run script.py
&lt;/code&gt;&lt;/pre&gt;
&lt;h1 id=&quot;useful-commands&quot; tabindex=&quot;-1&quot;&gt;Useful commands&lt;/h1&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;cat ~/.ssh/id_rsa.pub | pbcopy # Copy public key
system_profiler SPPowerDataType | grep -i &amp;quot;Wattage&amp;quot; # Get power adapter W
&lt;/code&gt;&lt;/pre&gt;
&lt;h1 id=&quot;disk-space&quot; tabindex=&quot;-1&quot;&gt;Disk space&lt;/h1&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;brew install --cask grandperspective

rm -rf ~/.bun/install/cache
rm -rf ~/Developer/time-tracker/electron-app/out
rm -rf ~/Library/Application Support/Slack/Cache
rm -rf ~/jan
uv cache clean
npm cache clean --force
brew cleanup

# CRONTAB
36 * * * * uv cache clean &amp;gt;/dev/null 2&amp;gt;&amp;amp;1
38 * * * * npm cache clean --force &amp;gt;/dev/null 2&amp;gt;&amp;amp;1
&lt;/code&gt;&lt;/pre&gt;
&lt;h1 id=&quot;data-exploration&quot; tabindex=&quot;-1&quot;&gt;Data exploration&lt;/h1&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;clickhouse local --query &amp;quot;DESCRIBE file(&#39;*.parquet&#39;, &#39;Parquet&#39;)&amp;quot;
clickhouse local --query &amp;quot;SELECT * FROM file(&#39;*.parquet&#39;, &#39;Parquet&#39;) LIMIT 10&amp;quot;
duckdb -c &amp;quot;SELECT * FROM &#39;*.parquet.gz&#39; LIMIT 500;&amp;quot; | cat
&lt;/code&gt;&lt;/pre&gt;
&lt;h1 id=&quot;non-obvious-keyboard-shortcuts&quot; tabindex=&quot;-1&quot;&gt;Non-obvious Keyboard Shortcuts&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;ctrl-a &amp;amp; FN+left arrow&lt;/strong&gt; to move to the beginning of a line&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ctrl-e &amp;amp; FN+right arrow&lt;/strong&gt; to move to the end of a line.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;cmd-delete&lt;/strong&gt; to delete entire line of text behind cursor.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ctrl-k&lt;/strong&gt; to “kill” an entire line&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ctrl-y&lt;/strong&gt; to “yank” it back&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;option-delete&lt;/strong&gt; delete word before&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ctrl-o&lt;/strong&gt; add new line&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Delete Word Behind Cursor  ⌥⇧←&lt;/strong&gt; Delete&lt;/li&gt;
&lt;li&gt;Jump to** **Beginning of Line  ⌘←&lt;/li&gt;
&lt;li&gt;So, that&#39;s basically ing &lt;code&gt;Cmd+C&lt;/code&gt; for the files you want to cut and then &lt;code&gt;Cmd+Opt+V&lt;/code&gt; in the folder you want to paste to&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://support.apple.com/en-hk/HT201236&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://support.apple.com/en-hk/HT201236&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://macautomationtips.com/how-to-type-faster-with-keyboard-maestro/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://macautomationtips.com/how-to-type-faster-with-keyboard-maestro/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;RAYCAST:
Hyper + 2: mute/unmute microphone
Hyper + 7: Calendar
Hyper + X: Google Chat
Hyper + C: Google Chrome
Hyper + M: Messages
Hyper + O: Obsidian
Hyper + T: TablePlus
Hyper + D: Developer (Cursor)
Hyper + E: Email
&lt;/code&gt;&lt;/pre&gt;
&lt;h1 id=&quot;apple-shortcuts&quot; tabindex=&quot;-1&quot;&gt;Apple Shortcuts&lt;/h1&gt;
&lt;h3 id=&quot;start-time-camp-timer&quot; tabindex=&quot;-1&quot;&gt;Start TimeCamp Timer&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://kamilrudnicki.com/img/user/archive/assets/Screenshot%202023-01-29%20at%2021.42.53.png&quot; alt=&quot;Screenshot 2023-01-29 at 21.42.53.png300&quot; width=&quot;300px&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Start &amp;amp; stop TimeCamp timer using Siri, whenever you are.&lt;/p&gt;
&lt;p&gt;Quickly start TimeCamp timer (also using Siri) with a provided note.&lt;br /&gt;
If any timer is running it will be stopped automatically.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Start timer with text input: &lt;a href=&quot;https://www.icloud.com/shortcuts/da937b08791447848fcb9e22a2d08d0b&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.icloud.com/shortcuts/da937b08791447848fcb9e22a2d08d0b&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Start timer with dictation: &lt;a href=&quot;https://www.icloud.com/shortcuts/e4fa4e2d5a8f43759b6b6e23a995b631&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.icloud.com/shortcuts/e4fa4e2d5a8f43759b6b6e23a995b631&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Stop timer: &lt;a href=&quot;https://www.icloud.com/shortcuts/defe0a28a16f498d88e5c91dc6894fec&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.icloud.com/shortcuts/defe0a28a16f498d88e5c91dc6894fec&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;transcribe-voice-memo-for-free-using-open-ai-whisper-on-mac-os-shortcuts&quot; tabindex=&quot;-1&quot;&gt;Transcribe Voice Memo for Free Using OpenAI Whisper on MacOS Shortcuts&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://kamilrudnicki.com/img/user/archive/assets/Pasted%20image%2020230128154250.png&quot; alt=&quot;Pasted image 20230128154250.png400&quot; width=&quot;400px&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Download Apple Shortcut:&lt;br /&gt;
&lt;a href=&quot;https://www.icloud.com/shortcuts/c1c96414530c4b9588b4ece3ca0d5316&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.icloud.com/shortcuts/c1c96414530c4b9588b4ece3ca0d5316&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You have to install Whisper (&lt;a href=&quot;https://github.com/openai/whisper&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://github.com/openai/whisper&lt;/a&gt;) on your MacOS first.&lt;/p&gt;
&lt;p&gt;Example tutorials:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/openai/whisper/discussions/403&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://github.com/openai/whisper/discussions/403&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.assemblyai.com/blog/how-to-run-openais-whisper-speech-recognition-model/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.assemblyai.com/blog/how-to-run-openais-whisper-speech-recognition-model/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/mac-os-productivity/"/>
  </entry><entry>
    <title>I tracked every hour in 2024 as TimeCamp CEO and here are the results</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/i-tracked-every-hour-in-2024-as-time-camp-ceo-and-here-are-the-results/</id>
    <content type="html">&lt;blockquote&gt;
&lt;p&gt;“There are constant pressures toward unproductive and wasteful time-use.”&lt;br /&gt;
– Peter Drucker, The Effective Executive, 1967&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;tldr&quot; tabindex=&quot;-1&quot;&gt;TLDR&lt;/h3&gt;
&lt;p&gt;I tracked all my time for a year (5995h, without sleep) using a calendar into 15 types of activities. I&#39;m pretty happy about my time allocation. But have some insights about relocating time...&lt;/p&gt;
&lt;h3 id=&quot;why-i-started-time-tracking&quot; tabindex=&quot;-1&quot;&gt;Why I Started Time Tracking&lt;/h3&gt;
&lt;p&gt;As the CEO of TimeCamp, a time tracking software company, I wanted to practice and gain deeper insights into my own productivity patterns. I was curious: where does my time actually go each day?&lt;/p&gt;
&lt;h3 id=&quot;my-time-tracking-method&quot; tabindex=&quot;-1&quot;&gt;My Time Tracking Method&lt;/h3&gt;
&lt;p&gt;After some experimentation, I found a system that worked for me:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I used Google Calendar and Apple Calendar rather than real-time timers (which I found created too much cognitive load in my case)&lt;/li&gt;
&lt;li&gt;I updated my calendar a few times daily, using 15-minute increments&lt;/li&gt;
&lt;li&gt;I integrated TimeCamp computer usage tracking as iCal into Apple Calendar to help remember what I was doing when I forgot: the integration filled out my calendar with the time blocks representing apps/sites I was using&lt;/li&gt;
&lt;li&gt;The entire process took me less than 5 minutes per day&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This approach worked because I already lived in my weekly calendar, making it easy to visually see where my time was going. The TimeCamp integration automatically copied my calendar to my timesheet and assigned tasks based on automations I’ve created.&lt;/p&gt;
&lt;h3 id=&quot;what-are-the-categories&quot; tabindex=&quot;-1&quot;&gt;What are the categories?&lt;/h3&gt;
&lt;p&gt;After researching time tracking methods and analyzing posts in the r/dataisbeautiful subreddit, I settled on these categories:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Work&lt;/li&gt;
&lt;li&gt;Kids&lt;/li&gt;
&lt;li&gt;Morning routine (getting up, getting kids ready, etc)&lt;/li&gt;
&lt;li&gt;Personal tasks (personal tasks or hobby)&lt;/li&gt;
&lt;li&gt;Waste (useless scrolling, cheap dopamine)&lt;/li&gt;
&lt;li&gt;Chores&lt;/li&gt;
&lt;li&gt;Other&lt;/li&gt;
&lt;li&gt;Travelling&lt;/li&gt;
&lt;li&gt;Relaxation&lt;/li&gt;
&lt;li&gt;Home projects&lt;/li&gt;
&lt;li&gt;Family&lt;/li&gt;
&lt;li&gt;Sick&lt;/li&gt;
&lt;li&gt;Eating&lt;/li&gt;
&lt;li&gt;Education&lt;/li&gt;
&lt;li&gt;Meditation (I&#39;m doing Vipassana meditation)&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&quot;key-insights-from-my-time-tracking&quot; tabindex=&quot;-1&quot;&gt;Key Insights from My Time Tracking&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://lh7-rt.googleusercontent.com/docsz/AD_4nXecA89QUofh0qI-JCfViVWu_uR93w4Pu0Uh78gVgx32QHwKHisSs9tGeNgJ0VTI5cVlxu0cfpDifqFPgm5brfO17laMqmx-Tepr81TwvhtYcn6Wh2-Hx0I7cVhAGDfujQlMmseM?key=qkK8udMsKP4bLG3BcyAtLg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Generally, I&#39;m pleased with my time allocation, but I discovered some areas for improvement:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Having to enter activities in the &amp;quot;waste&amp;quot; category made me more conscious about reducing unproductive time&lt;/li&gt;
&lt;li&gt;The app Clearspace helped me significantly reduce cheap dopamine-seeking behaviors&lt;/li&gt;
&lt;li&gt;I identified an opportunity to redirect hundreds of hours from &amp;quot;waste,&amp;quot; &amp;quot;morning routine,&amp;quot; and &amp;quot;chores&amp;quot; categories into more meaningful areas like &amp;quot;kids,&amp;quot; &amp;quot;relaxation,&amp;quot; and &amp;quot;spirituality&amp;quot;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;tools-i-created&quot; tabindex=&quot;-1&quot;&gt;Tools I Created&lt;/h3&gt;
&lt;p&gt;To help analyze my data, I created a small Chrome Plugin that cleans up Google Calendar data and generates statistics. You can find it on &lt;a href=&quot;https://github.com/timecamp-org/good-enough-time-review&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GitHub&lt;/a&gt; and &lt;a href=&quot;https://chromewebstore.google.com/detail/calendar-events-analyzer/glhidlfodbkohjaohmhojhepkhehciaa&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Chrome Plugin Marketplace&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;full-reports&quot; tabindex=&quot;-1&quot;&gt;Full Reports&lt;/h3&gt;
&lt;p&gt;For those interested in the complete breakdown:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://drive.google.com/file/d/1MWtMTlSBr5OxwSDJVmJsKjH5Wrmd48iY/view?usp=sharing&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Open full report in PDF&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://drive.google.com/file/d/1RTcNfaFhWncbr4Cw8ojdvop202ypFO3i/view?usp=sharing&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Open full report in PNG&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;bonus-my-top-computer-apps-and-amp-websites&quot; tabindex=&quot;-1&quot;&gt;Bonus: My Top Computer Apps &amp;amp; Websites&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://lh7-rt.googleusercontent.com/docsz/AD_4nXfbSdYN7jq2nJoxW0BSEPQQK6qU8OU5Q0Ld7BI3W6ieqDroea9n1uEzNAlKkpyW1fj7uoeGoUbHXv7VCp-cQbz9NFnCmYEMwqNa6TkQKE4OTrC1MxglW_qDtH-kw7gITAkIzfj8WQ?key=qkK8udMsKP4bLG3BcyAtLg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Data source: TimeCamp usage tracking, 2024&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/i-tracked-every-hour-in-2024-as-time-camp-ceo-and-here-are-the-results/"/>
  </entry><entry>
    <title>How I use TimeCamp time tracking software?</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/how-i-use-time-camp-time-tracking-software/</id>
    <content type="html">&lt;h1 id=&quot;how-i-use-time-camp-time-tracking-software&quot; tabindex=&quot;-1&quot;&gt;How I use TimeCamp time tracking software&lt;/h1&gt;
&lt;p&gt;Time is my most precious asset I have. I logged all my computer activities since 2009.&lt;/p&gt;
&lt;h2 id=&quot;starting-2023&quot; tabindex=&quot;-1&quot;&gt;Starting 2023&lt;/h2&gt;
&lt;h3 id=&quot;i-use-several-methods-to-track-time&quot; tabindex=&quot;-1&quot;&gt;I use several methods to track time&lt;/h3&gt;
&lt;p&gt;I&#39;m using timer. At the end of the day and week I fix the issues on my timesheet. As sometime I forget to switch the timer.&lt;/p&gt;
&lt;p&gt;I use those methods&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Apple Watch - very quick to switch timer!&lt;/li&gt;
&lt;li&gt;Siri Shortcut&lt;/li&gt;
&lt;li&gt;Apple Shortcut&lt;/li&gt;
&lt;li&gt;Calendar Timesheet - I see where my time goes at a glance, where are issues on my timesheet&lt;/li&gt;
&lt;li&gt;Desktop App&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;personally-i-track-time-to-several-categories&quot; tabindex=&quot;-1&quot;&gt;Personally I track time to several categories&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Sleep&lt;/li&gt;
&lt;li&gt;Work&lt;/li&gt;
&lt;li&gt;Family and Friends&lt;/li&gt;
&lt;li&gt;Productive and Health&lt;/li&gt;
&lt;li&gt;Waste&lt;/li&gt;
&lt;li&gt;Relaxation and Leisure&lt;/li&gt;
&lt;li&gt;Hobbies and Skills&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://kamilrudnicki.com/img/user/archive/assets/Pasted%20image%2020230220074016.png&quot; alt=&quot;Pasted image 20230220074016.png600&quot; width=&quot;600px&quot; /&gt;&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/how-i-use-time-camp-time-tracking-software/"/>
  </entry><entry>
    <title>2025-05</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/searchable-messy-knowledge/months/2025-05/</id>
    <content type="html">&lt;h1 id=&quot;from-reluctant-founder-to-2-b-valuation-the-story-of-persona-rick-song-co-founder-and-ceo&quot; tabindex=&quot;-1&quot;&gt;✅ From reluctant founder to $2B valuation: The story of Persona | Rick Song (Co-founder and CEO)&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://podcasts.apple.com/pl/podcast/in-depth/id1535886300?i=1000706833531&amp;amp;r=2725&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;From reluctant founder to $2B …–In Depth – Apple Podcasts&lt;/a&gt;&lt;br /&gt;
&lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;attributes of good businesses&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Summary&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Core believe that founder always have to be engaged in sales. Always understand what what customers problems are. Translate those into product. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;founder-led-sales&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;customer discovery&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Consultative type of selling and SaaS. He spoke very interestingly about how, in order to sell his product, he actually offered a custom software development service tailored to the client&#39;s needs. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;enterprise&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;sales&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;strategy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;There are three types of businesses: 1. brand new technology (Cursor) 2. compete against giant (Figma, Notion) 3. Legacy space out-execute &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;strategy&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;new business&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Clay their overnight success actually took six years of constant iteration, product discovery, and technological/cultural foundation-building before they suddenly found product-market fit &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;customer discovery&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;“It seems like one of the dreams in building a software business is if you can be your customer&#39;s trusted confidant in and around your space and that they&#39;re constantly coming, when they think of a problem, they think of coming to you with that problem and that&#39;s sort of how you get NRR that&#39;s sort of top in class, I think. I think that&#39;s definitely the dream, but I think in practice, the hardest part of that is the connection back to engineering and product and design, like the culture to support such a thing. Cause like, if a customer comes to you and they&#39;re like, hey, this is a burning problem. Effectively, what that means is yeah, the roadmap we had, ignore that, that&#39;s gone, right?”&lt;/p&gt;
&lt;p&gt;“And those three categories is either number one, it&#39;s a brand new technology, and you&#39;re going to just compete with every other company trying to figure out how to like, you know, like, you know, take advantage of this technology. I mean, AI was this, there was blockchain prior to that. And I mean, for AI, there are so no matter how you look at an application of agent, no matter how insane, there is someone else also doing it. And they are just as eager, just as excited, working just as hard. I mean, I hear how hard some of these AI companies are working now. And it&#39;s crazy. I mean, they are, it is so, so, so competitive. And you see all of them kind of going at it. We saw the same kind of emerging blockchains. There&#39;s so much talent. The second kind of category, I think, that you have to go down. Figma is my favorite example of this. It&#39;s a company in which you effectively compete against a giant that just, it seems insane to compete against that giant. To me, it would be like saying, I&#39;m going to redo Google Docs or beat Microsoft their own game. And there are a couple of companies that have that.&lt;br /&gt;
Notion&#39;s done that, Figma&#39;s done that, in which it&#39;s a huge up-front investment. And you&#39;re going to go on that journey and believe that with your under-resourced kind of product, you will be able to eventually take on something that has infinite more resources than you. And that&#39;s a really tough game because I think it&#39;s like, usually those type of products, it requires like four or five here, kind of like heads down, sabbatical kind of thing. You&#39;ll go at it. I think the third category is the category we&#39;re in, which is a legacy space in which there&#39;s a bunch of competitors, so many competitors. Everyone&#39;s still been at it for a long time and you will out execute. But the underlying theme for all of these, the execution has become more important than ever and it&#39;s not so much about like idea discovery or like untapped market discovery anymore. It&#39;s just a question of pick your poison on how difficult it will be, but I think every space now is really challenging.&lt;/p&gt;
&lt;p&gt;What does execution mean? Like, I feel like it&#39;s a[…]”&lt;/p&gt;
&lt;p&gt;“So I met with Kareem from Clay yesterday and we both isolate on one thing because I actually asked him for some advice too because I think Kareem&#39;s journey is truly, truly incredible. And like, you know, just to give a recap of it, Clay, I mean, right before we were talking, like they didn&#39;t start off with the product they have now. And unlike for many other startups, they went through constant iteration, a lot of discovery before they finally, like just overnight found like the fit and it all worked out. But like even all the technology, there are a lot of things they built plus like the cultural learnings and everything that took, I mean, six years plus probably like laid a foundation there. When I asked Kareem at that point, like, don&#39;t you get through it? Like that seems insane.”&lt;/p&gt;
&lt;h1 id=&quot;focus-is-the-ultimate-growth-lever&quot; tabindex=&quot;-1&quot;&gt;✅ Focus is the ultimate growth lever&lt;/h1&gt;
&lt;p&gt;&lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;focus&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;growth&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;strategy&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;attributes of good businesses&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://kamilrudnicki.com/img/user/archive/assets/Screenshot%202025-05-10%20at%2019.32.33.png&quot; alt=&quot;Screenshot 2025-05-10 at 19.32.33.png400&quot; width=&quot;400px&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Deep research on the topic: &lt;a href=&quot;https://chatgpt.com/share/68204f57-5804-8002-b3f4-7dff2b58ebae&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ChatGPT - Focus as Growth Lever&lt;/a&gt;&lt;/p&gt;
&lt;h1 id=&quot;from-lenny-s-podcast-product-growth-career-how-have-i-been-complicit-in-creating-the-conditions-i-say-i-don-t-want-jerry-colonna-ceo-of-reboot-executive-coach-former-vc-may-8-2025&quot; tabindex=&quot;-1&quot;&gt;✅ From Lenny&#39;s Podcast: Product | Growth | Career: How have I been complicit in creating the conditions I say I don’t want? | Jerry Colonna (CEO of Reboot, executive coach, former VC), May 8, 2025&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://podcasts.apple.com/pl/podcast/lennys-podcast-product-growth-career/id1627920305?i=1000706795176&amp;amp;r=1061&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://podcasts.apple.com/pl/podcast/lennys-podcast-product-growth-career/id1627920305?i=1000706795176&amp;amp;r=1061&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;“So let&#39;s take a step back. The fear is, if I can reflect back to your original question, the fear is, if I go there, I don&#39;t know what&#39;s going to happen as a consequence of that. Right?&lt;/p&gt;
&lt;p&gt;If I pause and ask myself, is this relationship working out for me? I might end up leaving this relationship. If I pause and ask myself, if this career isn&#39;t working for me, I might leave my career.&lt;/p&gt;
&lt;p&gt;And the good news, bad news is, that&#39;s true. That is absolutely true. And if we look at some of the other observations we were making before, like anxiety and depression, we have this belief system that if I pay no attention to the thing that I&#39;m afraid of, it&#39;s somehow going to magically go away. If we pay no attention to the source of discomfort, it&#39;s somehow going to go away. And that&#39;s not actually how life works. More often than not, what we do is we respond to the source of challenge, whether it&#39;s discomfort in our relationship, whether it&#39;s a discomfort in the way my life has unfolded.”  &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;wellbeeing&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;strach&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;dyskomfort&lt;/a&gt;&lt;/p&gt;
&lt;h1 id=&quot;442-prodoscore-creating-a-new-saa-s-category-no-one-asked-for-with-sam-naficy&quot; tabindex=&quot;-1&quot;&gt;✅ 442: Prodoscore: Creating a New SaaS Category No One Asked For - with Sam Naficy&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://podcasts.apple.com/pl/podcast/the-saas-podcast-saas-startups-growth-hacking/id916927819?i=1000706799595&amp;amp;r=716&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;442: Prodoscore: Creating a Ne…–The SaaS Podcast - SaaS, Startups, Growth Hacking &amp;amp; Entrepreneurship – Apple Podcasts&lt;/a&gt;&lt;br /&gt;
&lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;case study&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Narrow ICP &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;focus&lt;/a&gt; (his previous business as an example)&lt;/li&gt;
&lt;li&gt;Selling by telling stories &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;sales&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;story&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;sprzedaż&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;For C-suite send weekly reports &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zarządzanie menadżerami&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;They have all standard marketing/sales - SEO, outbound, cold calls, content marketing, PR &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;go to market&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Employee engagement/disagement - attraction risk - We are able 90 days before employee with 90% certainty they will exit
&lt;ul&gt;
&lt;li&gt;Burnout&lt;/li&gt;
&lt;li&gt;Checkout&lt;/li&gt;
&lt;li&gt;We are able 90 days before employee with 90% certaintinty they will attrite&lt;/li&gt;
&lt;li&gt;To potencial attriction (leaving, or other thing like child is sick) - motivate engage or exit him&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We do none of that. And that was Chris&#39; brilliance, our founders&#39; brilliance, was that this has nothing to do with clicks and big brother and surveillance. We&#39;re only capturing the APIs of cloud tools. If you&#39;ve got Spotify in the background and listening to music, we don&#39;t care, right? If you&#39;ve got a YouTube channel and you&#39;re meditating, none of our business. We&#39;re only capturing data that is consigned to your corporate email.&lt;/p&gt;
&lt;p&gt;So I see what Sam does. I have, when I wake up in the morning, I have in my dashboard AI driven indicated actions for my day. How do I work my day to day to be more productive? How do I compare to my peers in the exact same role? So we bucket employees in the same exact peer group, sales, marketing, customer success, developers, engineers, and we compare them against their peers and give them next indicated actions of how they can improve.&lt;/p&gt;
&lt;p&gt;Look at its base, it provided simple visibility to what the employees were doing, right? Visibility into, remember, we&#39;re connecting through the APIs, we&#39;re capturing all the activity in email, Slack, CRM, calendar, chat, LinkedIn Navigator, DocuSign, very, very basic stuff. And what has evolved, I mean, the transformation of the product in the last 12 months has been remarkable, let alone the last three years. Part of it is just the AI engine we&#39;ve built and large language models that are curated and specific[…]”&lt;/p&gt;
&lt;p&gt;But at the same time, what was the reaction from employees with those early customers? Because it feels like, whether they understand it or not, it feels like there&#39;s some kind of surveillance going on. And employees can be very good at sabotaging new projects if they really want to, right?&lt;br /&gt;
So, what was the reaction and was it overall neutral, positive, negative?&lt;br /&gt;
Absolutely. Initially, there was pushback. There was pushback from the employees concerned that this is Big Brother, this is surveillance.&lt;br /&gt;
And again, I go back 20 years ago, 25 years ago, to that young little young Sam of 27 years old, however old I was. I remember vividly, vividly, employees pushing back, franchisees and owners of these restaurants coming to us and say, oh my God, I can&#39;t do this. I love my employees.”&lt;/p&gt;
&lt;p&gt;My cousin works here. My uncle works here. Don&#39;t bother us. And that story changed. If we are able to save the employee from an issue. So, this was our story, for example, and this obviously presented itself. If a customer comes in and gives you a $20 bill and demands $100 in change, starts screaming at the employee, right? Well, you have video analytics around that. The employee is exonerated there, right? The employee and that those kinds of stories became the groundswell that the next year when we went to a conference, franchisees would run to us. We need this. I&#39;m opening two new stores immediately.&lt;/p&gt;
&lt;p&gt;We went from zero customers to 90,000 locations. Subway worldwide deployed the solution. Worldwide, every store around the world.”&lt;/p&gt;
&lt;p&gt;If we can empower employees to make the most out of their day and for themselves and for the employer, why not have a win-win? And I&#39;ll end with this. &lt;strong&gt;Our motto is this, provide flexibility with accountability.&lt;/strong&gt; If we&#39;re allowing a hybrid remote workforce and allowing the employee to be at home at a Starbucks or whatever venue they choose, hey, we&#39;ll give you that flexibility. Give me some accountability. What better way to have that win-win solution and dynamic than a tool like Prodoscore?”&lt;/p&gt;
&lt;p&gt;C-suite is most likely not going to be in the product. What we do for the C-suite is provide a weekly report. In that summary report says these seven people are at risk of attrition. These six people are not using the cloud tools. We are spending $1200 a month for each employee.&lt;/p&gt;
&lt;p&gt;These six people are on excessive meetings. For example, I want my inside salespeople to have 90 percent of their meetings externally. If my inside salespeople have half their meetings internal, there is a problem, my friend. They&#39;re not selling. I don&#39;t want them to be on calls with marketing and with customer success. They got to do outbound. So we provided those and highlight those for the C-suite. So that&#39;s how we kind of bifurcate the utility of the product because as you said, it could be overwhelming. Overwhelming, right?&lt;/p&gt;
&lt;h1 id=&quot;from-the-diary-of-a-ceo-with-steven-bartlett-former-fbi-agent-if-they-do-this-please-run-narcissists-favourite-trick-to-control-you-they-re-controlling-you-like-a-puppet-apr-21-2025&quot; tabindex=&quot;-1&quot;&gt;✅  From The Diary Of A CEO with Steven Bartlett: Former FBI Agent: If They Do This Please RUN! Narcissists Favourite Trick To Control You! They&#39;re Controlling You Like A Puppet!, Apr 21, 2025&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://podcasts.apple.com/pl/podcast/the-diary-of-a-ceo-with-steven-bartlett/id1291423644?i=1000704265044&amp;amp;r=5340&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://podcasts.apple.com/pl/podcast/the-diary-of-a-ceo-with-steven-bartlett/id1291423644?i=1000704265044&amp;amp;r=5340&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;“And the minute you can be confident about one thing, now you can be confident about two things. And then you can be confident about three things. Is this nonsense that I often see people say, well, just come in and be confident?&lt;br /&gt;
I think that&#39;s nonsense. I think you have to learn, and your physiology has to learn to be confident about one thing. With me, I was confident in playing football.” &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;confidence&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;“The other one was about your voice. Use a deeper voice and do not rise at the end of the sentence as if it&#39;s a question. Right. Let me talk about those. Don&#39;t try to reinvent what&#39;s successful. A confident person doesn&#39;t have to talk fast and doesn&#39;t talk high. I remember the first arrest I made and I said, stop, this is the FBI. My voice was, nobody was going to stop. Nobody. The guys that were with me said, Joe, you got to work on your voice. You have to have a command voice. &lt;strong&gt;Well, a command voice is down.&lt;/strong&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;voice&lt;/a&gt;&lt;/p&gt;
&lt;h1 id=&quot;from-philosophize-this-episode-048-adam-smith-pt-1-specialization-jan-18-2015&quot; tabindex=&quot;-1&quot;&gt;✅ From Philosophize This!: Episode &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#048&quot;&gt;#048&lt;/a&gt; ... Adam Smith pt. 1 - Specialization, Jan 18, 2015&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://podcasts.apple.com/pl/podcast/philosophize-this/id659155419?i=1000332505932&amp;amp;r=1290&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://podcasts.apple.com/pl/podcast/philosophize-this/id659155419?i=1000332505932&amp;amp;r=1290&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Self-interest and specilization ► we are living like kings, even better. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;philosophy&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;economy&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;psychology&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;“Consider for a second just how incredible it is that not only do we get a better product in 2015, but these professional athletes aren&#39;t doing this job because I&#39;m a king and they&#39;re forced to, or because they&#39;re altruistic, you know, they&#39;re competing because they&#39;re just a bunch of nice guys that want society to have something to entertain themselves with. We don&#39;t have to wait around for any of that. They do it because it&#39;s in their own self-interest to give everything that they have in this area that they specialize in. By the way, this applies to everything that I mentioned in that long-winded example to the bartender that day. Cars, buildings, light fixtures, chef-prepared food, bar stools, TVs, entertainment channels, TV shows, and yes, even sports stars on those TV shows. Consider that just a few short generations ago, people would look at what we have at our fingertips on a daily basis, and it would be difficult for them not to think of us as god kings. That is pretty incredible. &lt;mark&gt;And it&#39;s only possible because of things like specialization and these self-interested bargains that we make with each other as...”&lt;/mark&gt;&lt;/p&gt;
&lt;h1 id=&quot;from-the-tim-ferriss-show-810-terry-real-the-therapist-who-breaks-all-the-rules-may-8-2025&quot; tabindex=&quot;-1&quot;&gt;From The Tim Ferriss Show: &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#810&quot;&gt;#810&lt;/a&gt;: Terry Real — The Therapist Who Breaks All The Rules, May 8, 2025&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://podcasts.apple.com/pl/podcast/the-tim-ferriss-show/id863897795?i=1000706839787&amp;amp;r=5416&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://podcasts.apple.com/pl/podcast/the-tim-ferriss-show/id863897795?i=1000706839787&amp;amp;r=5416&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;psychology&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;relationships&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;happiness&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;związek&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here is a one-sentence summary for each concept:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Concept 1 (Intimacy and Gender Roles):&lt;/strong&gt; Lacking intimacy is as harmful as heavy smoking, and achieving it necessitates moving beyond traditional gender roles to learn vital relational skills beneficial for health, longevity, and relationships.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Concept 2 (Masculinity and Giving):&lt;/strong&gt; True masculinity involves men proactively asking &amp;quot;what&#39;s needed here,&amp;quot; understanding that giving brings more happiness than receiving, and embracing empowerment, assertiveness, connection, and emotionality.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Concept 3 (Individual vs. Relational Empowerment):&lt;/strong&gt; The next stage beyond individual empowerment (&amp;quot;I was weak, now I&#39;m strong, go screw yourself&amp;quot;) is relational empowerment, where strength is used to collaborate and mutually support each other as a team.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Concept 4 (Self-Esteem vs. Patriarchy):&lt;/strong&gt; Healthy self-esteem stems from the inherent, equal worth of every individual, challenging patriarchal &amp;quot;one up, one down&amp;quot; thinking by focusing not only on lifting the disempowered but also on grounding the entitled.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Okay, here&#39;s a Twitter-style bullet point summary for each concept, with interlinks:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Intimacy is vital for health, as crucial as not smoking, and achieving it requires moving beyond traditional gender roles to improve your life, marriage, and children&#39;s future. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;🔍 Relacje międzyludzkie&lt;/a&gt;, , &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;związek&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;personal projects/family/dzieci&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Ewolucja&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Men should ask &amp;quot;what&#39;s needed here?&amp;quot; and act as empowered, assertive, and connected adults, because giving brings more profound and lasting happiness than receiving. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;🏔️ goals&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;🎖️ Mądrość&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;psychologia ludzi&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;szczęście&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;odpowiedzialność&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;A man should allow himself to be emotional and cultivate meaningful relationships as part of his mature, adult presence. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;emocje&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;🔍 Relacje międzyludzkie&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;związek&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;siła&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Moving from disempowerment to individual empowerment (&amp;quot;I was weak, now I&#39;m strong, screw you&amp;quot;) is just a phase; the next step is relational empowerment (&amp;quot;I&#39;m strong, let&#39;s team up and support each other&amp;quot;). &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;siła&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;praca zespołowa, team&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;relationships&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Ewolucja&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;współpraca&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Healthy self-esteem is an internal, democratic given—you are worthy simply because you exist—unlike patriarchy&#39;s constant &amp;quot;superior/inferior&amp;quot; ranking. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;psychologia ludzi&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;demokracja&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;swiatopoglad&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;wstyd&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;🎖️ Mądrość&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;While we&#39;ve focused on lifting those in the &amp;quot;one-down&amp;quot; (shame, inferiority) position, society must also address and dismantle the &amp;quot;one-up&amp;quot; (entitlement, grandiosity) stance. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Krytykowanie&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Narzekanie&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;bullshit, bycie bezpośrednim&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;balans&lt;/a&gt;, &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;kultura-firmy&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;“We&#39;re designed to be intimate. Not being intimate, I know you do a lot of great work with health on your podcast. Not being intimate is as bad for your body as smoking a pack and a half of cigarettes a day. This is a hard black and white research. We are born to be intimate. Moving beyond traditional gender roles is the only way to get there. So stop whining, stand up and learn a few relational skills. It&#39;s good for you, it&#39;s good for your body, you&#39;ll live longer. It&#39;s good for your marriage and it&#39;s good for your children. And let me help you learn how to do this better. That&#39;s revolutionary. You got a lot of people out there. I&#39;m so happy to be on this podcast with you truly. You got a lot of people out there. I&#39;m mad as hell and I&#39;m not putting up with it.”&lt;/p&gt;
&lt;p&gt;“A man&#39;s question of the world is what&#39;s needed here. And I teach men to show up as men and not boys. What&#39;s needed here? You know, research on happiness is, I like black and white research. If you get a gift, you&#39;re happy. You get happier for a bit. If you give a gift, you&#39;re even happier and longer than if you get it. What men need to understand is it&#39;s good for us to be empowered, be assertive, and also to be connected and show up. And ask ourselves, what&#39;s needed here?”&lt;/p&gt;
&lt;p&gt;Mówi też żeby jako facet pozwolić sobie być emocjonalny. Mieć relacje.&lt;/p&gt;
&lt;p&gt;“In our culture, there&#39;s a lot of what I call individual empowerment. I was weak, now I&#39;m strong, go screw yourself. I am woman, I have found my voice, hear me roar, no. And you get a lot of, I&#39;m going to get into trouble, but too bad, you get a lot of people in that traditional feminine side of the equation. Doesn&#39;t matter what body you&#39;re in, you&#39;re as a fixer on that feminine side. You get a lot of, the people on the feminine side move from disempowerment to individual empowerment. I call it, I was weak, now I&#39;m strong, go screw yourself. And everybody will cheer, mom, dad, therapist, 12 step sponsors, your man&#39;s group. No, relational empowerment is the next step. I was weak, now I&#39;m strong, I&#39;m going to go toe to toe with you. I&#39;m going to tell you just what I want and need. Now listen to this. What could I give you to help you do that for me? Who sounds like that? We&#39;re a team. I love you. What do you need? Let&#39;s work together. That&#39;s the next step. And a lot of women, early stage feminism, move from disempowerment to[…]”&lt;/p&gt;
&lt;p&gt;“It&#39;s what Pia called my great mentor, coming out from under the great lie, that a human being could be inherently superior or inferior to another human being. Healthy self-esteem, which I have to teach people in this culture, comes from the inside out. You&#39;re here, you&#39;re worthy, you&#39;re lovable, you&#39;re a good human being because you&#39;re breathing, period.&lt;br /&gt;
And your essential worth can&#39;t be added to, it can&#39;t be subtracted from. This is democracy. This is one person, one vote. We&#39;re all equal under the law until recently. Anyway, this is democracy, but we don&#39;t live like this. We live in the world of patriarchy, which is one up, one down, superior, inferior, better than, less than, all day long. And the one down, shame, inferiority, helplessness, defectiveness, unlovability, for 50 years, my field has focused on helping people come up from that one down. Good. But we&#39;ve almost totally ignored helping people come down from the one up. Entitlement, anger, judgment, contempt, self-righteous indignation, all forms of grandiosity.”&lt;/p&gt;
&lt;h1 id=&quot;pages-worth-building-via-negativa&quot; tabindex=&quot;-1&quot;&gt;Pages Worth Building: Via Negativa&lt;/h1&gt;
&lt;p&gt;Instead of trying to add more productive habits, start eliminating unproductive ones. To achieve happiness, look at what is causing you unhappiness, do not seek new sources of joy. The same logic applies to projects, habits, goals: consider asking which current commitments are draining your time, energy, or focus.&lt;br /&gt;
You could also include a &lt;strong&gt;daily negation query&lt;/strong&gt; in your page -- to collect small, situational No&#39;s you jot down in your Daily Notes as they happen. Tag them with e.g. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#refusal&quot;&gt;#refusal&lt;/a&gt; (or any tag you prefer), then pull them into a query. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Odmowa  mówienie nie&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;priorytetyzacja&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Fix the source of unhappiness&lt;/strong&gt;: To find joy, remove what causes pain instead of chasing dopamine. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;happiness&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Stop adding new productive habits—start removing unproductive ones. Identify what’s wasting time instead of chasing new routines. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;habit-tracking&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;productivity&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;minimalism&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;Use when overwhelmed with too many to-dos or self-improvement hacks.&lt;/li&gt;
&lt;li&gt;Apply during burnout phases to simplify and reset.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;To be happier, remove what&#39;s making you unhappy—don’t seek new pleasures. Subtract discomforts before adding delights. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;happiness&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;stoicism&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;wellbeing&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;Useful in mood journaling or therapy to identify recurring drains.&lt;/li&gt;
&lt;li&gt;Apply when feeling low despite trying new positive routines.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Projects, habits, and goals should be evaluated by what drains your time, not what excites you. Eliminate commitments that cost energy. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;time-management&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;goal-setting&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;focus&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;Reflect during weekly or quarterly reviews.&lt;/li&gt;
&lt;li&gt;Helps prioritize by subtraction, not addition.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://kamilrudnicki.com/img/user/archive/assets/Pasted%20image%2020250518132050.png&quot; alt=&quot;Pasted image 20250518132050.png400&quot; width=&quot;400px&quot; /&gt;&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/searchable-messy-knowledge/months/2025-05/"/>
  </entry><entry>
    <title>marudzenie dziecka</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/searchable-messy-knowledge/knowledge/marudzenie-dziecka/</id>
    <content type="html">&lt;h1 id=&quot;marudzenie-dziecka-3-latka&quot; tabindex=&quot;-1&quot;&gt;Marudzenie dziecka 3-latka&lt;/h1&gt;
&lt;p&gt;Marudzenie trzylatka to naturalny etap rozwoju, który może być wyzwaniem dla rodziców. Najskuteczniejsze taktyki obejmują konsekwentne ignorowanie jęczenia, wzmacnianie pozytywnych zachowań oraz naukę spokojnego wyrażania swoich potrzeb. Ważne jest, aby od razu nagradzać dziecko, gdy komunikuje się normalnym głosem, jednocześnie nie ulegając marudzeniu. Demonstrowanie odpowiedniego tonu głosu oraz pomoc w formułowaniu prośby mogą również pomóc w kształtowaniu lepszych nawyków komunikacyjnych.&lt;/p&gt;
&lt;p&gt;Zachowanie spokoju i unikanie karania są kluczowe, ponieważ nadmierna reakcja może wzmocnić niepożądane zachowania. Ignorowanie marudzenia, o ile nie jest związane z prawdziwą potrzebą, oraz dbanie o rutynę dnia pomagają dziecku czuć się bezpiecznie i ograniczają frustrację. W przypadku emocji jak złość czy frustracja, warto okazać empatię i zapewnić wsparcie, jednocześnie ucząc dziecko radzenia sobie z trudnymi emocjami w sposób zdrowy i akceptowalny.&lt;/p&gt;
&lt;h2 id=&quot;taktyki-pewne&quot; tabindex=&quot;-1&quot;&gt;Taktyki pewne&lt;/h2&gt;
&lt;h3 id=&quot;spraw-by-poprosil-normalnym-glosem-i-od-razu-mu-daj-o-co-prosi&quot; tabindex=&quot;-1&quot;&gt;Spraw by poprosił normalnym głosem i od razu mu daj o co prosi&lt;/h3&gt;
&lt;p&gt;&lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn1&quot; id=&quot;fnref1&quot;&gt;[1]&lt;/a&gt;&lt;/sup&gt; &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn2&quot; id=&quot;fnref2&quot;&gt;[2]&lt;/a&gt;&lt;/sup&gt; &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn3&quot; id=&quot;fnref3&quot;&gt;[3]&lt;/a&gt;&lt;/sup&gt; &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn4&quot; id=&quot;fnref4&quot;&gt;[4]&lt;/a&gt;&lt;/sup&gt; [^5&lt;br /&gt;
Never let whining successfully get them what they want. Show them it’s a poor strategy.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Spokojnym głosem zniż się do poziomu dziecka i poproś aby powiedziało spokojnym głosem co potrzebuje.
&lt;ol&gt;
&lt;li&gt;
&lt;blockquote&gt;
&lt;p&gt;Daj przykład&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;blockquote&gt;
&lt;p&gt;Zapytaj &amp;quot;Jak się prosi o ciastko?&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;blockquote&gt;
&lt;p&gt;I can&#39;t understand you when you whine. If you want to tell me how you feel, then I need you to use your regular voice.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;blockquote&gt;
&lt;p&gt;I can&#39;t hear you when you whine. Ask for what you want in a normal voice and maybe I&#39;ll hear you better.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;blockquote&gt;
&lt;p&gt;Use your strong, clear voice.&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Uznaj że powiedziało spokojnym głosem i od razu daj o co prosi.
&lt;ol&gt;
&lt;li&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;quot;Wow, what a lovely way to ask. That sounded so nice,&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;blockquote&gt;
&lt;p&gt;Always show them the path that will get them what they want. Demonstrate the replacement behavior: “Say, ‘can I please have the orange cup?’” “Can I please have the Orange cup.” “Of course! Here you go!! Thank you for using your big kid voice.”&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&quot;nie-daj-mu-uwagi&quot; tabindex=&quot;-1&quot;&gt;Nie daj mu uwagi&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Once you know he knows that you understand talking better than whining, I would pretend not to hear whining but suddenly regain hearing when the whining stops. &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn1&quot; id=&quot;fnref1:1&quot;&gt;[1:1]&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;If you want to extinguish that behavior, you have to eliminate positive feedback to that behavior. In the old days, it would be negative feedback (spanking), but that&#39;s not recommended :) The best thing is to simply ignore it and make sure that behavior is not rewarded. Don&#39;t react by prodding or saying &amp;quot;I can&#39;t understand you when you&#39;re whining&amp;quot;. If you direct your behavior-getting attention at the behavior you don&#39;t want, then of course you will get more of it.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Kontrargument:&lt;br /&gt;
Also, don&#39;t forget that growing pains is awfully confusing to a kid that age. No amount of &amp;quot;ignoring bad behavior&amp;quot; is going to solve that one. Oh, your kid is crying and whining because they get sharp pains and legs that ache for no reason. That&#39;s not bad behavior, that&#39;s a cry for affection and comfort and not a time they should be ignored. The trick as a parent is trying to figure out which whine or cry is genuine and which one is just a way to get what they want. When do they get a hug and when should they get disipline? That superpower comes with time and only by the people who are around them the most.&lt;/p&gt;
&lt;h3 id=&quot;przeczekaj-ale-stosuj-taktyki-nawet-jezel-nie-dzialaja-aby-tak-nie-robil-majac-4-lat&quot; tabindex=&quot;-1&quot;&gt;Przeczekaj, ale stosuj taktyki nawet jeżel nie działają aby tak nie robił mając 4+ lat&lt;/h3&gt;
&lt;p&gt;&lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn2&quot; id=&quot;fnref2:1&quot;&gt;[2:1]&lt;/a&gt;&lt;/sup&gt; &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn3&quot; id=&quot;fnref3:1&quot;&gt;[3:1]&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;He grew out of it at 4 years old and is now a happy normal first grader with no behavior problems at school at all. There was nothing we did that made a difference, we just had to wait it out. &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn2&quot; id=&quot;fnref2:2&quot;&gt;[2:2]&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;&lt;mark&gt;I think that’s pretty developmentally appropriate. It is important to keep reinforcing that whining isn’t appropriate&lt;/mark&gt; (by turning off the tv, not fulfilling the request etc) not so much because it’s going to eliminate the whining in the short term but more because you don’t want him to still be whining at 4/5 and beyond. &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn3&quot; id=&quot;fnref3:2&quot;&gt;[3:2]&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;taktyki-niepewne&quot; tabindex=&quot;-1&quot;&gt;Taktyki niepewne&lt;/h2&gt;
&lt;h3 id=&quot;badz-nadmiernie-empatytycznym&quot; tabindex=&quot;-1&quot;&gt;Bądź nadmiernie empatytycznym&lt;/h3&gt;
&lt;p&gt;The best I have got is to empathize and be overly empathetic - &amp;quot;Oh my goodness, you feel so sad. That sock is really make you upset huh? Let&#39;s take a deep breath, count to three, then I will look at it&amp;quot;. Labeling feelings seems to have helped keep his frustration level down. &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn1&quot; id=&quot;fnref1:2&quot;&gt;[1:2]&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;pokaz-jak-wyglada-jedzenie&quot; tabindex=&quot;-1&quot;&gt;Pokaż jak wygląda jędzenie&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&amp;quot;We won&#39;t listen to you when you&#39;re whining. You can either talk like a big girl/boy or go whine in your room.&amp;quot; We made sure we demonstrated the difference between whining and normal talking so they couldn&#39;t use the excuse that they didn&#39;t know they were doing it. &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn4&quot; id=&quot;fnref4:1&quot;&gt;[4:1]&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;Demonstrate to your child how it sounds by whining back at them, suggests Hayward.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;nie-pozwol-na-zbyt-dlugie-jeczenie&quot; tabindex=&quot;-1&quot;&gt;Nie pozwól na zbyt długie jęczenie&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Put away the earplugs and take action. &amp;quot;Kids can whine all day, easily outlasting a parent who is trying to tune it out,&amp;quot; says Rene Hackney, PhD, a developmental psychologist in Alexandria, Virginia. &amp;quot;The longer you let your child complain, the more determined she&#39;ll become to get her way.&amp;quot;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;co-nie-dziala&quot; tabindex=&quot;-1&quot;&gt;Co nie działa&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Krzyk i/lub kary nie działają.&lt;/li&gt;
&lt;li&gt;Wyprowadzenie siebie z równowagi - ukrywaj emocje.&lt;/li&gt;
&lt;li&gt;Mówienie &amp;quot;STOP&amp;quot;&lt;/li&gt;
&lt;li&gt;Straight old school opposition. Straight to a stern &amp;quot;No whining or you go to time out!&amp;quot; right off the bat. &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn5&quot; id=&quot;fnref5&quot;&gt;[5]&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;notatki&quot; tabindex=&quot;-1&quot;&gt;Notatki&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;YouTube - Instrukcja: 5 kroków by dziecko przestało jęczeć&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Jak jęczysz ja nie będę z tobą rozmawiać - taka reguła. Plus niewerbalny sygnał.&lt;/li&gt;
&lt;li&gt;Kilka razy pokaż co znaczy jęczenie, ale nie przedrzeźniaj, nie rób zbyt często. &amp;quot;Nie mam ochoty rozmawiać, nie rozumiem.&amp;quot; Można też nagrać i puścić mu potem.&lt;/li&gt;
&lt;li&gt;Kamienna twarz. Nie wyprowadź się z równowagi.&lt;/li&gt;
&lt;li&gt;Jęczy bo przynosi korzyści. Gdy jęczy to się zgadzam, a jak nie jęczy to się nie zgadzam. Co któryś raz. Nie może nic ugrać. Na sztywno nie ma siły we wszechświecie że dostanie co chce.&lt;/li&gt;
&lt;li&gt;Jest niesamodzielne, wszystko wyręczam. W efekcie im dziecko jest bardziej niesamodzielne, im więcej robię za dziecko to będzie miało tendencje do bycia męczy bułą. Jeżeli dziecko jest w stanie robić kanapki, niech je robi.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=2cb5kiy27DY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Moje dziecko ciągle marudzi i płacze? Co to oznacza i jak można pomóc? - YouTube&lt;/a&gt; 🔥&lt;br /&gt;
W momencie jak płącze to sygnalizuje Ci problem. Warto żebyś podeszła i nawiązała z nim kontakt, że zwracasz uwagę i interesujesz się o co mu chodzi, na jego truność. A druga rzecz to inne sposoby jak radzić sobie z trudnymi emocjami. &amp;quot;jest ci przykro jak płaczesz, a co było było gdybyś się przykrył kocykiem&amp;quot;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Zrób coś z tym dzieckiem&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=JMq0CAG5D-I&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Złość i histeria dziecka. 7 faktów, które musisz znać! - YouTube&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Złość jest ok. Ale trzeba nauczyć się radzić.
&lt;ul&gt;
&lt;li&gt;Złe: uspokój się, uczymy że złość niewłaściwa i nieakceptowana.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Złość jest taką samą emocją jak radość. - mamy prawdo do jej przeżywania
&lt;ul&gt;
&lt;li&gt;Zmiast tłumić, to nauczyć opanować.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Czasami wystarczy dać czas.&lt;/li&gt;
&lt;li&gt;Dzieci potrzebują bliskości, nie odrzucenia. Zgodnie ze współczesną metodą, dziecko przeżywające trudne emocje uczy się je regulawoać w zdrowy sposób poprzez bliskość rodzica. Potrzebuje milości, obecności i poczucia bezpieczeństwa. Wiedzą że rodzic jest obok i nie zostanie odrzucone.&lt;/li&gt;
&lt;li&gt;Ataki histeriii zdarzają się prawie każdemu dziecku. Problem gdy ataki się pojawiają znowu i znowu.&lt;/li&gt;
&lt;li&gt;Złość wymaga bezpiecznej przestrzeni. Wie że może się złościć. Jest nieprzyjemna ale bezpieczna.&lt;/li&gt;
&lt;li&gt;Być obecnym i gotowym zareagować. Nie zawsze lecenie z pomocą i natychmiastowe przytulanie jest potrzebne.&lt;/li&gt;
&lt;li&gt;Zadaniem rodzica jest nauczyć dziecko radzenia sobie samemu ze złością.
&lt;ul&gt;
&lt;li&gt;To że dziecko się złości nie znaczy że robię coś źle. Potrzeba jest wiara że może sobie samo poradzić z własną złością.&lt;/li&gt;
&lt;li&gt;Nie bój się złości dziecka.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;https://www.nationwidechildrens.org/family-resources-education/700childrens/2022/04/how-to-stop-your-childs-whining&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;How to Stop Your Child’s Whining&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Dawanie dobrego przykładu&lt;/strong&gt;: Mów do dziecka spokojnym głosem, unikając podnoszenia tonu czy narzekania.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Wzmacnianie pożądanych zachowań&lt;/strong&gt;: Chwal dziecko, gdy komunikuje się w odpowiedni sposób, aby zachęcić je do powtarzania takiego zachowania.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ignorowanie marudzenia&lt;/strong&gt;: Jeśli to możliwe, nie reaguj na marudzenie, aby dziecko zrozumiało, że taka forma komunikacji nie przynosi oczekiwanych rezultatów.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Nauka alternatywnych sposobów komunikacji&lt;/strong&gt;: Pomóż dziecku wyrażać swoje potrzeby i emocje w bardziej akceptowalny sposób, ucząc je odpowiednich słów i zwrotów.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Utrzymywanie rutyny&lt;/strong&gt;: Zapewnij regularny harmonogram posiłków, drzemek i aktywności, aby zminimalizować sytuacje prowadzące do marudzenia.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;https://www.parents.com/toddlers-preschoolers/development/behavioral/deal-with-whining-children/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;How To Deal With Whining Children&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Nieuleganie prośbom wyrażanym marudzeniem&lt;/strong&gt;: Uleganie wzmacnia to zachowanie, dlatego ważne jest konsekwentne odmawianie w takich sytuacjach.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Modelowanie odpowiedniego tonu głosu&lt;/strong&gt;: Zachęcaj dziecko do używania &amp;quot;miłego głosu&amp;quot; i demonstruj, jak to powinno brzmieć.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Wzmacnianie pozytywnych zachowań&lt;/strong&gt;: Chwal dziecko, gdy komunikuje się w odpowiedni sposób, co zachęca do powtarzania takiego zachowania.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ustalanie rutyny&lt;/strong&gt;: Regularny harmonogram dnia pomaga dzieciom czuć się bezpiecznie i może zmniejszyć skłonność do marudzenia.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ignorowanie marudzenia&lt;/strong&gt;: Jeśli dziecko kontynuuje marudzenie, mimo Twoich próśb, nie reaguj na to zachowanie, aby nie wzmacniać go swoją uwagą.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;sytuacje&quot; tabindex=&quot;-1&quot;&gt;Sytuacje&lt;/h2&gt;
&lt;p&gt;SYTUACJA 1: Dziecko marudzi prosząc o coś JAK SIĘ ZACHOWAĆ:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Zniż się do poziomu dziecka&lt;/li&gt;
&lt;li&gt;Spokojnym głosem poproś o powtórzenie prośby normalnym tonem&lt;/li&gt;
&lt;li&gt;Gdy dziecko powie normalnie, od razu spełnij prośbę&lt;/li&gt;
&lt;li&gt;Pochwal za właściwy sposób komunikacji&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;SYTUACJA 2: Dziecko ciągle marudzi mimo próśb JAK SIĘ ZACHOWAĆ:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Zachowaj spokój&lt;/li&gt;
&lt;li&gt;Konsekwentnie ignoruj jęczenie&lt;/li&gt;
&lt;li&gt;Nie zwracaj uwagi na marudzenie&lt;/li&gt;
&lt;li&gt;Reaguj tylko gdy dziecko mówi normalnym głosem&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;SYTUACJA 3: Dziecko jest sfrustrowane/złe JAK SIĘ ZACHOWAĆ:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Okaż empatię&lt;/li&gt;
&lt;li&gt;Zapewnij wsparcie&lt;/li&gt;
&lt;li&gt;Pomóż nazwać emocje&lt;/li&gt;
&lt;li&gt;Ucz radzenia sobie z trudnymi uczuciami&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;SYTUACJA 4: Dziecko komunikuje się prawidłowo JAK SIĘ ZACHOWAĆ:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Natychmiast nagradzaj właściwe zachowanie&lt;/li&gt;
&lt;li&gt;Chwal za używanie normalnego głosu&lt;/li&gt;
&lt;li&gt;Wzmacniaj pozytywne zachowania&lt;/li&gt;
&lt;li&gt;Spełniaj prośby wyrażone odpowiednim tonem&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;CZEGO UNIKAĆ:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Krzyku i kar&lt;/li&gt;
&lt;li&gt;Okazywania własnej frustracji&lt;/li&gt;
&lt;li&gt;Mówienia &amp;quot;STOP&amp;quot;&lt;/li&gt;
&lt;li&gt;Przedrzeźniania dziecka&lt;/li&gt;
&lt;li&gt;Ulegania marudzeniu&lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;
&lt;hr class=&quot;footnotes-sep&quot; /&gt;
&lt;section class=&quot;footnotes&quot;&gt;
&lt;ol class=&quot;footnotes-list&quot;&gt;
&lt;li id=&quot;fn1&quot; class=&quot;footnote-item&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.reddit.com/r/Parenting/comments/4yv4qe/3_year_old_whines_and_cries_constantly_techniques/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;3 year old whines and cries constantly. Techniques that work? PLEASE?? : r/Parenting&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref1&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref1:1&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref1:2&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;fn2&quot; class=&quot;footnote-item&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.reddit.com/r/toddlers/comments/kcy9tb/how_do_you_deal_with_the_whining/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;How do you deal with the whining? : r/toddlers&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref2&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref2:1&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref2:2&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;fn3&quot; class=&quot;footnote-item&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.reddit.com/r/Preschoolers/comments/17dseqr/3_year_old_whining/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;3 year old whining : r/Preschoolers&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref3&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref3:1&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref3:2&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;fn4&quot; class=&quot;footnote-item&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.reddit.com/r/Parenting/comments/1qxurl/my_3yo_son_whines_almost_constantly_around_my_wife/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;My 3yo son whines almost constantly around my wife : r/Parenting&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref4&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref4:1&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;fn5&quot; class=&quot;footnote-item&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.reddit.com/r/toddlers/comments/12n3tb1/how_to_handle_the_whining/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;How to handle the whining?? : r/toddlers&lt;/a&gt; - Stosuj konsekwencję, rutynę, cierpliwość, odwracaj uwagę, wzmacniaj pozytywne zachowania i unikaj nagradzania marudzenia. &lt;a href=&quot;https://kamilrudnicki.com/#fnref5&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/searchable-messy-knowledge/knowledge/marudzenie-dziecka/"/>
  </entry><entry>
    <title>benchmark</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/searchable-messy-knowledge/knowledge/benchmark/</id>
    <content type="html">&lt;p&gt;[Emergence: Top Quartile Startups Are Growing 58% at $10m in ARR | SaaStr](&lt;a href=&quot;https://www.saastr.com/emergence-top-quartile-startups-are-%5B%5Binbox/knowledge/benchmark%5C%7Cinbox/knowledge/benchmark%5D&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.saastr.com/emergence-top-quartile-startups-are-&lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;inbox/knowledge/benchmark]&lt;/a&gt;]SaaS Benchmarks&lt;/a&gt;&lt;/p&gt;
&lt;h1 id=&quot;saa-s-metrics&quot; tabindex=&quot;-1&quot;&gt;SaaS Metrics&lt;/h1&gt;
&lt;p&gt;Conversions&lt;br /&gt;
&lt;img src=&quot;https://kamilrudnicki.com/img/user/archive/assets/Screenshot%202024-07-30%20at%2017.52.50.png&quot; alt=&quot;Screenshot 2024-07-30 at 17.52.50.png400&quot; width=&quot;400px&quot; /&gt;&lt;/p&gt;
&lt;h1 id=&quot;sites&quot; tabindex=&quot;-1&quot;&gt;Sites&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://growjo.com/&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Fast Company Data with Emails &amp;amp; Contacts: Growjo&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://getlatka.com/saas-companies&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LATKA SaaS Database&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;public-companies&quot; tabindex=&quot;-1&quot;&gt;Public companies&lt;/h1&gt;
&lt;h3 id=&quot;brand24-q1-2024-public-company&quot; tabindex=&quot;-1&quot;&gt;Brand24 Q1 2024 (public company):&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;MRR +30% (from $478k to $622k y-y)&lt;/li&gt;
&lt;li&gt;ARPU +29% (from $123 to $159 y-y)&lt;/li&gt;
&lt;li&gt;Customers +0.6% (from 3886 to 3911 y-y)*&lt;/li&gt;
&lt;li&gt;P&amp;amp;L revenue increase 23%&lt;/li&gt;
&lt;li&gt;
&lt;ul&gt;
&lt;li&gt;622000 / 159 = 3911; $478000/$123 = 3886  (year ago) (3911 - 3886) / 3886&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/searchable-messy-knowledge/knowledge/benchmark/"/>
  </entry><entry>
    <title>Management</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/searchable-messy-knowledge/knowledge/management/</id>
    <content type="html">&lt;h1 id=&quot;principles&quot; tabindex=&quot;-1&quot;&gt;Principles&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;Managers should establish priorities and have a clear top priority to focus on. Force it.&lt;/li&gt;
&lt;li&gt;Culture
&lt;ul&gt;
&lt;li&gt;Culture of absolute adherence to deadlines.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Projects
&lt;ul&gt;
&lt;li&gt;It&#39;s recommended to hold a kick-off meeting for projects with a set due date, vision, end goal to establish commitment.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/searchable-messy-knowledge/knowledge/management/"/>
  </entry><entry>
    <title>Automatic task creation from screenshot</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/searchable-messy-knowledge/knowledge/automatic-task-creation-from-screenshot/</id>
    <content type="html">&lt;p&gt;Flow:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;OCR image using MacOS build in OCR&lt;/li&gt;
&lt;li&gt;Use ChatGPT to create a task name based on the text from OCR&lt;/li&gt;
&lt;li&gt;Change file name of the image to task name provided by ChatGPT&lt;/li&gt;
&lt;li&gt;Create ClickUp task based on the file name and attach the file&lt;/li&gt;
&lt;li&gt;Delete local screenshot&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Time save - 30 minutes every week, as I have more than 100 screenshots per week.&lt;/p&gt;
&lt;p&gt;Apple Shortcut: &lt;a href=&quot;https://www.icloud.com/shortcuts/973a3bd2373f4b1e801a85ba09c28423&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://www.icloud.com/shortcuts/973a3bd2373f4b1e801a85ba09c28423&lt;/a&gt;&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/searchable-messy-knowledge/knowledge/automatic-task-creation-from-screenshot/"/>
  </entry><entry>
    <title>trends</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/searchable-messy-knowledge/business/trends/</id>
    <content type="html">&lt;p&gt;Updated 2024-06-02T12:35:00.000+02:00&lt;/p&gt;
&lt;h1 id=&quot;trends&quot; tabindex=&quot;-1&quot;&gt;Trends&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;Open-source apps, as a good alternative to extisting paid and freemium SaaS &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn1&quot; id=&quot;fnref1&quot;&gt;[1]&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;Less people in the world &lt;sup class=&quot;footnote-ref&quot;&gt;&lt;a href=&quot;https://kamilrudnicki.com/#fn2&quot; id=&quot;fnref2&quot;&gt;[2]&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;Remote work, offshoring&lt;/li&gt;
&lt;li&gt;AI - LLM&lt;/li&gt;
&lt;/ul&gt;
&lt;hr class=&quot;footnotes-sep&quot; /&gt;
&lt;section class=&quot;footnotes&quot;&gt;
&lt;ol class=&quot;footnotes-list&quot;&gt;
&lt;li id=&quot;fn1&quot; class=&quot;footnote-item&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.ycombinator.com/companies?tags=Open%20Source&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;The YC Startup Directory | Y Combinator&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref1&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;fn2&quot; class=&quot;footnote-item&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://x.com/Inwestomat_eu/status/1797149614254030886&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;x.com&lt;/a&gt; &lt;a href=&quot;https://kamilrudnicki.com/#fnref2&quot; class=&quot;footnote-backref&quot;&gt;↩︎&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/searchable-messy-knowledge/business/trends/"/>
  </entry><entry>
    <title>The Six Channels Startups Need to Dominate to Grow - 20Growth</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/searchable-messy-knowledge/business/the-six-channels-startups-need-to-dominate-to-grow-20-growth/</id>
    <content type="html">&lt;h1 id=&quot;20-growth-the-six-channels-startups-need-to-dominate-to-grow-why-the-best-growth-talent-never-comes-from-marketing-or-product-who-and-how-to-hire-growth-leaders-and-teams-and-why-in-a-world-of-ai-growth-is-more-science-than-art-with-matt-lerner&quot; tabindex=&quot;-1&quot;&gt;20Growth: The Six Channels Startups Need to Dominate to Grow, Why the Best Growth Talent Never Comes from Marketing or Product, Who and How to Hire Growth Leaders and Teams and Why in a World of AI, Growth is More Science than Art with Matt Lerner&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://podcasts.apple.com/pl/podcast/the-twenty-minute-vc-20vc-venture-capital-startup/id958230465?i=1000657382788&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;20Growth: The Six Channels Startups Need to Dominate to Grow, Why the Best Growth Talent Never Comes from Marketing or Product, Who and How to Hire Growth Leaders and Teams and Why in a World of AI, Growth is More Science than Art with Matt Lerner&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;growth&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;marketing&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;90% of growth came from 10% of things at PayPal. It repeats in other startups. You have to figure out this 10% as quickly as possible.&lt;/li&gt;
&lt;li&gt;Growth is information discovery, rather than running playbooks, doing best practices.&lt;/li&gt;
&lt;li&gt;Growth is ability to find customers and help them understand the value you can deliver to them and get them to use and love the product or service. &lt;/li&gt;
&lt;li&gt;You sometimes get best customers to whom you introduced friction to the funnel. (10:50)&lt;/li&gt;
&lt;li&gt;Start with metrics where you deliver value to customers, like weekly active users - not revenue. It focuses entire company. Then look what users are using for real. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;metryki i KPI&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;There are only six channels: 1. You hear from sales person (outbound). 2. Some partner brings you in. 3. You see some ads. 4. You do Google search (top 3). 5. Content. 6. You hear from influencer. In growth you should try to make some of those channels to work.&lt;/li&gt;
&lt;li&gt;Be when potential customer have high intent.&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/searchable-messy-knowledge/business/the-six-channels-startups-need-to-dominate-to-grow-20-growth/"/>
  </entry><entry>
    <title>The Database Evolution - Invest Like the Best</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/searchable-messy-knowledge/business/the-database-evolution-invest-like-the-best/</id>
    <content type="html">&lt;h1 id=&quot;dev-ittycheria-the-database-evolution-by-invest-like-the-best-with-patrick-o-shaughnessy&quot; tabindex=&quot;-1&quot;&gt;Dev Ittycheria - The Database Evolution by Invest Like the Best with Patrick O&#39;Shaughnessy&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://podcasts.apple.com/pl/podcast/invest-like-the-best-with-patrick-oshaughnessy/id1154105909?i=1000655524902&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Dev Ittycheria - The Database Evolution&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;CEO&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;twice&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;“I&#39;ve learned, one of the big lessons I&#39;ve learned is that &lt;mark&gt;to drive excellence, you need to be incredibly judgmental&lt;/mark&gt;. And most people, when push comes to shove, are afraid to make the decisions they need to make to be truly successful.” &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;ocena i kontrola zadań&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;dobra jakość&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;“They&#39;re not willing to hold people accountable that need to be held accountable. They&#39;re not willing to be extreme about the product decisions that need to be made, the way products are positioned, whether they&#39;re priced, and they&#39;re not also willing to be extreme about the go-to-market decisions. And what I find is most people fold with the pressure to make hard decisions.” &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;podejmowanie decyzji&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;“And I think that&#39;s why there&#39;s a lot of very average and mediocre companies out there. And I think really confronting problems directly and dealing with them directly, most people are social animals. Most people don&#39;t want to have a painful conversation. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;rozwiązywanie problemów&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Most people don&#39;t want to point out the flaws and what people are doing &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;quality&lt;/a&gt;. And so in many cases, you have been these very passive aggressive meetings, everyone nods politely, but in the back of the mind they said, this is probably not gonna work. We work really hard to create a culture where we can be intellectually honest about what&#39;s working, what&#39;s not working, have fierce conversations about what to do, what not to do, who&#39;s performing, who&#39;s not performing, and then really focus on executing really well.” &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;transparencja&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;ocena i kontrola zadań&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;There wouldn&#39;t be any fierce debate. But then people leave the room and you know, you can see people&#39;s eyes rolling saying, that&#39;s never going to work. And to me, I view passive aggressiveness as a form of duplicity, because you have to create a culture where people are free to say what they think constructively about a particular idea or a particular decision.&lt;/li&gt;
&lt;li&gt;Because I always believe all of us are smarter than any one of us. And one of our core values at MongoDB is intellectual honesty, because I abhor passive aggressive behaviors. That was one thing that I learned not to do.”&lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;sprzedaż&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;“Then the certain interim steps in the sales process that tell you, are you on track to kind of getting a deal? Have you met with the economic buyer? Have you qualified how much budget&#39;s available?&lt;br /&gt;
Have you qualified even that this is a priority for them? And because you&#39;re not just competing with your own competitor, you&#39;re competing with other vendors and other spaces for budget dollars. And so how do you know, is this problem that you&#39;re solving for as important as another problem that another vendor might be trying to address?&lt;br /&gt;
And then obviously, what is the decision criteria? One rule of thumb we have is, you should never be answering an RFP.”&lt;br /&gt;
“That&#39;s not just a demo and a sale.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I hate deals where it&#39;s just a very long sales cycle because there&#39;s always chance of something going wrong. But if you think about any sales process, any sales process is essentially designed to address three core questions. Why does the customer wanna do anything?&lt;/li&gt;
&lt;li&gt;what pain or problem do they have that&#39;s gonna force them to take action? So that&#39;s with the discovery part of the sales process. You try and discover what pain or problem customers have that are relevant to what you can solve for.&lt;/li&gt;
&lt;li&gt;The second phase of that is why MongoDB? Why is MongoDB the best choice to solve that pain relative to all the alternatives and substitutes available? And then the third part of the sales process is why now?”&lt;/li&gt;
&lt;li&gt;“Because you can do the first two things, but the customer can easily kick the can down the road. And in many cases, that&#39;s the struggle most salespeople have. It&#39;s not that they lose a deal, but the customer never makes a decision.&lt;/li&gt;
&lt;li&gt;Can you create a manufacturer or is there a compelling event you can use to force a customer or induce a customer to make a decision sooner than later? So those three questions, I don&#39;t know how you can forecast a deal if you don&#39;t have answers to those three questions. So that&#39;s essentially how our sales process is broken down.&lt;/li&gt;
&lt;li&gt;Then the certain interim steps in the sales process that tell you, are you on track to kind of getting a deal? Have you met with the economic buyer? Have you qualified how much budget&#39;s available?”&lt;/li&gt;
&lt;li&gt;“Have you qualified even that this is a priority for them? And because you&#39;re not just competing with your own competitor, you&#39;re competing with other vendors and other spaces for budget dollars. And so how do you know, is this problem that you&#39;re solving for as important as another problem that another vendor might be trying to address?&lt;/li&gt;
&lt;li&gt;And then obviously, what is the decision criteria? One rule of thumb we have is, you should never be answering an RFP. Because invariably, if you&#39;re getting an RFP that you&#39;ve never worked on before, some other vendor has written the RFP.&lt;/li&gt;
&lt;li&gt;So what that means is you have to set the table on the decision criteria. How is a customer going to make a decision? What features or capabilities are they going to weigh?”&lt;/li&gt;
&lt;li&gt;“And how are they going to weight them relative to other things they can consider for them to make a decision? Have you educated the customer and built what we call champions who will understand the value of MongoDB and understand why for their own business, MongoDB is the best choice? And then building a champion, a champion we define as someone who&#39;s selling for you when you&#39;ve left the building.&lt;/li&gt;
&lt;li&gt;Obviously someone who&#39;s a change agent, has power and influence in an organization and is really selling for you after you&#39;re not there. There&#39;s a big difference, what we call between champions and coaches. Coaches wanting to see you win, but they&#39;re not gonna take either any personal risks themselves, or they just don&#39;t have the credibility or juice to kind of influence the decision.&lt;/li&gt;
&lt;li&gt;But they can be helpful to kind of give you some insight or radar into what&#39;s happening in the account. But ultimately there&#39;s a champion for every deal that are closed. Sometimes you may not know who your champion is, but there&#39;s someone who&#39;s advocating for you when you&#39;re not alone in the room, or advocating frankly for someone else.”&lt;/li&gt;
&lt;li&gt;“And you will gotta make sure your champion is more powerful than your enemy&#39;s champion. And that&#39;s all part of the sales process.&lt;/li&gt;
&lt;li&gt;The champion idea reminds me of the first thing you said, which is that most people don&#39;t want to make hard decisions and confront trade-offs. And it makes me wonder what your first experience with this was from a personal standpoint that made you aware of or suited to or better wired to be decisive, have judgment, make decisions, make trade-offs.”&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;“But if you ask anyone, did you ever fire someone too quickly or too late, 99.9% of the time they&#39;ll say they fired people too late. Why? Because they introduced hope into the process. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zwalnianie ludzi&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;hope&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;bias&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;And we still do that even at MongoDB. People say, oh, give that person more time. He or she just needs more time to get a sense of how we do things.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And invariably, the answer was staring at you in the face, but you just didn&#39;t want to acknowledge it. And so that was also another lesson I learned is deal with problems head on and quickly. And at PlayLogic, I went through multiple rounds of leaders. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;rozwiązywanie problemów&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;agile, szybkość, tempo&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And not that I was purposely looking to change leaders, but leaders can come and go because they&#39;re good for a certain stage of growth, but then they tap out. Even at MongoDB, the leadership team I inherited is no longer here. When a business scales, not everyone scales at the same rate.” &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zarządzanie menadżerami&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;“One of the things I&#39;ve learned in life is that if you see a problem and don&#39;t act on it, that problem is no longer that person that think that problem is you. If you have the authority to solve that problem and not doing it, then you&#39;re the problem. I always feel like whenever I see something bad, if I don&#39;t act on it, then I&#39;m actually accepting mediocrity or I&#39;m accepting poor performance, and that&#39;s contrary to everything that we&#39;re trying to do. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Ray Dalio&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;rozwiązywanie problemów&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;🌱 operating principles&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In some ways, you&#39;re penalizing all the good people who are working really hard because you&#39;re accepting mediocre performance from the other person, and they&#39;re actually penalizing all the good people who have crowned the constraints or the limitations of this other person. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;dobra jakość&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;kultura-firmy&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;One of the ideas of yours that I liked best when I was reviewing your history and your thinking was this idea that &lt;mark&gt;people perform to the level that you inspect, not that you expect&lt;/mark&gt;. I love that idea. Can you just explain that philosophy and the mechanism of how you put it into practice?” &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zarządzanie&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;system operacyjny organizacji&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;excpectations&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;ocena i kontrola zadań&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;rozwiązywanie problemów&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;inspection&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;“The short answer is that if grown adults were supposed to do what we asked them to do, you wouldn&#39;t need that many leaders or managers. You would have theoretically one leader and a bunch of individual contributors, but the reality is that human nature doesn&#39;t operate that way and you need people who can challenge and push you. When people know that there&#39;s a high degree of inspection, there was a joke at Blade Logic was that Blade Logic was placed where there&#39;s a lot of sunshine because there&#39;s no place to hide because we constantly inspect what&#39;s going on.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;When people know that their performance will be inspected, that there&#39;ll be constant review of what&#39;s going well and what&#39;s not going well, which is healthy. It&#39;s not mean that the person is bad, but sometimes they&#39;re running into an issue. Sometimes that issue is bigger than they can solve.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;It elevates up and saying, hey, we&#39;ve got to figure out a way to respond to this issue because this person has it, we&#39;re going to see this with other people. That just creates a very healthy dynamic and it also creates a bias to action. People who thrive[…]”&lt;/li&gt;
&lt;li&gt;“And then it slowly moves up the organization. In a typical organization, I may hear, Dave, we have a little problem with Acme company, but we&#39;re all over it. And if I operate in that way, I say, okay, no big deal. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;kultura-firmy&lt;/a&gt; They&#39;re on top of it. And then a month or two later, we found out that Acme company churned. My philosophy is different, is that if I hear bad news, I immediately start digging in and invariably, because I know when I hear bad news, I know two things.&lt;/li&gt;
&lt;li&gt;“Don&#39;t ignore bad news. In your house, if your dog poops on the floor, are you gonna step over and keep walking? You&#39;re gonna get your pooper scooper and come clean it up.&lt;/li&gt;
&lt;li&gt;Similarly, like if you see bad news, you can&#39;t just ignore it. Your responsibility is to investigate and really get at the root issue. And invariably, you always find out when you ask someone, hey, after you fired someone, you say, oh my God, I found out so many more problems.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;One, I&#39;m the last to know. And two, it&#39;s far worse than what people tell me because the filtration process of sending bad news up the organization dulls all the sharp edges of that bad information. So a holy crap moment with a customer, with a rep is now, hey, there&#39;s a small issue with Acme company.” &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;inspection&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;“Are you comfortable being unconventional? Can you delay gratification? Do you have long-term orientation? &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zasady, cechy sukcesu&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Those are keys to being really successful, but it&#39;s so hard to do because it&#39;s so contrary to human nature. How do you find someone who can really do those things and what drives them to do those things? I&#39;ve heard some amazing stories about people.&lt;/li&gt;
&lt;li&gt;I asked them the question, what&#39;s the most difficult thing you&#39;ve ever endured? I keep it generally open-ended. Some of the stories you hear about what they had to deal with in their upbringing, they came from a broken home or they came with very few resources. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zatrudnianie ludzi - rekrutacja&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;They&#39;re so driven about making sure that their family and their children never have to go through what they have to go through, just tells you this person is intrinsically motivated. We should joke at BladeLogic, if someone has some character flaws, the parents can fix their character flaws growing up. There&#39;s no way we&#39;re going to be”&lt;/p&gt;
&lt;p&gt;“My motivation is to prove to people that I&#39;m good enough, to prove to people that I&#39;m just as good as people who graduated from an elite college and may have had a more, quote unquote, normal family childhood. Looking back, I think it really served me well. Objectively, you&#39;ve proven that. I&#39;m curious then if it persists as a source of motivation or if that has morphed into something different.”&lt;/p&gt;
&lt;p&gt;“Love Andy Grove. I think he was truly one of the several leaders of our industry. The best thing I&#39;ve learned from Andy was that there&#39;s only two reasons why people fail. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zasady, cechy sukcesu&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;One, they failed because they didn&#39;t have the skills to do the job.&lt;/li&gt;
&lt;li&gt;Or two, they failed because they didn&#39;t have the will or the drive to do the job. And if you net it out, that&#39;s the two reasons.&lt;br /&gt;
And invariably, we find that if you ask people on a two by two matrix to plot people, invariably, let&#39;s say they have high will, but they don&#39;t have necessarily all the skills to do the job. But then say someone who has a skill to do the job suddenly is not performing anymore and why did their will change? Well, maybe they felt they should have been promoted and they did it and they get demoralized.”&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;People overcomplicate things and all that. So we call that the skill will matrix. Do they have the skill to do the job and do they have the will? &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;overcomplication&lt;/a&gt;&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/searchable-messy-knowledge/business/the-database-evolution-invest-like-the-best/"/>
  </entry><entry>
    <title>twitter-Likes-1763820676743-2013-2025.11</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/reference-and-howtos/twitter-likes-1763820676743-2013-2025-11/</id>
    <content type="html">&lt;ul&gt;
&lt;li&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;Fear of responsibility is a catastrophic bottleneck. Since all progress in a system can only happen at the tightest bottleneck, you’ll never be able to be more productive or successful than you DARE to be. Todo apps &amp;amp; lifehacks can’t save you here &lt;a href=&quot;https://t.co/0jnHboFaTK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0jnHboFaTK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visakanv/status/1043937727371071488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visakanv&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;odpowiedzialność&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;produktywność i efektywność&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;life hacks i nawyki&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1/ Here’s a list of conversational frameworks I’ve picked up that have been helpful. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;komunikacja&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;modele, mental models, sposób myślenia&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Please add your own. &lt;a href=&quot;https://twitter.com/eriktorenberg/status/1069997684558303232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eriktorenberg&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;komunikacja&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re a decent programmer working on a startup, take on as much technical debt as you can stand. (If you&#39;re a decent programmer, you won&#39;t be able to stand too much.) &lt;a href=&quot;https://twitter.com/paulg/status/1082268906201456640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;dlug-technologiczny&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&#39;If you don&#39;t have time to talk to your users, you are not the right person to be prioritizing the problems for your team.&#39; &lt;a href=&quot;https://t.co/NzkSoTP7en&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NzkSoTP7en&lt;/a&gt; &lt;a href=&quot;https://twitter.com/MarcinWillmann/status/1085645043329716229&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MarcinWillmann&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;priorytetyzacja&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;customer development&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;customer centric&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the biggest disconnects between school and reality: schools give you credit for effort, but customers don&#39;t. Young founders often get whiplash from this transition at YC. After 21 years of getting credit for effort, it suddenly stops. &lt;a href=&quot;https://twitter.com/paulg/status/1085944346317332480&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;wyniki i rezultaty&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;produktywność i efektywność&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zasady, cechy sukcesu&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A majority of life’s errors are caused by forgetting what one is really trying to do.&amp;quot; Munger &lt;a href=&quot;https://twitter.com/zackkanter/status/1091120343303958528&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zackkanter&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;najpierw rzeczy najważniejsze&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;priorytetyzacja&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;modele, mental models, sposób myślenia&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In an age of information abundance, the only things that really need to be taught are those that are counterintuitive. &lt;a href=&quot;https://twitter.com/mmay3r/status/1091507062918459392&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mmay3r&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;uczenie się&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;przeładowanie-informacjami&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When did everything become an investment? &lt;a href=&quot;https://twitter.com/jasonfried/status/1092132984818413568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;inwestowanie&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’ve never read a guide on “how to build a twitter following”. By definition, instructions are a way to become undifferentiated. &lt;a href=&quot;https://twitter.com/mmay3r/status/1097817412341133313&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mmay3r&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;unikalność, differentiate&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;framework&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Time spent mastering the basics is time well spent. &lt;a href=&quot;https://twitter.com/TheStoicEmperor/status/1097821085532209152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmperor&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;uczenie się&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;produktywność i efektywność&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Regret minimization is a great framework because it puts your future self in charge, and he/she is who is going to live with the consequences of your present actions. &lt;a href=&quot;https://twitter.com/mmay3r/status/1098416603010555906&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mmay3r&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;framework&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;konsekwencje&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;podejmowanie decyzji&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;mindset-sukcesu&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;uniwersalne zasady, prawa&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Now there’s no need for LSD. &lt;a href=&quot;https://twitter.com/cyantist/status/1099371334075768832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;cyantist&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;psychologia ludzi&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Starting pointless interpersonal conflict is a reliable way to avoid doing anything productive or meaningful. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;konflikt&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;produktywność i efektywność&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;prokrastynacja&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Drama provides an excuse for stagnation. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;konflikt&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;produktywność i efektywność&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;prokrastynacja&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;People start fires and then praise themselves for putting them out. &lt;a href=&quot;https://twitter.com/TheStoicEmperor/status/1099481584741183488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmperor&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;stoicyzm&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to do something great with your life—whatever that means to you—remember this: you get an unlimited number of tries. The only constraining factor is your lifespan. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;mindset-sukcesu&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;odwaga w działaniu i ryzyko&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;sens życia&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The worst things you can do are:  &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;odwaga w działaniu i ryzyko&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;strach&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;mindset-sukcesu&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Sukces&lt;/a&gt; &lt;a class=&quot;internal-link&quot; target=&quot;&quot; data-note-icon=&quot;&quot; href=&quot;https://kamilrudnicki.com/what-is-limiting-people/&quot;&gt;What is limiting people&lt;/a&gt;&lt;br /&gt;
care what other people think,&lt;br /&gt;
not take risks,&lt;br /&gt;
fail slowly,&lt;br /&gt;
give up. &lt;a href=&quot;https://twitter.com/dcurtis/status/1103136570712965121&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dcurtis&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;odwaga w działaniu i ryzyko&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;🦋 słabości&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Intelligence is useless without the wisdom to know which games can and can&#39;t be won with intelligence. &lt;a href=&quot;https://twitter.com/mmay3r/status/1103514798229082113&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mmay3r&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;modele, mental models, sposób myślenia&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;wybór problemów i gier&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’m continuously amazed by how many people have to ask permission to buy a $50 book, yet are empowered to call a meeting that costs tens of thousands of dollars. &lt;a href=&quot;https://twitter.com/QuinnyPig/status/1103868678389420033&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuinnyPig&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;spotkania&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;edukacja&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Manager: identify problems&lt;/p&gt;
&lt;p&gt;Director: identify solutions&lt;/p&gt;
&lt;p&gt;VP: solve the problems&lt;/p&gt;
&lt;p&gt;.......&lt;/p&gt;
&lt;p&gt;Want to get promoted?&lt;/p&gt;
&lt;p&gt;Do the next one &lt;a href=&quot;https://twitter.com/jasonlk/status/1106020865395777536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;awans i rozwój kariery&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;retrospekcja&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Insight doesn’t come from success or failure but rather from reflection. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1107496358720593920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;retrospekcja&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Five core jobs of a CEO:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Nail down strategy for company &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;CEO&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;strategia&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Deliver capital to pursue that strategy &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;CEO&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;strategia&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;budżetowanie i alokowanie zasobów&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;odpowiedzialność&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Build team to execute&lt;/li&gt;
&lt;li&gt;Communicate the hell out of company strategy (internally and externally) &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;strategia&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;komunikacja&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;komunikacja firmowa&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zarządzanie&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;CEO&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;lider&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;transparencja&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Hold people accountable. &lt;a href=&quot;https://twitter.com/bznotes/status/1115413157013377024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bznotes&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zarządzanie ludźmi&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;rozliczanie innych&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;odpowiedzialność&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Being engaged&amp;quot; can be a way to avoid engagement with your own life. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;przepracowanie, busy&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Brak spokoju&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Multitasking, rozpraszacze, przeszkadzacze, uwaga&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;2025 - Uwolnić się od newsów i szybkiej dopaminy&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;quot;Being informed&amp;quot; is useless if the &amp;quot;news of the day&amp;quot; is irrelevant tomorrow. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;2025 - Uwolnić się od newsów i szybkiej dopaminy&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;quot;Being caught up&amp;quot; on low quality entertainment is a waste of irretrievable hours. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;produktywność i efektywność&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Multitasking, rozpraszacze, przeszkadzacze, uwaga&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zarządzanie czasem&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;life hacks i nawyki&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;najpierw rzeczy najważniejsze&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;focus&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Your time is limited. Spend it wisely. &lt;a href=&quot;https://twitter.com/TheStoicEmperor/status/1115533146919821312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmperor&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Czas&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;produktywność i efektywność&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Multitasking, rozpraszacze, przeszkadzacze, uwaga&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;priorytetyzacja&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;najpierw rzeczy najważniejsze&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;overthinking&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;jedna rzecz jednocześnie&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Opportunity cost&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Chronic overwhelm is the inevitable result of the refusal to make tough choices or accept trade-offs. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;priorytetyzacja&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;podejmowanie decyzji&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Multitasking, rozpraszacze, przeszkadzacze, uwaga&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;jedna rzecz jednocześnie&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You can’t do anything well if you are trying to do everything at once. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Multitasking, rozpraszacze, przeszkadzacze, uwaga&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;podejmowanie decyzji&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zarządzanie czasem&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;focus&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Overwhelm will be solved with definitive decision-making, not “time management.” &lt;a href=&quot;https://twitter.com/TheStoicEmperor/status/1116197997279186944&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmperor&lt;/a&gt; [type:: tweet] &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Multitasking, rozpraszacze, przeszkadzacze, uwaga&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;podejmowanie decyzji&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;zarządzanie czasem&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“are you happy? here’s why you shouldn’t be” — the media &lt;a href=&quot;https://twitter.com/micsolana/status/1121073911859257349&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;micsolana&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;szczęście&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The biggest threat to large and growing companies is the challenge of maintaining a customer focus, higher sense of urgency, speed and accountability.&lt;/p&gt;
&lt;p&gt;Beauraceacy, unnecessary politics, turf wars, empire building and indifference is the enemy of relevance and sustainable growth. &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1121863991914041344&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Channel-Product Fit &amp;gt; Product-Market Fit.&lt;br /&gt;
Distribution follows the power law. Products are built to fit channels, not the other way around. &lt;a href=&quot;https://twitter.com/Gaurav1105/status/1122125799799214081&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Gaurav1105&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Complaining is not a strategy. You have to work with the world as you find it, not as you would have it be.&amp;quot; — Jeff Bezos &lt;a href=&quot;https://twitter.com/shaneparrish/status/1122201774465540096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Solve for biggest risk first.&lt;/p&gt;
&lt;p&gt;What ppl often do is easy/low-risk things first, but nothing will increase self-confidence (+ anti-fragility) more than doing hard thing first.&lt;/p&gt;
&lt;p&gt;Identify top 5 risks for your biz (&amp;amp; also applies elsewhere) + address in order of difficulty, not ease. &lt;a href=&quot;https://twitter.com/eriktorenberg/status/1122619982410477568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eriktorenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hard work is necessary but not sufficient for success. You also need to work on the right things, which means saying no to the wrong things. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1123921407325483010&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Outcome over ego.&lt;/p&gt;
&lt;p&gt;Effective over efficient.&lt;/p&gt;
&lt;p&gt;Doing over watching. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1124340397415829505&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rain can only soak one who is dry&lt;/p&gt;
&lt;p&gt;Pain can only hurt one who craves pleasure&lt;/p&gt;
&lt;p&gt;Turmoil can only affect one who craves peace&lt;/p&gt;
&lt;p&gt;Conflict can only harm one who craves harmony&lt;/p&gt;
&lt;p&gt;Mud can only soil one who is clean.&lt;/p&gt;
&lt;p&gt;The one who craves Nothing&lt;/p&gt;
&lt;p&gt;Can be harmed by Nothing. &lt;a href=&quot;https://twitter.com/KapilGuptaMD/status/1124465712205053953&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KapilGuptaMD&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People who say the best technology wins are typing it out on their QWERTY keyboards&lt;/p&gt;
&lt;p&gt;Network effect wins &lt;a href=&quot;https://twitter.com/RyanSAdams/status/1124489417509490689&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanSAdams&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I had more important insights into my business at a day long meditation retreat than I have had during a couple weeks at the office. Sometimes you need to change your context to break through. &lt;a href=&quot;https://twitter.com/justinkan/status/1125535179244593152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A simple strategy that will save you so many headaches: don&#39;t care about winning trivial arguments.&lt;/p&gt;
&lt;p&gt;Someone says something you don&#39;t agree with? Smile, nod, and move on to more important things.&lt;/p&gt;
&lt;p&gt;Life is short. Not caring about having the last word will save you so much time. &lt;a href=&quot;https://twitter.com/JamesClear/status/1126664289782239232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My rules for writing:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Get to the point&lt;/li&gt;
&lt;li&gt;Delete unnecessary words&lt;/li&gt;
&lt;li&gt;Use simple words&lt;/li&gt;
&lt;li&gt;Remove cliches&lt;/li&gt;
&lt;li&gt;Use short sentences&lt;/li&gt;
&lt;li&gt;Be precise&lt;/li&gt;
&lt;li&gt;Surprise the reader&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Then, add rhythm. &lt;a href=&quot;https://t.co/ZZ7snRMmFv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZZ7snRMmFv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/david_perell/status/1127348174404890625&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Shoutout to all the PMs who keep their heads up &amp;amp; see all the tools, discovery/delivery, prototype, MVP vs SLC, user mapping, opportunity assessment, outcome driven, cross functional, story point buzzword salad for what it is: ways to help us build what customers need+love ✌️ &lt;a href=&quot;https://twitter.com/maggiecrowley/status/1129000656734433280&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maggiecrowley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most expensive way to pay for anything is with time. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1129883502684491776&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All my life I’ve sourced approval from others. This has led to some great accomplishments (starting companies, great investments) and a LOT of suffering.&lt;/p&gt;
&lt;p&gt;Currently learning to be the source of my own approval. It’s a challenge to unwind the traumas of the past! &lt;a href=&quot;https://twitter.com/justinkan/status/1132148643534741504&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every day at a startup is day zero. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1134859464509497345&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A common trope in VC is to ask whether the most important thing is the product, market, or team.&lt;/p&gt;
&lt;p&gt;@pmarca @eladgil @arachleff agree:&lt;/p&gt;
&lt;p&gt;Markets are most important&lt;/p&gt;
&lt;p&gt;But how to evaluate and pick markets?&lt;/p&gt;
&lt;p&gt;@nujabrol and I are working on a definitive guide. Some preliminary thoughts: &lt;a href=&quot;https://twitter.com/eriktorenberg/status/1135272936657416192&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eriktorenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A parent devotes his life to raising a child&lt;/p&gt;
&lt;p&gt;One day, the child leaves him.&lt;/p&gt;
&lt;p&gt;A man invests years into a friendship&lt;/p&gt;
&lt;p&gt;One day, they become enemies.&lt;/p&gt;
&lt;p&gt;A man spends a lifetime building a reputation&lt;/p&gt;
&lt;p&gt;One false move, and he is vilified.&lt;/p&gt;
&lt;p&gt;All things in this life are Empty and Fleeting. &lt;a href=&quot;https://twitter.com/KapilGuptaMD/status/1135765980238536704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KapilGuptaMD&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Here’s my ranked reading list from the past year. These books have changed my life!&lt;/p&gt;
&lt;p&gt;The 15 Commitments of Conscious Leadership&lt;br /&gt;
Leadership and Self-Deception&lt;br /&gt;
The Score Takes Care of Itself&lt;br /&gt;
The Way to Love&lt;br /&gt;
Playing to Win&lt;br /&gt;
The Power of Now&lt;br /&gt;
Can’t Hurt Me&lt;br /&gt;
Atomic Habits &lt;a href=&quot;https://twitter.com/justinkan/status/1136160710394671105&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Product postmortems work best when they are explicitly not about:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Guilt&lt;/li&gt;
&lt;li&gt;Blame&lt;/li&gt;
&lt;li&gt;Shame&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I&#39;ve found the same concept applies to politics, and life in general. &lt;a href=&quot;https://twitter.com/shl/status/1136299899761258496&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Learning how to prioritize well (work, stress, meetings, pain and life in general) should be taught in school or in college at the latest :). &lt;a href=&quot;https://twitter.com/bonatsos/status/1137525189338652675&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bonatsos&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@eliistender10 Make something you want. &lt;a href=&quot;https://twitter.com/paulg/status/1137634881373188097&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Something I taught a 7 yo today:&lt;/p&gt;
&lt;p&gt;Most of making things is figuring out why they don&#39;t work. &lt;a href=&quot;https://twitter.com/paulg/status/1138113145325674496&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A reader recently asked, &amp;quot;How do I get people to do things they don’t want to do?” Taken aback by the directness and potentially immoral implications of his question, my gut reaction was to say, “You can’t and shouldn’t!”&lt;/p&gt;
&lt;p&gt;To which his response was, “I have to; it’s my job.” &lt;a href=&quot;https://twitter.com/nireyal/status/1138152096585437184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nireyal&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;People who live far below their means enjoy a freedom that people busy upgrading their lifestyles can’t fathom.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1139986099223388160&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@millstoic &lt;a href=&quot;https://t.co/Ng5VYdueb1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Ng5VYdueb1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1140172065032425472&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Distraction is the disease of the moment.&lt;/p&gt;
&lt;p&gt;Mobile games, clickbait articles, obnoxiously repetitive pop songs.&lt;/p&gt;
&lt;p&gt;Distraction without satisfaction.&lt;/p&gt;
&lt;p&gt;Just interesting enough to keep the mind noisy and unfocused.&lt;/p&gt;
&lt;p&gt;A little silence will allow deeper truths to surface. &lt;a href=&quot;https://twitter.com/TheStoicEmperor/status/1140371533681926144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmperor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Three Rules for Advertising:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Use simple words and vivid stories.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Speak to the customer’s emotions. An ounce of emotion is worth a pound of evidence.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus on the customer, not yourself. Speak to the conversation that’s already happening in the customer’s mind. &lt;a href=&quot;https://twitter.com/david_perell/status/1141758623296606208&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus not on what is missing or what is wrong.&lt;/p&gt;
&lt;p&gt;Focus on doing your very best within the circumstances as they are. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1142294080736649217&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A manager&#39;s job is to become redundant.&lt;/p&gt;
&lt;p&gt;If your team doesn&#39;t work well without you, you didn&#39;t do your job. &lt;a href=&quot;https://twitter.com/andreasklinger/status/1142780321093619712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andreasklinger&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The reality is life is a single-player game.&lt;/p&gt;
&lt;p&gt;You’re born alone. You’re going to die alone. All of your interpretations are alone. All your memories are alone. You’re gone in three generations and nobody cares. Before you showed up, nobody cared.&lt;/p&gt;
&lt;p&gt;It’s all single-player.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/DeJayOfficial/status/1142783863069876224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DeJayOfficial&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you have something you want to do in your life: Just fucking do it. Don’t second guess yourself, don’t overthink it. Go with your instincts and have a bias to action. &lt;a href=&quot;https://twitter.com/justinkan/status/1142988826253484032&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people have no clue what they&#39;re doing with their time and still complain that they don&#39;t have any. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1143015577138737152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the long-run, adaptation is more useful than optimization.&lt;/p&gt;
&lt;p&gt;At some point, the environment you optimized for will shift. The rules of the game will change.&lt;/p&gt;
&lt;p&gt;The flexible prevail. &lt;a href=&quot;https://twitter.com/JamesClear/status/1143837862141595649&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Thinking about productivity and its tools&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Your email is what &lt;em&gt;others&lt;/em&gt; think you should work on.&lt;/li&gt;
&lt;li&gt;Your Todo list is what &lt;em&gt;you&lt;/em&gt; think you should work on.&lt;/li&gt;
&lt;li&gt;Your calendar is (usually) what you &lt;em&gt;actually&lt;/em&gt; work on.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;How much do they overlap in your world? &lt;a href=&quot;https://t.co/sLyKGagsKP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sLyKGagsKP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/destraynor/status/1143853719135621121&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;destraynor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A revealing question to ask about people: could you describe them as having a twinkle in their eye?&lt;/p&gt;
&lt;p&gt;If you try asking yourself this about people you know, you may notice some patterns. &lt;a href=&quot;https://twitter.com/paulg/status/1144940659566100485&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Go back a few hundred years and your life was pre-determined—a smith, a mason, a farmer.&lt;/p&gt;
&lt;p&gt;Go back fifty years and once you chose you were set—the company man or the housewife.&lt;/p&gt;
&lt;p&gt;Now, you can switch careers like you do underwear. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1144989270173790209&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s a hundred times easier to criticize than create. &lt;a href=&quot;https://twitter.com/shl/status/1145337971119276033&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My fav Chrome Extension. Mortality.&lt;br /&gt;
Gr8 for keeping focus. &lt;a href=&quot;https://t.co/r1oSb4tp6S&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/r1oSb4tp6S&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tomik99/status/1146090785751863297&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Trying and struggling looks like incompetence right up until the moment it looks like success. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1146768044494065664&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Be the company today you will be in 12 months&lt;/p&gt;
&lt;p&gt;Hire those people&lt;br /&gt;
Build that marketing site&lt;br /&gt;
Focus on that core customer &lt;a href=&quot;https://twitter.com/jasonlk/status/1146972683604643840&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In a world of abundance, constraints are the new freedom. &lt;a href=&quot;https://twitter.com/iam_preethi/status/1146997050589863937&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iam_preethi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your teaching ability is constrained by your writing ability.&lt;/p&gt;
&lt;p&gt;If you can’t write it down, it will be nearly impossible to teach it to others. &lt;a href=&quot;https://twitter.com/JamesClear/status/1147143483733479425&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In most cases, I think people are better off with no advice than some advice. There’s a good chance whatever advice you get lacks context and likely doesn’t apply. With no advice, something special happens - you have to figure it out yourself. You put your full brain to work. &lt;a href=&quot;https://twitter.com/jasonfried/status/1147164905277198337&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@sarthakgh Consider: Most people aren’t interested in learning about the technology behind the internet.&lt;/p&gt;
&lt;p&gt;What if your wrong and  people don’t inherently understand trade offs in everything?  i.e complicated topics that don’t feel immediately impactful on their day to day life &lt;a href=&quot;https://twitter.com/JasonHitchcock/status/1147175322325934081&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JasonHitchcock&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How clearly you write is directly correlated with how clearly you think.&lt;/p&gt;
&lt;p&gt;Cluttered writing implies cluttered thoughts. Plain and simple. &lt;a href=&quot;https://twitter.com/iam_preethi/status/1147187941816467456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iam_preethi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This tweet is so great that I will repost it from time to time: &lt;a href=&quot;https://t.co/vh6QkRfeG5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vh6QkRfeG5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/bolchowka/status/1147250735945527296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bolchowka&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Peace of mind is the highest wealth. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1147883453863604225&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SMB support:  &amp;quot;Sorry, here&#39;s how you can do it: [link]&amp;quot;&lt;/p&gt;
&lt;p&gt;Enterprise support:  &amp;quot;Let&#39;s fix it.&lt;br /&gt;
Can we jump on a Zoom?&amp;quot; &lt;a href=&quot;https://twitter.com/jasonlk/status/1148276507023773696&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Priorities&amp;quot; is an oxymoron.&lt;/p&gt;
&lt;p&gt;You can only have one priority at a time. Your second priority is equivalent to your 99th priority. &lt;a href=&quot;https://twitter.com/shl/status/1149096082548203520&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Two lessons I learned when building my first business:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You only get value out of projects that you finish.&lt;/li&gt;
&lt;li&gt;Brilliant new ideas are often defensive mechanisms against the fear of failing to finish the last project. &lt;a href=&quot;https://twitter.com/zackkanter/status/1149315186110554113&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zackkanter&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Software eats anything legible with sensors.&lt;/p&gt;
&lt;p&gt;We are sensorizing the world.&lt;/p&gt;
&lt;p&gt;Software is eating the world. &lt;a href=&quot;https://twitter.com/mmay3r/status/1149600012633964545&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mmay3r&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Your vibe attracts your tribe.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As you grow, your life energy will gradually increase, which will change your vibe and you will resonate less with your tribe.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You will eventually outgrow your tribe because it will become your box.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Be grateful, let go and move on. &lt;a href=&quot;https://twitter.com/MindTendencies2/status/1151550086729461761&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MindTendencies2&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The more complexity (features) you bake into your product, the more surface area for questions will arise from customers, investors and pundits. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1153857319677001728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the best things about starting your career at Amazon is grooming in some fantastic values in early years of life. One of those is writing pithy, powerful documents.&lt;/p&gt;
&lt;p&gt;(Credit: On LinkedIn by Abe Diaz) &lt;a href=&quot;https://t.co/dQUhy3KJ37&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/dQUhy3KJ37&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nipunmehra/status/1154590521345490945&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nipunmehra&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@eshear I prefer the „product/distribution fit” term. Your idea will always have the market (some smaller, some bigger). The real challenge is to reach out to people in your market without being too pushy so that they ignore you. &lt;a href=&quot;https://twitter.com/bolchowka/status/1155360523241906176&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bolchowka&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Social proof is the number one thing that convinces you to choose a product, support a political candidate, like a food, or enjoy an activity. &lt;a href=&quot;https://twitter.com/auren/status/1156939747698171909&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;auren&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If something&#39;s been on your to-do list for way too long, just remove it.&lt;/p&gt;
&lt;p&gt;It&#39;s not that important. &lt;a href=&quot;https://twitter.com/shl/status/1157404322885275649&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re focused on the outcome, you&#39;re not focused on the process.&lt;/p&gt;
&lt;p&gt;Sustained success comes from a fanatical focus on process.&lt;/p&gt;
&lt;p&gt;You don&#39;t need to be perfect, just better than yesterday. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1158789411276038154&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being a founder is hard. Being an early employee is hard. Being a VC is hard. Being a politician is hard. Being an engineer is hard. Being a writer is hard. Being a friend is hard. Being a partner is hard. Being a parent is hard.&lt;/p&gt;
&lt;p&gt;It&#39;s all hard.&lt;/p&gt;
&lt;p&gt;Life is hard, and then you die. &lt;a href=&quot;https://twitter.com/shl/status/1161729827994386432&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@shl Me (as a kid): &amp;quot;life isn&#39;t fair!&amp;quot;&lt;br /&gt;
My dad (every time): &amp;quot;life IS fair, it sucks for everybody!&amp;quot; &lt;a href=&quot;https://twitter.com/cortmcginty/status/1161734234806972417&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;cortmcginty&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People don&#39;t want to use your software.&lt;/p&gt;
&lt;p&gt;They want to lose weight, laugh, be entertained, get smarter, spend time with loved ones, go home on time, sleep adequately, eat good food, be happy.&lt;/p&gt;
&lt;p&gt;Your product is only as good as the experiences it enables people to have. &lt;a href=&quot;https://twitter.com/shl/status/1162031786248900609&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t apologize because you feel sorry.&lt;/p&gt;
&lt;p&gt;Apologize because you caused damage. &lt;a href=&quot;https://twitter.com/MindTendencies2/status/1164018262381694976&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MindTendencies2&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Results =&lt;br /&gt;
(Hard Work*Time)^Strategy&lt;/p&gt;
&lt;p&gt;Working hard is important, but working on the right thing is more important. A great strategy can deliver exponential results.&lt;/p&gt;
&lt;p&gt;Of course, the best strategy is worth nothing if you never get to work. Zero to the millionth power is still zero. &lt;a href=&quot;https://twitter.com/JamesClear/status/1164143547530076160&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Things you don&#39;t need to launch your product: a great name, a one-word domain, a beautiful logo, an ever better website, brilliant copy, perfect code, custom illustrations, shiny buttons, optimized CSS…&lt;/p&gt;
&lt;p&gt;Things you do need: a product that solves a problem for someone. That&#39;s it. &lt;a href=&quot;https://twitter.com/shl/status/1164752958224916480&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you solve a problem for someone, you will be surprised by how much you don&#39;t need.&lt;/p&gt;
&lt;p&gt;If you don&#39;t solve a problem for someone, you&#39;ll be surprised by how much won&#39;t help. &lt;a href=&quot;https://twitter.com/shl/status/1164755912210255873&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Never argue with someone who believes there own lies. &lt;a href=&quot;https://twitter.com/Divine_Gypsy/status/1165461538339262464&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Divine_Gypsy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The mistakes that inexperienced founders make have a lot in common with those that inexperienced writers make. They go about things in an overcomplicated way, because the obvious, simple approach doesn&#39;t seem &amp;quot;serious&amp;quot; enough. &lt;a href=&quot;https://twitter.com/paulg/status/1165816883389427712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Very much like @garyvee’s lens here… “Everyone’s trying to be 3 for 3, aiming to only make perfect decisions. 3 wins, 0 losses. I’m trying to be 118-92.” &lt;a href=&quot;https://t.co/2Iwy2BTpCS&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2Iwy2BTpCS&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonfried/status/1167150701354598400&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Yes, OKRs are almost certainly harmful for pre-P/M fit startups because it causes teams to optimize towards goals as opposed to constantly asking if the goal is even the right one to begin with? Plus the OKR cycles are typically quarters when iteration should be happening weekly &lt;a href=&quot;https://twitter.com/andrewchen/status/1168249691919638529&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andrewchen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The top 10 rebuttals to: “Agile is great. But it won’t work here.” &lt;a href=&quot;https://t.co/CcEsGr3PzB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CcEsGr3PzB&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Which is the one you hear most often? &lt;a href=&quot;https://t.co/3lTaB2kNtA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3lTaB2kNtA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jboogie/status/1168525993369382914&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jboogie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t run from conflict. Don’t run towards conflict. Just be ok with conflict if it happens and accept it head on.&lt;/p&gt;
&lt;p&gt;Difficult situations will fuel your growth. &lt;a href=&quot;https://twitter.com/justinkan/status/1168609255257063424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sometimes it’s more efficient to make the mistake than to spend the time wondering whether it would have been a mistake. &lt;a href=&quot;https://twitter.com/mmay3r/status/1168686017513050112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mmay3r&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can tell when someone uses their own product.&lt;/p&gt;
&lt;p&gt;You can definitely tell when they don&#39;t. &lt;a href=&quot;https://twitter.com/shl/status/1168941601269436418&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My favorite interview question: « On a scale from 0 to 10 how happy are you at your current job? »  (Most common answer: 7) «  What would make you go from 7 to 10? » &lt;a href=&quot;https://twitter.com/collinmathilde/status/1169649382666440710&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;collinmathilde&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s incredible how quickly you can move &amp;amp; build things when you have full autonomy to make decisions. &lt;a href=&quot;https://twitter.com/abarrallen/status/1169666230254329858&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;abarrallen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What are the user behaviors that drive business results? How can we create more of them?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/HCuN8agxCv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HCuN8agxCv&lt;/a&gt; &lt;a href=&quot;https://t.co/CULHAVAC65&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CULHAVAC65&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jseiden/status/1169951134779400201&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jseiden&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Most geniuses—especially those who lead others—prosper not by deconstructing intricate complexities but by exploiting unrecognized simplicities.” — Andy Benoit &lt;a href=&quot;https://twitter.com/shaneparrish/status/1169962807980417029&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Surround yourself with people who will tell you how it is.&lt;/p&gt;
&lt;p&gt;Subtlety is a waste of time. &lt;a href=&quot;https://twitter.com/iam_preethi/status/1170385899726626816&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iam_preethi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Settings are for successful products. For MVP, just get the defaults right. &lt;a href=&quot;https://twitter.com/DavidSacks/status/1172978856883417088&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DavidSacks&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;We’re taught to do things the right way. But if you want to discover something that other people haven’t, you need to do things the wrong way.&amp;quot;&lt;/p&gt;
&lt;p&gt;— James Dyson &lt;a href=&quot;https://t.co/t1DKqHPXJ7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/t1DKqHPXJ7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1173552508020695040&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;m slightly obsessed with companies like @SouthwestAir, @costco, @Workday that have such long-tenured employees &amp;amp; an incredible focus on culture to deliver better value for customers. &lt;a href=&quot;https://t.co/Cw7HFKwMQN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Cw7HFKwMQN&lt;/a&gt; &lt;a href=&quot;https://twitter.com/abarrallen/status/1174018417633808384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;abarrallen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People shouldn’t feel safe around you because you’re harmless.&lt;/p&gt;
&lt;p&gt;They should feel that way because you’re dangerous, and you’re on their side. &lt;a href=&quot;https://twitter.com/tannerguzy/status/1174181599300268033&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tannerguzy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you know what matters to you, it’s a lot easier to ignore what doesn’t. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1174852500756692992&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Marketing and Sales is not a beauty contest. &lt;a href=&quot;https://twitter.com/CaseyA/status/1175118519379169285&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;CaseyA&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;First comes timing, then comes luck. Whatever’s next is such a distant third that it’s nearly impossible to see. Whatever fills that slot could just as well swap places with the 10th or 20th thing that matters. Plenty of things matter, but timing + luck matter so much more. &lt;a href=&quot;https://twitter.com/jasonfried/status/1175484107775795200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most failures are one-time costs.&lt;/p&gt;
&lt;p&gt;Most regrets are recurring costs.&lt;/p&gt;
&lt;p&gt;The pain of inaction stings longer than the pain of incorrect action. &lt;a href=&quot;https://twitter.com/JamesClear/status/1176234106746802176&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No over yes.&lt;br /&gt;
Hard over easy.&lt;br /&gt;
Outcome over ego.&lt;br /&gt;
Simple over complex.&lt;br /&gt;
Listen over speaking.&lt;br /&gt;
Doing over criticizing.&lt;br /&gt;
Effective over efficient.&lt;br /&gt;
Long term over short term.&lt;br /&gt;
Avoiding stupidity over seeking brilliance. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1176844639057436673&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most of you should be worried less about being a “good man” and more about getting what it is you want out of life.&lt;/p&gt;
&lt;p&gt;People won’t care that you’re an asshole if you’re rich and useful&lt;/p&gt;
&lt;p&gt;In the other case there’s a good chance you end up a virtuous loser with nothing to show for it &lt;a href=&quot;https://twitter.com/MascMillennial/status/1176864032747380736&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MascMillennial&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Failure is the cost of ambition. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1177980362137444354&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do not apologize for taking steps to protect your peace. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1178628046556979200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;LOVE this quote from @JamesClear in his newest newsletter. This is one of my must-read newsletters (b/c of ideas like this): &amp;quot;How would the person I wish to be act today?&amp;quot; &lt;a href=&quot;https://twitter.com/acmejla/status/1179808482008207360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;acmejla&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t worry that people will “steal your ideas.”&lt;/p&gt;
&lt;p&gt;Worry that they’ll love their customers harder than you and then use what they learn to outwork and outsmart you. &lt;a href=&quot;https://twitter.com/KateBour/status/1180147620020396034&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KateBour&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I recently left Stripe after 4.5 formative and magical years. Some reflections on what made working at Stripe feel different than working other places:&lt;br /&gt;
1/Turpentine&lt;br /&gt;
2/Writing&lt;br /&gt;
3/Meticulousness&lt;br /&gt;
4/Principled decision-making&lt;br /&gt;
5/Ambition&lt;br /&gt;
6/Talking up&lt;br /&gt;
7/The API metaphor &lt;a href=&quot;https://twitter.com/zebriez/status/1180171989979258880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zebriez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;.@AbhinandanShah asked me, “What part of Steve Jobs’ legacy do you think the world misses the most?&lt;/p&gt;
&lt;p&gt;My answer, ”The extreme clarity in which he saw things as they were and what they could become.”&lt;/p&gt;
&lt;p&gt;Rest In Peace, old friend. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1180528890084614144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Optimists solve problems when they arise.&lt;/p&gt;
&lt;p&gt;Pessimists invent problems before they start. &lt;a href=&quot;https://twitter.com/JamesClear/status/1180535389393768449&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As infectious as a good attitude is a work ethic. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1181244897975652357&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you like saying yes, get better at saying no. No gives you more opportunities to say yes to the things you really want to do/make/try/explore/discover. &lt;a href=&quot;https://twitter.com/jasonfried/status/1181250118869237763&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The person who learns the most in any classroom is the teacher.&lt;/p&gt;
&lt;p&gt;Lesson:&lt;/p&gt;
&lt;p&gt;If you really want to learn a topic, then “teach” it.&lt;/p&gt;
&lt;p&gt;Write a book.&lt;br /&gt;
Teach a class.&lt;br /&gt;
Build a product.&lt;br /&gt;
Start a company.&lt;/p&gt;
&lt;p&gt;The act of making something will force you to learn more deeply than reading ever will. &lt;a href=&quot;https://twitter.com/JamesClear/status/1181927285840121859&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every entrepreneur should be forced to write their own copy and tackle customer service tickets on a Friday evening. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1182088865143611393&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is what continuously successful organizations do, they fight complexity and pull it back to the basics. The New England Patriots are masters at this. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1186475449691410433&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;When people speak in a very elaborate and sophisticated way, they either want to tell a lie, or to admire themselves. You should not believe such people. Good speech is always clear, clever, and understood by all.&amp;quot;&lt;br /&gt;
—Leo Tolstoy &lt;a href=&quot;https://twitter.com/JamesClear/status/1187388022171586562&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To not get fucked by the modern environment, you have to repress the natural human tendency to be irrational and spontaneous, and instead train yourself to be rational and structured at all times. Yuck. &lt;a href=&quot;https://twitter.com/iam_preethi/status/1187405500704530432&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iam_preethi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@jadenkore @naval @0x49fa98 @Cernovich My only wish, is to live like a poor person with lots of money. &lt;a href=&quot;https://twitter.com/MyFriendFate/status/1187914899353194496&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MyFriendFate&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone wants to be happy.&lt;/p&gt;
&lt;p&gt;Actually, it’s more accurate to say that no one wants to be unhappy.&lt;/p&gt;
&lt;p&gt;Happiness is subjective and difficult to define. Unhappiness is straightforward and simple.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/DptBCV7buf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DptBCV7buf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/EdLatimore/status/1188213345142411264&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;EdLatimore&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ask your boss today what 1 thing you can take off her plate.  And just do it.&lt;/p&gt;
&lt;p&gt;This may backfire.&lt;/p&gt;
&lt;p&gt;It may not be appreciated.&lt;/p&gt;
&lt;p&gt;Or ... it just might bond you for life.&lt;/p&gt;
&lt;p&gt;Because no one does this. &lt;a href=&quot;https://twitter.com/jasonlk/status/1188836691819163650&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When ppl come across a theory they dislike but fear may contain truth or appeal, a common response is to attack the motivations &amp;amp; character of the ppl proposing the theory (&amp;amp; their affiliates), instead of debating it on its own terms, where they could lose or change their minds. &lt;a href=&quot;https://twitter.com/eriktorenberg/status/1189599045875945472&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eriktorenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’ve been doing sales for a solid month.&lt;/p&gt;
&lt;p&gt;I have a better grasp of what really MATTERS to our customers, where their pain, &amp;amp; the opportunity, really is than I’ve ever had before.&lt;/p&gt;
&lt;p&gt;If you want to level up as a product lead, get on the 📞 &amp;amp; start selling. &lt;a href=&quot;https://twitter.com/maggiecrowley/status/1189674341069447170&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maggiecrowley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life is too short to not be pursuing the best opportunity you know of. &lt;a href=&quot;https://twitter.com/JamesClear/status/1189701242764877824&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You started a blog&lt;br /&gt;
You started school&lt;br /&gt;
You started a course&lt;br /&gt;
You started budgeting&lt;br /&gt;
You started eating healthy&lt;br /&gt;
You started a workout program&lt;br /&gt;
You started learning a language&lt;/p&gt;
&lt;p&gt;Everyone “starts” something&lt;/p&gt;
&lt;p&gt;Finish something &lt;a href=&quot;https://twitter.com/CJ_Johnson17th/status/1189765993045708800&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;CJ_Johnson17th&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For knowledge work, time spent has little to do with value created and the forty hour workweek is anachronistic nonsense. &lt;a href=&quot;https://twitter.com/naval/status/1189826766308704256&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Developing a positive relationship with suffering is one of the most important skills to master. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1191020068408197120&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The goal is to eliminate the interface. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1191366716078477312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A KPI with multiple owners,&lt;/p&gt;
&lt;p&gt;Is a KPI with no owners. &lt;a href=&quot;https://twitter.com/jasonlk/status/1191384917441040387&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Happiness generally isn&#39;t about making more money, but rather freedom.&lt;/p&gt;
&lt;p&gt;The freedom to say no to things you don&#39;t want to do. The freedom to say no to people you don&#39;t like. The freedom to not feel like you are obligated to say &amp;quot;yes.&amp;quot;&lt;/p&gt;
&lt;p&gt;Freedom is saying yes when you want to. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1191452034882555904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A simple question to run your daily decisions through:&lt;/p&gt;
&lt;p&gt;Will this cost me time in the future or save me time in the future? &lt;a href=&quot;https://twitter.com/JamesClear/status/1191685277384876032&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tomorrow is overrated.&lt;br /&gt;
Today is underrated. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1191772298832953345&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The larger the herd, the lower the returns. &lt;a href=&quot;https://twitter.com/naval/status/1192897375670398976&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t be nice and let people walk all over you&lt;/p&gt;
&lt;p&gt;Because no one ever thanked a carpet&lt;/p&gt;
&lt;p&gt;Be kind with your strong boundaries&lt;/p&gt;
&lt;p&gt;Because you need to respect yourself to respect others &lt;a href=&quot;https://twitter.com/MindTendencies2/status/1193201866118582272&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MindTendencies2&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clarity of thinking with relentless execution can create fortunes. Amazon won with selection. And if you expand this need to have everything on your store, you can eat the world. &lt;a href=&quot;https://twitter.com/kunalb11/status/1193229738250137601&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most powerful productivity tool ever invented is simply the word &amp;quot;no.&amp;quot; &lt;a href=&quot;https://twitter.com/shaneparrish/status/1193299642924052481&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;👇some of the best product advice I’ve ever seen in a tweet. &lt;a href=&quot;https://twitter.com/JSchwarz9/status/1193400891727958016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JSchwarz9&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Depression is a powerful force of good.&lt;/p&gt;
&lt;p&gt;It&#39;s supposed to stop you from living a shitty life.&lt;/p&gt;
&lt;p&gt;It&#39;s literally your brain telling you &amp;quot;wake up, you&#39;re living this wrong&amp;quot;&lt;/p&gt;
&lt;p&gt;Taking pills to suppress it won&#39;t change your reality. Only make your shitty life smell less bad. &lt;a href=&quot;https://twitter.com/DamianProsa/status/1193559254185193474&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DamianProsa&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You are not your problems.&lt;/p&gt;
&lt;p&gt;Address each problem as it presents itself to you. Not as your mind regards them.&lt;/p&gt;
&lt;p&gt;Your thoughts about your problems are not the actual problems.&lt;/p&gt;
&lt;p&gt;Those thoughts are just extensions that prolong the idea of suffering. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1194200757714771971&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Huge companies stop being innovative not because of increased bureaucracy but because as companies grow they get worse at hiring.&lt;/p&gt;
&lt;p&gt;Recruiters play it safe and look for signals and experience on resumes.&lt;/p&gt;
&lt;p&gt;They stop hiring for slope and start hiring for y-intercept. &lt;a href=&quot;https://twitter.com/danielsifredo/status/1195493314918678529&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;danielsifredo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you lose your money, you can often earn it back.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;But if you misuse your time, you can never get it back.&lt;/p&gt;
&lt;p&gt;Where you put your time shows the world what you really value and believe. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1195923496741814272&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;ol&gt;
&lt;li&gt;Let&#39;s talk about focus. In early stage startups, focus is the &lt;em&gt;most important thing&lt;/em&gt;.  Because you don&#39;t have many ppl or resources, you have limited time and money to do things. But how does one focus? &lt;a href=&quot;https://twitter.com/dunkhippo33/status/1197925841339961344&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dunkhippo33&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Effective people do things ineffective people don’t like to do.&lt;/p&gt;
&lt;p&gt;A large part of the separation between effective and not is the willingness to do obvious things nobody wants to do. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1198260002525470721&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A few mentors have told me that you shouldn’t default to hiring even though most of your team will push for it. Instead you should figure out how to automate things. Today a good buddy just hit $2m in rev for the month of nov. the biz is 14 months old. He has 3 employees. &lt;a href=&quot;https://twitter.com/thesamparr/status/1198328628083216384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thesamparr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Reading is the best way to scale your learning, writing is the best way to scale your thinking. &lt;a href=&quot;https://twitter.com/Bosefina/status/1199875720836722689&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Bosefina&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Failure is a part of life. The people who never fail are the people who fail to live.&lt;/p&gt;
&lt;p&gt;Pushing things forward and leaving your comfort zone means you&#39;re going to make mistakes. It means the world will kick your ass sometimes.&lt;/p&gt;
&lt;p&gt;When it happens, learn &amp;amp; go again.&lt;/p&gt;
&lt;p&gt;Relentless. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1200091316559974402&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Are you struggling with productivity? Follow our 6 tips to complete your tasks faster and avoid distractions. 🚀&lt;br /&gt;
&lt;a href=&quot;https://t.co/gceTgNeWG2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gceTgNeWG2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/HeySpace_App/status/1200429425562705920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;HeySpace_App&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A successful life is not about winning all the games you play, but about stopping to play all the games that have a winner. &lt;a href=&quot;https://twitter.com/SvenSchnieders/status/1200751476341182464&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SvenSchnieders&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can go to school and spend years trying to learn about great marketing.&lt;/p&gt;
&lt;p&gt;Or you can spend a few minutes watching Steve Jobs: &lt;a href=&quot;https://t.co/I2kMipVg3n&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/I2kMipVg3n&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1200801868693286912&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Job of CEO after about $3m ARR or so, generally speaking:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Recruiting&lt;/li&gt;
&lt;li&gt;Recruiting&lt;/li&gt;
&lt;li&gt;Customers&lt;/li&gt;
&lt;li&gt;Product Strategy&lt;/li&gt;
&lt;li&gt;Recruiting&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Also&lt;/p&gt;
&lt;p&gt;Keeping company funded &lt;a href=&quot;https://twitter.com/jasonlk/status/1201483290940727296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t launch something too pretty.&lt;/p&gt;
&lt;p&gt;It may lead you to thinking you have product-market fit but you may actually just have design-designers fit. &lt;a href=&quot;https://twitter.com/shl/status/1201510224277860352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;At ~$60M of revenue:&lt;br /&gt;
Workday: 54% software/ 46% services&lt;br /&gt;
Veeva: 53% software/ 47% services&lt;/p&gt;
&lt;p&gt;At ~$800M of revenue:&lt;br /&gt;
Workday: 78% software/ 22% services&lt;br /&gt;
Veeva: 81% software/ 19% services&lt;/p&gt;
&lt;p&gt;Professional services are sometimes needed to scale software revenue with enterprise customers. &lt;a href=&quot;https://twitter.com/chetanp/status/1201540828096679940&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;chetanp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In year one you likely don’t need:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A fancy office&lt;/li&gt;
&lt;li&gt;A full-time assistant&lt;/li&gt;
&lt;li&gt;An office / ops mgr&lt;/li&gt;
&lt;li&gt;2000+ sqft of office space&lt;/li&gt;
&lt;li&gt;Fancy furniture&lt;/li&gt;
&lt;li&gt;Lots of employees (&amp;gt; 10)&lt;/li&gt;
&lt;li&gt;Perfect design&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What you do need:&lt;br /&gt;
A product people love in spite of its flaws.&lt;/p&gt;
&lt;p&gt;The rest will come. &lt;a href=&quot;https://twitter.com/Suhail/status/1201568573992382466&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Let’s say you are 20.&lt;/p&gt;
&lt;p&gt;Would you trade places...&lt;/p&gt;
&lt;p&gt;— with a 80-year-old billionaire?&lt;/p&gt;
&lt;p&gt;— with a 60-year-old billionaire?&lt;/p&gt;
&lt;p&gt;— with a 40-year-old billionaire?&lt;/p&gt;
&lt;p&gt;No, no, and no.&lt;/p&gt;
&lt;p&gt;That’s how precious time is. &lt;a href=&quot;https://twitter.com/orangebook/status/1202535842654195717&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To discuss next week with your team:&lt;/p&gt;
&lt;p&gt;What are the top 5 things you as a company are doing in Q1 2020 to drive up NPS?&lt;/p&gt;
&lt;p&gt;When will they be done?&lt;/p&gt;
&lt;p&gt;Who owns them? &lt;a href=&quot;https://twitter.com/jasonlk/status/1202657114591825926&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Avoiding regret is more important to life satisfaction than increasing accomplishments. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1203071681234919430&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I talk to so many talented people who are interested in starting companies. My &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; advice is to find a &lt;em&gt;really&lt;/em&gt; painful problem to solve, then find the best tech to solve it.&lt;/p&gt;
&lt;p&gt;My &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#2&quot;&gt;#2&lt;/a&gt; advice is be open to product pivots. You might find a high-growth trend you didn’t anticipate. &lt;a href=&quot;https://twitter.com/abarrallen/status/1203363423163043840&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;abarrallen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#3&quot;&gt;#3&lt;/a&gt; advice is to spend as much time with customers as possible. At the beginning, startups are as much about gut as about data. Use customers as your design partners, and create a product a small group of people can’t live without. &lt;a href=&quot;https://twitter.com/abarrallen/status/1203363424148713474&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;abarrallen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 years ago, I was working 12 hour days running a single business.&lt;/p&gt;
&lt;p&gt;10 years later, my business partner Chris and I live the life of retirees.&lt;/p&gt;
&lt;p&gt;Yet:&lt;/p&gt;
&lt;p&gt;We now own 20 majority owned businesses.&lt;/p&gt;
&lt;p&gt;With over 400 employees.&lt;/p&gt;
&lt;p&gt;And 80 minority investments.&lt;/p&gt;
&lt;p&gt;Plus a bakery and hotel. &lt;a href=&quot;https://twitter.com/awilkinson/status/1204146669211856898&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Gossip is a currency people often use in powerless workplace environments to feel powerful.&lt;/p&gt;
&lt;p&gt;A truly empowered place sees a decline of this currency being used.&lt;/p&gt;
&lt;p&gt;Culture can be assessed at water coolers checking what % of chat over there is about people or ideas. &lt;a href=&quot;https://twitter.com/kunalb11/status/1205016136850391040&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If life is a video game, the graphics are great, but the plot is confusing &amp;amp; the tutorial is way too long &lt;a href=&quot;https://twitter.com/elonmusk/status/1205030950750412800&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Really, it takes the competition 3 years to catch up&lt;/p&gt;
&lt;p&gt;But you&#39;ve also given them a roadmap&lt;/p&gt;
&lt;p&gt;Hyper-agile teams get so much done in those 3 years&lt;/p&gt;
&lt;p&gt;The rest sort of struggle to keep up with bugs, gaps, debt, etc. &lt;a href=&quot;https://twitter.com/jasonlk/status/1205559071673217024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You don&#39;t win the game by playing fair.&lt;/p&gt;
&lt;p&gt;You win it by designing a new game in which you own all the pieces, then convincing the world to play. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1205563554201509888&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;$1m ARR, growing 6% MoM = good product&lt;/p&gt;
&lt;p&gt;$1m ARR, growing 10% MoM = product-market fit&lt;/p&gt;
&lt;p&gt;$1m ARR, growing 15%+ MoM = market pull &lt;a href=&quot;https://twitter.com/jasonlk/status/1205576746180825088&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2020:  GBM&lt;/p&gt;
&lt;p&gt;Get&lt;br /&gt;
Better&lt;br /&gt;
Mentors&lt;/p&gt;
&lt;p&gt;SaaS is a playbook&lt;/p&gt;
&lt;p&gt;Plenty of folks now know what you are going through&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Find at least 1&lt;/li&gt;
&lt;li&gt;Give her some shares&lt;/li&gt;
&lt;li&gt;Go to her office every 60 days&lt;/li&gt;
&lt;li&gt;Send her a few candidates to screen&lt;/li&gt;
&lt;li&gt;Discuss the irreversible decisions&lt;/li&gt;
&lt;li&gt;Plan victory &lt;a href=&quot;https://twitter.com/jasonlk/status/1206967691736600576&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;First time founders think 90% product and 10% distribution.  Second time founders think 50% product and 50% distribution.  Need obsess about how you reach customers as much as how you will delight them. &lt;a href=&quot;https://twitter.com/bksun/status/1207409803779334157&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bksun&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Productivity is simply getting the result you want. If you get the result you want, then you are productive.&lt;/p&gt;
&lt;p&gt;If you don’t get the result you want, then you’re not productive.&lt;/p&gt;
&lt;p&gt;When you define productivity this way, it keeps you from confusing being “busy” with productivity. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1208089917085114373&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;in 2005, @paulg discovered an arbitrage opportunity by identifying that young technical founders were being overlooked&lt;/p&gt;
&lt;p&gt;in 2019, with the rise of no-code &amp;amp; the intense focus on technical founders, perhaps the pendulum has swung + a new arbitrage opp is biz&amp;amp;product minded founders &lt;a href=&quot;https://twitter.com/eriktorenberg/status/1208230807044640768&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eriktorenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When employees feel like they belong, they perform 56% better, turnover risk drops 50%, and sick days usage is reduced by 75%. For a 10,000-person company, this would result in annual savings of more than $52 million. &lt;a href=&quot;https://t.co/peHT1D41xc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/peHT1D41xc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/HarvardBiz/status/1208386790752751616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;HarvardBiz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The key to creating a happy and satisfied life is learning to get the results you want rather than the results that other people want you to have. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1208405706690482177&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Instead of asking customers what they’d like to see in the future, instead ask what they’d like removed. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1208890201126268929&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As we head into 2020, one simple question to reflect on is whether the things you&#39;re doing right now will get you where you want to go. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1208945151302946816&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One way to avoid &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#procrastination&quot;&gt;#procrastination&lt;/a&gt;  is to track your daily time.&lt;br /&gt;
I found &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#timecamp&quot;&gt;#timecamp&lt;/a&gt;  is one of the best tool. I have ever used for tracking my work time.&lt;/p&gt;
&lt;p&gt;Thanks @timecamp&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#programming&quot;&gt;#programming&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#coderlife&quot;&gt;#coderlife&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#freelancers&quot;&gt;#freelancers&lt;/a&gt;  &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#developer&quot;&gt;#developer&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#softwaredeveloper&quot;&gt;#softwaredeveloper&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#wordpress&quot;&gt;#wordpress&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#technology&quot;&gt;#technology&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#programmers&quot;&gt;#programmers&lt;/a&gt; &lt;a href=&quot;https://twitter.com/1naveengiri/status/1211668340696944646&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;1naveengiri&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Trying to please everyone is a guaranteed prescription for unhappiness.&lt;/p&gt;
&lt;p&gt;The first step toward emotional freedom is realizing that you&#39;re not for everyone. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1211672680476401664&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your time has monetary value to advertisers, influencers, and Netflix.&lt;/p&gt;
&lt;p&gt;It should have a deeper value to you.&lt;/p&gt;
&lt;p&gt;It is your life.&lt;/p&gt;
&lt;p&gt;Don’t give it away too cheaply. &lt;a href=&quot;https://twitter.com/TheStoicEmperor/status/1212403669976547328&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmperor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2/ Think about your week &amp;amp; bucket all activities into a matrix: Time (A lot of time, Little time) vs. Importance (Very, Not very)&lt;/p&gt;
&lt;p&gt;I extended &amp;quot;importance&amp;quot; to add Distracting &amp;amp; Relaxing as well.&lt;/p&gt;
&lt;p&gt;This will make you reflect on your priorities in life. &lt;a href=&quot;https://t.co/XNmb8EG6vL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XNmb8EG6vL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Suhail/status/1212816627248402432&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Trend that nobody is talking about: Curation is a profitable business now.&lt;/p&gt;
&lt;p&gt;My favorite examples:&lt;/p&gt;
&lt;p&gt;• @Earth curates images.&lt;br /&gt;
• @FarnamStreet curates ideas.&lt;br /&gt;
• @TheBrowser curates articles.&lt;/p&gt;
&lt;p&gt;Good taste is a real business model.&lt;/p&gt;
&lt;p&gt;The future we dreamed about is finally here. &lt;a href=&quot;https://twitter.com/david_perell/status/1213330206141882369&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Consider: millions of years ago our antecedents gave a massive sacrifice of their left hemisphere.&lt;/p&gt;
&lt;p&gt;We lost a tremendous amount of short term memory and replaced it with Broca’s, Wernicke &amp;amp; the phonological loop.&lt;/p&gt;
&lt;p&gt;But why?&lt;/p&gt;
&lt;p&gt;So we can—talk.&lt;/p&gt;
&lt;p&gt;Thus chimpanzees can do this—we can’t: &lt;a href=&quot;https://t.co/CDznxg37p1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CDznxg37p1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BrianRoemmele/status/1213860120058220546&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianRoemmele&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many if not most &amp;quot;luxury brands&amp;quot; prey upon people who have lots of money but don&#39;t know how to live, and hope they can use cost as a sort of compass to guide them to the good life. &lt;a href=&quot;https://twitter.com/paulg/status/1213867447520047106&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In 1956 &amp;quot;The Magical Number Seven, Plus or Minus Two: Some Limits on Our Capacity for Processing Information”   by George A. Miller of Harvard University was published.&lt;/p&gt;
&lt;p&gt;It was a landmark of human memory research.&lt;/p&gt;
&lt;p&gt;Bell Labs adopted memory chunking in phone numbers (xxx)-xxx-xxxx &lt;a href=&quot;https://t.co/SDsB22DRNu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SDsB22DRNu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BrianRoemmele/status/1213888623310864384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianRoemmele&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startups that play defense lose. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1213941026945040384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Working on a startup feels like &lt;a href=&quot;https://t.co/QAft2mZeN1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/QAft2mZeN1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/garrytan/status/1215174920688156672&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;garrytan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/2plKCjRHbc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2plKCjRHbc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kunalb11/status/1215313021939015680&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do you send your boss a weekly email, every single week, with what got done, and what didn&#39;t, and what you need?&lt;/p&gt;
&lt;p&gt;No?&lt;/p&gt;
&lt;p&gt;Well, then it&#39;s all on you &lt;a href=&quot;https://twitter.com/jasonlk/status/1215799903676354560&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@jasonlk PPP - Progress, Plans and Problems &lt;a href=&quot;https://twitter.com/udivaks/status/1215893835680813056&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;udivaks&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg Even at scale, measuring a wide variety of metrics will rarely sound the alarm bells loudly &amp;amp; quickly enough when there&#39;s a steadily growing minority of unhappy users that will soon become the majority.&lt;/p&gt;
&lt;p&gt;It is often still better to just talk to ~20 users. &lt;a href=&quot;https://twitter.com/Suhail/status/1215903957521850368&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve noticed this with startups, especially Airbnb. When they started YC, they were only about 4 tweaks from taking off like a rocket, but as far as they (or I) could tell, they were dead. &lt;a href=&quot;https://twitter.com/paulg/status/1216021710169890818&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The tricky thing about selling enterprise productivity tools is that (sadly) nobody gets fired because the employees aren&#39;t a little more productive. So you either need to create a bottom-up freemium groundswell or solve an immediate pain that a VP is willing to pay for. &lt;a href=&quot;https://twitter.com/DavidSacks/status/1218000882454814722&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DavidSacks&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great quote from @paultoo: &amp;quot;A ... problem that I see a lot is premature scaling—founders take a small business that isn&#39;t really working... and then scale it up because they want impressive growth numbers.“ &lt;a href=&quot;https://twitter.com/mwseibel/status/1218062060845617152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mwseibel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Our desires would diminish drastically if we didn’t need to impress anyone. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1219314303024627713&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Unpopular opinion: Too many people praise “learning.”&lt;/p&gt;
&lt;p&gt;MAKING things is a better use of time.&lt;/p&gt;
&lt;p&gt;Building an audience around your interests is THE cheat code.&lt;/p&gt;
&lt;p&gt;Write articles.&lt;/p&gt;
&lt;p&gt;Record videos.&lt;/p&gt;
&lt;p&gt;Publish podcasts.&lt;/p&gt;
&lt;p&gt;Plus, making things will make you learn faster anyways. &lt;a href=&quot;https://twitter.com/david_perell/status/1219441712289984514&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Time spent honing the pitch is better spent working on the product.&lt;/p&gt;
&lt;p&gt;Good investors use your pitch to size you up, not to understand or appreciate the business. &lt;a href=&quot;https://twitter.com/naval/status/1219467473390456832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Market Cap per Employee...&lt;br /&gt;
Visa: $23 million&lt;br /&gt;
Netflix: $21 mil.&lt;br /&gt;
Facebook: $15 mil.&lt;br /&gt;
Apple: $10.2 mil.&lt;br /&gt;
Google: $8.9 mil.&lt;br /&gt;
Microsoft: $8.9 mil.&lt;br /&gt;
Exxon Mobil: $4.1 mil.&lt;br /&gt;
J&amp;amp;J: $2.9 mil.&lt;br /&gt;
JP Morgan: $1.7 mil.&lt;br /&gt;
Berkshire Hathaway: $1.4 mil.&lt;br /&gt;
Amazon: $1.2 mil.&lt;br /&gt;
Disney: $1.2 mil.&lt;br /&gt;
Walmart: $140k &lt;a href=&quot;https://twitter.com/charliebilello/status/1219744176834842631&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;charliebilello&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A busy calendar and a busy mind will destroy your ability to create anything great.&lt;/p&gt;
&lt;p&gt;(by @naval) &lt;a href=&quot;https://twitter.com/momentum_burst/status/1219749947395805184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;momentum_burst&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your first 100 customers will come through cold emails and warm intros.&lt;/p&gt;
&lt;p&gt;The next 1,000 will come from their referrals.&lt;/p&gt;
&lt;p&gt;You’ll reach 10,000 as your product slowly becomes the default for a use case.&lt;/p&gt;
&lt;p&gt;And 100,000 when it’s the default for a whole industry. &lt;a href=&quot;https://twitter.com/shl/status/1219991762124435456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How do you know if you have that fabled ✨Product/Market Fit✨?&lt;/p&gt;
&lt;p&gt;I&#39;ve collected the top 10 best descriptions of PMF I&#39;ve come across in the thread below, sorted by most to least concrete.&lt;/p&gt;
&lt;p&gt;If you have any others you&#39;ve found useful, particularly pre-product, please share below 👇 &lt;a href=&quot;https://twitter.com/lennysan/status/1220008309798760449&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;12a/ @bhorowitz: &amp;quot;PMF isn’t a one-time, discrete point in time that announces itself with trumpet fanfares. Competitors arrive, markets segment and evolve, and stuff happens—...&amp;quot; &lt;a href=&quot;https://twitter.com/lennysan/status/1220008330648666112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;13a/ @ev: &amp;quot;Though the difference between no product/market fit and some product/market fit is night and day, having “fit” is not exactly a binary thing. It’s multi-dimensional. You can have strong fit with a segment of your market and weaker fit with another... &lt;a href=&quot;https://twitter.com/lennysan/status/1220008332888403969&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;13b/ ...You can have strong fit for one particular use case and no fit for another. The more superior your product is for more jobs-to-be-done for more people, the stronger your &#39;fit.&#39;&amp;quot;&lt;br /&gt;
&lt;a href=&quot;https://t.co/OJmg1MWCfv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OJmg1MWCfv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lennysan/status/1220008333840486400&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A good way to be unsure about something is to ask for one more opinion. More opinions often lead to indecision, not clarity. If necessary, ask for a few, add your own, make a call, and move on. Nearly all decisions are temporary, but stalling is permanent time lost. &lt;a href=&quot;https://twitter.com/jasonfried/status/1220040015713120258&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Interesting how many smart people believe that advertising doesn’t work.&lt;/p&gt;
&lt;p&gt;Ads work, on everyone. It’s not a $600 billion/year industry by accident. &lt;a href=&quot;https://twitter.com/shl/status/1220315579371773952&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Code is expensive.&lt;/p&gt;
&lt;p&gt;Code breaks.&lt;br /&gt;
Code has bugs.&lt;br /&gt;
Code has security risks.&lt;br /&gt;
Code needs to be maintained.&lt;/p&gt;
&lt;p&gt;If you can do something without code, do it without code. &lt;a href=&quot;https://twitter.com/shl/status/1220334955655389184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#askJF&quot;&gt;#askJF&lt;/a&gt; How do you validate your product features/business ideas? Is it just a gut feeling you have, or maybe you do some research (how?), customer interviews (how many?), or any other product discovery techniques (which ones)? &lt;a href=&quot;https://twitter.com/bolchowka/status/1220375132771844096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bolchowka&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Q: &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#askJF&quot;&gt;#askJF&lt;/a&gt; How do you validate your product features/business ideas? Is it just a gut feeling you have, or maybe you do some research (how?), customer interviews (how many?), or any other product discovery techniques (which ones)?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;@bolchowka&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A: &lt;a href=&quot;https://t.co/7gQzF8owY2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7gQzF8owY2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonfried/status/1220419839782805506&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@BrianNorgard &lt;a href=&quot;https://t.co/9A10oEw6GV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9A10oEw6GV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kunalb11/status/1220434885237669889&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Children are happy because: 1) They&#39;re not self conscious 2) They lack a sense of time pressure 3) They&#39;ve no goals. The bottom line is they are living from moment to moment, and the mind is not there to interfere in their bliss.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1221523300997832707&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;90% of strategy is execution.&lt;br /&gt;
90% of execution is people. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1222389080488579072&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Concepts everyone should understand:&lt;/p&gt;
&lt;p&gt;— Schelling point&lt;br /&gt;
— Ergodicity&lt;br /&gt;
— Social signaling&lt;br /&gt;
— Incentive&lt;br /&gt;
— Mimetic desire&lt;br /&gt;
— Randomness&lt;br /&gt;
— Power law&lt;br /&gt;
— Cognitive biases&lt;br /&gt;
— Antifragility&lt;br /&gt;
— Momentum&lt;br /&gt;
— Zero-sum game&lt;/p&gt;
&lt;p&gt;What else? &lt;a href=&quot;https://twitter.com/orangebook/status/1222445476018106368&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Going fully remote was nice, but the real benefit was in going fully asynchronous. Here are a list of the benefits we&#39;ve seen at @Gumroad:&lt;/p&gt;
&lt;p&gt;A thread 👇🏽 &lt;a href=&quot;https://twitter.com/shl/status/1222545212477599751&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Had lunch with a friend who mentioned @thinkcell&lt;/p&gt;
&lt;p&gt;Founded in 2002&lt;br /&gt;
Plug-in on top of Microsoft Office Powerpoint&lt;br /&gt;
750,000+ paid users&lt;br /&gt;
$100m+ Revenue - almost 99% margin&lt;br /&gt;
29 FTE&lt;br /&gt;
From Germany&lt;br /&gt;
Founders owned, no external backers&lt;/p&gt;
&lt;p&gt;If you know any other companies like this let me know &lt;a href=&quot;https://twitter.com/etiennexyz/status/1222558188005920775&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;etiennexyz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Work hard to get your thinking clear to make it simple. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1222753015658176513&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rich people own stocks. Poor people own houses. &lt;a href=&quot;https://t.co/szmO4OhI2o&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/szmO4OhI2o&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SamRo/status/1222949972372598785&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SamRo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;There are no bad ideas in tech, only bad timing&amp;quot; @pmarca&lt;/p&gt;
&lt;p&gt;Think the timing is finally right for the Airbnb of storage.&lt;/p&gt;
&lt;p&gt;Excited for a16z&#39;s investment in Neighbor.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/W3F5JE5Z8v&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/W3F5JE5Z8v&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DCoolican/status/1222952559037411329&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DCoolican&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Wealth is the power to choose.&lt;/p&gt;
&lt;p&gt;Financial wealth is the power to choose how to spend money.&lt;/p&gt;
&lt;p&gt;Social wealth is the power to choose who to hang out with.&lt;/p&gt;
&lt;p&gt;Calendar wealth is the power to choose how to spend your time.&lt;/p&gt;
&lt;p&gt;Mental wealth is the power to choose your thoughts. &lt;a href=&quot;https://twitter.com/JamesClear/status/1223069930540630017&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I see PM core responsibilities as:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Represent the user&lt;/li&gt;
&lt;li&gt;Champion business case&lt;/li&gt;
&lt;li&gt;Make sure everyone around project is heard, bought in and happy&lt;/li&gt;
&lt;li&gt;Help project converge on deadline&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Others can do this work, too! Ultimately, PM fills whatever team gaps exist to achieve (4) &lt;a href=&quot;https://twitter.com/zoink/status/1223627112705220608&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zoink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Understand, don&#39;t memorize. 🧠 &lt;a href=&quot;https://twitter.com/ProfFeynman/status/1223664579391062021&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ProfFeynman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We need a word for the feeling of when you put off a single task for weeks, possibly months and when you finally do it, it literally takes 30 seconds &lt;a href=&quot;https://twitter.com/madelineorr/status/1223737111515365378&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;madelineorr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hard work is the engine. Strategy is the GPS.&lt;/p&gt;
&lt;p&gt;It’s difficult to get anywhere without hard work. If the engine stops running, progress stalls.&lt;/p&gt;
&lt;p&gt;But you’ll waste a lot of gas without a good strategy. It’s easier to make progress when you’re following the optimal path. &lt;a href=&quot;https://twitter.com/JamesClear/status/1223973238356828162&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Atlassian breaks down its view on market size:&lt;/p&gt;
&lt;p&gt;🧠800 million knowledge workers&lt;br /&gt;
🤓100 million technical professionals&lt;br /&gt;
😮50 million registered Trello users&lt;br /&gt;
💻23 million software developers&lt;/p&gt;
&lt;p&gt;👉Software devs make up only ~3% of all knowledge workers! &lt;a href=&quot;https://t.co/6SVGurK4jU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6SVGurK4jU&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jonbma/status/1223993884881170432&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jonbma&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Become a better communicator overnight:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Replace every “but” you can with an “and”&lt;/li&gt;
&lt;li&gt;Never start a sentence with “no” or “disagree”&lt;/li&gt;
&lt;li&gt;Only give feedback if there’s a chance it will be implemented&lt;/li&gt;
&lt;li&gt;Tell people you will be late before you are late&lt;/li&gt;
&lt;li&gt;Bias to overcommunicating &lt;a href=&quot;https://twitter.com/shl/status/1224078891892916224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@tanayj The most powerful apps today are the ones that enable you to prototype and iterate your ideas quickly...while leveraging an existing userbase. For non-mission critical systems, tools like @notionHQ are powerful, and for mission-critical systems, you can try @Rintagi (open source) &lt;a href=&quot;https://twitter.com/cryptolin/status/1224290194209161218&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;cryptolin&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; cause of startup death is making something no one wants. The &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#2&quot;&gt;#2&lt;/a&gt; cause is spending too much. Those two account for so many deaths that I&#39;m not even sure what &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#3&quot;&gt;#3&lt;/a&gt; is.&lt;/p&gt;
&lt;p&gt;If you merely make something people want and don&#39;t spend too much, you&#39;re way ahead. &lt;a href=&quot;https://twitter.com/paulg/status/1224328241936248832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg Problem - the symptom or disease. It has to exist.&lt;br /&gt;
Product - the medicine. It needs to actually work.&lt;br /&gt;
Position - the pill/syringe/saw. Go for the pill or the patch.&lt;/p&gt;
&lt;p&gt;Most people don&#39;t buy products, they buy positioning. The delivery medium for the medicine. &lt;a href=&quot;https://twitter.com/evanlapointe/status/1224328736843149312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;evanlapointe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The complexity of anything can be reduced at least 3 times.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The simplest possible explanation of reality.&lt;/li&gt;
&lt;li&gt;A story.&lt;/li&gt;
&lt;li&gt;A metaphor.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Depending on the audience, pick the right one. But avoid describing reality as simpler than it really is. That&#39;s a huge mistake. &lt;a href=&quot;https://twitter.com/evanlapointe/status/1224333739699908609&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;evanlapointe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Separate your &amp;quot;must-dos&amp;quot; from your &amp;quot;like-to-dos&amp;quot; and don&#39;t mistakenly slip any &amp;quot;like-to-dos&amp;quot; onto the first list. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/GQnRYuLmip&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GQnRYuLmip&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1224408779867000832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every job that can be made remote-work-capable will be. @balajis&lt;/p&gt;
&lt;p&gt;A powerful insight because today remote work is viewed mostly through the lens of the startup community.&lt;/p&gt;
&lt;p&gt;As software eats the world, expect all industries to follow—even those where presence appears fundamental. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1225278553496752129&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Signs of A 🔥 VC:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Don’t go to (most) conferences&lt;/li&gt;
&lt;li&gt;Their founders rave&lt;/li&gt;
&lt;li&gt;Very fast decisonmaking&lt;/li&gt;
&lt;li&gt;Generally cool footwear&lt;/li&gt;
&lt;li&gt;Incredible listeners&lt;/li&gt;
&lt;li&gt;Very aggressive on hot deals&lt;/li&gt;
&lt;li&gt;Partnership diversity&lt;/li&gt;
&lt;li&gt;Uncommon conviction&lt;/li&gt;
&lt;li&gt;Uncommon sourcing&lt;/li&gt;
&lt;li&gt;Team players &lt;a href=&quot;https://twitter.com/RMB/status/1226644733361106945&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RMB&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In a world of OKRs, there are some product improvements that will never make your list of “things to work on” but you know will make your customers happy.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Animations in fun moments&lt;/li&gt;
&lt;li&gt;Reducing copy&lt;/li&gt;
&lt;li&gt;Better control over push notifications&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Make time for these projects too. &lt;a href=&quot;https://twitter.com/jmj/status/1226892004199555072&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jmj&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If your keep focusing on negativity, focusing on what’s not right, focusing on how everthing will go wrong, there’s no possible way you’ll succeed.&lt;/p&gt;
&lt;p&gt;If your mind focuses on the negative it buries any thought or idea of how to solve your problem.&lt;/p&gt;
&lt;p&gt;Mindset is everything.&lt;/p&gt;
&lt;p&gt;Capisce? &lt;a href=&quot;https://twitter.com/DrRalphNap/status/1232498039115440128&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DrRalphNap&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Happy to announce that the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#GPS&quot;&gt;#GPS&lt;/a&gt; tracking feature is now released for the open beta! 🎉🛰️&lt;br /&gt;
Sign up for a free 30-day trial and find out how awesome it is! 👉 &lt;a href=&quot;https://t.co/DTNQyFvebu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DTNQyFvebu&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://t.co/z4dbYYq8M2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/z4dbYYq8M2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1232646502478118917&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Thoughts come and go like a thief in an empty house.&lt;br /&gt;
There is nothing to be gained or lost.&lt;br /&gt;
~ Padampa Sangye&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#LamaSuryaDas&quot;&gt;#LamaSuryaDas&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TheAmericanLama&quot;&gt;#TheAmericanLama&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Dzogchen&quot;&gt;#Dzogchen&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#NaturalGreatPerfection&quot;&gt;#NaturalGreatPerfection&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#AwakeningtheBuddhaWithin&quot;&gt;#AwakeningtheBuddhaWithin&lt;/a&gt; &lt;a href=&quot;https://t.co/sfHkO9gID7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sfHkO9gID7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/LamaSuryaDas/status/1233021553656442886&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LamaSuryaDas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of my favorite quotes of all-time...&lt;/p&gt;
&lt;p&gt;“Most geniuses—especially those who lead others—prosper not by deconstructing intricate complexities but by exploiting unrecognized simplicities.”&lt;/p&gt;
&lt;p&gt;—Andy Benoit &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1233105282118455296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Schwartzman&#39;s three tests for starting a business:&lt;/p&gt;
&lt;p&gt;1)&amp;quot;It’s as hard to start and run a small business as it is to start a big one... If you’re going to dedicate your life to a business, which is the only way it will ever work, you should choose one with the potential to be huge.” &lt;a href=&quot;https://twitter.com/dhaber/status/1234182218731397120&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dhaber&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone makes mistakes. The main difference is that successful people learn from them and unsuccessful people don’t. By creating an environment in which it&#39;s okay to safely make mistakes so people can learn from them, you’ll see rapid progress and fewer significant mistakes. &lt;a href=&quot;https://t.co/Dxigp39KGf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Dxigp39KGf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1235209017707900930&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Does you company have a futurist and historian?&lt;/p&gt;
&lt;p&gt;In 1988 Isaac Azimov explained why this is so vital.&lt;/p&gt;
&lt;p&gt;Since the industrial revolution the rate of change continues to become—orders of magnitude higher.&lt;/p&gt;
&lt;p&gt;An accurate futurist and historian will guide you.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/SUnjtYKcKJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SUnjtYKcKJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BrianRoemmele/status/1235403075000487940&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianRoemmele&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The coronavirus is introducing millions of people to remote work across the world. It&#39;s an acceleration of a future where all knowledge work is remote. This will be an incredible future, where people will have more freedom and do better work 🙌 &lt;a href=&quot;https://t.co/BbqOzVfGBg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BbqOzVfGBg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/amix3k/status/1235561316368216065&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amix3k&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People typically feel bad about their mistakes because they think in a shortsighted way about the bad outcome &amp;amp; not about the evolutionary process of which mistakes are an integral part. Every mistake you make &amp;amp; learn from will save you from similar mistakes in the future. &lt;a href=&quot;https://t.co/0ow6Mv8Xdo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0ow6Mv8Xdo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1235574781271031808&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As a CEO, your job is actually to do nothing.&lt;/p&gt;
&lt;p&gt;CEOs who actually perform duties within their companies are failing.&lt;/p&gt;
&lt;p&gt;Your job is to set strategy and culture, delegate, and incentivize.&lt;/p&gt;
&lt;p&gt;Same goes for executives. You are just more focused mini-CEOs, who report up. &lt;a href=&quot;https://twitter.com/awilkinson/status/1235666718732644353&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“This makes the broad assumption that they’re right about the strategy, the execution and the revenue prediction.” &lt;a href=&quot;https://t.co/ycVFlOJ2Nk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ycVFlOJ2Nk&lt;/a&gt; &lt;a href=&quot;https://t.co/f19dgKQYFm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/f19dgKQYFm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jboogie/status/1235836272792334343&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jboogie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Peace is the mood of knowing that whatever comes will also go.&lt;/p&gt;
&lt;p&gt;Therefore there is no need to be particularly bothered by anything.&lt;/p&gt;
&lt;p&gt;This kind of awareness also keeps you from chasing after things that seem to give permanent happiness but are only mirages on the horizon. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1235959752921882630&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every child should be taught that life is unfair so that we don&#39;t end up with a bunch of adults who act like the world owes them something. &lt;a href=&quot;https://twitter.com/iam_preethi/status/1236761563257688065&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iam_preethi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ability to learn from mistakes compounds abilities.&lt;/p&gt;
&lt;p&gt;Learning from mistakes is a skill that’s acquired by deliberate effort and never living in denial.&lt;/p&gt;
&lt;p&gt;Most humans keep repeating same mistakes as they jump to non nuanced and non analytical conclusions when a mistake is made. &lt;a href=&quot;https://twitter.com/kunalb11/status/1237008088030310400&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@hnshah I created a top down system called GYST (get your shit together). I use it to plan from the future backwards. Gives me a crystal clear picture about what’s important (and not) today, this week, month, quarter, year and 5 years. My tasks are pebbles &amp;amp; sand between those rocks. &lt;a href=&quot;https://twitter.com/evanlapointe/status/1237009621912637442&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;evanlapointe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Prediction:&lt;/p&gt;
&lt;p&gt;We are going to see a &lt;em&gt;lot&lt;/em&gt; of pain in the non-critical mid market SaaS tools market as businesses cut costs:&lt;/p&gt;
&lt;p&gt;InVision - $50k/yr -&amp;gt; Figma (built in + already pay for)&lt;/p&gt;
&lt;p&gt;Hootsuite - $50k/yr -&amp;gt; Buffer for free/cheap&lt;/p&gt;
&lt;p&gt;Box/Dropbox -$50k/yr - &amp;gt; Google Drive free/cheap &lt;a href=&quot;https://twitter.com/awilkinson/status/1237067379978514433&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Look up at the sky tonight.&lt;/p&gt;
&lt;p&gt;The moon and stars you see are the same ones that every person before you looked at.&lt;/p&gt;
&lt;p&gt;Your parents.&lt;/p&gt;
&lt;p&gt;Your grandparents.&lt;/p&gt;
&lt;p&gt;Alexander the Great.&lt;/p&gt;
&lt;p&gt;Marcus Aurelius.&lt;/p&gt;
&lt;p&gt;Seneca.&lt;/p&gt;
&lt;p&gt;Take a moment to pause and close your eyes.&lt;/p&gt;
&lt;p&gt;You will feel the connection. &lt;a href=&quot;https://twitter.com/forgeofman/status/1237362969194967045&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;forgeofman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The online course arbitrage.&lt;/p&gt;
&lt;p&gt;People will pay $10-20 for a book, but those same people will pay $1,000-2,000 for the same information in a live video format.&lt;/p&gt;
&lt;p&gt;The lesson: People want more than information.&lt;/p&gt;
&lt;p&gt;They also want inspiration, accountability and friends to learn with. &lt;a href=&quot;https://twitter.com/david_perell/status/1237543726576095232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You are missing the plot if you don&#39;t understand growth:&lt;/p&gt;
&lt;p&gt;‘The climate was warmer before’&lt;br /&gt;
– It’s the rate at which the temperature increases!&lt;/p&gt;
&lt;p&gt;‘This startup is tiny, why is it worth $2 billion’&lt;br /&gt;
– Look at their growth rate&lt;/p&gt;
&lt;p&gt;‘only 1000 cases of COVID-19’&lt;br /&gt;
– It&#39;s the growth rate! &lt;a href=&quot;https://twitter.com/MaxCRoser/status/1237713867603611648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MaxCRoser&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We wtorek zdecydowaliśmy o wdrożeniu w firmie obowiązkowej pracy zdalnej ze względu na koronawirusa. W czwartek 100% zespołu będzie pracowało w modelu home office. Case study TimeCamp. &lt;a href=&quot;https://t.co/tNj6iExI1t&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tNj6iExI1t&lt;/a&gt; &lt;a href=&quot;https://twitter.com/mamstartup/status/1237731874090487809&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mamstartup&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You cannot create a new company by defining how much money you intend on making.&lt;/p&gt;
&lt;p&gt;So what makes so many people think you can create strategy for an existing company that way? &lt;a href=&quot;https://twitter.com/evanlapointe/status/1237838705836068865&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;evanlapointe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some decisions are best made after acquiring more information; some are best made immediately. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/J2wdTTCPSw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/J2wdTTCPSw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1238082719860641792&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Smart people waste little time arguing,&lt;/p&gt;
&lt;p&gt;because they know a few hours of talking can’t replace years of real education. &lt;a href=&quot;https://twitter.com/orangebook/status/1238115928807821313&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;9 Mindsets That Ruin Your Life:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Waiting for the &amp;quot;right time&amp;quot;&lt;/li&gt;
&lt;li&gt;Convincing yourself it won&#39;t work&lt;/li&gt;
&lt;li&gt;Doubting your abilities&lt;/li&gt;
&lt;li&gt;Talking down to yourself&lt;/li&gt;
&lt;li&gt;Hesitating&lt;/li&gt;
&lt;li&gt;Procrastinating&lt;/li&gt;
&lt;li&gt;Mistreating your body&lt;/li&gt;
&lt;li&gt;Letting fear get the best of you&lt;/li&gt;
&lt;li&gt;Taking things personally &lt;a href=&quot;https://twitter.com/MattSStephens/status/1238822889106833416&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MattSStephens&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is so well done &lt;a href=&quot;https://t.co/syAqgnc23c&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/syAqgnc23c&lt;/a&gt; &lt;a href=&quot;https://twitter.com/JoeFernandez/status/1239019375014760448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JoeFernandez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t just get things done.&lt;br /&gt;
Get the right things done. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1239229689157353473&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fascinating paper (1997)&lt;/p&gt;
&lt;p&gt;&amp;quot;When we reach a world in which the average piece of information is never looked at by a human, we will need to know how to evaluate everything automatically to decide what should get the precious resource of human attention.&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/nSZxqZFDAA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nSZxqZFDAA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1239241808925863936&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Something very strange is going on with the numbers.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;China says no new cases&lt;/li&gt;
&lt;li&gt;People are running scenarios saying 10m-100m dead&lt;/li&gt;
&lt;li&gt;Italy is in chaos but deaths are leveling out&lt;/li&gt;
&lt;li&gt;Korea, China &amp;amp; Singapore are back to normal in 6-8 weeks?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;None of this adds up. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#coronavirus&quot;&gt;#coronavirus&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Jason/status/1240494501849956357&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Jason&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You only have so much time and energy; make sure you are investing them in exploring the problems that, if ﬁxed, will yield you the biggest results. But at the same time, make sure you spend enough time with the small problems to make sure they’re not symptoms of larger ones. &lt;a href=&quot;https://t.co/QMrrv1OOxx&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/QMrrv1OOxx&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1244683037150978057&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It isn’t 10,000 hours that creates outliers, it’s 10,000 iterations. &lt;a href=&quot;https://twitter.com/naval/status/1245092969214029824&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@naval It isn&#39;t 10,000 experiences that creates wisdom, its 10,000 reflections. &lt;a href=&quot;https://twitter.com/KyleTibbitts/status/1245096766862577664&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KyleTibbitts&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Coronavirus increasingly appears likely to be the worst natural disaster in decades.&lt;/p&gt;
&lt;p&gt;I don&#39;t think it is yet appreciated how much it directly and indirectly attacks infrastructure, distinct from most disasters. &lt;a href=&quot;https://twitter.com/patio11/status/1246370231645175808&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patio11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When people say, &amp;quot;they like you&amp;quot; it really means that, they like the stories they have made up about you. &lt;a href=&quot;https://twitter.com/awareness_being/status/1246459259128147968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awareness_being&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you edit your sentences, remember the acronym CLEAR.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Connect to the previous sentence.&lt;/li&gt;
&lt;li&gt;Link to the following sentence.&lt;/li&gt;
&lt;li&gt;Eliminate anything that adds confusion.&lt;/li&gt;
&lt;li&gt;Add colorful details.&lt;/li&gt;
&lt;li&gt;Remove unnecessary words.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Make your writing CLEAR — one sentence at a time. &lt;a href=&quot;https://twitter.com/david_perell/status/1246500432194617346&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Replace positivity with peace.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;When positivity dies, negativity lives.&lt;/p&gt;
&lt;p&gt;Peace is the absence of doubt and struggle.&lt;/p&gt;
&lt;p&gt;Peace is a satisfaction that comes from accepting the moment in its entirety.&lt;/p&gt;
&lt;p&gt;Right here, right now.&lt;/p&gt;
&lt;p&gt;If you look elsewhere, you will only find desire. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1246651352811540481&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Bezos banned ppt presentations and bullet points since 2004. I always thought that was a bit restrictive, but now I do see some of the rationale. 1/n &lt;a href=&quot;https://twitter.com/GwenCheni/status/1246830551568281600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GwenCheni&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Timeless wisdom.&lt;/p&gt;
&lt;p&gt;&amp;quot;If you have a garden and a library, you have everything you need.&amp;quot; — Cicero &lt;a href=&quot;https://twitter.com/Kpaxs/status/1246833050572423168&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The practice of meditation is like the adult who reminds the child of what is real and what is not. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1247188969844019206&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Look at things in terms of growth rather than perfection. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1247977057570689027&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A peaceful morning.&lt;/p&gt;
&lt;p&gt;A great novel.&lt;/p&gt;
&lt;p&gt;Your limitless imagination.&lt;/p&gt;
&lt;p&gt;This is also happiness. &lt;a href=&quot;https://twitter.com/orangebook/status/1248525976193183744&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Living on essentials gives you a great visibility on what’s extra. &lt;a href=&quot;https://twitter.com/kunalb11/status/1248535811106033664&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is how to make progress  . . .  (via @tomgauld): &lt;a href=&quot;https://t.co/BvOL21cXmR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BvOL21cXmR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1248604224121966592&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remember this: The pain is all in your head. If you want to evolve, you need to go where the problems and the pain are. By confronting the pain, you will see more clearly the paradoxes and problems you face. Reﬂecting on them and resolving them will give you wisdom. &lt;a href=&quot;https://t.co/gzOpaBO1es&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gzOpaBO1es&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1248604679178579975&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Troche nienormalne. Łapię się na tym, że nawet na weekendy oglądam sesje klientów w GA i Hotjarze. Podpatruję rozmowy na Intercom. Sprawdzam nowe projekcje sprzedaży w naszej hurtowni danych Cluvio. Wstyd się przyznać, ale po prawie 10 latach prowadzenia firmy nadal to kocham. &lt;a href=&quot;https://twitter.com/sadek/status/1249011058926370817&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A simple explanation for why “estimations” and timeline-based “roadmaps” don’t work, is that product development isn’t a scheduling problem but an explore/exploit problem.&lt;/p&gt;
&lt;p&gt;Time isn’t the constraint, but knowledge.&lt;/p&gt;
&lt;p&gt;Knowledge that isn’t currently “priced in” to the market. &lt;a href=&quot;https://twitter.com/astralwave/status/1249136929825849347&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;astralwave&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being up-to-date on the news is a trap.&lt;/p&gt;
&lt;p&gt;Five minutes a day is all you need. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1249711873081192448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Be careful with your &#39;Yes&#39;.&lt;br /&gt;
Be kind and clear with your &#39;No&#39;. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1249731243085832194&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Always do the simplest thing that can possibly work. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1249952557092548613&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Noise is the enemy of introspection. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1250105739864969217&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rapid shipping cadence is essential. If you don’t ship, you don’t learn. When you don’t learn, you become a product speculator. I know zero successful product speculators. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1250206593708437506&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Take a simple idea and take it seriously.&amp;quot;&lt;br /&gt;
—Charlie Munger&lt;/p&gt;
&lt;p&gt;Doing a few sets of pushups each day is a simple idea.&lt;/p&gt;
&lt;p&gt;Saving at least 10% of your income is a simple idea.&lt;/p&gt;
&lt;p&gt;Sending Thank You notes is a simple idea.&lt;/p&gt;
&lt;p&gt;...but most people don&#39;t take simple ideas seriously. &lt;a href=&quot;https://twitter.com/JamesClear/status/1250449591536943104&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people cannot “follow a routine” to achieve an important goal.&lt;/p&gt;
&lt;p&gt;It’s the foundation for most people’s lack of success. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1250459940742991872&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Something I explained to my 11 yo: The biggest division in work may be between jobs that involve making new stuff (science, engineering) and those that don&#39;t (administration, sales), and you&#39;ll be a lot happier if you end up on the side you&#39;re suited for. &lt;a href=&quot;https://twitter.com/paulg/status/1250840771751809024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stress comes when you do multiple things at once with expectation.&lt;/p&gt;
&lt;p&gt;Peace comes when you do one thing at once with intention. &lt;a href=&quot;https://twitter.com/5harath/status/1250886654451220481&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;5harath&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The purpose of life is finding the largest burden that you can bear and bearing it.&lt;/p&gt;
&lt;p&gt;— Jordan B Peterson &lt;a href=&quot;https://twitter.com/menofveritas/status/1253179223075848192&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;menofveritas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Ask yourself at every moment, Is this necessary?&amp;quot; Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1254028637411704834&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Because of the different ways that our brains are wired, we all experience reality in different ways and any single way is essentially distorted. This is something that we need to acknowledge and deal with. &lt;a href=&quot;https://t.co/KMcQlY3pjH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KMcQlY3pjH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1254134881472438275&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Business writing 101.&lt;/p&gt;
&lt;p&gt;∙ Shorten your sentences.&lt;br /&gt;
∙ Make your point fast.&lt;br /&gt;
∙ Shorten the introduction.&lt;br /&gt;
∙ Use simple words.&lt;br /&gt;
∙ Add graphs and statistics.&lt;br /&gt;
∙ No buzzwords.&lt;br /&gt;
∙ Use more periods, fewer commas.&lt;br /&gt;
∙ Write for skimming, not deep reading.&lt;br /&gt;
∙ Bold the main takeaways. &lt;a href=&quot;https://twitter.com/david_perell/status/1254258945255862278&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;EVERYONE should learn sales.&lt;/p&gt;
&lt;p&gt;You can have the best idea in the world...&lt;/p&gt;
&lt;p&gt;But if you can&#39;t:&lt;/p&gt;
&lt;p&gt;-communicate effectively&lt;br /&gt;
-build trust&lt;br /&gt;
-adapt&lt;br /&gt;
-win anyone over&lt;/p&gt;
&lt;p&gt;It may as well be worthless. &lt;a href=&quot;https://twitter.com/MattSStephens/status/1254438156235046912&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MattSStephens&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Meditation it’s not the absence of thoughts. It’s the absence of any discomfort attached to those thoughts. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1255055482961702912&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The 5 Reasons You’re Underachieving:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Your goals aren’t crystal clear.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’re not seeking out people with a Winners Mindset.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You haven’t defined your most important next steps.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You don’t have your tasks written on a calendar.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You give up too easily. &lt;a href=&quot;https://twitter.com/DrRalphNap/status/1255115165131030530&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DrRalphNap&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pain without purpose is torture.&lt;br /&gt;
Pain with a purpose is a price. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1255438292381728769&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t talk about problems you have no intention of solving. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1255761498644889601&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People prefer unhappiness over uncertainty. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1255853891478061063&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good companies obsess about beating the competition. Great companies obsess about what&#39;s best for the customer. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1256228404925476865&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many people fear that being direct and straightforward with those in their life might damage their relationships with them,&lt;/p&gt;
&lt;p&gt;Never pausing to consider how damaging it is that they’ve consented to relationships with people that expect them to repress their thoughts and feelings. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1256294464487907330&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Productivity is found in what you leave undone. &lt;a href=&quot;https://twitter.com/JamesClear/status/1256302118635438088&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Opportunities multiply as they are seized.&amp;quot; — Sun Tzu &lt;a href=&quot;https://t.co/P5b7PZTG3R&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/P5b7PZTG3R&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1256349356011200512&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If a decision is reversible, the biggest risk is moving too slow.&lt;/p&gt;
&lt;p&gt;If a decision is irreversible, the biggest risk is moving too fast. &lt;a href=&quot;https://twitter.com/JamesClear/status/1257297027505029120&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to get to the root of a problem, look for the thing that no one really wants to talk about. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1258237376071155717&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Everyone is brave in a battle which someone else is fighting.&amp;quot; - @Kpaxs &lt;a href=&quot;https://twitter.com/thekaizenbot/status/1258667982735020032&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thekaizenbot&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Business is not a spreadsheet, and you don’t know that until you’ve actually run one.&lt;/p&gt;
&lt;p&gt;Finance Types: “Then, we just increase margin by 500 basis points...”&lt;/p&gt;
&lt;p&gt;Margin is not an Excel cell. Margin usually = people. And people are messy.&lt;/p&gt;
&lt;p&gt;Via @BrentBeshore &lt;a href=&quot;https://twitter.com/awilkinson/status/1259137287889154050&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@ShaneAParrish “Easy choices, hard life.&lt;/p&gt;
&lt;p&gt;Hard choices, easy life.”&lt;/p&gt;
&lt;p&gt;–Jerzy Gregoric &lt;a href=&quot;https://twitter.com/awilkinson/status/1259272711559237632&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Prioritization seems to consistently come up as product people’s &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; challenge.&lt;/p&gt;
&lt;p&gt;How do you prioritize? &lt;a href=&quot;https://twitter.com/hnshah/status/1259712564994273286&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@hnshah Prioritization suggests you know what is valuable ahead of time before you do it. Most product work isn’t like that. They’re like bets, often with its true expected value unknown (but not unknowable). &lt;a href=&quot;https://twitter.com/astralwave/status/1259768221340704769&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;astralwave&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dzisiaj na pytanie &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#coukreatywnych&quot;&gt;#coukreatywnych&lt;/a&gt; odpowiada Kamil Rudnicki - założyciel @timecamp - aplikacji internetowej, stworzonej do monitorowania komputerowej aktywności jej użytkowników, przeznaczona zarówno dla freelancerów, jak i zespołów❗&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#50kreatywnych&quot;&gt;#50kreatywnych&lt;/a&gt; &lt;a href=&quot;https://t.co/HvvG2DP0w9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HvvG2DP0w9&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BriefPolska/status/1259786594153791490&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BriefPolska&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop focusing on thinking.&lt;br /&gt;
Start focusing on doing.&lt;br /&gt;
Done is better than perfect. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1259874732960350216&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People tend to question everything, except for things that they truly believe. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1261880191166689287&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The world wants you to be distracted. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1261893101985112066&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;11/ &amp;quot;Common stock investors can make money by predicting outcomes of practice evolution. You can’t derive this by fundamental analysis — you must think biologically. I find it quite useful to think of a partly free market economy—as sort of the equivalent of an ecosystem.&amp;quot; &lt;a href=&quot;https://twitter.com/trengriffin/status/1262092817066680321&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;trengriffin&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;12/ “It is undeniably true that the human brain must work in models. The trick is to have your brain work better than the other person’s brain because it understands the most fundamental models: ones that will do most work per unit.” &lt;a href=&quot;https://twitter.com/trengriffin/status/1262093026962239488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;trengriffin&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People will jump through a lot of hoops and friction to use your product if the value proposition aligns with a really timely and strong need for them. &lt;a href=&quot;https://twitter.com/hnshah/status/1263264553460068352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Best way to run a bunch of stuff? Don’t put yourself in charge of everything. &lt;a href=&quot;https://twitter.com/jasonfried/status/1263267096923906048&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every decision you have made has either been fear or growth.&lt;/p&gt;
&lt;p&gt;A growth-based decision becomes the story of your life later.&lt;/p&gt;
&lt;p&gt;A fear-based decision turns into regret. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1263411772301721603&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It often takes just as much work to go after a mediocre opportunity as it does a great one. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1263427887065169926&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@pranav6082 @paraschopra I was referring to the personality type - entrepreneurial vs managerial. &lt;a href=&quot;https://twitter.com/SprihaBiswas/status/1263475836981837826&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SprihaBiswas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;May 2019. I wrote my first marketing article. A year later my email list hit 19,000.&lt;/p&gt;
&lt;p&gt;No ads. No connections. No existing audience.&lt;/p&gt;
&lt;p&gt;The site grew because I learnt how to push my content round the internet.&lt;/p&gt;
&lt;p&gt;THREAD ... &lt;a href=&quot;https://twitter.com/GoodMarketingHQ/status/1263831025240719362&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GoodMarketingHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The ultimate test of your knowledge is your capacity to transfer it to another. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1264048572854657024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop needing to know, rest in uncertainty. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1264398185558138881&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Either we agree on how to measure it, or it becomes politics. &lt;a href=&quot;https://twitter.com/naval/status/1264430188198129665&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What&#39;s your top tip to take friction out of your sales processes? &lt;a href=&quot;https://twitter.com/jasonlk/status/1264575198822453249&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Useful framework by @paulg on how to disagree with someone in person or online. You’ll notice most people stick to the bottom of pyramid approach and that never results in a good outcome for any party involved. &lt;a href=&quot;https://t.co/jqQt1eAdNw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jqQt1eAdNw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kunalb11/status/1264961611447406606&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you don’t guard your time, everyone will waste it for you. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1265156638274736128&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’ve been leading people in an organization for more than a year or two and you know how to do their job better than them, you’re the problem. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1265289769665417219&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The search for “better” is something you will take with you to the grave. &lt;a href=&quot;https://twitter.com/RealJamesPierce/status/1265319897858363393&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RealJamesPierce&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Aerobic exercise training for 12 months led to a 47% improvement in memory and increased blood flow (at rest) to the hippocampus and other brain regions in individuals 60 years and older with memory problems. &lt;a href=&quot;https://t.co/ewbN99STyK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ewbN99STyK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/foundmyfitness/status/1265348781756739584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;foundmyfitness&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My favorite Munger line is:&lt;/p&gt;
&lt;p&gt;“Fish where the fish are”&lt;/p&gt;
&lt;p&gt;It’s so simple.&lt;/p&gt;
&lt;p&gt;Fish in a lake crowded with expert fishermen and you’re unlikely to catch many fish.&lt;/p&gt;
&lt;p&gt;Fish in a quiet fishing hole off the beaten path with few competitors and ample fish and it’s hard NOT to do well. &lt;a href=&quot;https://twitter.com/awilkinson/status/1265653805443506182&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Transparency is only a risky strategy if you&#39;re building a commodity. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1265751322013425664&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;what is the maximum # of priorities one should have?&lt;/p&gt;
&lt;p&gt;probably 100.&lt;/p&gt;
&lt;p&gt;one simple way to increase productivity is to say no to anything not in your top 100.  one would be amazed how much time we spend outside of the top 100. &lt;a href=&quot;https://twitter.com/auren/status/1265755617404178434&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;auren&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build a business that gives you more free time as you grow &lt;a href=&quot;https://twitter.com/david_perell/status/1266211634667638785&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@naval Efficiency in this hyper connected world reduces the number of players/sellers/companies required to play any game. We often forget inefficiency is the largest employer of the world. &lt;a href=&quot;https://twitter.com/kunalb11/status/1266261480145473537&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clear writing is concise writing.&lt;/p&gt;
&lt;p&gt;• In order to → To&lt;br /&gt;
• In spite of → Despite&lt;br /&gt;
• A number of → Some&lt;br /&gt;
• In the event that → If&lt;br /&gt;
• The majority of → Most&lt;br /&gt;
• Has the opportunity to → Can&lt;br /&gt;
• Despite the fact that → Although &lt;a href=&quot;https://twitter.com/GoodMarketingHQ/status/1267461321248948224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GoodMarketingHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The more stuff you own, the more time and attention it requires. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1267675893008412672&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t be afraid of losing people. Be afraid of losing yourself while trying to please everyone around you. &lt;a href=&quot;https://twitter.com/DamianProsa/status/1268045534465589250&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DamianProsa&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Kids learn what’s important to adults not by listening to what they say, but by noticing what gets their attention. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1268164881762697222&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s better to start something and risk looking like an idiot than sit there and accomplish nothing. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1268175156108722176&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@awilkinson It&#39;s a fallacy to think that the fact that x% of startups fail implies that your probability of failing is x%. It&#39;s more a reflection of the distribution of ability among the people who start them. &lt;a href=&quot;https://twitter.com/paulg/status/1268306411496386561&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Reading is a hidden form of procrastination for most people. &lt;a href=&quot;https://twitter.com/joserosado/status/1268635177326166021&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;joserosado&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@pradologue @joserosado No, it&#39;s a fear procastination &lt;a href=&quot;https://twitter.com/Rohit_arn/status/1268637766847393792&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rohit_arn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@joserosado I love to read.&lt;/p&gt;
&lt;p&gt;The modern diet consists of a heaping dose of information coalesced with research.&lt;/p&gt;
&lt;p&gt;My challenge is striking a balance between what I think I need to know before producing and creating with what I already know &lt;a href=&quot;https://twitter.com/azeehussain/status/1268725993222672386&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;azeehussain&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every time you buy something, you are not paying with your money, but with your time. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1269206450267660289&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pure true/false values are a useful fiction. In reality, the truth is probabilistic.&lt;/p&gt;
&lt;p&gt;The most interesting ideas might be those that are slightly more likely to be wrong than right. These are beyond what most are willing to consider, but could very well be right. &lt;a href=&quot;https://twitter.com/mmay3r/status/1269713913857191936&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mmay3r&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@fatehshernu No need for motivation if you are high energy.&lt;/p&gt;
&lt;p&gt;Propulsion that no motivational bullshit video could ever come close. &lt;a href=&quot;https://twitter.com/timerunsout1/status/1270402967028600832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timerunsout1&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A decisive idiot can outperform an indecisive intellectual. &lt;a href=&quot;https://twitter.com/Wealth_Theory/status/1270693980771057670&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Wealth_Theory&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Action brings more clarity than thought. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1271094724351406082&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If your product can’t be unique, your brand has to be. &lt;a href=&quot;https://twitter.com/hnshah/status/1271637868952186880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;COSTLY SIGNALING: THE FORGOTTEN TOOL OF MANAGEMENT&lt;/p&gt;
&lt;p&gt;Advertisers, salespeople, and romantic suitors all know very well the importance of costly signaling.&lt;/p&gt;
&lt;p&gt;Managers mostly do not; at least, towards their workforce.&lt;/p&gt;
&lt;p&gt;This is a shame, because…&lt;/p&gt;
&lt;p&gt;(thread, 1/N; continues below) &lt;a href=&quot;https://twitter.com/DellAnnaLuca/status/1271741817822703617&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DellAnnaLuca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;8/ Therefore, good managers know the importance of signaling to their workforce that it is acceptable to incur such short-term costs, because the long-term benefits of Core Values are well worth it.&lt;/p&gt;
&lt;p&gt;(continues below) &lt;a href=&quot;https://twitter.com/DellAnnaLuca/status/1271742072970608640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DellAnnaLuca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Too often, people read about the incredible willpower of the likes of Michael Jordan, and imitate it.&lt;/p&gt;
&lt;p&gt;And fail.&lt;/p&gt;
&lt;p&gt;Willpower only works in the measure it is fueled by passion, revenge, or similar emotions &lt;em&gt;which are never innate&lt;/em&gt; but always the result of some experience.&lt;/p&gt;
&lt;p&gt;1/N &lt;a href=&quot;https://twitter.com/DellAnnaLuca/status/1272469513305378824&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DellAnnaLuca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2/ Actually, willpower is the confabulation of previous emotional experiences that caused a desire to perform the very actions that brought the successes that others wish to imitate.&lt;/p&gt;
&lt;p&gt;Willpower is not something that can be summoned at will. &lt;a href=&quot;https://twitter.com/DellAnnaLuca/status/1272469515629027328&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DellAnnaLuca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Consensus seeking creates short-term calm and long-term confusion. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1277002355762802689&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If a decision is reversible, make it as soon as possible. If a decision is irreversible, make it as late as possible.&lt;/p&gt;
&lt;p&gt;When the stakes are low, inaction hurts you. When the stakes are high, speed can kill you. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1277415631965519873&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A healthy person has three signs of well being: a fit body, an efficient mind, and a calm soul. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1279792892870119429&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;⁣Two people who collaborate well will be about three times as eﬀective as each of them operating independently, because each will see what the other might miss—plus they can leverage each other’s strengths while holding each other accountable to higher standards. &lt;a href=&quot;https://t.co/7iEWjeN9Tq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7iEWjeN9Tq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1281223633478848514&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It seems like every activity humans enjoy is about one thing:&lt;/p&gt;
&lt;p&gt;Creating a flow state.&lt;/p&gt;
&lt;p&gt;Quieting the mind enough to focus on a single thought or task.&lt;/p&gt;
&lt;p&gt;Less flow state = bad day&lt;/p&gt;
&lt;p&gt;More flow state = good day &lt;a href=&quot;https://twitter.com/awilkinson/status/1281698606425104385&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Perfectionists spend too much time on little differences at the margins at the expense of the important things. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PrincipleOfTheDay&quot;&gt;#PrincipleOfTheDay&lt;/a&gt; &lt;a href=&quot;https://t.co/sR66bkuELr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sR66bkuELr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1282316834600103937&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t be discouraged: the default state of new ideas is that they won’t work. Finding something that will is going to take many more attempts. &lt;a href=&quot;https://twitter.com/justinkan/status/1282577728693104640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A CEO’s first job is to get the company capitalized.&lt;/p&gt;
&lt;p&gt;A CEO’s second job is to recruit a team.&lt;/p&gt;
&lt;p&gt;A CEO’s third job is to provide them with clarity so they can solve their customers&#39; problems.&lt;/p&gt;
&lt;p&gt;A CEO’s fourth job is to get out of the way until one of the above is no longer true. &lt;a href=&quot;https://twitter.com/shl/status/1283778788317229056&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Working with who you want to work with, on what you want to work on, is actually just play. &lt;a href=&quot;https://twitter.com/naval/status/1289184229763424256&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people think they lack knowledge when they really lack focus. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1290498854798860290&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Outcome ≠ Effort &lt;a href=&quot;https://twitter.com/awilkinson/status/1291053247210205184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t persuade. Let the reader be persuaded &lt;a href=&quot;https://t.co/02EzmcfQse&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/02EzmcfQse&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GoodMarketingHQ/status/1291337334580023302&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GoodMarketingHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TEAMS ARE ADAPTIVE SYSTEMS&lt;/p&gt;
&lt;p&gt;People adapt to their work environment and to the actions of their manager.&lt;/p&gt;
&lt;p&gt;For example, motivation is the rational adaptation to a work environment where one’s business results bring positive outcomes (acknowledgment, promotion, etc.)&lt;/p&gt;
&lt;p&gt;(thread, 1/N) &lt;a href=&quot;https://twitter.com/DellAnnaLuca/status/1295609309980753928&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DellAnnaLuca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Thinking that estimatation is necessary becuase it uncovers the fact that we don&#39;t fully understand a problem is waterfall thinking at its worst. We need to understand only enough to &lt;em&gt;start&lt;/em&gt;. A need to know everyting BEFORE starting just adds delays. We learn the rest as we work. &lt;a href=&quot;https://twitter.com/allenholub/status/1295736648320184320&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lesson Learned:&lt;/p&gt;
&lt;p&gt;I&#39;ve found that my life is what I believe it is, and becomes what I believe it will become.&lt;/p&gt;
&lt;p&gt;My body responds to what I believe. Positive thoughts and beliefs lead to positive outcomes. Negative thoughts and beliefs lead to negative outcomes.&lt;/p&gt;
&lt;p&gt;1/2 &lt;a href=&quot;https://twitter.com/TuckerMax/status/1298272964681465857&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TuckerMax&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I only know a few copywriters and they are always busy (bc they are really good)&lt;/p&gt;
&lt;p&gt;Who&#39;s good? I want to refer business to them. &lt;a href=&quot;https://twitter.com/jimmy_daly/status/1298350187061088256&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jimmy_daly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s tough out there...&lt;/p&gt;
&lt;p&gt;Pre COVID, 62% of employees reported positive mental health. It&#39;s now 28%. Job satisfaction from 57% to 32% and job motivation from 56% to 36%.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/38KNCOABRu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/38KNCOABRu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/maccaw/status/1298366962850906112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maccaw&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1/ Get more done by doing less. &lt;a href=&quot;https://t.co/nothc7lQNW&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nothc7lQNW&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1300251979323772931&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;6/ Invest time now, earn time later. &lt;a href=&quot;https://t.co/ZJOrtlr6Go&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZJOrtlr6Go&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1300251992485437441&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7/ If it&#39;s too easy, you&#39;re leaving opportunity on the table. &lt;a href=&quot;https://t.co/GpBM9V5dAn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GpBM9V5dAn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1300251995253731330&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;8/ To get nowhere, obsess over what other people think. &lt;a href=&quot;https://t.co/w7CoJkgm6J&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/w7CoJkgm6J&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1300251997170475008&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You cannot have Agile teams and anti-Agile management. The management will drag the teams into dysfunction. &lt;a href=&quot;https://twitter.com/allenholub/status/1303101648017985544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The reason to win the game is so that you can be free of it. &lt;a href=&quot;https://twitter.com/naval/status/1303901446451019776&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;More like this. &lt;a href=&quot;https://t.co/mk4mIjhErP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mk4mIjhErP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/balajis/status/1304639824289120256&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;balajis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Happiness book that should exist:&lt;/p&gt;
&lt;p&gt;How to live live in a way that ticks all the boxes for your cave man brain 🐵&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Have kids 👨‍👩‍👧‍👦&lt;/li&gt;
&lt;li&gt;Be in nature 🌲&lt;/li&gt;
&lt;li&gt;Exercise 💪&lt;/li&gt;
&lt;li&gt;Create flow states 🧘‍♀️&lt;/li&gt;
&lt;li&gt;Eat once or twice a day 🥩&lt;/li&gt;
&lt;li&gt;Sleep at dark 🌅&lt;/li&gt;
&lt;li&gt;Socialize 👯‍♀️&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Has anyone written this? &lt;a href=&quot;https://twitter.com/awilkinson/status/1304812100976439297&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;m convinced most thoughts are useless.&lt;/p&gt;
&lt;p&gt;If you judge a thought based on whether it generates a new idea or results in a decision, the vast majority of them are neurotic chatter. &lt;a href=&quot;https://twitter.com/maccaw/status/1304899055810613248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maccaw&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What&#39;s the most expensive mistake you&#39;ve made in your career, and what did you learn from it? &lt;a href=&quot;https://twitter.com/Altimor/status/1306408152993132544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Altimor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the most important product skills is to be cognizant of when you are asking the customer to think too much. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1306631303480008704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders are artists &lt;a href=&quot;https://twitter.com/Suhail/status/1306810714305093633&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sometimes as CEO,&lt;/p&gt;
&lt;p&gt;Your job is just to make it seem clean and simple to folks&lt;/p&gt;
&lt;p&gt;(When of course it isn&#39;t) &lt;a href=&quot;https://twitter.com/jasonlk/status/1307714328154370055&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best way to improve your ability to think is to make time and space to think. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1308060993537413121&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being right is irrelevant if you’re not also persuasive &lt;a href=&quot;https://twitter.com/mkobach/status/1309993933661847552&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mkobach&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A team with a manager is hardly self organizing. A manager&#39;s very existance sends the wrong message. &lt;a href=&quot;https://twitter.com/allenholub/status/1310304994394927105&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your best marketing copy is sitting in the customer’s mind. &lt;a href=&quot;https://twitter.com/hnshah/status/1310412968954273793&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many hard problems have a ratio of about 98 points of generic execution to 2 points of domain expertise, but most organizations hire on something like 20 points of weighting  to horsepower versus 80 points to expertise.&lt;/p&gt;
&lt;p&gt;This is predictable and exploitable. &lt;a href=&quot;https://twitter.com/patio11/status/1310423868134227969&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patio11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My five GREATEST podcast episodes:&lt;/p&gt;
&lt;p&gt;In honor of @spotify&#39;s Forever Favorites...&lt;/p&gt;
&lt;p&gt;•@tferriss w/@level5leaders&lt;br /&gt;
•@PeterAttiaMD w/@AnnieDuke&lt;br /&gt;
•@ShaneAParrish w/@naval&lt;br /&gt;
•@patrick_oshag w/@tobi&lt;br /&gt;
•@ChrisWillx w/ @george__mack&lt;/p&gt;
&lt;p&gt;Here are the 15 ideas I learned from them&lt;/p&gt;
&lt;p&gt;MEGATHREAD... &lt;a href=&quot;https://twitter.com/dickiebush/status/1310657951942742018&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Natural selection is inevitable, but we can choose whether it acts on us (bad) or within us (good).&lt;/p&gt;
&lt;p&gt;Up to a point, of course, but imagine a company:&lt;/p&gt;
&lt;p&gt;If uncompetitive, the market&#39;s meritocracy bankrupts it&lt;/p&gt;
&lt;p&gt;But the company can protect itself by letting meritocracy work inside it &lt;a href=&quot;https://twitter.com/DellAnnaLuca/status/1310989390416617474&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DellAnnaLuca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If the work doesn’t require creativity, delegate it, automate it, or leave it. &lt;a href=&quot;https://twitter.com/naval/status/1311199771676176384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@RationalAztec Every day I need physical energy, mental clarity, and emotional balance to tackle everything that comes my way. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1311367952701292544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@RationalAztec Tell me and I forget. Teach me and I remember. Involve me and I learn. &lt;a href=&quot;https://twitter.com/PhilipJBerry/status/1311466197725188096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PhilipJBerry&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Underrated skill: answering questions with the appropriate level of detail. &lt;a href=&quot;https://twitter.com/lpolovets/status/1311503396596150272&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lpolovets&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fulfilling, lucrative, low-risk. Pick two. &lt;a href=&quot;https://twitter.com/shl/status/1312020024656240642&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Figma may be the most complex + performant + intuitive software I have ever used. Wow.&lt;/p&gt;
&lt;p&gt;I have been productive with this thing for days and I haven&#39;t taken a single course or needed to read the effing manual.&lt;/p&gt;
&lt;p&gt;What developer tool is Figma-level intuitive? Is there an equivalent? &lt;a href=&quot;https://twitter.com/swyx/status/1312093109560307712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;swyx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A decade of hard, smart work.&lt;/p&gt;
&lt;p&gt;The rest of your life free.&lt;/p&gt;
&lt;p&gt;That’s a great deal. &lt;a href=&quot;https://twitter.com/orangebook/status/1312156912222265344&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In 2008 Facebook’s user growth hit a wall at 80M and we were having serious debates about whether any social network could ever reach 100M users. 2 years later we had doubled our user base and not long after that we reached 1B users. Here’s how we did it: &lt;a href=&quot;https://twitter.com/DanRose999/status/1312215292609662977&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanRose999&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the middle of this crisis, Zuck went on a 6-week “walk-about” in Asia. He hadn’t taken a break since starting FB 4 years earlier and working 100 hrs/wk, exhausted and needed to clear his head. Sheryl had recently joined and he trusted her to keep things together in his absence &lt;a href=&quot;https://twitter.com/DanRose999/status/1312215298318114816&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanRose999&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When Zuck returned we held a tense management team offsite to debate our path forward. Some people announced their resignations at the end of the meeting. The core strategy debate boiled down to whether we should focus on growth marketing or core product development. &lt;a href=&quot;https://twitter.com/DanRose999/status/1312215299232419840&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanRose999&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;At the end of the year, Zuck announced his New Years resolution to wear a tie to work every day for 12 months, symbolizing ‘09 would be a serious year for the company. I thought he would last a month, but he never missed a single day all year. And the company executed like hell. &lt;a href=&quot;https://twitter.com/DanRose999/status/1312215302801747968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanRose999&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There&#39;s room for better versions of almost everything. We just don&#39;t see it because we&#39;ve stopped noticing the flaws in what we have, and the complicated tricks we use to compensate for them. &lt;a href=&quot;https://twitter.com/paulg/status/1312414174572695552&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A company full of people saying &amp;quot;it will never work here&amp;quot; will never try anything new, so they&#39;re absolutely right that it will never work there. Can&#39;t work if you don&#39;t try it. &lt;a href=&quot;https://twitter.com/allenholub/status/1312431884975009794&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’ve taken 10+ people to sensory deprivation tank sessions.&lt;/p&gt;
&lt;p&gt;100% enjoyment rate so far.&lt;/p&gt;
&lt;p&gt;Underrated mental health hack. &lt;a href=&quot;https://t.co/Frjzuoz2pe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Frjzuoz2pe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/george__mack/status/1312452857107378178&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When a team takes on a story, they do whatever&#39;s necessary to get that story realized and into the customer&#39;s hands, including any learning. Note that I said &amp;quot;when the team takes on.&amp;quot; Teams pull work. It&#39;s not pushed onto them. Knowledge silos prevent this way of working. &lt;a href=&quot;https://twitter.com/allenholub/status/1312459090484813825&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want superior returns, find an inefficient, illiquid, under-appreciated market, and work everyday to be one of the best investors in that market. You can live a comfortable life fishing the same small pond because you know where the fish are. &lt;a href=&quot;https://twitter.com/iancassel/status/1312480353970393088&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iancassel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Autonomous&amp;quot; means that you get to make your own decisions. It does not mean that you work alone in a locked closet and don&#39;t talk to anybody. The best autonomous teams collaborate heavily with other autonomous teams, and decide on the best means for doing that. &lt;a href=&quot;https://twitter.com/allenholub/status/1312519286959697921&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ask for feedback on your attempts, not advice on your ideas. &lt;a href=&quot;https://twitter.com/shl/status/1313607008537387008&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’re as good as your next decision&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;@singh_sequoia &lt;a href=&quot;https://twitter.com/kunalb11/status/1313751013703131139&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nobody ever said radical honesty was easy. Sometimes, especially with new employees who have not yet gotten used to it, an honest assessment feels like an attack. (1/2) &lt;a href=&quot;https://t.co/JYl3cG96ft&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/JYl3cG96ft&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1313873663767138305&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start a company to automate your job. Your first customer can be your current employer. &lt;a href=&quot;https://twitter.com/shl/status/1313899435584229377&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Happiness is not the end-goal, but a daily decision that is within our control. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1314065632749662208&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Where you stand is what you see. &lt;a href=&quot;https://t.co/TjLLoRoFQM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TjLLoRoFQM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1314173189715619840&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Own time, or time will own you. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1314198106875944962&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Because many people have had questions about my principles about managing a team during ambiguous times, I’m passing them along to you in one package. To get these principles and more check out the Coach tool in the free app, Principles in Action: &lt;a href=&quot;https://t.co/QbIij4ydr3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/QbIij4ydr3&lt;/a&gt; (1/2) &lt;a href=&quot;https://t.co/gS4TpYyi8E&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gS4TpYyi8E&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1314213621145116678&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Progress is deciding what to stop doing. &lt;a href=&quot;https://t.co/87JOGIPWNl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/87JOGIPWNl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1314230044798193665&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every startup founder should read this: &lt;a href=&quot;https://t.co/vSKiK7jpVb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vSKiK7jpVb&lt;/a&gt; &lt;a href=&quot;https://t.co/cW4SGOC7zj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/cW4SGOC7zj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1314260316134531075&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t stop working before it starts working. &lt;a href=&quot;https://t.co/dWjgbgG1kl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/dWjgbgG1kl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1314279502512619520&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Two approaches to product:&lt;/p&gt;
&lt;p&gt;Build what you think people want.&lt;br /&gt;
Build what you know you want. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1314282143850299392&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being responsible means not blaming others for your unhappiness. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1314420054088396802&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Value your time so highly you feel pain when you waste it. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1314597802555695104&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Instead of ticketing and classifying bugs, I&#39;d think beyond the &amp;quot;bug&amp;quot; to the user story. What was the user doing that the bug prevented? That&#39;s a story. We can put it onto the backlog in the normal way and sort by user value. 1/2 &lt;a href=&quot;https://twitter.com/allenholub/status/1314606007457394691&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Always like to start the next work cycle kick-off with a recap of what we got done in the last 6-week cycle.&lt;/p&gt;
&lt;p&gt;Helps to remind me that even when I feel like I&#39;m not getting as much done as I want to be, we are actually fucking &lt;em&gt;killing&lt;/em&gt; it 😅 &lt;a href=&quot;https://t.co/AUior392xD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AUior392xD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/adamwathan/status/1314636931112808448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adamwathan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Way more startups have died by over-building for their market vs. under-building. Always start simple then expand. &lt;a href=&quot;https://twitter.com/levie/status/1315065853277167617&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@levie It&#39;s not the overbuilding per se that kills them. It&#39;s that they were building instead of talking to customers, and thus built the wrong thing. But it&#39;s the absence of the right features that kills, not the presence of too many. &lt;a href=&quot;https://twitter.com/paulg/status/1315185769741512704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stock gains this year:&lt;/p&gt;
&lt;p&gt;Zoom: +624%&lt;br /&gt;
Tesla: +419%&lt;br /&gt;
Peloton: +333%&lt;br /&gt;
Etsy: +231%&lt;br /&gt;
Docusign: +204%&lt;br /&gt;
Square: +199%&lt;br /&gt;
Shopify: +176%&lt;br /&gt;
Nvidia: +134%&lt;br /&gt;
Teladoc: +161%&lt;br /&gt;
Pinterest: +133%&lt;br /&gt;
PayPal: +82%&lt;br /&gt;
Amazon: +79%&lt;br /&gt;
Netflix: +67%&lt;br /&gt;
Snapchat: +65%&lt;br /&gt;
Salesforce: +64%&lt;br /&gt;
Apple: +59%&lt;br /&gt;
eBay: +54%&lt;br /&gt;
Adobe: +52% &lt;a href=&quot;https://twitter.com/JonErlichman/status/1315297284486291457&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JonErlichman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to earn trust:&lt;/p&gt;
&lt;p&gt;1 do not lie (to others or yourself)&lt;br /&gt;
2 do not cheat&lt;br /&gt;
3 do not pretend&lt;br /&gt;
4 do not manipulate&lt;br /&gt;
5 do not hide the truth&lt;br /&gt;
6 say what you mean&lt;br /&gt;
7 deliver on promises&lt;br /&gt;
8 give trust&lt;br /&gt;
9 explain your decisions&lt;br /&gt;
10 share your intent&lt;br /&gt;
11 do not defend dishonesty&lt;br /&gt;
12 do not brag &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1315327149826600964&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Reduce options. Increase focus. Multiply results.&amp;quot; — @behaviorgap &lt;a href=&quot;https://t.co/L89ItdfCZY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/L89ItdfCZY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1315739475331424258&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stages of CEO:&lt;/p&gt;
&lt;p&gt;&amp;lt;$5M gross profit - Doer + firefighter&lt;br /&gt;
$5M-$10M - Standardizer + player-coach&lt;br /&gt;
$10M-$30M - Exec talent recruiter + coach&lt;br /&gt;
$30M - $100M - Culture guard + head of strategy&lt;br /&gt;
$100M+ - Stakeholder ambassador + cheerleader &lt;a href=&quot;https://twitter.com/BrentBeshore/status/1315982491409420290&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrentBeshore&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;4 Q&#39;s I always ask myself as a leader...&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Am I creating environ. for team to do best work?&lt;/li&gt;
&lt;li&gt;Am I creating clarity on what needs to be done + why?&lt;/li&gt;
&lt;li&gt;Am I personally modeling the behavior I want to be true?&lt;/li&gt;
&lt;li&gt;Am I seeing things for what they are instead of what I want them to be? &lt;a href=&quot;https://twitter.com/clairejlew/status/1316121457873747968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;clairejlew&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most successful people respond to emails the fastest. &lt;a href=&quot;https://twitter.com/mrsharma/status/1316136271295778816&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mrsharma&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Practice. &lt;a href=&quot;https://t.co/IROkTwfosQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IROkTwfosQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1316205721441177601&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If there’s one thing I’ve learned from the last 5 years, it’s this:&lt;/p&gt;
&lt;p&gt;Starting companies is really hard.&lt;/p&gt;
&lt;p&gt;Tweaking existing companies to make them better is much easier and sometimes just as fun. &lt;a href=&quot;https://twitter.com/awilkinson/status/1316399109813665794&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@edward_gorbis @rabois The Berlin Wall fell 30 years ago. I guess that’s how long it takes for people to forget — or a new generation never to know. &lt;a href=&quot;https://twitter.com/DavidSacks/status/1316422014811348992&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DavidSacks&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Making people think isn’t as valuable as making people feel. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1316422091315580929&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The purpose of life is to experience things for which you will later experience nostalgia. &lt;a href=&quot;https://twitter.com/fed_speak/status/1316545510724038656&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fed_speak&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most Execution problems are really&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Strategy problems, or&lt;/li&gt;
&lt;li&gt;Interpersonal problems, or&lt;/li&gt;
&lt;li&gt;Culture problems&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Good leaders execute well because they understand this. They fix the root problem.&lt;/p&gt;
&lt;p&gt;Bad leaders struggle because they are always applying band-aids. &lt;a href=&quot;https://twitter.com/shreyas/status/1316573473934696449&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“No one ever made a decision because of a number. They need a story.” — Daniel Kahneman &lt;a href=&quot;https://t.co/atOMCJ39V3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/atOMCJ39V3&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1316589335794286592&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The ultimate test of whether you own a high quality business?&lt;/p&gt;
&lt;p&gt;The CEO can go on vacation for 3 months unannounced, and everything keeps on running smoothly. &lt;a href=&quot;https://twitter.com/awilkinson/status/1316796865132650496&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Microservices are such a fundamentally and catastrophically bad idea that there are going to an entire cohort of multi-billion companies built that do nothing but contain the damage that they have wrought. &lt;a href=&quot;https://twitter.com/schrockn/status/1316919627524526082&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;schrockn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Failure.” &lt;a href=&quot;https://t.co/jDDsmsTDVE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jDDsmsTDVE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1317142027834884098&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The 2 main keys of charisma are:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Being present in the environment.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Full focus on the person that you&#39;re talking to&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;1 leads to 2. &lt;a href=&quot;https://twitter.com/ArmaniTalks/status/1317453668434792448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ArmaniTalks&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;So, forget Scrum. Instead, identify business problems that need solving, then solve them in an agile way. For example, don&#39;t start with a huge reorg (SM&#39;s PO&#39;s and all that garbage). 3/4 &lt;a href=&quot;https://twitter.com/allenholub/status/1317522765533138946&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If the business problem is getting stuff out the door, start with lowering WIP and regular retros. If it&#39;s dependencies, start with cross-functional teams. If it&#39;s quality, start with TDD and &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#MobProgramming&quot;&gt;#MobProgramming&lt;/a&gt;. Get to Agile in an Agile way—incrementally, one solution at a time. 4/4 &lt;a href=&quot;https://twitter.com/allenholub/status/1317522766258708481&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I never forgot this lesson, and I’ve often leaned on it when things get hard. It’s tempting to run away to something new (at work, in life). Resist that temptation - stay until your job is done, take pride in fixing what you broke, don’t hide from problems, act like an owner. &lt;a href=&quot;https://twitter.com/DanRose999/status/1317610336644521984&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanRose999&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You don’t need mentors, you need action. &lt;a href=&quot;https://twitter.com/naval/status/1318051796556730369&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;By knowing what is true, I mean knowing how reality works. People didn’t create the laws of nature that we have to live by in order to be successful, but if we can understand these laws we can use them to achieve our goals. (1/2) &lt;a href=&quot;https://t.co/KoMVRHknOC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KoMVRHknOC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1318230377601720320&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Cold emails shouldn&#39;t be cold &lt;a href=&quot;https://t.co/MICSivkKHv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MICSivkKHv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GoodMarketingHQ/status/1318529112454123521&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GoodMarketingHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do HR, Finance and Legal make products?  &lt;a href=&quot;https://t.co/gRhUifLIhU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gRhUifLIhU&lt;/a&gt; &lt;a href=&quot;https://t.co/LMVbyaMOlw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LMVbyaMOlw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jboogie/status/1318554576304431107&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jboogie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A simple reminder: quality work takes time &lt;a href=&quot;https://t.co/wY6nHfB7EN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wY6nHfB7EN&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1318556467444764676&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The path to happiness doesn’t involve adding a single thing to your life. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1318582357289553923&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Time is the only true scarcity.&lt;/p&gt;
&lt;p&gt;No one can manufacture it&lt;/p&gt;
&lt;p&gt;No one can sell the time available to him.&lt;/p&gt;
&lt;p&gt;No one knows how to accumulate it. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1318987119252090883&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t tell me your priorities. Show me your calendar. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1319253418783821825&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dear managers,&lt;/p&gt;
&lt;p&gt;Your job is not to make people work harder.&lt;/p&gt;
&lt;p&gt;Your responsibility to help your team achieve their goals, let them know that their work matters, and then recognize and reward those who consistently help the team deliver timely, high quality and positive outcomes. &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1319298505383575553&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Estimating cost has no value at all if the thing you&#39;re estimating has no value to your customer. You shouldn&#39;t be building that at all, so why are you wasting time estimating it? Focus on value. &lt;a href=&quot;https://twitter.com/allenholub/status/1319311266108768262&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If the cost is your peace of mind, then it is too expensive. &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1319684427065294849&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Too many &amp;quot;agile coaches&amp;quot; aren&#39;t willing to do the hard work of actually correcting problems when they see them. They dance around problems,  ask their &amp;quot;powerful questions,&amp;quot; and play with their Legos and marshmallows. 1/3 &lt;a href=&quot;https://twitter.com/allenholub/status/1319690150771888131&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You get paid linearly for doing what everyone else is doing. You get paid non-linearly for correct divergence from the crowd. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1319978697928200194&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Marketing gets easier when you think of it as a search function for people who already agree with you, they just haven’t met you yet. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1320032212688031748&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All systems insulated from feedback from free markets or natural forces eventually get corrupted. &lt;a href=&quot;https://twitter.com/naval/status/1320100011489722368&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What do you do to make your day suck less/stay productive when tired?&lt;/p&gt;
&lt;p&gt;Any hacks? &lt;a href=&quot;https://twitter.com/awilkinson/status/1321488873495515137&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop listening to people who haven’t done what you’re trying to accomplish &lt;a href=&quot;https://twitter.com/APompliano/status/1321526925328850945&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;APompliano&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most ideas die from the overvaluation of negative feedback. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1322586611805245440&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The single most important factor to success is the ability to make things happen.&lt;/p&gt;
&lt;p&gt;This requires determination, resourcefulness, focus, tenacity, confidence, a willingness to look like an idiot, and an ability to do the work when no one is watching. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1322967152434008064&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Free people make free choices. Free choices mean you get unequal outcomes.&lt;/p&gt;
&lt;p&gt;You can have freedom, or you can have equal outcomes. You can’t have both. &lt;a href=&quot;https://twitter.com/naval/status/1323105999184560139&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We’re good at fooling ourselves because it helps fool others. &lt;a href=&quot;https://twitter.com/naval/status/1323360587896684544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A calm mind is not the absence of conflict or stress, but the ability to cope with it. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1324016890105208834&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&#39;Developers are drawn to complexity like moths to a flame often with the same result.&#39; -Neal Ford &lt;a href=&quot;https://twitter.com/allenholub/status/1324245205562785792&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great products are built by saying no 99% of the time.&lt;/p&gt;
&lt;p&gt;Great teams are built by saying no 99% of the time.&lt;/p&gt;
&lt;p&gt;Great portfolios are built by saying no 99% of the time. &lt;a href=&quot;https://twitter.com/shl/status/1324376406839631872&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Three word content strategy:&lt;/p&gt;
&lt;p&gt;Document your evolution. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1324383646359396352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@mattbarcomb &lt;a href=&quot;https://t.co/ZpJxPDkP9h&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZpJxPDkP9h&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jseiden/status/1324704428453203968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jseiden&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Too many desires leads to anxiety&lt;/p&gt;
&lt;p&gt;Few desires leads to movement&lt;/p&gt;
&lt;p&gt;1 big desire leads to legacy &lt;a href=&quot;https://twitter.com/ArmaniTalks/status/1324746945584373760&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ArmaniTalks&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Resist. &lt;a href=&quot;https://t.co/OSvJnLd8eD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OSvJnLd8eD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1325111937336799233&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Don’t raise your voice. Improve your argument.” &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1325441713943564288&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Work vs. luck. &lt;a href=&quot;https://t.co/kGpFIkG2r0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/kGpFIkG2r0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1325446632566099968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dealing with Darwin book. Every CEO of a successful company will love it! &lt;a href=&quot;https://t.co/2aG5SJrNq7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2aG5SJrNq7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tomik99/status/1326099317183090688&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I have a personal programming rule I always follow: it must be possible to entirely replace an implementation of some unit without impacting the clients of that unit. (Tests count as clients.) I call that the &amp;quot;replacement principle.&amp;quot; It&#39;s done me good service over the years. &lt;a href=&quot;https://twitter.com/allenholub/status/1326233513012547584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you aren’t curious about it, you’ll never be good at it. &lt;a href=&quot;https://twitter.com/naval/status/1327356657244934144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What are some good interview questions to know if someone has good judgement? &lt;a href=&quot;https://twitter.com/kunalb11/status/1328607035223658497&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What am I missing? &lt;a href=&quot;https://twitter.com/gregisenberg/status/1329050340646412289&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the long run, the way you treat your time is the way others treat it too. &lt;a href=&quot;https://twitter.com/JamesClear/status/1329215505593470976&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many of you have told me you’re interested in using your mistakes to help you evolve, so I’m sharing my principles for learning from mistakes here.&lt;/p&gt;
&lt;p&gt;I also recommend that you check out the Coach tool in my free app, Principles In Action. (1/2) &lt;a href=&quot;https://t.co/PNltEkqSEx&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PNltEkqSEx&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1329796205824577538&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Never ask your barber if he thinks you need a haircut&amp;quot;&lt;/p&gt;
&lt;p&gt;–Warren Buffett &lt;a href=&quot;https://twitter.com/awilkinson/status/1329859708413382658&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I keep seeing these ridiculous &amp;quot;roadmaps.&amp;quot; A firm plan for what you&#39;re going to do for the next year (or whatever) is in no way Agile or agile or even slightly valuable. 1/3 &lt;a href=&quot;https://twitter.com/allenholub/status/1329892550728183811&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In practice, good intentions rarely work as well as good incentives. &lt;a href=&quot;https://twitter.com/paulg/status/1330086502420934657&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone makes mistakes. The main difference is that successful people learn from them and unsuccessful people don’t. By creating an environment in which it&#39;s okay to safely make mistakes so that people can learn from them, you’ll see rapid progress and fewer significant mistakes &lt;a href=&quot;https://t.co/xTYDWfIbGR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xTYDWfIbGR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1330216386598146049&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;not a bad investment thesis... &lt;a href=&quot;https://t.co/cUCzQb6aOY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/cUCzQb6aOY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/semil/status/1330233694859227137&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;semil&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Keep going. &lt;a href=&quot;https://t.co/hJIFiKnuYC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hJIFiKnuYC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1330894279909191681&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A culture of trust and experimentation works better than one of accountability and blame any day. &lt;a href=&quot;https://twitter.com/allenholub/status/1331664915224952832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Happy Thanksgiving&lt;/p&gt;
&lt;p&gt;About 10yrs ago, this section from The Black Swan changed how I look at the world. Try not to be the turkey. &lt;a href=&quot;https://t.co/LuA8jFK8WO&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LuA8jFK8WO&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dvassallo/status/1331996277890957312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dvassallo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Breaking down my recent post:&lt;/p&gt;
&lt;p&gt;1/ @scale_AI, I interviewed everyone we gave an offer to for a long time. I wrote a memo to the company about what I look for.  I wanted to share it with the community because I don’t think people do this enough.&lt;/p&gt;
&lt;p&gt;Thread👇&lt;br /&gt;
&lt;a href=&quot;https://t.co/Da5OFUATWT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Da5OFUATWT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/alexandr_wang/status/1332059627878400000&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;alexandr_wang&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re focused on the goal, excited about achieving it, and recognize that doing some undesirable tasks to achieve the goal is required, you will have the right perspective and will be appropriately motivated. (1/3) &lt;a href=&quot;https://t.co/dw4yFegeZq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/dw4yFegeZq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1332332649633951746&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@philosophyio Hunt or be hunted. &lt;a href=&quot;https://twitter.com/itsmeVishnuG/status/1333069322353139712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;itsmeVishnuG&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@philosophyio “Adapt what is useful, reject what is useless, and add what is specifically your own.” - Bruce Lee &lt;a href=&quot;https://twitter.com/ArtfulPrudence/status/1333070084378652674&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ArtfulPrudence&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@philosophyio Dont use others and never get used by anyone. &lt;a href=&quot;https://twitter.com/Sumit_2311/status/1333071531631669252&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Sumit_2311&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Normalize building without permission. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1333726636999651328&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you can&#39;t describe what you are doing as a process, you don&#39;t know what you&#39;re doing.&amp;quot; — W. Edwards Deming. &lt;a href=&quot;https://t.co/zBT2KnCs1u&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zBT2KnCs1u&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1333782559734558721&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Life is trying things to see if they work.&amp;quot; — Ray Bradbury &lt;a href=&quot;https://t.co/uL0jU92p3n&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/uL0jU92p3n&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1334250694484897794&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Prior to capitalism, the way people amassed great wealth was by looting, plundering and enslaving their fellow man. Capitalism made it possible to become wealthy by serving your fellow man.” — Walter Williams, RIP &lt;a href=&quot;https://twitter.com/pmarca/status/1334329317518573568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;pmarca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When faced with a decision:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Know that lack of action is a decision.&lt;/li&gt;
&lt;li&gt;Decide to decide.&lt;/li&gt;
&lt;li&gt;Make room for error.&lt;/li&gt;
&lt;li&gt;Create contingency plans based on input, not fear.&lt;/li&gt;
&lt;li&gt;See your decisions as points on a data line, not as absolutes.&lt;/li&gt;
&lt;li&gt;Minimize undue blame and regret. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1334374396333580288&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The quality of your life primarily depends on the quality of your decisions in pursuit of your goals. Here are some principles I have found helpful in achieving my goals. (1/2) &lt;a href=&quot;https://t.co/vKA5PSOlsB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vKA5PSOlsB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1334888709406253059&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;When making plans, think big. When making progress, think small.&amp;quot; — @JamesClear &lt;a href=&quot;https://t.co/dzOH62WR9F&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/dzOH62WR9F&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1335646982308847624&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hard work is what we do when we don’t know what we’re good at. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1335661239654080514&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The more a product feels like a game, the better the odds for success. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1335673844443443200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you had only one interview question to assess someone’s hunger and aptitude for learning, what would it be? &lt;a href=&quot;https://twitter.com/JoeFernandez/status/1336421759524851712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JoeFernandez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Iterate. &lt;a href=&quot;https://t.co/s2OWUCvqFr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/s2OWUCvqFr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1336690291663908867&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Smart people are not offended by the truth. &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1336739861630480387&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“As I look back on my life, I realize that every time I thought I was being rejected from something good, I was actually being re-directed to something better.” &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1337284108033134592&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is how easy it is to Psyop&lt;/p&gt;
&lt;p&gt;Remember: The opposite of Courage in our society is not Cowardice, it&#39;s Conformity &lt;a href=&quot;https://twitter.com/ellobosalvaje/status/1337772187042852864&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ellobosalvaje&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“No one ever made a decision because of a number. They need a story.” — Daniel Kahneman &lt;a href=&quot;https://t.co/W9wO9DsuxM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/W9wO9DsuxM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1340153658219114502&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are no busy people only people who suck at prioritization. &lt;a href=&quot;https://twitter.com/kunalb11/status/1341259500829863937&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As often as you can, tell people that their work matters. &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1341455734509342724&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Teach the testers to program. Teach the programmers to test.&lt;/p&gt;
&lt;p&gt;Testing is a skill, not a job title. &lt;a href=&quot;https://twitter.com/allenholub/status/1341459321549254656&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to avoid copycats:&lt;/p&gt;
&lt;p&gt;Make things no one likes. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1341558916312907776&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Distance yourself from people who have a problem with every solution. &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1341605800561807361&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All the best to everyone this Holiday Season! 🎄💝 &lt;a href=&quot;https://t.co/mek8aZYNya&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mek8aZYNya&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1341773083628232704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A cage is a much better metaphor than a silo. Consider a testing cage (silo). You put all your testers into the cage and feed them through the bars. If food (work) piles up, it starts to rot. The people in the cage can&#39;t get out and help others or learn. &lt;a href=&quot;https://twitter.com/allenholub/status/1341810361121423360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;By default most founders are&lt;br /&gt;
😭 short term optimists (ignore bad execution) and&lt;br /&gt;
🥴 long term pessimists (pick small problems)&lt;/p&gt;
&lt;p&gt;Successful founders are the opposite—&lt;br /&gt;
🧐 short term pessimists and (always improving)&lt;br /&gt;
😎 long term optimists (pick big problems)&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/CSnzt48yTo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CSnzt48yTo&lt;/a&gt; &lt;a href=&quot;https://t.co/e3K4LUoFFC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/e3K4LUoFFC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/garrytan/status/1341831619078832128&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;garrytan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Think story, not feature. E.g. &amp;quot;we need to add an email feature&amp;quot; tells you nothing about how actual customers want to leverage email in the app. A story that describes a customer using email to accomplish something of value does tell you that. Stories keep you focused on value. &lt;a href=&quot;https://twitter.com/allenholub/status/1341865975696642050&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A CEO letting past &amp;amp; future employees know what trends he believes in is good.&lt;br /&gt;
It gives them an opportunity to adapt.&lt;/p&gt;
&lt;p&gt;I’ve seen a few Twitter users calling the quoted tweet an insult.&lt;/p&gt;
&lt;p&gt;To me, it’s a form of respect.&lt;/p&gt;
&lt;p&gt;1/2 &lt;a href=&quot;https://twitter.com/DellAnnaLuca/status/1342060775247110144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DellAnnaLuca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The image of perfection is what keeps you from seeing it. &lt;a href=&quot;https://twitter.com/naval/status/1342568863070789632&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The real happiness is deep equanimity.&lt;br /&gt;
Anicca. &lt;a href=&quot;https://twitter.com/DhammaService/status/1342656376703758336&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DhammaService&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Has anyone had success with a productivity system that they’ve been able to stick with for over a year?&lt;/p&gt;
&lt;p&gt;I love Getting Things Done / OmniFocus, but I find it’s a part time job to maintain and do weekly reviews and I always fall off the wagon. &lt;a href=&quot;https://twitter.com/awilkinson/status/1342860191910350853&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop chasing other people&#39;s definitions of success, that&#39;s what makes you unhappy. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1344327510947995652&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want to enjoy life more?&lt;/p&gt;
&lt;p&gt;Put down the remote, back slowly away from the television,&lt;/p&gt;
&lt;p&gt;and do something where you&#39;re a participant, not an observer. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1344511129381466117&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Everyone&amp;quot; should be in regular contact with customers. Preventing engineers from talking to customers is a strong antipattern. A need to explain the domain to the engineers is a huge red flag. They should already be very familiar with the domain.  Stop creating silos. &lt;a href=&quot;https://twitter.com/allenholub/status/1344742402989256704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What&#39;s the best movie or TV show ever made about invention?&lt;/p&gt;
&lt;p&gt;Not just the trials and tribulations of the inventor, but which brings alive the process of invention itself. &lt;a href=&quot;https://twitter.com/antonhowes/status/1345035939043815424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;antonhowes&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Move faster. Slowness anywhere justifies slowness everywhere.&lt;/p&gt;
&lt;p&gt;2021 instead of 2022. This week instead of next week. Today instead of tomorrow.&lt;/p&gt;
&lt;p&gt;Moving fast compounds so much more than people realize. &lt;a href=&quot;https://twitter.com/sama/status/1345140364995227648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bitcoin is an exit from the Fed.&lt;/p&gt;
&lt;p&gt;DeFi is an exit from Wall Street.&lt;/p&gt;
&lt;p&gt;Social media is an exit from mass media.&lt;/p&gt;
&lt;p&gt;Homeschooling is an exit from industrial education.&lt;/p&gt;
&lt;p&gt;Remote work is an exit from 9-5.&lt;/p&gt;
&lt;p&gt;Creator economy is an exit from employment.&lt;/p&gt;
&lt;p&gt;Individuals are leaving institutions. &lt;a href=&quot;https://twitter.com/naval/status/1345564424770240513&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@sopranoscaps @jackbutcher No Paulie? &lt;a href=&quot;https://twitter.com/CactusZachtus/status/1345627503067594752&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;CactusZachtus&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you are depressed you are living in the past.&lt;br /&gt;
If you are anxious you are living in the future.&lt;br /&gt;
If you are at peace you are living in the present.&lt;/p&gt;
&lt;p&gt;— Lao Tzu &lt;a href=&quot;https://t.co/pME603Kxrg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pME603Kxrg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1346471918514237440&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Material progress doesn’t make us happier. If it did, the ancients must have been a miserable bunch.&lt;/p&gt;
&lt;p&gt;Instead we compete for status, an older, zero-sum game.&lt;/p&gt;
&lt;p&gt;We don’t want things, we want to be things.*&lt;/p&gt;
&lt;p&gt;A rational person recounts their blessings and rejects society’s games. &lt;a href=&quot;https://twitter.com/naval/status/1347486331828531202&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Maturity is the ability to prioritize values before feelings. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1347902194058747904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Only good use of money is to buy time.&lt;/p&gt;
&lt;p&gt;Time to invest in knowledge, health and relationships. &lt;a href=&quot;https://twitter.com/kunalb11/status/1348115297824247808&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@awilkinson 35 to 40 may have been the most fun period of my life. I learned to only spend energy on people willing to give it back, to stop telling myself I’ll try that “tomorrow”, why wait? Looking back, I wish I had pushed back more at my job regarding my time. I missed too much. HBD 🥳 &lt;a href=&quot;https://twitter.com/arizonacoug/status/1349054022620041217&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;arizonacoug&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@awilkinson At your age I started taking my physical fitness (cardio,  mobility, and strength) a lot more seriously than any point prior. One of my best decisions. Wish I did it way earlier. &lt;a href=&quot;https://twitter.com/destraynor/status/1349140276821053442&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;destraynor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@awilkinson I turn 50 this year. 35 is an amazing age. Still have youthful energy but now combining it with some wisdom. I wish I’d found the edges more and lived with less fear. Oh, and fitness...don’t ever lose it. Getting it back becomes so much harder (+ more injury prone) as you age &lt;a href=&quot;https://twitter.com/simon_ree/status/1349268178619142144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;simon_ree&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;THREAD: 15 of the most useful razors and rules I&#39;ve found.&lt;/p&gt;
&lt;p&gt;Rules of thumb that simplify decisions. &lt;a href=&quot;https://twitter.com/george__mack/status/1350513143387189248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;m still under the dangerous delusion that I&#39;ll have time to do everything I want to do in life. &lt;a href=&quot;https://twitter.com/EricJorgenson/status/1350910389849042947&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;EricJorgenson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;-A few days of collecting &amp;amp; sorting laundry from different corners of my house pre-weekend 😂&lt;br /&gt;
-Lots of short (20min) &amp;amp; a few long cycles for 2 days&lt;br /&gt;
-Mid-station bw washing machine &amp;amp; dryer (to pile up clean wet clothes while the previous drying cycle is on) to break the dependency &lt;a href=&quot;https://twitter.com/hellobasak/status/1350954277225844737&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hellobasak&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A backlog is not be a list of solutions or work to be done. A backlog is a list of problems that need solving. &lt;a href=&quot;https://twitter.com/allenholub/status/1354575315616456706&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The more seriously you take yourself, the unhappier you’re going to be.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;@naval &lt;a href=&quot;https://twitter.com/NavalQuotes247/status/1355450933371523072&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalQuotes247&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many people think building brand = doing ads.&lt;/p&gt;
&lt;p&gt;But building brand = doing positive actions every single day across all customer touch points that elevates affinity, trust and reputation.&lt;/p&gt;
&lt;p&gt;And only one negative action can often wipe out all your brand equity built over years. &lt;a href=&quot;https://twitter.com/kunalb11/status/1356466932006801411&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The overstimulated mind competes with all. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1356657409515782146&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jeff Bezos is stepping down as Amazon CEO.&lt;/p&gt;
&lt;p&gt;Coincidence? I Don&#39;t Think So ;-) ;-) &lt;a href=&quot;https://t.co/FvNeBVkEmQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/FvNeBVkEmQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tomik99/status/1356888065311145984&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If success comes, allow it.&lt;/p&gt;
&lt;p&gt;If failure comes, allow it.&lt;/p&gt;
&lt;p&gt;Both are not what we think they are.&lt;/p&gt;
&lt;p&gt;Surrender comes in the form of allowing things to be as they are.&lt;/p&gt;
&lt;p&gt;Accept and then act from that place of acceptance. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1357028457587310594&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jeff Bezos on decision making: &lt;a href=&quot;https://t.co/BhaK6063aj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BhaK6063aj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/shaneparrish/status/1357427272664367107&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The 7 Lean Principles are: &amp;quot;Eliminate waste, amplify learning, decide as late as possible, deliver as fast as possible, empower the team, build quality in, and see the whole&amp;quot;. How exactly is that incompatible with Agile? &lt;a href=&quot;https://twitter.com/allenholub/status/1357492971323723777&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Too often, &amp;quot;data&amp;quot; is used as an excuse not to have conversations.&lt;/p&gt;
&lt;p&gt;Don&#39;t collect data. Talk to people. &lt;a href=&quot;https://twitter.com/allenholub/status/1358155250692018177&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you are doing reference checks on a new hire, just ask their old boss one question:&lt;/p&gt;
&lt;p&gt;&amp;quot;Were they truly great?&amp;quot;&lt;/p&gt;
&lt;p&gt;If they hesitate when they answer, or don&#39;t say Yes! ... don&#39;t make the hire&lt;/p&gt;
&lt;p&gt;A simple recommendation is often meaningless &lt;a href=&quot;https://twitter.com/jasonlk/status/1358165466473066496&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@elonmusk The most powerful person in business is the storyteller. —Steve Jobs &lt;a href=&quot;https://t.co/AVcsWvVmYt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AVcsWvVmYt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1358215452623859712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everything in your life is a relationship. You are in one with your money, your health, your career, your dreams. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1358302124640243713&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pyroscope is a new open source continuous profiler!&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Only takes 3 lines of code to install&lt;/li&gt;
&lt;li&gt;See exactly which lines of code consume CPU resources&lt;/li&gt;
&lt;li&gt;View profiles as large as 1 year or as granular as 10 seconds&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Check out the Github repo for our demo...We&#39;d love some feedback! &lt;a href=&quot;https://twitter.com/PyroscopeIO/status/1359334261988364293&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PyroscopeIO&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Programmers can literally just sit down at a computer and create value for people out of thin air &lt;a href=&quot;https://twitter.com/Austen/status/1359644217841119232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The road to socialism via inflation:&lt;/p&gt;
&lt;p&gt;• Print money, crash the reserve currency, destroy savers, and force them into inflated assets.&lt;/p&gt;
&lt;p&gt;• Asset inflation leads to inequality. Demonize asset holders and tax the nominal gains, thereby confiscating the real value of the assets. &lt;a href=&quot;https://twitter.com/naval/status/1359650086221930496&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We underestimate the power of less. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1359659543710621697&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sharing below few organic marketing growth hacks that helped us bootstrap @saleshandy&lt;/p&gt;
&lt;p&gt;p.s we are celebrating highest no. of weekly visitors on our website via google organic medium these days! &lt;a href=&quot;https://t.co/g2Zj9hDBjI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/g2Zj9hDBjI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dhruvikigai/status/1359751299667959810&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dhruvikigai&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Structure your environment for the type of person you want to become.&lt;/p&gt;
&lt;p&gt;If you want to eat healthy, set your kitchen up like a healthy person. If you want to be productive, set your calendar up like the most productive person you know. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1359832180558614528&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you do that, they will reciprocate and you will have acquired a great power and joy.&lt;/p&gt;
&lt;p&gt;If you aren’t working with people you care about and respect, your job probably isn’t the one for you. (1/2) &lt;a href=&quot;https://t.co/nbz5XLKKPk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nbz5XLKKPk&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1359890481354784774&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Write truth, and don’t waste a word. &lt;a href=&quot;https://twitter.com/naval/status/1360475997368385536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Seven dangers to human virtue:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Wealth without work&lt;/li&gt;
&lt;li&gt;Pleasure without conscience&lt;/li&gt;
&lt;li&gt;Knowledge without character&lt;/li&gt;
&lt;li&gt;Business without ethics&lt;/li&gt;
&lt;li&gt;Science without humanity&lt;/li&gt;
&lt;li&gt;Religion without sacrifice&lt;/li&gt;
&lt;li&gt;Politics without principles&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;—Mahatma Gandhi &lt;a href=&quot;https://t.co/fpFLaWT1Bd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fpFLaWT1Bd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1360598365956952073&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Inspiration is perishable - act on it immediately.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1360859210142142467&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You will never be respected if you are scared of owning your differences and who you are. &lt;a href=&quot;https://twitter.com/orangebook/status/1360880831317897216&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How much would you pay to have the space in your life to say &amp;quot;I&#39;m soooo bored...&amp;quot; as you did as a kid? &lt;a href=&quot;https://twitter.com/tferriss/status/1361860412728373249&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Smart people don’t care about “winning” arguments.&lt;/p&gt;
&lt;p&gt;They value time and peace of mind. &lt;a href=&quot;https://twitter.com/orangebook/status/1362005279496409089&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life gets much simpler once you give up on people who don’t respect your efforts for them. &lt;a href=&quot;https://twitter.com/orangebook/status/1362311313003839488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A lot of problems happen because of your internal state.&lt;/p&gt;
&lt;p&gt;When you’re calm, happy, and fulfilled you don’t pick fights, create drama, or keep score. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1362734660267225103&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I have seen people who agree on the major issues waste hours arguing over details. It&#39;s more important to do big things well than to do the small things perfectly. But when people disagree on the importance of debating something, it probably should be debated. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/MdXAFZIlFp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MdXAFZIlFp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1363160143341391872&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Marry a girl who looks great without makeup, smiles often for no reason, can face any problem with grace &amp;amp; gladly lets you have the last word. &lt;a href=&quot;https://twitter.com/taylorburrowes/status/1364226816571887618&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;taylorburrowes&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I spent my whole life looking down on normies leading a suburban lifestyle, 2.5 kids, white picket fence, doing normie things like watching TV, taking the kids to school, feeding the dog, etc.&lt;/p&gt;
&lt;p&gt;Now I consider it the highest achievement &lt;a href=&quot;https://twitter.com/fortelabs/status/1364602717356785669&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fortelabs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In an age of permissionless leverage, judgement, not work, determines success and failure.&lt;/p&gt;
&lt;p&gt;Good judgement is the product of a calm and curious mind, reasoning without motivation and attachment.&lt;/p&gt;
&lt;p&gt;Whatever strengthens your ego weakens your judgement, and ultimately, your success. &lt;a href=&quot;https://twitter.com/naval/status/1364602832675106818&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being effective at thoughtful disagreement requires one to be open-minded (seeing things through the other’s eyes) and assertive (communicating clearly how things look through your eyes) and to flexibly process this information to create learning and adaptation. &lt;a href=&quot;https://t.co/wo81KGIOGT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wo81KGIOGT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1365739889027866625&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve said this before, but it bears repeating:&lt;/p&gt;
&lt;p&gt;99% of the things you worry about can be solved by getting physically stronger, making more money, and a bit of meditation. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1365762384422346753&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Productivity&amp;quot; is not worth chasing. To paraphrase Taiichi Ohno: focus on eliminating waste and on continuous improvement and productivity will take care of itself.&lt;/p&gt;
&lt;p&gt;Measuring something that&#39;s not worth measuring is the worst sort of waste. &lt;a href=&quot;https://twitter.com/allenholub/status/1365764606002561024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your three most important decisions in life:-&lt;/p&gt;
&lt;p&gt;Your Spouse&lt;br /&gt;
Your Job&lt;br /&gt;
Where you live&lt;/p&gt;
&lt;p&gt;-@naval &lt;a href=&quot;https://twitter.com/adityakhattar/status/1365889788591570948&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adityakhattar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Take comfort: no one actually knows what the hell they&#39;re doing. Everyone is just working off their current best guess. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1367431380037156865&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Worrying is an unnecessary use of energy. &lt;a href=&quot;https://twitter.com/FitFounder/status/1367434622888517634&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Backlinks pro tip: write content for people who can actually give you backlinks (i.e. people who blog, run websites, etc.).&lt;/p&gt;
&lt;p&gt;Customers don&#39;t give backlinks. Content creators do.&lt;/p&gt;
&lt;p&gt;What should you write? Authoritative, research based articles that helps them push their agenda. &lt;a href=&quot;https://twitter.com/jdnoc/status/1367820448818413568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jdnoc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People care more about getting feedback than providing real value. It&#39;s the wrong approach.&lt;/p&gt;
&lt;p&gt;You &lt;em&gt;should know&lt;/em&gt; if the thing you&#39;re building is valuable. Don&#39;t wait for &amp;quot;validation&amp;quot;.&lt;/p&gt;
&lt;p&gt;If you don&#39;t know if it&#39;s valuable, I probably wouldn&#39;t build it. &lt;a href=&quot;https://twitter.com/jdnoc/status/1367834897407217668&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jdnoc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We think a lot about those black lines, forgetting that it’s all still in our hands. &lt;a href=&quot;https://t.co/RSZ1d3W642&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/RSZ1d3W642&lt;/a&gt; &lt;a href=&quot;https://twitter.com/waitbutwhy/status/1367871165319049221&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;waitbutwhy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Just that you do the right thing. The rest doesn&#39;t matter.&amp;quot; Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1368245335311671300&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Winners quit all the time. They just quit the right stuff at the right time. &lt;a href=&quot;https://t.co/kDrzcKzEBX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/kDrzcKzEBX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1368268206968893441&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 things to quit right now:&lt;/p&gt;
&lt;p&gt;1 a sense of entitlement&lt;br /&gt;
2 speaking poorly behind someone&#39;s back&lt;br /&gt;
3 constantly complaining&lt;br /&gt;
4 resentment&lt;br /&gt;
5 making excuses&lt;br /&gt;
6 worrying about the past&lt;br /&gt;
7 interrupting people&lt;br /&gt;
8 bragging about being busy&lt;br /&gt;
9 fishing for compliments&lt;br /&gt;
10 settling for mediocrity &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1368268856410705925&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Read @jeffiel&#39;s book &amp;quot;Ask Your Developer&amp;quot; for the second time. Such an insightful read.&lt;/p&gt;
&lt;p&gt;Bezos inspired founders to build an organization around &amp;quot;customer obsession&amp;quot;&lt;/p&gt;
&lt;p&gt;Jeff Lawson will have inspired an entire generation of founders to focus on &amp;quot;developer obsession&amp;quot; &lt;a href=&quot;https://twitter.com/anuhariharan/status/1368271395063439362&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anuhariharan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone makes mistakes. The main difference is that successful people learn from them and unsuccessful people don’t. By creating an environment in which it&#39;s okay to safely make mistakes so people can learn from them, you’ll see rapid progress and fewer significant mistakes. &lt;a href=&quot;https://t.co/GYOrXpLK78&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GYOrXpLK78&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1368275668694306817&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Find yourself friends who challenge you when your thinking small. &lt;a href=&quot;https://twitter.com/FitFounder/status/1368349979065081859&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bill Carr joined Amazon in 1999 and launched Amazon Music, Prime Video, and Studios&lt;/p&gt;
&lt;p&gt;Colin Bryar joined Amazon in 1998 and was Chief of Staff to Jeff Bezos, AKA &amp;quot;Jeff&#39;s shadow&amp;quot;&lt;/p&gt;
&lt;p&gt;Bill and Colin explain the secret to Amazon’s success: Working Backwards.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/uFgg8SbHQ1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/uFgg8SbHQ1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1368426526262386693&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1/ The business author Peter Drucker famously said, &amp;quot;What gets measured gets managed.&amp;quot; What he meant is that if you want to improve something, find a way to measure it.&lt;/p&gt;
&lt;p&gt;But there&#39;s a corollary to this: be careful what you measure, as that is what will get maximized. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1368545972435873794&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2/ Measuring what&#39;s unimportant can be just as harmful as failing to measure what&#39;s important. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1368545975258677253&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good PR rarely gets you customers directly&lt;/p&gt;
&lt;p&gt;But ...&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;your employees care&lt;/li&gt;
&lt;li&gt;customers will see it on Google, your blog, etc&lt;/li&gt;
&lt;li&gt;aids prospects doing discovery&lt;/li&gt;
&lt;li&gt;helps you recruit&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So it is worth it.&lt;/p&gt;
&lt;p&gt;Good PR, that is &lt;a href=&quot;https://twitter.com/jasonlk/status/1368552348977537030&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Improving your writing is as simple as packing more useful information into fewer words &lt;a href=&quot;https://twitter.com/david_perell/status/1368607160679227394&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Q: How do I become successful?&lt;/p&gt;
&lt;p&gt;A: By consistently doing something of value for as many people as possible. Wealth and status will occur as side effects. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1368954415596662784&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tune out society and its endless and noisy demands. &lt;a href=&quot;https://twitter.com/naval/status/1369225182561234945&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Knowing vs. understanding. &lt;a href=&quot;https://t.co/Y4GEOTS6Xm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Y4GEOTS6Xm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1370423341954306056&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You&#39;ll stop fearing criticism when you realize it&#39;s a gift to make you get better. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1370732633127280648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The cold email that started a $100M / yr company&lt;/p&gt;
&lt;p&gt;Cc: Jason Cohen &lt;a href=&quot;https://t.co/CmRNlnQSeI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CmRNlnQSeI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GoodMarketingHQ/status/1370735478304092162&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GoodMarketingHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best apps today are games in disguise&lt;/p&gt;
&lt;p&gt;@calm @tiktok_us @superhuman @chime - many of the top consumer / enterprise / fintech apps embrace game design. These &#39;game-like&#39; experiences feel fun and have great retention&lt;/p&gt;
&lt;p&gt;Thread 👇 &lt;a href=&quot;https://t.co/DUAnEDZwtn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DUAnEDZwtn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Tocelot/status/1370771791891861515&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tocelot&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SEO used to be about tactics.&lt;/p&gt;
&lt;p&gt;Now it’s about providing value. &lt;a href=&quot;https://twitter.com/jdnoc/status/1370834105357774858&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jdnoc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A simple question that often changes my behavior:&lt;/p&gt;
&lt;p&gt;Does the amount of attention I’m giving this match its importance? &lt;a href=&quot;https://twitter.com/JamesClear/status/1371208567538204682&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Seek after happiness, you will be miserable.&lt;/p&gt;
&lt;p&gt;Become still and unmoved by that which comes and goes, you will know peace. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1372124911083384832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop learning by consuming, start learning by creating.&lt;/p&gt;
&lt;p&gt;Stop learning by researching, start learning by doing.&lt;/p&gt;
&lt;p&gt;Stop learning by listening, start learning by talking.&lt;/p&gt;
&lt;p&gt;Stop learning by reading, start learning by writing. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1372272945888964615&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t confuse curiosity to try your product with demand for it. &lt;a href=&quot;https://twitter.com/Suhail/status/1372593393298210819&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Study your competitors.&lt;/p&gt;
&lt;p&gt;Not to copy them. Not to learn what features they have. Not to think like them.&lt;/p&gt;
&lt;p&gt;Study your competitors to learn what customers think about them.&lt;/p&gt;
&lt;p&gt;Understanding your competitors from the perspective of customers helps you find untapped opportunities. &lt;a href=&quot;https://twitter.com/hnshah/status/1373848915464785920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being busy isn&#39;t the same thing as adding value. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1373999926372405251&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Replay the story of where you have been (or what you have done) that led up to where you are now, and then visualize what you and others must do in the future so you will reach your goals. &lt;a href=&quot;https://t.co/K93Q0nMc8L&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/K93Q0nMc8L&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1374002143137521665&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every great product gets built by a team, but rarely by a committee. &lt;a href=&quot;https://twitter.com/eriktorenberg/status/1374502831114182661&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eriktorenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’ve systematized my study of bubbles over time into a “bubble indicator” based on six influences, which are combined into gauges. We do this for each stock that we are looking at &lt;a href=&quot;https://t.co/af5e4DwYLH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/af5e4DwYLH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1374779501087981572&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“I don’t have time” is a lie.&lt;/p&gt;
&lt;p&gt;Often a well-intentioned one, but whatever.&lt;/p&gt;
&lt;p&gt;The accurate statement is: “It’s not a priority.”&lt;/p&gt;
&lt;p&gt;The things you think you don’t have time to do are the things you have deprioritized. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1374808280250351624&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As Carl Jung put it, &amp;quot;Man needs difficulties. They are necessary for health.&amp;quot; Yet most people instinctually avoid pain. (1/2) &lt;a href=&quot;https://t.co/tnojWiWQ3y&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tnojWiWQ3y&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1376211029831544834&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;They made it look trustworthy.&lt;/p&gt;
&lt;p&gt;Every other Bitcoin wallet/exchange looked like a random sketchy crypto project run by hackers.&lt;/p&gt;
&lt;p&gt;They made Coinbase look like a bank, in comparison, and prioritized good design (with @metalab 💘).&lt;/p&gt;
&lt;p&gt;Bitclout should follow suit. DM me! &lt;a href=&quot;https://twitter.com/awilkinson/status/1376536079713529862&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Different minds look at problems from different perspectives. What may seem unremarkable to one person, can spark a revelation in another brain that is wired just a little differently.&lt;/p&gt;
&lt;p&gt;Collaborate with other creative people. Your perspective can make a difference. &lt;a href=&quot;https://t.co/gwWf9ikH1o&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gwWf9ikH1o&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Brainstorming03/status/1376629115554557968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Brainstorming03&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The point at work isn’t doing every task at 80% but understanding which tasks can be done at 50% and which need to be done at 100%.&lt;/p&gt;
&lt;p&gt;Performance isn’t doing everything equally well. Performance is going all in on the things that make a difference. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1376866546413371392&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is a story about how I lost $10,000,000 by doing something stupid.&lt;/p&gt;
&lt;p&gt;Ten. Million. Dollars.&lt;/p&gt;
&lt;p&gt;Literally up in smoke. Money bonfire.&lt;/p&gt;
&lt;p&gt;That’s enough to retire with $250,000+ in annual income.&lt;/p&gt;
&lt;p&gt;Here’s what happened… &lt;a href=&quot;https://twitter.com/awilkinson/status/1376985854229504007&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;He walked me through who was backing them, how much cash they had, how they had hired top executives from huge companies, and that it was only a matter of time until they beat us on product and outspend us on marketing. &lt;a href=&quot;https://twitter.com/awilkinson/status/1376985919018958855&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Our growth started slowing.&lt;/p&gt;
&lt;p&gt;20% monthly growth dropped to 5%.&lt;/p&gt;
&lt;p&gt;Customers weren’t getting the features they wanted.&lt;/p&gt;
&lt;p&gt;Our clients were unreliable and had syncing issues.&lt;/p&gt;
&lt;p&gt;Our team felt frustrated and under resourced and we churned through staff. &lt;a href=&quot;https://twitter.com/awilkinson/status/1376985952812462082&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Setting boundaries isn’t a way to get rid of people.&lt;/p&gt;
&lt;p&gt;It’s a way to keep them in your life without destroying your inner peace. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1377480720428466181&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Products that are used daily mostly are in business of reducing stress.&lt;/p&gt;
&lt;p&gt;Stress inducing products can never become DAU. &lt;a href=&quot;https://twitter.com/kunalb11/status/1377948288348004352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Living well does not mean avoiding suffering; it means suffering for the right reasons. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1377981897796648962&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How do you manage a big, long, complicated project? By making it small, short, little projects. &lt;a href=&quot;https://twitter.com/jasonfried/status/1378020814537297921&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focusing on fundamentals and taking them seriously will put you in the top 10% of any pursuit without needing to try anything fancy. &lt;a href=&quot;https://twitter.com/jaltma/status/1378779300137144320&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jaltma&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are no &amp;quot;positive&amp;quot; or &amp;quot;negative&amp;quot; emotions, there are just &amp;quot;comfortable&amp;quot; and &amp;quot;uncomfortable&amp;quot; emotions. The value of the emotion depends on your subjective judgment of the emotional experience and how you integrate it into the rest of your being. &lt;a href=&quot;https://twitter.com/sbkaufman/status/1379131595118977028&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sbkaufman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Czy twój pomysł sprawi, że ludziom będzie żyło się lepiej?&amp;quot; Według @richardbranson każdy przedsiębiorca powinien zadać sobie to pytanie, zanim zacznie działać &lt;a href=&quot;https://t.co/vn1ZvyC2pn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vn1ZvyC2pn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BIPolska/status/1379361989420576770&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BIPolska&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Someone despises me. That&#39;s their problem.&amp;quot; Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1379509553356759042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When your retention is rock solid, adding small chunks of users has a huge impact on your metrics.&lt;/p&gt;
&lt;p&gt;When it’s not, you need a lot of volume to move the needle. &lt;a href=&quot;https://twitter.com/Suhail/status/1379804714116603904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How many products can you say-&lt;br /&gt;
&amp;quot;X changed my life.&amp;quot;&lt;/p&gt;
&lt;p&gt;What are products that have done this for you? (Obscure ones for extra credit, please) &lt;a href=&quot;https://twitter.com/andrewchen/status/1379870441519546368&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andrewchen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most predictive part of a startup&#39;s investor update email is the ratio of numbers to letters. &lt;a href=&quot;https://twitter.com/sama/status/1379888823052554241&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;And more generally, whether they talk about progress towards technical/product/user/revenue goals, or any other kind of goals (hiring and raising money in particular).&lt;/p&gt;
&lt;p&gt;You make what you measure. &lt;a href=&quot;https://twitter.com/sama/status/1379889127806529542&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Parenting trick: When your kids reach the sullen teen stage where they don&#39;t want to talk to you, drive them places. In the car they forget they&#39;re having a conversation. It helps that you&#39;re both looking forward instead of at each other. &lt;a href=&quot;https://twitter.com/paulg/status/1380098424293494787&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Polski TimeCamp na Product Hunt⏱️ &lt;a href=&quot;https://t.co/m5I1FhHQtu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/m5I1FhHQtu&lt;/a&gt; via @kusoomegane &lt;a href=&quot;https://twitter.com/sadek/status/1380135152332988417&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Boasting about working 12-hour days isn’t a sign of productivity; it’s a sign of poor boundaries. &lt;a href=&quot;https://twitter.com/SteveOnSpeed/status/1380163081242824714&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SteveOnSpeed&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Something I taught my 12 yo: Most people underestimate how much the world can change, and practically no one can predict where the change will happen. The only thing you can predict for sure is that some very surprising things will happen. &lt;a href=&quot;https://twitter.com/paulg/status/1380172326071898118&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the stories we used to tell in the early days of Facebook was how a small, two-engineer project came to dominate the entire photo sharing landscape in the late 2000s.&lt;/p&gt;
&lt;p&gt;Thread 👇 1/10 &lt;a href=&quot;https://twitter.com/joulee/status/1380183017025511430&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;joulee&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to create a better future? Ask yourself these two questions:&lt;/p&gt;
&lt;p&gt;― What am I not doing now that one day I’ll wish I had started earlier?&lt;/p&gt;
&lt;p&gt;― What am I doing now that one day I’ll wish I had done less of? &lt;a href=&quot;https://twitter.com/Kpaxs/status/1380209030136741891&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re internally at peace, you won&#39;t be angered by reality. &lt;a href=&quot;https://t.co/lGjf1EYK3n&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lGjf1EYK3n&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1380224760454512648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everywhere they go people are carrying their judgements. Release your judgments and find peace. &lt;a href=&quot;https://twitter.com/justinkan/status/1380244533976293377&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What do Salesforce, UiPath and Slack all have in common?&lt;/p&gt;
&lt;p&gt;Most of their new bookings come from &amp;gt;existing&amp;lt; customers&lt;/p&gt;
&lt;p&gt;&amp;quot;As You Scale, Most Of Your New Revenue May Well Come from Existing Customers&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/PtfaMQoNGn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PtfaMQoNGn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1380542503942713345&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A surprisingly effective way to get what you want is to not settle for less than what you want.&lt;/p&gt;
&lt;p&gt;It doesn&#39;t always work—you can&#39;t force the world to be a certain way—and you may need healthy doses of patience and doggedness, but your life bends toward what you accept. &lt;a href=&quot;https://twitter.com/JamesClear/status/1380622487319420928&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;THREAD: The top 0.1% of ideas I’ve stumbled upon on the internet.&lt;/p&gt;
&lt;p&gt;The rabbit holes (without the distractions). &lt;a href=&quot;https://twitter.com/george__mack/status/1381661018565279746&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;Shaan Clubs&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• Cliche trope: &amp;quot;You&#39;re the average of the 5 people you spend the most time with&amp;quot;&lt;/p&gt;
&lt;p&gt;• @ShaanVP takes this simple cliche and actually implements it - by creating clubs of similar people.&lt;/p&gt;
&lt;p&gt;• He wanted to learn poker, so lived in a house of people learning poker &lt;a href=&quot;https://twitter.com/george__mack/status/1381661046478372864&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;6&quot;&gt;
&lt;li&gt;Calendar-Priority Alignment&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• When @rabois meets with a new CEO, he asks to see:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Their priorities&lt;/li&gt;
&lt;li&gt;Their calendar&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• They rarely ever match.&lt;/p&gt;
&lt;p&gt;• So simple. So obvious. Rarely ever done. I felt stupid after hearing it. &lt;a href=&quot;https://twitter.com/george__mack/status/1381661093572018178&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;7&quot;&gt;
&lt;li&gt;Write Before Action&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• @Conaw writes down what he plans to do, and how he plans to do it (in detail) before he does it&lt;/p&gt;
&lt;p&gt;• &amp;quot;Why? Because sometimes I realize as I am halfway through writing things out that there is a fundamentally better approach.&amp;quot;&lt;/p&gt;
&lt;p&gt;• So simple. Rarely done &lt;a href=&quot;https://twitter.com/george__mack/status/1381661101293731844&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;8&quot;&gt;
&lt;li&gt;The Hotel Bathroom Principle&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• &amp;quot;When you want to cultivate serendipity, stick to the &#39;Hotel Bathroom&#39; dress code.&lt;/p&gt;
&lt;p&gt;Always dress well enough to walk into any a bathroom at a hotel you&#39;re not staying at and get away with it.&amp;quot; - @david_perell &lt;a href=&quot;https://t.co/NbZESN6dAc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NbZESN6dAc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/george__mack/status/1381661114132541443&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;• The internet is kinda like college. Educational but full of distractions.&lt;/p&gt;
&lt;p&gt;• Customisable algorithms of the future should optimise for the individual&#39;s goals - rather than the goals of the platform.&lt;/p&gt;
&lt;p&gt;• Until then, we’re all swimming in sewage trying to find nuggets of gold. &lt;a href=&quot;https://twitter.com/george__mack/status/1381661130267971584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I wave goodbye at the end of every zoom meeting and I will not be stopped &lt;a href=&quot;https://twitter.com/eade_bengard/status/1381664060224200711&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eade_bengard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop being shy. No one gives a fuck about you.&lt;/p&gt;
&lt;p&gt;You think you look awkward. No one else thinks about you at all.&lt;/p&gt;
&lt;p&gt;You are not in high school where everyone notices every time you speak. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1381707444133359616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Best life hack I’ve done recently: got a productivity coach.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;a coach helps you lay out my work goals for the month&lt;/li&gt;
&lt;li&gt;he sends daily text messages to help me stay on track&lt;/li&gt;
&lt;li&gt;$150/month&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It’s like a personal trainer, for work. I rarely have unproductive days now&lt;/p&gt;
&lt;p&gt;434-505-4769 &lt;a href=&quot;https://twitter.com/ShaanVP/status/1381707640728809472&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ShaanVP&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You age when your excitement for trying new things drops. &lt;a href=&quot;https://twitter.com/kunalb11/status/1381976647243563015&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@Codie_Sanchez None of the decisions were wrong when you took them, it&#39;s all in the hindsight that you find them so.&lt;/p&gt;
&lt;p&gt;Me, you and anybody for that fact is a sum total of good / bad decisions we took at every point of life. If you are happy and satisfied today, then everyone of those were fine. &lt;a href=&quot;https://twitter.com/TheMaverickOut1/status/1381980798396497922&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheMaverickOut1&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to think about something, write it out. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1381992184254238731&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clear thinkers take feedback from reality, not society. &lt;a href=&quot;https://twitter.com/naval/status/1382023099265159168&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jeff Bezos has a saying: “Good intentions don’t work. Mechanisms do.”&lt;/p&gt;
&lt;p&gt;Long-term, you can’t solve problems by working more or trying harder. If you want persistent change, you have to fix the underlying system. &lt;a href=&quot;https://twitter.com/david_perell/status/1382137879455956993&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You will never be criticized by people doing more than you.&lt;/p&gt;
&lt;p&gt;You will only be criticized by people doing less.&lt;/p&gt;
&lt;p&gt;Hate always comes from beneath. &lt;a href=&quot;https://twitter.com/Rich_Cooper/status/1382302718371491844&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rich_Cooper&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What most people don&#39;t understand is that passion is the result of action, not the cause of it. You want to find your passion in life? Work for it. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1382347669562142721&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2/ Clarifying your plans: the first thing I did was write down a 7-page Elon Musk-style master plan. Write down what problem you plan to solve, how you&#39;ll solve it, and why it&#39;s important. Then have your smart friends critique it. Let no valid question go unanswered. &lt;a href=&quot;https://twitter.com/Suhail/status/1382351986905911300&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;3/ End every conversation with an expert about your industry with: &amp;quot;Why do you think I am going to fail?&amp;quot; to lean into brutally understanding what you need to de-risk. &lt;a href=&quot;https://twitter.com/Suhail/status/1382351988126482439&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;4/ Think of a way to make your users have some skin in the game enough to yell at you to make your product better. Charge or trade for it early on. Waiting for your product to be &amp;quot;good enough&amp;quot; reduces the amount you&#39;ll learn each day. The first set of users paid me $20 on Venmo! &lt;a href=&quot;https://twitter.com/Suhail/status/1382351989103685637&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7/ Learning from users is a practiced skill just like programming. If you don&#39;t have experience, make a plan. Start with simple questions, then go deep.&lt;/p&gt;
&lt;p&gt;Here was mine going into early customer interviews: &lt;a href=&quot;https://t.co/2yJU8hmeFj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2yJU8hmeFj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Suhail/status/1382351993507774465&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;18/ The first goal I set for our company was narrow: make 10 happy users use our product. A happy user uses it, pays for it, and organically praises it. Focusing on a few wonderfully happy users is a better recipe for great retention. Then go from 10 → 100 → 1K → 10K → 100K. &lt;a href=&quot;https://twitter.com/Suhail/status/1382352005893484549&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;After 10 years of living in Silicon Valley / SF, it became clear that the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; way to become successful is to be surrounded by 1) others who have done it before and 2) ambitious peers.&lt;/p&gt;
&lt;p&gt;The environment shapes you towards the right actions and provides resources/network.&lt;/p&gt;
&lt;p&gt;1/x &lt;a href=&quot;https://twitter.com/zachtratar/status/1382376552566980609&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zachtratar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How did MongoDB get to $700,000,000+ ARR?&lt;/p&gt;
&lt;p&gt;One trick was to stop pushing annual contracts!&lt;/p&gt;
&lt;p&gt;More here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/38U7RfWo4k&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/38U7RfWo4k&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1382412381456797696&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are really only four types of value propositions companies can have:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Best quality (Louisville Slugger, Stradivarius)&lt;/li&gt;
&lt;li&gt;Best bang for buck (Ikea, Chipotle, Toyota)&lt;/li&gt;
&lt;li&gt;Luxury &amp;amp; aspiration (BMW, Rolex)&lt;/li&gt;
&lt;li&gt;Must-have (Stripe, Westlaw)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Which is best for your company? Why? &lt;a href=&quot;https://twitter.com/nathanbarry/status/1383110335016566786&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nathanbarry&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In an age of abundance, self-control is a superpower. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1383728941609799680&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can only lose what you cling to.&lt;/p&gt;
&lt;p&gt;~ Buddha &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1383859664253718534&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A sign of intelligence:&lt;/p&gt;
&lt;p&gt;You don’t constantly jump on any opportunity to react and act offended. &lt;a href=&quot;https://twitter.com/orangebook/status/1384060315906711553&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The clarity of your thoughts is the quality of your life. &lt;a href=&quot;https://twitter.com/orangebook/status/1384066395638435840&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some Stoic keys to happiness:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Focus on what you can control&lt;/li&gt;
&lt;li&gt;Reduce your wants&lt;/li&gt;
&lt;li&gt;Read philosophy every day&lt;/li&gt;
&lt;li&gt;Ignore the inessential&lt;/li&gt;
&lt;li&gt;Don&#39;t compare yourself to others&lt;/li&gt;
&lt;li&gt;Live as if you&#39;ve died and come back to life (bonus time)&lt;/li&gt;
&lt;li&gt;Do good to feel good &lt;a href=&quot;https://twitter.com/dailystoic/status/1384583009341517833&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As a child, I thought that accumulation of knowledge was important.&lt;/p&gt;
&lt;p&gt;As I grow older, I realize that its distillation through action matters more.&lt;/p&gt;
&lt;p&gt;Theory that doesn&#39;t translate to action doesn&#39;t matter. Also, only action can determine whether knowledge is real or bullshit. &lt;a href=&quot;https://twitter.com/DellAnnaLuca/status/1385206751981678593&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DellAnnaLuca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SaaSworthy ranks Timecamp as the Highly Rated Software in Time Tracking.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/cjQU06iw3W&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/cjQU06iw3W&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Well done team @timecamp!&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#saasworthy&quot;&gt;#saasworthy&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#timecamp&quot;&gt;#timecamp&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#awards&quot;&gt;#awards&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#timetracking&quot;&gt;#timetracking&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#saas&quot;&gt;#saas&lt;/a&gt; &lt;a href=&quot;https://t.co/EHipXdHFuq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/EHipXdHFuq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/saasworthy/status/1385210790605643779&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;saasworthy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do not avoid your problems. Embrace them. For problems are what life is made of. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1385213062895095809&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Misfortune is virtue&#39;s opportunity.&amp;quot; Seneca &lt;a href=&quot;https://twitter.com/dailystoic/status/1385217393182584837&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Top 10 factors for success &amp;gt; $1m ARR:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Great CTO&lt;/li&gt;
&lt;li&gt;CEO great at recruiting&lt;/li&gt;
&lt;li&gt;CEO great at recruiting&lt;/li&gt;
&lt;li&gt;CEO great at recruiting&lt;/li&gt;
&lt;li&gt;CEO great at recruiting&lt;/li&gt;
&lt;li&gt;CEO great at recruiting&lt;/li&gt;
&lt;li&gt;CEO great at recruiting&lt;/li&gt;
&lt;li&gt;CEO great at recruiting&lt;/li&gt;
&lt;li&gt;CEO great at recruiting&lt;/li&gt;
&lt;li&gt;CEO grea &lt;a href=&quot;https://twitter.com/jasonlk/status/1385270507927347204&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s a lot easier to AVOID things that make you miserable than to predict what will make you happy.&lt;/p&gt;
&lt;p&gt;There’s an incredible @Harvard Study from 1938 that sheds light on just how to avoid a miserable life.&lt;/p&gt;
&lt;p&gt;In 2013, reading it caused me to quit drinking and changed my life... &lt;a href=&quot;https://twitter.com/awilkinson/status/1385280236938428429&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;George Vaillant, the director of the study, wrote an incredible book summarizing the results called The Triumphs of Experience.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/YRvNyxXv5l&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YRvNyxXv5l&lt;/a&gt; &lt;a href=&quot;https://twitter.com/awilkinson/status/1385280251295453189&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Anything is productive if you just put it on your to do list &lt;a href=&quot;https://twitter.com/fortelabs/status/1385704917348749316&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fortelabs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Something I told 9 yo: If you&#39;re a maker, resist being told what to do by people who aren&#39;t. &lt;a href=&quot;https://twitter.com/paulg/status/1386220078958579713&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;3 things that always boost my mood:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Sun&lt;/li&gt;
&lt;li&gt;Sweat&lt;/li&gt;
&lt;li&gt;Solitude &lt;a href=&quot;https://twitter.com/mkobach/status/1386340163211694080&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mkobach&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Curious how a company with a $2+ trillion market-cap writes persuasive copy?&lt;/p&gt;
&lt;p&gt;Here are 13 ways Apple persuades readers with its copywriting 🧵 &lt;a href=&quot;https://twitter.com/alexgarcia_atx/status/1386506571828531200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;alexgarcia_atx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Observe people as they try to use your product. This is never a waste of time. &lt;a href=&quot;https://twitter.com/hnshah/status/1387132480533143552&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Knowing what to avoid is a superpower. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1387256206675349506&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Be stubborn on destinations, flexible on tactics, and relentless on progress. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1387358314669957121&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you are doing your job as CEO, you already have 1 or 2 investors that want to invest in the next round&lt;/p&gt;
&lt;p&gt;No matter when that round is &lt;a href=&quot;https://twitter.com/jasonlk/status/1387845813410299905&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My regrets in life can basically all be summed in this:&lt;/p&gt;
&lt;p&gt;I just wish I knew then what I knnow now&lt;/p&gt;
&lt;p&gt;Get one great mentor&lt;br /&gt;
Get one great advisor&lt;br /&gt;
Get one person to tell you&lt;/p&gt;
&lt;p&gt;Could be worth millions.  Maybe even billions &lt;a href=&quot;https://twitter.com/jasonlk/status/1388154004220256257&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Worry Filter&lt;/p&gt;
&lt;p&gt;With any worry, ask yourself:&lt;/p&gt;
&lt;p&gt;Is it really important? Does it matter? No, then stop.&lt;/p&gt;
&lt;p&gt;Is it really likely? Is there a good chance?  No, then stop.&lt;/p&gt;
&lt;p&gt;Can I do anything about it? No, then stop.&lt;/p&gt;
&lt;p&gt;If “Yes” to all three, then DO something. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1388459850976448515&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Complexity happens by default.&lt;br /&gt;
Simplicity happens by design. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1388524378011414528&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every man is at war with himself, except a Buddha. &lt;a href=&quot;https://twitter.com/naval/status/1388755813355851778&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;4 Harsh Truths About Life&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;The less you force relationships, the stronger they are.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’re not supposed to accomplish all your goals.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No one actually knows what the hell they’re doing.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The world doesn’t give a shit about you unless you give it a reason to. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1389160054507585538&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Elimination of distractions is always more productive than working more or harder. &lt;a href=&quot;https://twitter.com/jdnoc/status/1389251976156827648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jdnoc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to be persuasive…&lt;/p&gt;
&lt;p&gt;• Feelings &amp;gt; Facts&lt;br /&gt;
• Images &amp;gt; Words&lt;br /&gt;
• Metaphors &amp;gt; Logic&lt;br /&gt;
• Stories &amp;gt; Arguments&lt;br /&gt;
• Examples &amp;gt; Features&lt;br /&gt;
• Inspiration &amp;gt; Information&lt;br /&gt;
• Personality &amp;gt; Credentials&lt;br /&gt;
• Collaboration &amp;gt; Competition&lt;/p&gt;
&lt;p&gt;What else? &lt;a href=&quot;https://twitter.com/ndwignall/status/1389581644755980290&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ndwignall&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Secret to happiness:&lt;/p&gt;
&lt;p&gt;If you get no choice, be indifferent to the outcome. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1389664683272069123&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Of what use is self-improvement when any little disturbance can crack your peace of mind? &lt;a href=&quot;https://twitter.com/zen_fi/status/1389805806497849353&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zen_fi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;$500 online course? Can’t afford!&lt;br /&gt;
$500 phone upgrade? Can’t resist!&lt;/p&gt;
&lt;p&gt;$20 productivity app? Too pricey!&lt;br /&gt;
$20 cocktail? Too easy!&lt;/p&gt;
&lt;p&gt;Daily exercise: No time!&lt;br /&gt;
Daily Netflix: No prob!&lt;/p&gt;
&lt;p&gt;Invest in your brain, your body, and your community. Not much else matters at the end of the day. &lt;a href=&quot;https://twitter.com/stephsmithio/status/1390086229832572931&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;stephsmithio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you don’t work on your happiness, don’t complain about being unhappy. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1390590031430135809&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Problems happen when intellectualism replaces action. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1390641312240525317&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Właśnie dostaliśmy potwierdzenie, że w najbliższy wtorek (11 Maja) @Brand24 zadebiutuje na głównym parkiecie warszawskiej Giełdy 💪🔥 &lt;a href=&quot;https://twitter.com/sadek/status/1390650782559707140&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people are either good at thinking with a 10 year time horizon or operating with the urgency of a 10 day time horizon.&lt;/p&gt;
&lt;p&gt;Extremely powerful if you can do both! &lt;a href=&quot;https://twitter.com/sama/status/1390710893986521091&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You have to work hard to get your thinking clean to make it simple.&amp;quot;&lt;/p&gt;
&lt;p&gt;— Steve Jobs &lt;a href=&quot;https://twitter.com/shaneparrish/status/1391730110168977411&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best support is no support:&lt;/p&gt;
&lt;p&gt;‧ update knowledge base every time 2 users ask the same thing&lt;br /&gt;
‧ detect issues on your end and automatically email the solution to users&lt;br /&gt;
‧ use the same word for the same thing in your doc + product&lt;br /&gt;
‧ make things predictable + easy to roll-back &lt;a href=&quot;https://twitter.com/PierreDeWulf/status/1391743525289664515&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PierreDeWulf&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can seek comfort or you can seek achievement but not both. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1391756138677424135&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You will never regret time spent:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;In nature&lt;/li&gt;
&lt;li&gt;With family&lt;/li&gt;
&lt;li&gt;Meditating&lt;/li&gt;
&lt;li&gt;Off your phone&lt;/li&gt;
&lt;li&gt;Improving yourself &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1391768075771514882&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Greed will kill your portfolio. Do not use excessive leverage, speculate, or take a flyer. This is not investing; it is gambling. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1391773916474052618&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve hired over 1,000 people in my career.&lt;/p&gt;
&lt;p&gt;I&#39;ve let go family members and folks who stood up at my wedding.&lt;/p&gt;
&lt;p&gt;From part time laborers to executives who help me raise capital for large real estate deals to full time folks in the Philippines.&lt;/p&gt;
&lt;p&gt;Here&#39;s 10 things I&#39;ve learned 👇 &lt;a href=&quot;https://twitter.com/sweatystartup/status/1391859990592372740&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sweatystartup&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Remember that all is opinion.&amp;quot; - Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1392148106960150536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Who has done a great job optimizing &#39;powered by&#39; traffic? It&#39;s one of our larger channels (60k visits/mo), but as expected converts to free users far lower (2%) than our average (5.3%) and best channels (7%).&lt;/p&gt;
&lt;p&gt;What have you seen work? &lt;a href=&quot;https://twitter.com/nathanbarry/status/1392306139841187842&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nathanbarry&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To believe that you can end decades of tyranny of the ego by reading lots of books is like believing that you can satisfy your appetite by reading lots of menus. &lt;a href=&quot;https://twitter.com/zen_fi/status/1392334216558436352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zen_fi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Time management should be called priority managment. &lt;a href=&quot;https://twitter.com/FitFounder/status/1392464394316038147&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Having open-minded conversations with believable people who disagree with you is the quickest way to get an education and to increase your probability of being right. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/MxAeDJclCF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MxAeDJclCF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1392478800047452165&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Whatever can happen at any time can happen today.&amp;quot; - Seneca &lt;a href=&quot;https://twitter.com/dailystoic/status/1392827464867622913&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Comparison steals your happiness. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1392874516469137411&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Let&#39;s say 1% of decision makers would support a particular risky project.&lt;/p&gt;
&lt;p&gt;If you form a random three person committee and all members need to agree the project&#39;s chances just went from 1% to 1 in a million.&lt;/p&gt;
&lt;p&gt;Committees kill variance. &lt;a href=&quot;https://twitter.com/MatjazLeonardis/status/1394019827736403969&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MatjazLeonardis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Clear Thinker&amp;quot; is a better compliment than &amp;quot;Smart.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1394163268936081409&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Never idolize anyone.&lt;/p&gt;
&lt;p&gt;Everyone is human.&lt;/p&gt;
&lt;p&gt;Everyone is flawed.&lt;/p&gt;
&lt;p&gt;You will end up disappointed. &lt;a href=&quot;https://twitter.com/orangebook/status/1394189844453101572&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Emotions are a means to an end. They give life a sense of meaning and our actions a sense of purpose. But they are not the purpose themselves. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1394272772973551616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Linear Growth: Create value by using resources in your company.&lt;/p&gt;
&lt;p&gt;Non-Linear Growth: Create value by by connecting resources in your ecosystem. &lt;a href=&quot;https://twitter.com/dharmesh/status/1394368667350097922&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Instead of trying to be right, try to be less wrong than you were before. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1394681941962678273&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you want to make the wrong decision, ask everyone.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1394918245157593089&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The single reason why people get hired to work at a company is because employees generate more revenue than what they get paid. &lt;a href=&quot;https://twitter.com/jdnoc/status/1394992503615631365&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jdnoc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You don&#39;t need to predict how everything will play out. Just master the next step and continue moving in the right direction. &lt;a href=&quot;https://twitter.com/JamesClear/status/1395009878071156743&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No one is going to be happy being with you if you can’t be happy with yourself. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1395756017150042114&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can never improve anything by adding bureaucracy. &lt;a href=&quot;https://twitter.com/allenholub/status/1396858304358281217&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Najnowsze wyniki Brand24 🤘🔥 Dalsze wzrosty. W Marcu najwyższa sprzedaż zagraniczna w historii Spółki (wyłączając promocje Black Friday).  Najlepszy churn zagraniczny w prawie 10-letniej historii. Dowiezione na znacznie niższym niż 2 lata temu koszcie per sprzedaż. Brawo Załoga! &lt;a href=&quot;https://t.co/JwFDUeE05Z&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/JwFDUeE05Z&lt;/a&gt; &lt;a href=&quot;https://twitter.com/sadek/status/1396894363620421645&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;User stories are discovered, not invented or &amp;quot;written.&amp;quot; Have a conversation with your customer/users about their work—what they do and why they do it. Take notes on a card.  That’s your story.&lt;/p&gt;
&lt;p&gt;A PO sitting alone at a desk &amp;quot;writing stories&amp;quot; is dysfunction, plain and simple. &lt;a href=&quot;https://twitter.com/allenholub/status/1396901019125121027&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clock speeds run differently in government agencies compared to companies and in companies compared to startups. Decide which clock you&#39;re using. &lt;a href=&quot;https://twitter.com/sgblank/status/1396906217633583105&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sgblank&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/6C3YjfNrtw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6C3YjfNrtw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kunalb11/status/1397095962934345732&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A lot of times, people don&#39;t know what they want until you show it to them.&amp;quot; &lt;a href=&quot;https://twitter.com/muratpak/status/1397142763678937094&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;muratpak&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ok, ok. Back to building product till the end of the year.&lt;/p&gt;
&lt;p&gt;🧐🔧🚢🚀 &lt;a href=&quot;https://twitter.com/Suhail/status/1397335035489898497&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People who push through successfully have to-do lists that are reasonably prioritized, and they make certain each item is ticked oﬀ in order. &lt;a href=&quot;https://t.co/qx4CrdUcX1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qx4CrdUcX1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1397553446828576791&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@patrick_oshag Good follow up read to Positioning &lt;a href=&quot;https://t.co/RDJ9F86Cvc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/RDJ9F86Cvc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TrevorHLynn/status/1398627364872065029&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TrevorHLynn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I second this.&lt;/p&gt;
&lt;p&gt;I first read it almost 20 years ago and there is rarely a working day where the basic ideas don’t explicitly come into the conversation.&lt;/p&gt;
&lt;p&gt;7+ years since launching Slack, positioning is still our biggest challenge. &lt;a href=&quot;https://twitter.com/stewart/status/1398702840563044352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;stewart&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;21/&lt;br /&gt;
LNO Effectiveness Framework&lt;/p&gt;
&lt;p&gt;This framework improved the quality of my life as a PM &amp;amp; my work more than anything else I&#39;ve encountered.&lt;/p&gt;
&lt;p&gt;The main insight is that all your tasks are not created equal. There are 3 types of PM tasks:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Leverage&lt;/li&gt;
&lt;li&gt;Neutral&lt;/li&gt;
&lt;li&gt;Overhead &lt;a href=&quot;https://t.co/7G2h5tI6GJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7G2h5tI6GJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/shreyas/status/1399061782560350208&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/EorRoEgaCr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/EorRoEgaCr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dinosaurcouch/status/1399356001820852227&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dinosaurcouch&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The topography of &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Poland&quot;&gt;#Poland&lt;/a&gt; &lt;a href=&quot;https://t.co/NiWKkrAz9j&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NiWKkrAz9j&lt;/a&gt; &lt;a href=&quot;https://t.co/AG0EuA7Avn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AG0EuA7Avn&lt;/a&gt; &lt;a href=&quot;https://t.co/Q6IzIkc3Jc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Q6IzIkc3Jc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TheBigDataStats/status/1399467924100812800&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheBigDataStats&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the most legendary marketers of all time: David Ogilvy&lt;/p&gt;
&lt;p&gt;In 1982, David wrote an internal memo to the employees of his advertising agency titled &amp;quot;How to write.&amp;quot;&lt;/p&gt;
&lt;p&gt;And in just 10 bullets he put together a masterclass in effective writing.&lt;/p&gt;
&lt;p&gt;Here&#39;s a breakdown of each one: &lt;a href=&quot;https://t.co/MxRYuQRLyA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MxRYuQRLyA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dickiebush/status/1399879281652678664&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You lead by being willing to walk alone. &lt;a href=&quot;https://twitter.com/naval/status/1399965983729602562&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Today, our 10th most engaged user spent 5.2 hours and our 1st did over 10 hours in the product. Exactly a year ago we were lucky if we got anyone to last over 30 min.&lt;/p&gt;
&lt;p&gt;Just keep listening &amp;amp; shipping 🚢 &lt;a href=&quot;https://twitter.com/Suhail/status/1399971992137179137&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Not everyone will root for you.&lt;/p&gt;
&lt;p&gt;Not everyone will like you.&lt;/p&gt;
&lt;p&gt;Not everyone will be happy to see you rise.&lt;/p&gt;
&lt;p&gt;Accept this, for it is reality. &lt;a href=&quot;https://twitter.com/forgeofman/status/1400435603917975573&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;forgeofman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How industries have changed in the last ~100 years 👇🏼&lt;/p&gt;
&lt;p&gt;The last image will blow your mind 🤯 &lt;a href=&quot;https://twitter.com/anafabrega11/status/1400474200025010177&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anafabrega11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t worry about competition. Worry about getting so good that competition doesn’t matter. &lt;a href=&quot;https://twitter.com/jdnoc/status/1400512983814520837&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jdnoc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Agile teams are strategic, not just tactical. They make product decisions. Lots of them. They talk directly to customers to do that. A Product group that thinks it’s ok to push work onto teams is broken. It’s active dysfunction if they whine &amp;quot;the devs don’t do what they’re told!&amp;quot; &lt;a href=&quot;https://twitter.com/allenholub/status/1400534955638202369&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The key to doing a better work is not working more hours, but being focused while working. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1400540506292109318&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Founder-mentality means not caring who gets the credit.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1400958042666119178&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Waiting for the right time is seductive.&lt;/p&gt;
&lt;p&gt;Our mind tricks us into thinking doing something now is hard but if we wait it will get easier.&lt;/p&gt;
&lt;p&gt;Most of the time, waiting only makes things harder.&lt;/p&gt;
&lt;p&gt;The right time is now. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1401146786543140866&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If a sales rep closed a deal,&lt;/p&gt;
&lt;p&gt;A customer success manager should take it over&lt;/p&gt;
&lt;p&gt;Find a way to fund both, even with SMBs &lt;a href=&quot;https://twitter.com/jasonlk/status/1401705660803215364&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you cannot decide, the answer is No.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1401833814201147393&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Relativity. &lt;a href=&quot;https://t.co/q4U4y6oqz4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/q4U4y6oqz4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1401920448674344960&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Zeno&#39;s Productivity:&lt;/p&gt;
&lt;p&gt;The final 10% of a project takes as much time as the first 90%, so you should always avoid doing the final 10% and instead send it out for feedback at the 90% mark&lt;/p&gt;
&lt;p&gt;With every iteration, the final 10% gets smaller, until it effectively vanishes &lt;a href=&quot;https://twitter.com/fortelabs/status/1401959735532789770&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fortelabs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Whatever anyone does or says, for my part I&#39;m bound to the good.&amp;quot; - Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1401962428640940042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best time to be happy is now. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1402218843267907586&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Whenever you feel superior or inferior to anyone, that&#39;s the ego in you.&lt;/p&gt;
&lt;p&gt;-- Eckhart Tolle &lt;a href=&quot;https://twitter.com/awareness_being/status/1402259257131741190&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awareness_being&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you have a garden and a library, you have everything you need.&lt;/p&gt;
&lt;p&gt;~ Cicero &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1402264833488306184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All your relationships improve once you are no longer scared of being disliked. &lt;a href=&quot;https://twitter.com/orangebook/status/1403307728412479488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;· Overthinking? Walk&lt;br /&gt;
· Exhausted? Sleep&lt;br /&gt;
· Doubtful? Write&lt;br /&gt;
· Excited? Build&lt;br /&gt;
· Bored? Read&lt;br /&gt;
· Sad? Lift &lt;a href=&quot;https://twitter.com/wisdom_theory/status/1403571260504743936&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wisdom_theory&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Smart phones removed boredom at the cost of peace of mind. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1404035284195553282&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every unnecessary desire is a micro- prison. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1404037896492011521&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you can&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Tell people you have a product that solves their problem&lt;/li&gt;
&lt;li&gt;On the channels, they frequently visit&lt;/li&gt;
&lt;li&gt;And tell them a story about why your solution matters&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You have a killer marketing plan &lt;a href=&quot;https://twitter.com/searchbrat/status/1404115995539738628&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It boggles my mind how many founders just don&#39;t send any kind of investor updates at all.&lt;/p&gt;
&lt;p&gt;Investor updates hone your focus and keep you honest. They&#39;re as much for you as they are for your investors. &lt;a href=&quot;https://twitter.com/maccaw/status/1404503128628674572&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maccaw&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Being customer centric company means prioritizing customers and listening to them” — @jeffiel 🧑🏽‍💻&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#twilio&quot;&gt;#twilio&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#startup&quot;&gt;#startup&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#software&quot;&gt;#software&lt;/a&gt; &lt;a href=&quot;https://t.co/mLHEh5ajQB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mLHEh5ajQB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jericolumanlan/status/1404676648847347718&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jericolumanlan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To grow a product-led business&lt;/p&gt;
&lt;p&gt;Remove friction&lt;br /&gt;
&amp;amp;&lt;br /&gt;
Increase desire&lt;/p&gt;
&lt;p&gt;Obsess over those 2 things. &lt;a href=&quot;https://twitter.com/searchbrat/status/1404818483083415555&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A rational person can find peace by cultivating indifference to things outside of their control.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1404900245503422464&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as an entrepreneur is to become like Teflon for tasks.&lt;/p&gt;
&lt;p&gt;You should be ALLERGIC to doing stuff and everything should roll off you and be delegated and systematized.&lt;/p&gt;
&lt;p&gt;Your job isn’t doing, it’s building systems. &lt;a href=&quot;https://twitter.com/awilkinson/status/1405597036364242944&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Unhappiness is the deficit between said and done. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1405857980311117825&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;History has proven that having everything won&#39;t make you happy. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1405858382637158404&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In 3 generations you will be forgotten.&lt;/p&gt;
&lt;p&gt;Live a happy, peaceful life. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1406552939565572101&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Networking is overrated, building is underrated. For 6 months, I sad yes to all coffee chats. The outcome? Nothing.&lt;/p&gt;
&lt;p&gt;Last 12 months said no to everything. Built a world-class product. The people I would have wanted to, but could not network with are now reaching out directly.&amp;quot; &lt;a href=&quot;https://twitter.com/GergelyOrosz/status/1407039896137707525&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GergelyOrosz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus&lt;/p&gt;
&lt;p&gt;How many things did you say No to?&lt;/p&gt;
&lt;p&gt;Johny Ive on Steve Job&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/28hxTSzEao&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/28hxTSzEao&lt;/a&gt; &lt;a href=&quot;https://twitter.com/milindkhandekar/status/1407162576639774720&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;milindkhandekar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@waitbutwhy &lt;a href=&quot;https://t.co/iJs5UcgEGi&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iJs5UcgEGi&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ap3co/status/1407411368240697349&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ap3co&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Productivity isn&#39;t measured in hours, it&#39;s measured in impact. Sometimes the smallest actions or ideas can have the greatest impact.&lt;/p&gt;
&lt;p&gt;It&#39;s easy to optimize our days to put in the greatest amount of hours of work. But working 100 hours a week is wasted if it has no impact. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1407989532813709314&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most kids can start a project.&lt;/p&gt;
&lt;p&gt;Far fewer can follow it through to the end.&lt;/p&gt;
&lt;p&gt;Finishing is a skill in itself. &lt;a href=&quot;https://twitter.com/anafabrega11/status/1408051507954585604&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anafabrega11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Enjoy present pleasures in such a way as not to injure future ones. [Seneca] &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1408060190683848719&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your business will scale relative to your ability to simplify. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1408136679353950220&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the best write-ups on Meditation by @naval, wrapped up in 1 Page ↓ &lt;a href=&quot;https://t.co/8Gg49TjfZX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8Gg49TjfZX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/KetPar/status/1408250452563488771&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KetPar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This sounds totally stupid but it&#39;s true — it turns out that visualising your intended outcome makes winning more believable, and prevents your brain from sabotaging itself.&lt;/p&gt;
&lt;p&gt;(Note this isn&#39;t some materialising your destiny bullshit, but more &#39;defence against self-sabotage&#39;) &lt;a href=&quot;https://twitter.com/ejames_c/status/1408257527087734785&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ejames_c&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you arise in the morning think of what a privilege it is to be alive, to think, to enjoy, to love. [Marcus Aurelius] &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1408379288387194880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Marketing is about the art of persistence.&lt;/p&gt;
&lt;p&gt;Find the channels that will generate the best returns for your brand.&lt;/p&gt;
&lt;p&gt;Grind out getting a little better on that channel week over week, month over month, year over year. &lt;a href=&quot;https://twitter.com/searchbrat/status/1408449910605819911&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are limited ways to acquire customers for your product.&lt;/p&gt;
&lt;p&gt;In my experience, it&#39;s pretty much this acquisition stack, with virality giving the best opportunity for growth, and building into ecosystems the smallest. &lt;a href=&quot;https://t.co/HdztyiCo6U&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HdztyiCo6U&lt;/a&gt; &lt;a href=&quot;https://twitter.com/searchbrat/status/1409534318242840578&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Novice writers try to sound smart, professional writers try to write clearly, and masters try to communicate emotions that stir the reader&#39;s soul &lt;a href=&quot;https://twitter.com/david_perell/status/1409610371527233539&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being obsessed with something won’t ensure mastery but not being obsessed will ensure you won’t master it. &lt;a href=&quot;https://twitter.com/farnamstreet/status/1409856425010991106&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;farnamstreet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Today’s luxuries are tomorrow’s commodities. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1409943425005277205&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some Stoic keys to happiness:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Focus on what you can control&lt;/li&gt;
&lt;li&gt;Reduce your wants&lt;/li&gt;
&lt;li&gt;Read philosophy every day&lt;/li&gt;
&lt;li&gt;Ignore the inessential&lt;/li&gt;
&lt;li&gt;Don&#39;t compare yourself to others&lt;/li&gt;
&lt;li&gt;Live as if you&#39;ve died and come back to life (bonus time)&lt;/li&gt;
&lt;li&gt;Do good to feel good &lt;a href=&quot;https://twitter.com/dailystoic/status/1409965057421811712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Outcome -&amp;gt; Metric -&amp;gt; Solutions&lt;/p&gt;
&lt;p&gt;Is the best sequence for work.&lt;/p&gt;
&lt;p&gt;So easy to fall into the habit of&lt;/p&gt;
&lt;p&gt;Solution -&amp;gt; Metric -&amp;gt; Outcome &lt;a href=&quot;https://twitter.com/searchbrat/status/1409987513448550404&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fall seven times and stand up eight. ~ Japanese Proverb &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1410235106866892801&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A happy life is not a life without struggle, it&#39;s a life with meaningful struggle. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1410540437673320449&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Complexity impresses your peers.&lt;br /&gt;
Clarity impresses your customers. &lt;a href=&quot;https://twitter.com/jackbutcher/status/1410575070376955909&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The things you think about determine the quality of your mind. Your soul takes on the color of your thoughts.&amp;quot; — Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1411007109039284224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve met a lot of struggling entrepreneurs that are more interested in the ship they are building than where the wind is blowing. &lt;a href=&quot;https://twitter.com/rajivkhaneja/status/1411173030907113473&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rajivkhaneja&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s all coming down to who can hire. &lt;a href=&quot;https://twitter.com/nivi/status/1411306769188589568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nivi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What makes America beautiful is its culture of change.&lt;/p&gt;
&lt;p&gt;We know we aren’t there yet, but our willingness to tweak our system &amp;amp; collaborate among diverse groups creates more justice, freedom, and progress daily.&lt;/p&gt;
&lt;p&gt;There is no righteous alternative in monoculture or totalitarianism. &lt;a href=&quot;https://twitter.com/zachtratar/status/1411752803635142659&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zachtratar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stakeholders are not customers.&lt;/p&gt;
&lt;p&gt;Pleasing the stakeholders at the expense of the customers is politically expedient, but rarely works out well for the company. &lt;a href=&quot;https://twitter.com/allenholub/status/1412137564543217664&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some deep part of me believes that people are only confident when they&#39;re very likely to be right, and I defer to confidence because &lt;em&gt;my own&lt;/em&gt; bar for speaking confidently is pretty &lt;em&gt;damn&lt;/em&gt; high.&lt;br /&gt;
but no, turns out, ppl say confident things with a low accuracy bar &lt;em&gt;all the time&lt;/em&gt;! &lt;a href=&quot;https://twitter.com/Aella_Girl/status/1412464623568101378&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Aella_Girl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;All self-help boils down to &amp;quot;choose long-term over short-term.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1412977240883666944&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Complexity is often poor thinking in disguise. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1413104829472313345&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The past is entirely contained in your head. It is nowhere else. The present is all that exists and that is where YOU exist.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1413128237387943938&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What if your life was a sacred responsibility?&lt;/p&gt;
&lt;p&gt;The body, a temple.&lt;/p&gt;
&lt;p&gt;Every motive, pure.&lt;/p&gt;
&lt;p&gt;Every glance, compassionate.&lt;/p&gt;
&lt;p&gt;Every word, true.&lt;/p&gt;
&lt;p&gt;Every act, right.&lt;/p&gt;
&lt;p&gt;Every moment, holy. &lt;a href=&quot;https://twitter.com/naval/status/1413398318651039746&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What 99% of you didn&#39;t do enough of this week:&lt;/p&gt;
&lt;p&gt;--&amp;gt; Hiring &amp;amp; Recruiting&lt;/p&gt;
&lt;p&gt;How will you do better next week? &lt;a href=&quot;https://twitter.com/jasonlk/status/1413564609097654273&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Correlation or causation? 🤔 &lt;a href=&quot;https://t.co/pZN2xmhccp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pZN2xmhccp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DivineOps/status/1413583543427600386&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DivineOps&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t do things that you know are morally wrong.&lt;/p&gt;
&lt;p&gt;Not because someone is watching, but because you are.&lt;/p&gt;
&lt;p&gt;Self-esteem is just the reputation that you have with yourself.  —  @naval &lt;a href=&quot;https://twitter.com/OutliersThought/status/1413793366463053825&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;OutliersThought&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to make the wrong decision, ask everyone.&lt;/p&gt;
&lt;p&gt;—@Naval &lt;a href=&quot;https://twitter.com/Navalbot001/status/1413860604289372167&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Navalbot001&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is my favourite @naval quote.&lt;/p&gt;
&lt;p&gt;What&#39;s your fav? &lt;a href=&quot;https://t.co/us4D5BWnWG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/us4D5BWnWG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/bitcoinMyName/status/1413920911758041089&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bitcoinMyName&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good luck finds those who work hard and make bold choices. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1413933130608570368&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remind yourself: Each day, I will hear the truth without taking offense. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1413947093903978499&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tolerating a problem has the same consequences as failing to identify it. &lt;a href=&quot;https://t.co/PGWVu6DNvv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PGWVu6DNvv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1414248472992174080&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Don&#39;t be overheard complaining... not even to yourself.&amp;quot; — Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1414268445747781638&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you are depressed you are living in the past. If you are anxious you are living in the future. If you are at peace you are living in the present. [Lao Tzu] &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1414603480489238533&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UI/UX Tip 💡&lt;/p&gt;
&lt;p&gt;Your buttons should have a visual cue that a click was successful.&lt;/p&gt;
&lt;p&gt;Otherwise, users might now be sure whether it&#39;s clicked or not and try to click many times. &lt;a href=&quot;https://twitter.com/vponamariov/status/1414906450871083021&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;vponamariov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Four truth-bombs:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;If you can&#39;t say &amp;quot;no,&amp;quot; then your &amp;quot;yeses&amp;quot; are meaningless&lt;/li&gt;
&lt;li&gt;They will respect you as much as you respect yourself&lt;/li&gt;
&lt;li&gt;Hard work is only useful if you&#39;ve found an area where you have an advantage&lt;/li&gt;
&lt;li&gt;Enjoy stillness and you&#39;ll never be bored a day in your life &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1415291247267307520&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@ShaneAParrish We taught our kids about life choices as narrow &amp;amp; wide doors: If you choose narrow doors (harder to squeeze through) earlier in life, the doors get wider later in life. But if you choose easier, wide doors initially, the doors (choices) become narrower later in life. &lt;a href=&quot;https://twitter.com/munrorichardson/status/1415420556594274306&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;munrorichardson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@ShaneAParrish Edward Banfield did a decade-long study at Harvard in the 70s that found those with &#39;long time perspective&#39; (taking the future into account in all present-moment decisions) were most likely to move up economically.&lt;/p&gt;
&lt;p&gt;The ability to delay gratification is &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; predictor of success. &lt;a href=&quot;https://twitter.com/cole__carroll/status/1415428430909218817&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;cole__carroll&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you don’t care to be liked, they can’t touch you.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1415664949439995904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you find yourself competing to win the love of of investors remember that you build your company to service your customers and the world.  Investors are simple service providers who help you with capital along the way. &lt;a href=&quot;https://twitter.com/mwseibel/status/1415730497221627904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mwseibel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Too many successful founders are celebrated for their intelligence.  Not enough are celebrated for their discipline, focus, understanding of when to copy and when to innovate, and ability to ignore what is not vitally important.  These last 4 are trainable. &lt;a href=&quot;https://twitter.com/mwseibel/status/1415730499054493700&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mwseibel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@mwseibel Customers feedback loop is underrated.&lt;/p&gt;
&lt;p&gt;The easiest way to drive value in the marketplace is by talking to your customer.&lt;/p&gt;
&lt;p&gt;Listen to their problems, build the solution, hand it over, listen to feedback.&lt;/p&gt;
&lt;p&gt;Rinse and repeat. &lt;a href=&quot;https://twitter.com/FonziCreates/status/1415737208787570692&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FonziCreates&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Free education is abundant, all over the internet. It’s the desire to learn that’s scarce.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1416238729816014853&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Soon you will be forgotten.&lt;/p&gt;
&lt;p&gt;Be happy and calm. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1416409148661682178&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Customer acquisition is the hardest part of marketing.&lt;/p&gt;
&lt;p&gt;People who do it will are like gold dust.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;They clearly define an opportunity.&lt;/li&gt;
&lt;li&gt;Can size up that opportunity.&lt;/li&gt;
&lt;li&gt;Can prioritize playbooks to realize that opportunity.&lt;/li&gt;
&lt;li&gt;Can execute those playbooks.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;They&#39;re Game Changers! &lt;a href=&quot;https://twitter.com/searchbrat/status/1416421439109017609&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@businessbarista Grindez is a freelancing platform where individuals, freelancers, and enterprises connect to conduct business.&lt;br /&gt;
Accumulate Cryptocurrency despite bull or bear markets.&lt;br /&gt;
Have &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#freelance&quot;&gt;#freelance&lt;/a&gt; skills to offer? @TheGrindez will let you work for any Cryptocurrency&lt;br /&gt;
&lt;a href=&quot;https://t.co/UAP8PVz5Bt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/UAP8PVz5Bt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nichxbt/status/1416488956762279937&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nichxbt&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Money doesn’t buy happiness - it buys freedom.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1416601118906351618&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I always felt intimidated by friends who could draw well. I got stuck at simple stick figures...&lt;/p&gt;
&lt;p&gt;The idea of developing my visual vocabulary has been a game-changer for me. &lt;a href=&quot;https://t.co/19YpeWvsVF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/19YpeWvsVF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zsviczian/status/1416680783474003968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zsviczian&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lack of courage sabotages more people than lack of ability. Don&#39;t beat yourself before you start. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1416737014330822662&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Press releases are a big part of Amazon&#39;s success. Each executive has to write one before launching a new project.&lt;/p&gt;
&lt;p&gt;They include:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Written in the future, when the project is successful&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focuses on how it improved the customer experience&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lists measurable results &lt;a href=&quot;https://twitter.com/searchbrat/status/1416813019087220737&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Judge the quality of your neighborhood by how many walks you take. &lt;a href=&quot;https://twitter.com/nivi/status/1417130267429453824&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nivi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Society wants you to follow a linear curve.&lt;/p&gt;
&lt;p&gt;To experience nonlinearity, you have to escape the comfort of a normal life. &lt;a href=&quot;https://twitter.com/Route2FI/status/1417154921204420608&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Route2FI&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Intelligent people can accept the truth without taking offense. Dumb people neglect the truth AND take offense. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1417175601740492804&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Part 2 of my experiment sketchnoting a book.&lt;/p&gt;
&lt;p&gt;I just updated yesterday&#39;s book summary for Storyworthy with the second part: Crafting Your Story.&lt;/p&gt;
&lt;p&gt;👉👉👉&lt;a href=&quot;https://t.co/qjL75kHBYq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qjL75kHBYq&lt;/a&gt; &lt;a href=&quot;https://t.co/vVPCB9wggQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vVPCB9wggQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zsviczian/status/1417563174849720326&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zsviczian&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Being poor is not having too little, it is wanting more.” Seneca &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1417832029056638982&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A peaceful mind free of desire, judgement and anxiety is the highest calling. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1417887897282297856&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you see 20% or more of your new customers coming from word-of-mouth by $2m-$3m ARR,&lt;/p&gt;
&lt;p&gt;Things are going really well &lt;a href=&quot;https://twitter.com/jasonlk/status/1417897993177493506&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“While I’ve met many engineers who don’t want to do discovery, I’ve rarely met an engineer who didn’t have an opinion about what the team should be building.”&lt;/p&gt;
&lt;p&gt;Core Concept: Getting Engineers to Embrace the Product Trio | Product Talk &lt;a href=&quot;https://t.co/W1cWZKDzWB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/W1cWZKDzWB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jboogie/status/1417931664106340356&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jboogie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being fully present in the moment is an essential key to charm and charisma. &lt;a href=&quot;https://twitter.com/PUA_DATING_TIPS/status/1418062498331246597&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PUA_DATING_TIPS&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Just that you do the right thing. The rest doesn&#39;t matter.&amp;quot;&lt;br /&gt;
–Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1418299981627281411&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@naval We get good at whatever it is that we do everyday.&lt;/p&gt;
&lt;p&gt;Complaining, judging, whining included. &lt;a href=&quot;https://twitter.com/warikoo/status/1418351090802642944&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;warikoo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You don&#39;t need more time, you need more focus.&lt;/p&gt;
&lt;p&gt;Fewer projects. Fewer commitments. Fewer obligations. Fewer responsibilities.&lt;/p&gt;
&lt;p&gt;Carefully choose what you commit to, then go all in. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1418541528692232193&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Companies should rethink vacation.&lt;/p&gt;
&lt;p&gt;At times you need to fully unplug. Other times, you just need a change of pace.&lt;/p&gt;
&lt;p&gt;What if there was X weeks allocated to be:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Meeting-free&lt;/li&gt;
&lt;li&gt;Half days&lt;/li&gt;
&lt;li&gt;For creative projects&lt;/li&gt;
&lt;li&gt;For clearing backlog&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;How else could we rethink &amp;quot;time off&amp;quot;? &lt;a href=&quot;https://twitter.com/stephsmithio/status/1419403866043392001&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;stephsmithio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You cannot convince someone when their ego is dependent on not being convinced by you. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1419530244373958656&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;6 Healthy Relationship Habits People Think Are Toxic&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Letting conflicts go unresolved&lt;/li&gt;
&lt;li&gt;Being willing to hurt each other&#39;s feelings&lt;/li&gt;
&lt;li&gt;Being willing to end it&lt;/li&gt;
&lt;li&gt;Feeling attraction for people outside the relationship&lt;/li&gt;
&lt;li&gt;Spending time apart&lt;/li&gt;
&lt;li&gt;Accepting your partner&#39;s flaws &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1419686732522475520&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Intelligence without courage won’t take you far. Sometimes, it’s smarter to think less and act more. &lt;a href=&quot;https://twitter.com/orangebook/status/1419690732596649987&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My brother in law is a social worker working with neglected kids and just told me: &amp;quot;All behavior makes sense with enough information.&amp;quot;&lt;/p&gt;
&lt;p&gt;People do crazy things because it makes sense to them even if it doesn&#39;t make sense to us.&lt;/p&gt;
&lt;p&gt;Applies to lots of things. &lt;a href=&quot;https://twitter.com/morganhousel/status/1419714467881914371&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;morganhousel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fix: Write impossible headers, realistic sub-headers&lt;/p&gt;
&lt;p&gt;Headers: Bold claims that make visitors think &amp;quot;how&#39;s that possible?&amp;quot;&lt;/p&gt;
&lt;p&gt;Sub-headers: Explains how the header is possible using non-technical language&lt;/p&gt;
&lt;p&gt;Ex. @GoldcastEvents &amp;amp; @bokksu &lt;a href=&quot;https://t.co/s8UZqxgQh9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/s8UZqxgQh9&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GrowthTactics/status/1419761934388260879&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GrowthTactics&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best marketing textbook is your bank statement:&lt;/p&gt;
&lt;p&gt;• Study companies you’ve given money and ask why.&lt;/p&gt;
&lt;p&gt;Reality &amp;gt;&amp;gt;&amp;gt; Theory &lt;a href=&quot;https://twitter.com/george__mack/status/1420075762854494212&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Waterstones is offering signed copies of Rationality (I have the sore wrist to prove it) for preorder.  &lt;a href=&quot;https://t.co/CkSGWGWwP5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CkSGWGWwP5&lt;/a&gt; &lt;a href=&quot;https://t.co/EURZu0xvYI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/EURZu0xvYI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/sapinker/status/1420082875441942530&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sapinker&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Wealth consists not in having great possessions, but in having few wants.&amp;quot; –Epictetus &lt;a href=&quot;https://twitter.com/dailystoic/status/1420111939418664964&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mental resiliency is becoming as important as literally any other skill &lt;a href=&quot;https://twitter.com/TrevMcKendrick/status/1420113872808079362&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TrevMcKendrick&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You gain nothing by being negative. Shift your mindset, start winning. &lt;a href=&quot;https://twitter.com/PerfectGuide_/status/1420340799041155073&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PerfectGuide_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;m a fan of tools that help you do things that you should be doing -- but don&#39;t, because it&#39;s too annoying.&lt;/p&gt;
&lt;p&gt;In this case, it&#39;s creating highlight reels of past talks.&lt;/p&gt;
&lt;p&gt;It&#39;s also why I&#39;m a &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#happyinvestor&quot;&gt;#happyinvestor&lt;/a&gt; in Milk Video. &lt;a href=&quot;https://twitter.com/dharmesh/status/1420442861645017099&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you have to sell hard to convince someone to buy then it’s probably not a good fit and won’t work out long term.&lt;/p&gt;
&lt;p&gt;I have found this to be true when selling a product, hiring someone or raising money.&lt;/p&gt;
&lt;p&gt;This mindset also makes the “nos” less personal/stressful. &lt;a href=&quot;https://twitter.com/immad/status/1420502244210798602&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;immad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I can almost guarantee you&#39;re overthinking it &lt;a href=&quot;https://twitter.com/jackbutcher/status/1420513523260694531&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The only real test of intelligence is if you get what you want out of life.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1420526986980589570&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job is not to follow your board&#39;s advice&lt;/p&gt;
&lt;p&gt;Your job is to be respectful of the advice given, consider it, and make sure you get plenty more advice, too&lt;/p&gt;
&lt;p&gt;Then it&#39;s up to you&lt;/p&gt;
&lt;p&gt;Never, ever forget that &lt;a href=&quot;https://twitter.com/jasonlk/status/1420766546356412422&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The fundamental delusion - there is something out there that will make me happy and fulfilled forever.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1421130967859687424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Devote the rest of your life to making progress.&amp;quot; –Epictetus &lt;a href=&quot;https://twitter.com/dailystoic/status/1421516239357284353&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;my ideal date: code on replit together &lt;a href=&quot;https://twitter.com/codingyuri/status/1421780245531619330&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;codingyuri&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Our life is what our thoughts make it.&amp;quot; –Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1421923790326542338&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UI/UX Tip 💡&lt;/p&gt;
&lt;p&gt;Don&#39;t just put a screenshot of your app.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Make few screenshots that demonstrate different features&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remove clutter from them. Hints, copyright, some random garbage&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;➡️ Make users focus on ONE feature per time and show it with good quality media &lt;a href=&quot;https://t.co/4D4BurMENk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4D4BurMENk&lt;/a&gt; &lt;a href=&quot;https://twitter.com/vponamariov/status/1422247445556301839&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;vponamariov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What a line! 🤯&lt;/p&gt;
&lt;p&gt;Forget “you can’t manage what you can’t measure.”&lt;/p&gt;
&lt;p&gt;Alfred Sloan, the CEO of General Motors says instead “you don’t need to manage what you can measure.” &lt;a href=&quot;https://t.co/mr6fRLG6VM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mr6fRLG6VM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Molson_Hart/status/1422420167817056273&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Molson_Hart&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lesson &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#2&quot;&gt;#2&lt;/a&gt;: You can’t do it alone, no matter how great you are.&lt;/p&gt;
&lt;p&gt;To win big, surround yourself with:&lt;/p&gt;
&lt;p&gt;A. Other greats&lt;br /&gt;
B. Role players&lt;br /&gt;
C. A system that brings out the best in everyone.&lt;/p&gt;
&lt;p&gt;All three of these are equally important and allow organizations to thrive. &lt;a href=&quot;https://twitter.com/RomeenSheth/status/1422706606672908292&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RomeenSheth&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lesson &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#10&quot;&gt;#10&lt;/a&gt;: Your startup is a movement. Treat it like one.&lt;/p&gt;
&lt;p&gt;There’s an analogue between grassroots politics and startup evangelism.&lt;/p&gt;
&lt;p&gt;The best “campaigns”:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Define a larger cause&lt;/li&gt;
&lt;li&gt;Articulate the problem better than anyone else&lt;/li&gt;
&lt;li&gt;Attack the status quo&lt;/li&gt;
&lt;li&gt;Define the category &lt;a href=&quot;https://twitter.com/RomeenSheth/status/1422706627518640128&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RomeenSheth&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;That&#39;s the list!&lt;/p&gt;
&lt;p&gt;10 timely lessons to help orient founders and investors on the road to building generational companies.&lt;/p&gt;
&lt;p&gt;He also shared his perspectives on:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Intensity and mindset&lt;/li&gt;
&lt;li&gt;Driving virality&lt;/li&gt;
&lt;li&gt;Blitzfailing / Blitzscaling&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Check out the full episode in the bio. &lt;a href=&quot;https://twitter.com/RomeenSheth/status/1422706628789514249&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RomeenSheth&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Product-led growth&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make it easy to get started with your product&lt;/li&gt;
&lt;li&gt;Make inviting others to use your product easy&lt;/li&gt;
&lt;li&gt;Make it easy to discover your products core value&lt;/li&gt;
&lt;li&gt;Make sharing that value with others easy&lt;/li&gt;
&lt;li&gt;Make buying easy&lt;/li&gt;
&lt;li&gt;Make buying more easy&lt;/li&gt;
&lt;li&gt;Make getting help easy &lt;a href=&quot;https://twitter.com/searchbrat/status/1423305550524305410&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I begin to speak only when I&#39;m certain what I&#39;ll say isn&#39;t better left unsaid.&amp;quot; –Cato &lt;a href=&quot;https://twitter.com/dailystoic/status/1424052949936918533&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Microsoft was 20 years old when Windows 95 shipped.&lt;/p&gt;
&lt;p&gt;Intel was 25 years old when Pentium came out.&lt;/p&gt;
&lt;p&gt;Apple was 31 years old when iPhone launched.&lt;/p&gt;
&lt;p&gt;All were still run by their founders.&lt;/p&gt;
&lt;p&gt;There’s SO much innovation still to come from today’s 10-15 year old, founder-run companies. &lt;a href=&quot;https://twitter.com/dadiomov/status/1424060903658442752&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dadiomov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;...and when you&#39;re on a good wave, you&#39;ve got to ride it until it becomes less good. You need to constantly evaluate the value of the path you&#39;re on versus the potential that could come out of exploring–and ride the biggest wave you can find. (2/2) &lt;a href=&quot;https://twitter.com/RayDalio/status/1424091886030004228&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you avoid failure, you also opt-out of greatness. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1424338853167513613&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Urgency cuts what’s unnecessary. &lt;a href=&quot;https://twitter.com/jdnoc/status/1424428728877305863&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jdnoc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@JulianaLung If germs won’t eat it, it’s not food. &lt;a href=&quot;https://twitter.com/naval/status/1424544617291153408&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s very rare to hear someone say, “I understand” and you believe them. &lt;a href=&quot;https://twitter.com/taylorburrowes/status/1424816219899629578&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;taylorburrowes&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Happiness is simply the absence of desire…It arrives when you have no urge to feel differently. Happiness is the state you enter when you no longer want to change your state.”&lt;/p&gt;
&lt;p&gt;–@JamesClear &lt;a href=&quot;https://twitter.com/fortelabs/status/1424876389589688338&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fortelabs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the best memes I&#39;ve seen recently. &lt;a href=&quot;https://t.co/ifUZP5yYzN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ifUZP5yYzN&lt;/a&gt; &lt;a href=&quot;https://twitter.com/bolchowka/status/1425080017491484672&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bolchowka&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People have a hard time wrapping their minds around niching down. They think they&#39;re eliminating potential customers.&lt;/p&gt;
&lt;p&gt;The opposite is true. You&#39;re creating fans that would otherwise be apathetic. &lt;a href=&quot;https://twitter.com/jdnoc/status/1425508027646550019&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jdnoc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to win every time:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Create something valuable for a growing market.&lt;/li&gt;
&lt;li&gt;Produce content aimed at educating complete beginners in the market.&lt;/li&gt;
&lt;li&gt;Position your product/service as a solution to some inefficiency within the market.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;No need to take on incumbents. &lt;a href=&quot;https://twitter.com/jdnoc/status/1425508877345464331&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jdnoc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great leaders give their teams problems to solve, not a checklist of tasks to complete &lt;a href=&quot;https://twitter.com/searchbrat/status/1425530961505267718&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You have to assemble your life yourself, action by action.&amp;quot; Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1426589594133405698&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nothing external will make you internally happy forever. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1427195236426653698&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Three Important Life Skills (Nobody Ever Taught Us):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;How to stop taking things personally&lt;/li&gt;
&lt;li&gt;How to be persuaded to change your mind&lt;/li&gt;
&lt;li&gt;How to act without knowing the result &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1427210781989425153&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UI/UX Tip 💡&lt;/p&gt;
&lt;p&gt;App speed matters. But what also matters is the perception (!) of speed.&lt;/p&gt;
&lt;p&gt;Instead of showing 0% as the initial progress value, you can put a small number so that it looks like your app is already doing some work. &lt;a href=&quot;https://t.co/HwNJDeNTRT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HwNJDeNTRT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/vponamariov/status/1427241948050513923&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;vponamariov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you don&#39;t have a consistent goal in life, you can&#39;t live it in a consistent way.&amp;quot; Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1427314506250788871&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your values are always shining through. Because regardless of what you say, your values are always apparent in:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;how you spend your time&lt;/li&gt;
&lt;li&gt;what you pay attention to&lt;/li&gt;
&lt;li&gt;where you direct your energy&lt;/li&gt;
&lt;li&gt;who you choose to associate with &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1427659237296164869&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As an introvert, I&#39;ve never really been good at selling. Goes against my natural disposition.&lt;/p&gt;
&lt;p&gt;But you don&#39;t have to be great at selling in order to be great at sales.&lt;/p&gt;
&lt;p&gt;Here&#39;s a quick 2 minute video that reveals the lesson I learned.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/HrIvsngNIH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HrIvsngNIH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dharmesh/status/1427715202083135491&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Making the core feature of your product faster, stable, and simpler will often matter more to users than most net-new features they might use. I am always surprised by how far you can go and how much it still matters. &lt;a href=&quot;https://twitter.com/Suhail/status/1427831360576647170&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If I had to give a lecture series on marketing, here&#39;s 11 points I&#39;d include:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Data is like protein:&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It’s valuable - but it shouldn’t be your &lt;em&gt;only&lt;/em&gt; input.&lt;/p&gt;
&lt;p&gt;If all your decisions are guided by A/B tests, you’ll eventually end up with a porn site. &lt;a href=&quot;https://twitter.com/george__mack/status/1428063893184827392&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;5&quot;&gt;
&lt;li&gt;Think with headlines first&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Mr. Beast has full time staff who&#39;s sole job is to write headlines for YouTube videos.&lt;/p&gt;
&lt;p&gt;If the headline is good, they then make the video.&lt;/p&gt;
&lt;p&gt;This is the inverse of making the headline fit the story.&lt;/p&gt;
&lt;p&gt;Think of distribution before creation. &lt;a href=&quot;https://twitter.com/george__mack/status/1428063926776967176&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;7&quot;&gt;
&lt;li&gt;The best marketing textbook is your bank balance.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Follow the money backwards from purchase to first hearing about.&lt;/p&gt;
&lt;p&gt;It&#39;s proven to work by your actions. (Not words) &lt;a href=&quot;https://twitter.com/george__mack/status/1428063943570886658&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;8&quot;&gt;
&lt;li&gt;Unbundle Word of Mouth marketing&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It’s now Word of WhatsApp, Word of Slack and Word of Discord.&lt;/p&gt;
&lt;p&gt;Always ask: “How will people post about this in their group chat?” &lt;a href=&quot;https://twitter.com/george__mack/status/1428063956334170115&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;10&quot;&gt;
&lt;li&gt;Find the highest leverage “Bakers Dozen”&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Bakers Dozen = 13*&lt;/p&gt;
&lt;p&gt;*When the customer was expecting 12&lt;/p&gt;
&lt;p&gt;It isn&#39;t the 13 that makes the customer happy - it&#39;s the unexpected +1&lt;/p&gt;
&lt;p&gt;Highest leverage = Largest +1 for customer&lt;/p&gt;
&lt;p&gt;Five Guys extra scoop of fries is the best example of this &lt;a href=&quot;https://twitter.com/george__mack/status/1428063974008971266&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@naval Making mistakes is better than faking perfections. &lt;a href=&quot;https://twitter.com/abovepressuremg/status/1428161304070664197&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;abovepressuremg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Find Balance Between Building / Talking&lt;/p&gt;
&lt;p&gt;Contrary to popular belief,&lt;/p&gt;
&lt;p&gt;Building is easy&lt;/p&gt;
&lt;p&gt;It&#39;s taking time off your day,&lt;/p&gt;
&lt;p&gt;Putting your ego on the line,&lt;/p&gt;
&lt;p&gt;And sitting down to talk to customers that&#39;s hard.&lt;/p&gt;
&lt;p&gt;But it&#39;s what will make your business work (or fail) &lt;a href=&quot;https://twitter.com/tibo_maker/status/1428386395349979140&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tibo_maker&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs outlines Apple&#39;s strategy for 2011&lt;/p&gt;
&lt;p&gt;October 24, 2010 &lt;a href=&quot;https://t.co/hfiDXfAkAx&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hfiDXfAkAx&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TechEmails/status/1428400060019068933&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TechEmails&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In 3 generations you will be forgotten.&lt;/p&gt;
&lt;p&gt;Live a happy, peaceful life. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1428640542527787013&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“In the end, any marketing program that performs is worth it — if your NRR is 100%+”&lt;/p&gt;
&lt;p&gt;What&#39;s the &amp;quot;Right&amp;quot; CAC These Days? The One You Can Afford | SaaStr &lt;a href=&quot;https://t.co/A1hZu9JFwd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/A1hZu9JFwd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1428737367297331207&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Have been lucky to meet with or study hundreds of companies in 2021.&lt;/p&gt;
&lt;p&gt;Here&#39;s an ongoing list of company attributes that I find interesting... &lt;a href=&quot;https://twitter.com/patrick_oshag/status/1428811209428586502&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrick_oshag&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My dad’s industry (insurance) ran a nationwide survey of 1500 businesses asking which qualities people most wanted in the people they worked with.&lt;/p&gt;
&lt;p&gt;The top answers, in order:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Good attitude&lt;/li&gt;
&lt;li&gt;Gets back quickly&lt;/li&gt;
&lt;li&gt;Knowledgable&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Being pleasant and responsive counts for a lot. &lt;a href=&quot;https://twitter.com/JamesClear/status/1429161459095900165&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to be successful you must learn how to delay gratification &lt;a href=&quot;https://twitter.com/hustlenconquer/status/1429763373378555908&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hustlenconquer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Experienced folks from large companies often struggle when they become founders.&lt;/p&gt;
&lt;p&gt;They’re used to elegant kaizen type continuous improvement and not brute force breakout and breaking things and shipping fast. &lt;a href=&quot;https://twitter.com/kunalb11/status/1429853846499565602&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every time I sit down to write, I put three questions at the top:&lt;/p&gt;
&lt;p&gt;• What problem am I solving?&lt;br /&gt;
• Whose problem am I solving?&lt;br /&gt;
• What does solving that problem unlock?&lt;/p&gt;
&lt;p&gt;This way I can write:&lt;/p&gt;
&lt;p&gt;• To one person&lt;br /&gt;
• To solve one specific problem&lt;br /&gt;
• To unlock specific benefits &lt;a href=&quot;https://twitter.com/dickiebush/status/1430154235413508100&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Don’t seek for everything to happen as you wish it would, but rather wish that everything happens as it actually will—then your life will flow well.” — Epictetus &lt;a href=&quot;https://twitter.com/dailystoic/status/1430258807431651331&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Try many things, then work on one thing that grows.&lt;/p&gt;
&lt;p&gt;Not the other way around. &lt;a href=&quot;https://twitter.com/justinkan/status/1430506567653158919&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life is short so a Stoic...&lt;/p&gt;
&lt;p&gt;...doesn&#39;t waste time on things outside their control&lt;br /&gt;
...always gives their best&lt;br /&gt;
...doesn&#39;t worry about what &lt;em&gt;might&lt;/em&gt; happen&lt;br /&gt;
...tries to make a difference&lt;br /&gt;
...loves while they can&lt;/p&gt;
&lt;p&gt;MEMENTO MORI &lt;a href=&quot;https://twitter.com/dailystoic/status/1430530793605062658&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most markets are a positive sum game, not zero sum.&lt;/p&gt;
&lt;p&gt;You don&#39;t always need for your major competitor to lose in order for you to win.&lt;/p&gt;
&lt;p&gt;Example: Microsoft and Apple have been rivals for decades.&lt;/p&gt;
&lt;p&gt;Both are currently worth over $2 TRILLION (with a &amp;quot;T&amp;quot;) each.&lt;/p&gt;
&lt;p&gt;Both companies &lt;em&gt;won&lt;/em&gt;. &lt;a href=&quot;https://twitter.com/dharmesh/status/1430632844251045895&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Please don’t be afraid to try something different if your original idea isn’t working. Wish we did it sooner. &lt;a href=&quot;https://t.co/vbkg0Nn4zE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vbkg0Nn4zE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/daytonmills/status/1430722168808099844&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;daytonmills&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focusing on growth can be an unhealthy obsession.&lt;/p&gt;
&lt;p&gt;Build a tight customer feedback loop instead and the growth will come. &lt;a href=&quot;https://twitter.com/justinkan/status/1431741035198091268&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;6 time management techniques from Seneca:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Remember that you will die&lt;/li&gt;
&lt;li&gt;Value your time more than your possessions&lt;/li&gt;
&lt;li&gt;Be ruthless to things that don&#39;t matter&lt;/li&gt;
&lt;li&gt;Realize what time off is for - rest actively, not idly&lt;/li&gt;
&lt;li&gt;Put your day up for review &lt;a href=&quot;https://twitter.com/dailystoic/status/1432070666178674694&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The keys to a productive life…&lt;br /&gt;
...wake up early&lt;br /&gt;
...limit interruptions&lt;br /&gt;
...make a little progress everyday&lt;br /&gt;
...say no (a lot)&lt;br /&gt;
...learn from your mistakes&lt;br /&gt;
...pick yourself back up when you slip&lt;br /&gt;
...waste no time measuring yourself against other people &lt;a href=&quot;https://twitter.com/dailystoic/status/1432705132844748813&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A simple heuristic:&lt;/p&gt;
&lt;p&gt;If someone can talk you out of it, you don&#39;t want it bad enough. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1432717255448616961&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Woke up at 4am today, stretched and meditated for 30-40 minutes then went back to bed and had a lucid dream. &lt;a href=&quot;https://twitter.com/escliu/status/1433154112976142337&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;escliu&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startups are rarely born with product-market fit. It’s almost always forged with sheer will. &lt;a href=&quot;https://twitter.com/KyleTibbitts/status/1433596044151910427&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KyleTibbitts&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re not prepared to lose, you&#39;re not ready to win &lt;a href=&quot;https://twitter.com/justinkan/status/1433602932117684225&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UI/UX Design Tip ✨&lt;/p&gt;
&lt;p&gt;Always choose the chart type carefully!&lt;/p&gt;
&lt;p&gt;Line charts might look trendier but they don&#39;t apply to every case.&lt;/p&gt;
&lt;p&gt;When the x-axis has limited options, a bar chart is the correct graph type.&lt;/p&gt;
&lt;p&gt;Plus, the line chart might introduce false intermediate values. &lt;a href=&quot;https://t.co/62x1pQqvU1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/62x1pQqvU1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/d__raptis/status/1433762366773157903&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;d__raptis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Associate with people who are likely to improve you. Welcome those who you are capable of improving. The process is a mutual one: men learn as they teach.&amp;quot; Seneca &lt;a href=&quot;https://twitter.com/dailystoic/status/1433837365060161544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the most important books ever written. &lt;a href=&quot;https://t.co/YPrZ7bugd6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YPrZ7bugd6&lt;/a&gt; &lt;a href=&quot;https://twitter.com/maccaw/status/1433910685143023617&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maccaw&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We&#39;ve all read Sapiens, right?&lt;/p&gt;
&lt;p&gt;If you want to dive deeper and learn more about history, here&#39;s a list of 29 incredible books about the past. The first one is required reading IMO.&lt;/p&gt;
&lt;p&gt;Big history guy over here!&lt;/p&gt;
&lt;p&gt;THREAD: &lt;a href=&quot;https://twitter.com/landforce/status/1434543804921516034&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;landforce&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I find that most founders don’t use their competitors’ products often enough&lt;/p&gt;
&lt;p&gt;I don’t just mean watching an explainer video on new features, reading release notes, etc.&lt;/p&gt;
&lt;p&gt;I mean basically being their customer &lt;a href=&quot;https://twitter.com/jasonlk/status/1434885235338928129&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Average public SaaS company has 33,000 customers&lt;/p&gt;
&lt;p&gt;Average public mid-market SaaS company has 12,000 customers&lt;/p&gt;
&lt;p&gt;And this is at $440,000,000 in ARR&lt;/p&gt;
&lt;p&gt;That&#39;s really not that many customers. So much more to close.&lt;/p&gt;
&lt;p&gt;Such big TAMs. &lt;a href=&quot;https://t.co/eTRkH5bI6W&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/eTRkH5bI6W&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1435351005361627139&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Designing our billing page with a letter from the team. &lt;a href=&quot;https://t.co/Z3UuP76j6H&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Z3UuP76j6H&lt;/a&gt; &lt;a href=&quot;https://twitter.com/maccaw/status/1437208734929850369&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maccaw&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sometimes I catch myself thinking, “If I knew what I know now a year ago I could have saved like $20 million.”&lt;/p&gt;
&lt;p&gt;But then I realize there was literally no way to learn what I know now without having gone through what we went through.&lt;/p&gt;
&lt;p&gt;Startups are funny like that. &lt;a href=&quot;https://twitter.com/Austen/status/1437214112887414787&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Deep Work Day&lt;br /&gt;
I’ve read so much about Deep Work I was sure this is something worth pursuing.&lt;/p&gt;
&lt;p&gt;In 2018 I changed my work schedule to find a long period of time when I can focus on important things. These are my Deep Work Days. &lt;a href=&quot;https://twitter.com/tomik99/status/1437420029918781441&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Quote of the week from Rationality, on sale 9/28, available for preorder now. &lt;a href=&quot;https://t.co/mRqAyDEXCM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mRqAyDEXCM&lt;/a&gt; &lt;a href=&quot;https://t.co/LVYcGrFt5I&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LVYcGrFt5I&lt;/a&gt; &lt;a href=&quot;https://twitter.com/sapinker/status/1437436096535674884&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sapinker&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build a life you don&#39;t need to escape from. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1437493294230122498&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t worry about people ‘stealing’ your ideas.&lt;/p&gt;
&lt;p&gt;If they can do it better than you, the market probably needs you to work on something else anyways. &lt;a href=&quot;https://twitter.com/justinkan/status/1437554602589646853&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The less you need the approval of others, the easier it is to do what&#39;s right over what&#39;s easy. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1437769243743997963&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Starting a business can be painful.&lt;/p&gt;
&lt;p&gt;You feel lost 97% of the time - the ups and downs are gut-wrenching.&lt;/p&gt;
&lt;p&gt;I wish I had a cheat sheet of principles for my first startup.&lt;/p&gt;
&lt;p&gt;So I wrote one.&lt;/p&gt;
&lt;p&gt;Here are 40+ learnings about entrepreneurship I wish I knew sooner: &lt;a href=&quot;https://twitter.com/jspujji/status/1438195410879741952&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Unpopular opinion:&lt;/p&gt;
&lt;p&gt;Kids shouldn’t sleep in their parents beds. Ever. At any age. Even for a minute. &lt;a href=&quot;https://twitter.com/sweatystartup/status/1438832110522048514&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sweatystartup&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Kids need about 5-10 toys to be happy.&lt;/p&gt;
&lt;p&gt;More than that and they are just distracted and your house becomes a war zone. &lt;a href=&quot;https://twitter.com/sweatystartup/status/1438845926781636609&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sweatystartup&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Telling a kid “no” is the best thing you can do for them.&lt;/p&gt;
&lt;p&gt;Giving in every time makes your life miserable and turns the kids into monsters. &lt;a href=&quot;https://twitter.com/sweatystartup/status/1438846237189488643&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sweatystartup&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A kid is like an energy mirror.&lt;/p&gt;
&lt;p&gt;Bring the energy -&amp;gt; happy and excited kids.&lt;/p&gt;
&lt;p&gt;Stair at your phone and ignore them -&amp;gt; miserable grumpy kids. &lt;a href=&quot;https://twitter.com/sweatystartup/status/1438846826975793152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sweatystartup&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A weekly date night is the best investment you can make when it comes to a strong family and strong kids. &lt;a href=&quot;https://twitter.com/sweatystartup/status/1438847574656659463&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sweatystartup&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Harry&#39;s collected 100k emails in just one week leading up to their launch.&lt;/p&gt;
&lt;p&gt;Their Co-founder, Jeff Raider, said that 77% of the emails were collected via referrals.&lt;/p&gt;
&lt;p&gt;On average, each person referred more than 3 people.&lt;/p&gt;
&lt;p&gt;And here&#39;s how you can replicate it 🧵 &lt;a href=&quot;https://twitter.com/alexgarcia_atx/status/1439235269652148224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;alexgarcia_atx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Get comfortable with being uncomfortable&lt;/p&gt;
&lt;p&gt;If you get advice from enough people, the advice will cancel out.&lt;/p&gt;
&lt;p&gt;You can find 2 smart people to take opposite sides of the argument on virtually every topic.&lt;/p&gt;
&lt;p&gt;Focus on developing your instincts and trusting your own intuition. &lt;a href=&quot;https://twitter.com/RomeenSheth/status/1441199499301511169&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RomeenSheth&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Surround yourself with open minded people vs. close minded people&lt;/p&gt;
&lt;p&gt;Open Minded People:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Ask genuine questions&lt;/li&gt;
&lt;li&gt;Insatiably curious&lt;/li&gt;
&lt;li&gt;Listen attentively&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Close Minded People&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make statements instead of ask questions&lt;/li&gt;
&lt;li&gt;Focus on being right&lt;/li&gt;
&lt;li&gt;Speak more &lt;a href=&quot;https://twitter.com/RomeenSheth/status/1441199502233255938&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RomeenSheth&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hiring a housekeeper is one of the best ROIs for my quality of life &lt;a href=&quot;https://twitter.com/nickgraynews/status/1441212020959813643&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nickgraynews&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Why should you feel anger at the world? As if the world would notice.&amp;quot; Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1442534774040637446&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Two kinds of fools - those who take religion literally, and those who think it has no value. &lt;a href=&quot;https://twitter.com/naval/status/1442737996814589952&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life is essentially about one thing: the choices you make. &lt;a href=&quot;https://twitter.com/justinkan/status/1443713815883882499&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to master complexity and problem solving in science and engineering?&lt;/p&gt;
&lt;p&gt;Build insight and understanding first, so that you do not drown in complexity.&lt;/p&gt;
&lt;p&gt;Approximations foster understanding.&lt;/p&gt;
&lt;p&gt;A thread on Mastering Complexity:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ovbdDnVqhP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ovbdDnVqhP&lt;/a&gt; &lt;a href=&quot;https://t.co/WADTDRxEHJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WADTDRxEHJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1444161756272607235&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;+2 vs. x2 &lt;a href=&quot;https://t.co/TPZOGOeqKH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TPZOGOeqKH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jackbutcher/status/1445064178486681612&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Love this piece from Jony Ive about how Steve Jobs thought about ideas.&lt;/p&gt;
&lt;p&gt;I try to take this to heart. Push for the ideas that I feel strongly about -- even though they take years to resolve. Or in my case, sometimes over a decade. &lt;a href=&quot;https://t.co/ZL8gzsKzJc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZL8gzsKzJc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dharmesh/status/1445112433849376775&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If your income is coming from labor rather than assets, you’re being decimated by hidden inflation. &lt;a href=&quot;https://twitter.com/naval/status/1446642101760905219&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The difference between wanting and achieving is discipline. &lt;a href=&quot;https://twitter.com/busines_corner/status/1446852966971965442&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;busines_corner&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;How to become a leader?&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;If you want to be a Leader, never act surprised.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In business, act as if everything, I repeat, everything is a logical consequence of something else that happened.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is useful during crisis situations. Always project that you are in control. &lt;a href=&quot;https://twitter.com/UpSkillYourLife/status/1446859084397826053&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;UpSkillYourLife&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;9&quot;&gt;
&lt;li&gt;How to win an argument?&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;When locked in an argument, take care not to lay down all your cards at once.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Save your main argument for the last and use only secondary points to stand your ground.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you find things going in your stride, flash your main argument to win &lt;a href=&quot;https://twitter.com/UpSkillYourLife/status/1446859094556512258&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;UpSkillYourLife&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;10&quot;&gt;
&lt;li&gt;How to build trust quickly?&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;When you’re striking up a conversation with someone, try mirroring their body language.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Subtly mirroring people’s body language subconsciously makes them think you’re in sync, which works very well for building trust. &lt;a href=&quot;https://twitter.com/UpSkillYourLife/status/1446859096641077250&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;UpSkillYourLife&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to learn faster?&lt;/p&gt;
&lt;p&gt;The Cone of Learning created by Edgar Dale (1969) &lt;a href=&quot;https://t.co/jmcgacj1qT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jmcgacj1qT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1446873045650395140&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The goal of media is to make every problem, your problem.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1447117197428641801&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Billionaire driving a Lamborghini.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;10 Million views&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Billionaire showing you how to build a business to afford a Lamborghini .&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;200 views&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;People don’t want to be educated, they want to be entertained. &lt;a href=&quot;https://twitter.com/IAmAaronWill/status/1447148929548750850&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmAaronWill&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your partner’s stress language is just as important as your partner’s love language. &lt;a href=&quot;https://twitter.com/taylorburrowes/status/1447236272339099648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;taylorburrowes&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;School, politics, sports, and games train us to compete against others. True rewards - wealth, knowledge, love, fitness, and equanimity - come from ignoring others and improving ourselves.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1447290888489734144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some startups explode out of the gate&lt;/p&gt;
&lt;p&gt;Some take years to hit their stride, and then rocket&lt;/p&gt;
&lt;p&gt;The IRR is in the former&lt;/p&gt;
&lt;p&gt;The epic multiple is often in the latter &lt;a href=&quot;https://twitter.com/jasonlk/status/1447327831634108418&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Only 25% of the way through it but “The Toyota Production System” by Taiichi Ohno is fantastic on like every level.&lt;/p&gt;
&lt;p&gt;Reading it is like a spiritual experience. &lt;a href=&quot;https://t.co/S5SAIS6PJt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/S5SAIS6PJt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TaylorPearsonMe/status/1447569838654857218&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TaylorPearsonMe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When choosing between investments, ask yourself, “where is my dollar going to work the hardest?” &lt;a href=&quot;https://twitter.com/naval/status/1448793817256062990&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I have this theory that 99% of work that you do is useless. You still have to do it because it&#39;s iterating your way to the 1% that is useful. But, in an ideal world, if you are omniscient, you would just cut to the 1%.&amp;quot; - @naval&lt;/p&gt;
&lt;p&gt;Listen:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/swcNaAyYre&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/swcNaAyYre&lt;/a&gt; &lt;a href=&quot;https://twitter.com/NavalPodClips/status/1449102783106387968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalPodClips&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Outsource everything except being. &lt;a href=&quot;https://twitter.com/naval/status/1449465955873013762&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Biggest challenge with rolling out a second product:&lt;/p&gt;
&lt;p&gt;Sales will sell whatever is easiest to sell&lt;/p&gt;
&lt;p&gt;A second product needs a second sales team maybe even from Day 01 &lt;a href=&quot;https://twitter.com/jasonlk/status/1449531015597203456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Traits I like in people:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;clarity of thinking&lt;/li&gt;
&lt;li&gt;bias for action&lt;/li&gt;
&lt;li&gt;brevity&lt;/li&gt;
&lt;li&gt;continuous improvement and learning &lt;a href=&quot;https://twitter.com/m_franceschetti/status/1449910261746372610&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;m_franceschetti&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/a0F22R5Hv7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/a0F22R5Hv7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/elonmusk/status/1450435645655195649&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Spend the best hours of your day on the biggest opportunity, not the biggest problem. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1450440783513985034&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Devote the rest of your life to making progress.&amp;quot; Epictetus &lt;a href=&quot;https://twitter.com/dailystoic/status/1450824407530749958&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Neural networks really, truly learn. It&#39;s not a fancy trick.&lt;/p&gt;
&lt;p&gt;This is one of the most remarkable things humans have ever figured out, and the implications are difficult to overstate. &lt;a href=&quot;https://twitter.com/sama/status/1450857134648823809&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@awilkinson Great thread.&lt;/p&gt;
&lt;p&gt;“It is not greed that drives the world,&lt;br /&gt;
but envy.” — Warren Buffett&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/9dkWQN1zKo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9dkWQN1zKo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PwnzAll/status/1451481681299378179&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PwnzAll&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startups need customers more than they need capital. Gentle reminder. &lt;a href=&quot;https://twitter.com/BeingPractical/status/1451586039399653382&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BeingPractical&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The only thing that will make you happy is choosing to be happy. &lt;a href=&quot;https://twitter.com/naval/status/1451732806170812419&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best marketing advice I&#39;ve ever had. &lt;a href=&quot;https://t.co/CU6JD0idCv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CU6JD0idCv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/george__mack/status/1452285137975234560&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don&#39;t treat my calendar as a blank surface to pile events onto. I think of it as a ledger of how many times I&#39;ve traded my time away. &lt;a href=&quot;https://twitter.com/Julian/status/1452404318942892035&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Julian&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s really hard to scale a startup if you as CEO have zero time to just plan and think about what’s coming next. &lt;a href=&quot;https://twitter.com/agazdecki/status/1453709617406431239&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you aren’t sure how to get to $100m ARR, just get to $1m ARR&lt;/p&gt;
&lt;p&gt;Then just ask your customers&lt;/p&gt;
&lt;p&gt;They will basically tell you &lt;a href=&quot;https://twitter.com/jasonlk/status/1453802766313275393&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Is this a good or a bad thing?&lt;/p&gt;
&lt;p&gt;Like anything, it&#39;s neither good nor bad. It&#39;s just a thing.&lt;/p&gt;
&lt;p&gt;A very different thing. &lt;a href=&quot;https://twitter.com/ShaanVP/status/1454151253370433536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ShaanVP&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;See things as they are, not as you want them to be. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1454290014666428419&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My grandkids will never believe 50 years from now that:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Humans drove cars themselves and risked their life every time&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Humans spent 10 hours looking at a   tiny phone screen&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Humans went to work from 9 to 5&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Humans ate dead animals &lt;a href=&quot;https://twitter.com/nasdaily/status/1454469016777629697&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nasdaily&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The menu is not the meal.&amp;quot; — Alan Watts &lt;a href=&quot;https://t.co/IzXHhIDega&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IzXHhIDega&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1454471898969038857&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Value your time. It is all you have. It’s more important than your money. It’s more important than your friends. It is more important than anything. Your time is all you have. Do not waste your time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1454878338133147649&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are 2 types of startup teams.&lt;/p&gt;
&lt;p&gt;One which sucks founders time for current issues (which may be due to decisions of past).&lt;/p&gt;
&lt;p&gt;Another which frees up founders time from current issues and let them move freely into building the future without worrying about the present. &lt;a href=&quot;https://twitter.com/kunalb11/status/1455080719269650439&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When the number of employees grows faster than users, customers, and revenues in a startup/business.&lt;br /&gt;
🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩 &lt;a href=&quot;https://twitter.com/anushka_twt/status/1455857367799644161&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anushka_twt&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to be wealthy, spend your time earning, learning, or relaxing. Outsource or ignore everything else. &lt;a href=&quot;https://twitter.com/naval/status/1456132468755484674&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The toughest hole to pull yourself out of isn&#39;t slow growth&lt;/p&gt;
&lt;p&gt;It&#39;s not even almost running out of money&lt;br /&gt;
Or losing a top customer&lt;br /&gt;
Or even losing a cofounder&lt;/p&gt;
&lt;p&gt;No, the toughest hole is getting too tired&lt;/p&gt;
&lt;p&gt;And the only solution is making a great hire to help&lt;/p&gt;
&lt;p&gt;Go find her &lt;a href=&quot;https://twitter.com/jasonlk/status/1456295511435079681&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;13 Copywriting Tips From Apple 🧵 &lt;a href=&quot;https://twitter.com/alexgarcia_atx/status/1456426053140811779&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;alexgarcia_atx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What is the smallest change a person can make to their everyday routine to extend healthy lifespan?&lt;/p&gt;
&lt;p&gt;REMOVE SUGAR FROM YOUR DIET &lt;a href=&quot;https://twitter.com/PeterDiamandis/status/1456694735138082822&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PeterDiamandis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you don&#39;t love talking to customers&lt;/p&gt;
&lt;p&gt;Ideally 10+ a week&lt;/p&gt;
&lt;p&gt;Then stick to self-serve&lt;/p&gt;
&lt;p&gt;You gotta love talking to customers, even at at $2k+ ACV &lt;a href=&quot;https://twitter.com/jasonlk/status/1456723242375319553&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nothing beats an effective referral program.&lt;/p&gt;
&lt;p&gt;Dropbox used one to grow their userbase by 3900% in 15 months.&lt;/p&gt;
&lt;p&gt;And I&#39;m going to show you how.&lt;/p&gt;
&lt;p&gt;Here are 7 referral programs you can use 🧵 &lt;a href=&quot;https://twitter.com/alexgarcia_atx/status/1457010082726694915&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;alexgarcia_atx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Customers have all the answers you need for your startup. Please speak with some today. &lt;a href=&quot;https://twitter.com/agazdecki/status/1457693033651007492&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Become the best in the world at what you do. Keep redefining what you do until this is true.” — @naval &lt;a href=&quot;https://t.co/15vtoQBvbP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/15vtoQBvbP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/OzolinsJanis/status/1457724661760942083&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;OzolinsJanis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’re 60-70% sure about a decision at your startup just make the call and move on. Speed wins. &lt;a href=&quot;https://twitter.com/agazdecki/status/1457851990923304963&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7 threads to help you win others to your way of thinking - through clear writing and compelling storytelling: &lt;a href=&quot;https://twitter.com/dickiebush/status/1458084209222983695&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Have you ever noticed that the most argumentative people rarely persuade anyone of anything?&lt;/p&gt;
&lt;p&gt;The most persuasive people don’t argue more—they observe, listen, and ask questions.&lt;/p&gt;
&lt;p&gt;Persuasion is an art that requires a paintbrush, not a sledgehammer. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1458120122502103046&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most important question is not “How do I get what I want?” - it’s “What do I want?” &lt;a href=&quot;https://twitter.com/naval/status/1458370013430095878&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Waste no more time arguing what a good man should be. Be one.&amp;quot; - Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1458476293914308617&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Meanwhile, Divante reports the end of Q3 with a cumulative result of 56m PLN ($14m) of revenue and nearly 12m PLN ($3m) of EBITDA (YoY  70%+).&lt;/p&gt;
&lt;p&gt;I am very happy because it means that we have built a company that not only works without founders, but also grows dynamically. &lt;a href=&quot;https://twitter.com/tomik99/status/1458533695162302482&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;After working on my startups all day, I like to wind down by working on my startups all evening. &lt;a href=&quot;https://twitter.com/dr/status/1458729408118726658&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Our best work is the work we find ourselves doing, when there is no obligation to do so. &lt;a href=&quot;https://twitter.com/naval/status/1458861895977365506&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Diet is about discipline.&lt;/p&gt;
&lt;p&gt;Meditation is about observation.&lt;/p&gt;
&lt;p&gt;Exercise is about consistency. &lt;a href=&quot;https://twitter.com/justinkan/status/1459246764003713024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Only the best can really take constructive feedback&lt;/p&gt;
&lt;p&gt;Everyone else just wants to be told they are doing well &lt;a href=&quot;https://twitter.com/jasonlk/status/1459372100603441156&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The time difference between 2021 and 1980 is the same as between 1980 and 1929&lt;/p&gt;
&lt;p&gt;Let that sink in &lt;a href=&quot;https://twitter.com/natbaker/status/1459924332361273357&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;natbaker&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;6 questions to ask with everything you write:&lt;/p&gt;
&lt;p&gt;• What problem am I solving?&lt;br /&gt;
• Whose problem am I solving?&lt;br /&gt;
• What are the benefits of solving it?&lt;br /&gt;
• What promise am I making to the reader?&lt;br /&gt;
• What emotion am I trying to generate?&lt;br /&gt;
• What&#39;s the next action my reader should take? &lt;a href=&quot;https://twitter.com/dickiebush/status/1460611287755497478&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;CEOs after $1m ARR that say that don&#39;t have product-market fit more often just can&#39;t build good software fast enough &lt;a href=&quot;https://twitter.com/jasonlk/status/1460647922345730056&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clear writing is the single most important skill in business. &lt;a href=&quot;https://twitter.com/nathanbarry/status/1460696567287980032&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nathanbarry&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Aspire to move past room-mates, commutes, alarm clocks, and calendars. &lt;a href=&quot;https://twitter.com/naval/status/1460824972050329603&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mathematician Richard Hamming used to sit down with experts from other fields, cut the small talk, and ask two questions:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;What&#39;s the most important problem in your field?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why aren&#39;t you working on it?&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;And this was offputting to many colleagues.&lt;/p&gt;
&lt;p&gt;Here&#39;s why: &lt;a href=&quot;https://t.co/nkHpB7kgI4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nkHpB7kgI4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dickiebush/status/1460979796134014982&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For people who are actually investing a large % of their own capital -- what do you consider the current best hedges/investments against inflation? Please only reply if you have at least 10-20% of your net worth in your answer. Thanks! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#convictioncheck&quot;&gt;#convictioncheck&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tferriss/status/1461420883915034636&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When your happiness is tied to something in the future, then your present is diminished. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1461937394718965761&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I never understand anything until I have written about it.&amp;quot;&lt;/p&gt;
&lt;p&gt;– Horace Walpole &lt;a href=&quot;https://twitter.com/paulg/status/1462064919491325957&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Physics is so Cool &lt;a href=&quot;https://t.co/jLphYFdYZf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jLphYFdYZf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/amazing_physics/status/1462163961311371270&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amazing_physics&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The hardest part of all of this isn&#39;t shipping code&lt;/p&gt;
&lt;p&gt;Or winning the deal&lt;/p&gt;
&lt;p&gt;Or raising capital&lt;/p&gt;
&lt;p&gt;It&#39;s getting really, really good at recruiting &lt;a href=&quot;https://twitter.com/jasonlk/status/1462178816952987648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;People who live far below their means enjoy a freedom that people busy upgrading their lifestyles can’t fathom.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1462673701464264704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The hardest thing to do is to find product-market fit. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1462861509097254914&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Spend your time with people who give you energy, not those who take it. &lt;a href=&quot;https://twitter.com/justinkan/status/1462902511384207360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Breaking news: Successful startup has intense work environment. Is not for everyone. &lt;a href=&quot;https://twitter.com/asanwal/status/1462981563495428096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asanwal&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7 questions for better thinking&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Is that a fact or my opinion?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What is my % confidence on this?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What do I care about most?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How might another person view this?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Is it truly a binary choice?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What would I do if I weren&#39;t afraid?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Am I deciding or justifying? &lt;a href=&quot;https://twitter.com/shreyas/status/1463383248466178051&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The only real test of intelligence is if you get what you want out of life.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1463546704108556292&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Table lists, menu bars, and data displays don&#39;t always have to follow the default UI pattern.&lt;/p&gt;
&lt;p&gt;Breaking free and going beyond them can give you a much richer UX. &lt;a href=&quot;https://t.co/2TH4n0enlV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2TH4n0enlV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/uxmovement/status/1463579158844526595&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;uxmovement&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re wondering how to design your startup&#39;s product so that everyone will want it in 10 years, just do whatever would make your friends want it this week. Otherwise your company won&#39;t exist in 10 years anyway. &lt;a href=&quot;https://twitter.com/paulg/status/1463836343256203266&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The reason to win the game is so that you can be free of it.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1463877638351556614&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It is easy to feel trapped by your ‘Zone of Competence’: things you are good at doing, but do not love.&lt;/p&gt;
&lt;p&gt;I spent 15 years doing that.&lt;/p&gt;
&lt;p&gt;To truly find meaning in your work, focus on your ‘Zone of Genius’ instead: &lt;a href=&quot;https://twitter.com/justinkan/status/1464002404953821197&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justinkan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Do it in small pieces and talk to each other&amp;quot;&lt;/p&gt;
&lt;p&gt;That&#39;s pretty much what Agile is. It&#39;s not complicated. &lt;a href=&quot;https://twitter.com/allenholub/status/1464029161161469957&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best people do a good job because they have an internal sense of excellence, not because of a misplaced notion of accountability. &lt;a href=&quot;https://twitter.com/allenholub/status/1464488802961870850&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My life changed upon realizing this. &lt;a href=&quot;https://t.co/P8cxdHIhHM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/P8cxdHIhHM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jsmian/status/1464557855768469506&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jsmian&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Upgrade your brain with The Beginning of Infinity and The Fabric of Reality.&lt;/p&gt;
&lt;p&gt;Listen to @ToKTeacher podcasts alongside. &lt;a href=&quot;https://twitter.com/naval/status/1464711456499269632&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When building a portfolio of investments that can have non-linear outcomes, never sell early.&lt;/p&gt;
&lt;p&gt;You may be right most of the time, but the one time you’re wrong will cost you most of the returns. &lt;a href=&quot;https://twitter.com/naval/status/1464788767953154058&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The world is going to move faster and faster from here on.&lt;/p&gt;
&lt;p&gt;People and institutions who embrace this will be richly rewarded.&lt;/p&gt;
&lt;p&gt;People and institutions who do not or cannot are going to be challenged.&lt;/p&gt;
&lt;p&gt;Adaptability and speed have gone from valuable to critical. &lt;a href=&quot;https://twitter.com/sama/status/1465027161849413637&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In 3 generations you will be forgotten.&lt;/p&gt;
&lt;p&gt;Live a happy, peaceful life. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1465460589023711234&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Outsource everything except being.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1465625652451762177&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How old are you?&lt;br /&gt;
Me: &lt;a href=&quot;https://t.co/U8goFKkqpo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/U8goFKkqpo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nerds_feed/status/1465721519988948992&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nerds_feed&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Decisions:• If you can’t decide, the answer is no.• If two equally difficult paths, choose the one more painful in the short term (pain avoidance is creating an illusion of equality).• Choose the path that leaves you more equanimous in the long term.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1467222272943529991&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One reason to meditate is to prove to yourself how little you actually need out of life. &lt;a href=&quot;https://twitter.com/naval/status/1467295305976721409&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My reading list for the next year 😊.&lt;/p&gt;
&lt;p&gt;Learning from people I admire in the online world.&lt;/p&gt;
&lt;p&gt;@Nicolascole77 @shl &lt;a href=&quot;https://t.co/kgn4Bhjepd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/kgn4Bhjepd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jerinenicole/status/1467588732454899729&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jerinenicole&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A common trait in all those who succeed repeatedly in startups, standup comedy, investing, products, marketing is extraordinary ability to distill insights.&lt;/p&gt;
&lt;p&gt;Without the ability to hunt insights, you either become an one trick pony or just a hyper experimenting monkey. &lt;a href=&quot;https://twitter.com/kunalb11/status/1467603456739274754&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;4/ Algorithms to Live By - by Brian Christian and Tom Griffiths&lt;/p&gt;
&lt;p&gt;How long should it take you to make a decision? 37%.&lt;/p&gt;
&lt;p&gt;As in, 37% of the total time you&#39;re willing to spend on it.&lt;/p&gt;
&lt;p&gt;@brianchristian and Griffiths explain how our minds are more robotic than we think. &lt;a href=&quot;https://twitter.com/amandanat/status/1467884545357664258&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amandanat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@amandanat One book that has had a deep impact on me is &amp;quot;Autobiography of a Yogi&amp;quot;.&lt;/p&gt;
&lt;p&gt;Don&#39;t need to be a spiritual or a religious person to understand its meaning and impact. &lt;a href=&quot;https://twitter.com/spk100/status/1467901616476938251&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;spk100&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why VCs give you money:&lt;/p&gt;
&lt;p&gt;Pre-seed:  prove it out&lt;/p&gt;
&lt;p&gt;Seed: get the engine going&lt;/p&gt;
&lt;p&gt;Series A, B, C, D: hire an A+ management team &lt;a href=&quot;https://twitter.com/jasonlk/status/1468254908059058176&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1/ Here is probably the single most important concept you can learn for doing well in your career, business, and life:&lt;/p&gt;
&lt;p&gt;The Principal-Agent Problem.&lt;/p&gt;
&lt;p&gt;Today, let&#39;s understand what this problem is all about and why @naval considers it his most useful mental model 👇 &lt;a href=&quot;https://t.co/ZZ0kML9S2Z&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZZ0kML9S2Z&lt;/a&gt; &lt;a href=&quot;https://twitter.com/StoaHQ/status/1468578929359220736&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StoaHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to start a startup and don&#39;t know what to build, one way to get ideas is to ask if there&#39;s something you could create that would help your peers to make money. Any startup that helps people make money tends to (a) be popular and (b) make money itself. &lt;a href=&quot;https://twitter.com/paulg/status/1468973538954518530&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Solving customer problems feels better than sex, working out, and seeing your first born child – combined &lt;a href=&quot;https://twitter.com/TrevMcKendrick/status/1469736185132052481&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TrevMcKendrick&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UX Designers, want a shortcut to understanding your users?&lt;br /&gt;
Work customer support or the help desk for a few months. You will learn about all the things they expect to do with your product and how they think and react when they are unable to do them. Priceless insight. &lt;a href=&quot;https://twitter.com/LizTheWhizard/status/1469762241054461959&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LizTheWhizard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You really can only focus on 1-3 core things&lt;/p&gt;
&lt;p&gt;The biggest problem with mediocre hires is they force you to spend so much time on 4-400 &lt;a href=&quot;https://twitter.com/jasonlk/status/1470202367958130688&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you ever need to delegate a task, do this:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Outline the vision.&lt;/li&gt;
&lt;li&gt;Share resources.&lt;/li&gt;
&lt;li&gt;Describe your definition of done. &lt;a href=&quot;https://t.co/0x0MrIhjOt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0x0MrIhjOt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/david_perell/status/1470393340906688514&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You’re going to die one day, and none of this is going to matter. So enjoy yourself. Do something positive. Project some love. Make someone happy. Laugh a little bit. Appreciate the moment. And do your work.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1471127656762511364&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Watch out for people who argue against something whenever they can find something—anything—wrong with it, without properly weighing all the pluses and minuses. Such people tend to be poor decision makers. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/7T5AincutL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7T5AincutL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1472309596505010178&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Divante is joining forces with Cloudflight.&lt;br /&gt;
The transaction amount with the full earn-out is 260m pln (63m USD).&lt;br /&gt;
&lt;a href=&quot;https://t.co/GDk2wZupaH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GDk2wZupaH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tomik99/status/1472851734011777026&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;My 1 repeated learning in life: &#39;There Are No Adults&#39; Everyone&#39;s making it up as they go along. Figure it out yourself, and do it.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1473020508899794944&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Last week&#39;s 📰&lt;br /&gt;
@loom 3 ways to use async to get $10B&lt;br /&gt;
@fridayhq a wiki shouldn&#39;t be the home for your company&lt;br /&gt;
@workplaceless can remote teams be creative?&lt;br /&gt;
@timecamp how to manage flextime&lt;/p&gt;
&lt;p&gt;@DropboxDesign w/ @nomade_moiselle on the Remote First Podcast🔥&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/5IPOnjctCy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5IPOnjctCy&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GrowrkRemote/status/1473020605809180672&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GrowrkRemote&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/5JPvBUwDwc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5JPvBUwDwc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jackbutcher/status/1473302322101071876&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackbutcher&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Separate your &amp;quot;must-dos&amp;quot; from your &amp;quot;like-to-dos&amp;quot; and don&#39;t mistakenly slip any &amp;quot;like-to-dos&amp;quot; onto the first list. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/PjJNb8FUN5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PjJNb8FUN5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1473339268181413889&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to build a $10,000/mo SaaS in a saturated market (by changing one of these 5 things): &lt;a href=&quot;https://twitter.com/iamwillcannon/status/1473672711444611073&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iamwillcannon&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/laeGmHuU52&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/laeGmHuU52&lt;/a&gt; &lt;a href=&quot;https://twitter.com/_anshulkhare/status/1473709445653962753&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;_anshulkhare&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“The five most dangerous words in business are: Everybody else is doing it.”&lt;/p&gt;
&lt;p&gt;— Warren Buffett &lt;a href=&quot;https://twitter.com/shaneparrish/status/1473984631842168832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Path Not Taken&lt;/p&gt;
&lt;p&gt;Obsess over the past and you forget to invent your own future.&lt;/p&gt;
&lt;p&gt;h/t @waitbutwhy &lt;a href=&quot;https://t.co/crazuIR6T4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/crazuIR6T4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/chrishlad/status/1475118788349595654&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;chrishlad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“People fall so in love with their pain, they can’t leave it behind. The same as the stories they tell. We trap ourselves.” — Chuck Palahniuk &lt;a href=&quot;https://twitter.com/tferriss/status/1475157547166355461&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Being poor is not having too little, it is wanting more.&amp;quot; Seneca &lt;a href=&quot;https://twitter.com/dailystoic/status/1475557392364584960&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“I train my brain to perform one task incredibly well.&lt;/p&gt;
&lt;p&gt;One task alone... to never conform.”&lt;/p&gt;
&lt;p&gt;Here&#39;s how he explained it: &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1475831216234541063&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Funnel to Nonconformity:&lt;/p&gt;
&lt;p&gt;+Become a funnel for ideas&lt;br /&gt;
+Let ideas fight based on merit, not emotion&lt;br /&gt;
+Find courage to act in nonconformity&lt;br /&gt;
= Opportunities others never see, or are too scared to act upon&lt;/p&gt;
&lt;p&gt;An uncrowded market leads to outsized returns in life, and wealth. &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1475831218604285959&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#8&quot;&gt;#8&lt;/a&gt; Numbers &amp;gt; Narrative&lt;/p&gt;
&lt;p&gt;Anytime something is common practice, check if it’s common sense.&lt;/p&gt;
&lt;p&gt;Return to the very first principle there is: 1+1 = 2.&lt;/p&gt;
&lt;p&gt;Numbers are often terrible liars. &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1475831237206069252&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you ask customers to switch from an existing vendor to you …&lt;/p&gt;
&lt;p&gt;Do you offer to do ALL the work?&lt;/p&gt;
&lt;p&gt;The migration?&lt;br /&gt;
The implementation?&lt;br /&gt;
The integrations?&lt;br /&gt;
The data mapping?&lt;/p&gt;
&lt;p&gt;If not, imagine all the friction you could remove if you did &lt;a href=&quot;https://twitter.com/jasonlk/status/1476593636552765440&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hierarchy. &lt;a href=&quot;https://t.co/nzdvUMzSHw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nzdvUMzSHw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1476900412921942016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sound advice from @neilhimself via @Join1440: &lt;a href=&quot;https://t.co/pIbrWM2fBu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pIbrWM2fBu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1476945860441346062&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Today is day 1 to start this: &lt;a href=&quot;https://t.co/n57VOE5Tgr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/n57VOE5Tgr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Suhail/status/1477377059567865856&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t just write a &amp;quot;To Do&amp;quot; list. Write a &amp;quot;To Be&amp;quot; list. &lt;a href=&quot;https://twitter.com/wealth_director/status/1478969579120431104&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wealth_director&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@HarryStebbings Case and point.&lt;br /&gt;
&lt;a href=&quot;https://t.co/xjkdqlHnmT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xjkdqlHnmT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lzrscg/status/1479233360044167168&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lzrscg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Whether you’re a small startup or large company, the rate of decisions you can make that turn into value for customers is one of the most important drivers of success. Always good to reduce the number of dependencies to getting those decisions made. &lt;a href=&quot;https://twitter.com/levie/status/1479308074615668737&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Five Feynman rules for Life: 🧠&lt;/p&gt;
&lt;p&gt;i) Take mistakes as Lessons.&lt;br /&gt;
ii) Focus is the key.&lt;br /&gt;
iii) Study hard what interests you the most.&lt;br /&gt;
iv) Don&#39;t worry about what other people think.&lt;br /&gt;
v) Skills are more valuable than your grades. &lt;a href=&quot;https://twitter.com/ProfFeynman/status/1479335686389989381&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ProfFeynman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the modern world, don’t minimize your risks - maximize your opportunities &lt;a href=&quot;https://twitter.com/naval/status/1480061554917724161&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A reminder that Mailchimp, the worst email provider ever, is worth $12 billion.&lt;/p&gt;
&lt;p&gt;You don&#39;t have to be the best to win. &lt;a href=&quot;https://twitter.com/iamwillcannon/status/1480258586634764290&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iamwillcannon&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Reading is more efficient when at rest. Audio is more efficient when in motion.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1480268299200040961&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Listening to books instead of reading them is like drinking your vegetables instead of eating them.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1480342626645659648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You only have time for what matters if you say no to what doesn&#39;t. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1480521052551716866&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you don’t care to be liked, they can’t touch you.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1480859280840347650&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Seven ways to differentiate your product:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Be the cheapest&lt;/li&gt;
&lt;li&gt;Be the highest quality&lt;/li&gt;
&lt;li&gt;Be the most convenient&lt;/li&gt;
&lt;li&gt;Be the safest&lt;/li&gt;
&lt;li&gt;Sell a proprietary product&lt;/li&gt;
&lt;li&gt;Sell something that makes people feel great buying&lt;/li&gt;
&lt;li&gt;Focus on a niche underserved market &lt;a href=&quot;https://t.co/9QNo6Qid3f&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9QNo6Qid3f&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lennysan/status/1480936690759864321&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A fast no is better than a long maybe &lt;a href=&quot;https://twitter.com/karanortman/status/1480952437364068354&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karanortman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Websites don&#39;t sell products.&lt;/p&gt;
&lt;p&gt;Words do.&lt;/p&gt;
&lt;p&gt;Nearly all companies undervalue copy when redesigning their websites. &lt;a href=&quot;https://twitter.com/searchbrat/status/1481277037994196994&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Copywriting tip: avoid friction phrases. Your marketing should explain what they’ll get, not what they have to do: &lt;a href=&quot;https://t.co/63S3XGscVc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/63S3XGscVc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jmoserr/status/1481651511578923019&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jmoserr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;VC expectations at $100m ARR:&lt;/p&gt;
&lt;p&gt;2012:  30%+ growth&lt;br /&gt;
2016:  50%+ growth&lt;br /&gt;
2022:  100%+ growth &lt;a href=&quot;https://twitter.com/jasonlk/status/1481703923232608257&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don’t believe in a/b testing in startups&lt;/p&gt;
&lt;p&gt;It’s a crutch for product teams, it excuses incomplete &amp;amp; poor thinking, and it takes all pressure off developing good judgment and customer intuition.&lt;/p&gt;
&lt;p&gt;Fine if you have millions of users, not when you need to put zeros on the dashboard. &lt;a href=&quot;https://twitter.com/justindross/status/1481709844159733764&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;justindross&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@justindross “At Apple, we we never staged any A/ B tests for any of the software on the iPhone. When it came to choosing a color, we picked one. We used our good taste—and our knowledge of how to make software accessible to people with visual difficulties —and we moved on.”&lt;br /&gt;
@kocienda &lt;a href=&quot;https://twitter.com/lakhan_dhingra/status/1481717755665854466&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lakhan_dhingra&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@justindross But the company only has 8mo of runway and needs to improve by 2x, 3x, not 20%.&lt;/p&gt;
&lt;p&gt;They run themselves into the ground and roll their eyes at ppl who tell them they need to take bigger swings. &lt;a href=&quot;https://twitter.com/Brady_The_Flynn/status/1481725324333228033&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Brady_The_Flynn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best SaaS companies just move faster&lt;/p&gt;
&lt;p&gt;It gets done this quarter&lt;/p&gt;
&lt;p&gt;The feature gets rolled out now, not late in the year&lt;/p&gt;
&lt;p&gt;The hires get made this quarter.  All of them.&lt;/p&gt;
&lt;p&gt;This compounds at an epic rate &lt;a href=&quot;https://twitter.com/jasonlk/status/1481734799874138112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@patrick_oshag Besides Scratch &amp;amp; code org, my kids (8 &amp;amp;10) loved Ted-Ed&#39;s &amp;quot;Think Like a Coder&amp;quot; 13-episode mini series on YouTube. Great to get them excited about the coding world, with a story format they relate to. Powerful women coder-Hero storyline wins parent&#39;s hearts too :) &lt;a href=&quot;https://twitter.com/_rpSrivastava/status/1482361216052109313&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;_rpSrivastava&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@patrick_oshag Just got this Marble Run from National Geographic. Simple physics explainers, infinite possibilities. &lt;a href=&quot;https://t.co/P7E8r4ps5H&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/P7E8r4ps5H&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RampCapitalLLC/status/1482374898869800962&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RampCapitalLLC&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@RampCapitalLLC @patrick_oshag Get a perplexus. My 11 yo always seems to be working on it and when he puts it down the 13 or 16 yo frequently pick it up and play with it too &lt;a href=&quot;https://t.co/IBp3YaZ2lE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IBp3YaZ2lE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dds_dave/status/1482379950304858113&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dds_dave&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Equipping kids with statements isn’t as powerful as equipping them with stories. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1482402151615787009&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Code review does not work (and asynchronous code review is particularly bad). As Deming said: &amp;quot;You can not inspect quality into a product.&amp;quot; NO form of code &lt;em&gt;review&lt;/em&gt; yields quality. Collaborative programming that assures that the defects don’t exist to begin with does. &lt;a href=&quot;https://twitter.com/allenholub/status/1482564778149175298&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;allenholub&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You get rewarded for unique knowledge, not for effort.&lt;/p&gt;
&lt;p&gt;Effort is required to create unique knowledge.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1482590186148089858&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People are complicated.&lt;/p&gt;
&lt;p&gt;Leading them isn&#39;t.&lt;/p&gt;
&lt;p&gt;A simple plan for leading well: 🧵 &lt;a href=&quot;https://twitter.com/wdmorrisjr/status/1482718036758917122&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wdmorrisjr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clear Expectations&lt;/p&gt;
&lt;p&gt;People want to do a good job.&lt;/p&gt;
&lt;p&gt;Sure, some don&#39;t. There are bad apples.&lt;/p&gt;
&lt;p&gt;Most people, though, derive satisfaction from a job well done.&lt;/p&gt;
&lt;p&gt;A leader&#39;s role:&lt;/p&gt;
&lt;p&gt;Tell them what a good job looks like. &lt;a href=&quot;https://twitter.com/wdmorrisjr/status/1482718038994522112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wdmorrisjr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;99% of people blame&lt;br /&gt;
1% of people fix &lt;a href=&quot;https://twitter.com/ryanbreslow/status/1482731872488759298&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ryanbreslow&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@allenholub I prefer pair/mob programming over reviews any day. Especially when there is quite the gap between developer’s skillset. Too much context switching from your own work to go back ‘n forth for simple change requests. Just do it together.#BuddySystem &lt;a href=&quot;https://twitter.com/618_developer/status/1482741381638590467&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;618_developer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;All self-help boils down to &amp;quot;choose long-term over short-term.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1482802334002552832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;99% of meetings are a waste of time.&lt;/p&gt;
&lt;p&gt;Here’s a framework I learned to make sure your meetings stay efficient:&lt;/p&gt;
&lt;p&gt;POST&lt;/p&gt;
&lt;p&gt;Purpose&lt;br /&gt;
Outcome&lt;br /&gt;
Structure&lt;br /&gt;
Timing&lt;/p&gt;
&lt;p&gt;Outline POST in every calendar invite and your meetings will shrink from 60 min to 25 min, or 30 min to 12 min. &lt;a href=&quot;https://twitter.com/mrsharma/status/1484365825234518016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mrsharma&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I learned my lesson: a leader’s job is first and foremost to create clarity on the problems to be solved. 17/18 &lt;a href=&quot;https://twitter.com/reinpk/status/1485608432069750785&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;reinpk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A lot of folks that look like they are in third place in a market, fourth place&lt;/p&gt;
&lt;p&gt;Are really first place in one key segment of the market&lt;/p&gt;
&lt;p&gt;Today, in Cloud, in SaaS, that can easily get you to $100m ARR and beyond &lt;a href=&quot;https://twitter.com/jasonlk/status/1486058226030317572&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you can&#39;t decide, the answer is No.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1486648930481975301&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol&gt;
&lt;li&gt;Slouching.&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Slouching and allowing your body to fold in on itself makes you appear weak and unenergetic.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It makes a terrible impression.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;FIX:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Straight posture will help you appear capable, confident, and energized. &lt;a href=&quot;https://twitter.com/UpSkillYourLife/status/1487057115961192463&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;UpSkillYourLife&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;Feet pointing away.&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;Feet pointing towards the door or other direction apart from the person you are talking to indicate you are looking forward to leaving.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;FIX:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make sure you are pointing your feet towards the person you are talking to. &lt;a href=&quot;https://twitter.com/UpSkillYourLife/status/1487057120537165824&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;UpSkillYourLife&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@lexfridman And 99% of emails could be replaced with doing some actual work. &lt;a href=&quot;https://twitter.com/hubermanlab/status/1487100823729434628&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hubermanlab&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’m this old. &lt;a href=&quot;https://t.co/uTQpvpTSBb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/uTQpvpTSBb&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paraschopra/status/1487840295932731397&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paraschopra&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I have been writing online for 10 years.&lt;/p&gt;
&lt;p&gt;In that time, I have gone viral more times than I can count.&lt;/p&gt;
&lt;p&gt;And accumulated 250,000,000+ views.&lt;/p&gt;
&lt;p&gt;These are the 5 rules I live by—to write things that reach the masses: &lt;a href=&quot;https://twitter.com/Nicolascole77/status/1488213735718068224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Nicolascole77&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bad questions to ask:&lt;/p&gt;
&lt;p&gt;• Which app should I use?&lt;br /&gt;
• What time of day should I post?&lt;br /&gt;
• What platforms should I publish on?&lt;/p&gt;
&lt;p&gt;Good questions to ask:&lt;/p&gt;
&lt;p&gt;• What problem am I solving?&lt;br /&gt;
• Whose problem am I solving?&lt;br /&gt;
• What benefits am I unlocking?&lt;/p&gt;
&lt;p&gt;Fewer tactics, more strategy. &lt;a href=&quot;https://twitter.com/dickiebush/status/1488876225603031042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Wordle is the ultimate, light-weight team game each morning for remote companies. &lt;a href=&quot;https://twitter.com/Suhail/status/1488915779722514435&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We teach people how to treat us by what we accept, not what we say. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1488936860663570436&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you want to make the wrong decision, ask everyone.&amp;quot; – @naval &lt;a href=&quot;https://t.co/MDcMMsDlj5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MDcMMsDlj5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1489638209365630980&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Three Times Wiser&amp;quot; is a newsletter about big ideas, mental models, brain bugs, and principles of wise thinking.&lt;/p&gt;
&lt;p&gt;This thread will be updated on a daily basis.&lt;/p&gt;
&lt;p&gt;Subscribe here for more insights and never miss an update:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/4hszY93cLq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4hszY93cLq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1490284875550703618&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Instead of tracking every available metric, pick 3-7 that are the most relevant to your business’ success and focus on those. That will help your team know what’s essential and cultivate a culture of growth. &lt;a href=&quot;https://twitter.com/ThomasSmale/status/1491125109070958594&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ThomasSmale&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“A project’s success is determined by the team’s ability to generate and sustain momentum. A good way to generate early momentum in a project is to prioritize quick wins and explorations that tighten the feedback loop.” &lt;a href=&quot;https://t.co/ULW2D7BtdH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ULW2D7BtdH&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Via @evanm &lt;a href=&quot;https://twitter.com/TaylorPearsonMe/status/1491125433676570625&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TaylorPearsonMe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The first demo for a new project does not need to be right—it very rarely will be. However, it should be clear and express a point of view. &lt;a href=&quot;https://twitter.com/kocienda/status/1491145466024640512&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kocienda&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Having kids is one of the best ways to gain happiness and motivation at once&lt;/p&gt;
&lt;p&gt;Working out is a close &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#2&quot;&gt;#2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jspujji/status/1493680513273393152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Decide what you want from your business and go get it. &lt;a href=&quot;https://twitter.com/ThomasSmale/status/1494039916006805505&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ThomasSmale&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I think I’ve done 2,000 interviews. I&#39;ve seen things.&lt;/p&gt;
&lt;p&gt;AMA &lt;a href=&quot;https://twitter.com/Suhail/status/1494150182392385536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@gavin_gee If you were CEO of your prior company, what would you have done differently? &lt;a href=&quot;https://twitter.com/Suhail/status/1494154395121975299&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every startup founder should read this insightful thread from Suhail about how to do interviews. And frankly every applicant should too; if you&#39;re good, Mighty is the kind of place you want to work, and most of his tips for interviewers are also implicit tips for interviewees. &lt;a href=&quot;https://twitter.com/paulg/status/1494346308168994820&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What’s the key to going viral?&lt;/p&gt;
&lt;p&gt;Create a “holy shit” moment for the consumer.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;“Holy shit” that’s crazy&lt;/li&gt;
&lt;li&gt;“Holy shit” that’s expensive&lt;/li&gt;
&lt;li&gt;“Holy shit” that’s moving&lt;/li&gt;
&lt;li&gt;“Holy shit” that’s hilarious&lt;/li&gt;
&lt;li&gt;“Holy shit” that’s unexpected &lt;a href=&quot;https://twitter.com/businessbarista/status/1495197992206450688&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;businessbarista&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Kanye West documentary is excellent. If you&#39;re a founder, it&#39;ll hit you right in the chest.&lt;/p&gt;
&lt;p&gt;Made me want to work even harder. &lt;a href=&quot;https://twitter.com/Suhail/status/1495229344670572544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startups are a “get shit done” game not a “perfect plan strategy” game. &lt;a href=&quot;https://twitter.com/agazdecki/status/1495248986772422658&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;These devices could detect incoming calls before they actually happened.&lt;/p&gt;
&lt;p&gt;Remember this sound? 😊 &lt;a href=&quot;https://t.co/iaqQfqMptO&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iaqQfqMptO&lt;/a&gt; &lt;a href=&quot;https://twitter.com/vponamariov/status/1496435756310614021&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;vponamariov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most distant space probe, Voyager 1, was launched 44 years ago. It&#39;s now about 23 billion kilometers away. That&#39;s .0025 light years. That&#39;s how far a light year is. &lt;a href=&quot;https://twitter.com/paulg/status/1496447921386106882&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pretty doesn’t mean usable! &lt;a href=&quot;https://twitter.com/DenisJeliazkov/status/1496469905666756617&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DenisJeliazkov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs once said:&lt;/p&gt;
&lt;p&gt;&amp;quot;The most powerful person is the storyteller.&amp;quot;&lt;/p&gt;
&lt;p&gt;And luckily, storytelling is a skill.&lt;/p&gt;
&lt;p&gt;But most people have never tried to learn – because no one showed them where to start.&lt;/p&gt;
&lt;p&gt;So here are 6 of the best storytelling threads (so you can start learning today): &lt;a href=&quot;https://t.co/Fg4A88WCBS&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Fg4A88WCBS&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dickiebush/status/1496489759992127488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Something I taught 9 yo: Even if the stuff you&#39;re learning in your classes is just mindless memorization, it&#39;s still worth getting good grades, because good grades get you sorted with smarter people, and being around smart people is genuinely worthwhile. &lt;a href=&quot;https://twitter.com/paulg/status/1496545179662172163&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;But we&#39;re having quality time together...&amp;quot;&lt;/p&gt;
&lt;p&gt;— 9 yo trying to convince me to delay bedtime &lt;a href=&quot;https://twitter.com/paulg/status/1496992004697427971&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Almost everything will become a commodity.&lt;/p&gt;
&lt;p&gt;What won’t?&lt;/p&gt;
&lt;p&gt;Original ideas and trust &lt;a href=&quot;https://twitter.com/businessbarista/status/1497318142036615173&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;businessbarista&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pomyślałem że pojadę rano i kupie trochę sprzętu który może się przydać na Ukrainie. Jakież było moje zdziwienie gdy okazało się że kupowałem ostatnie sztuki karimat, peleryny przeciwdeszczowych, koców termicznych. Ekspedientki szukały po całym sklepie tych koców term. 😀🇺🇦🇵🇱 &lt;a href=&quot;https://t.co/5JYMgHPJO0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5JYMgHPJO0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tomekpopow/status/1497519284955725826&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomekpopow&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I devoured 50 years of Warren Buffett shareholder letters.&lt;/p&gt;
&lt;p&gt;The result?&lt;/p&gt;
&lt;p&gt;12 timeless principles from the greatest investor in the world.&lt;/p&gt;
&lt;p&gt;Here are the golden nuggets🧵 &lt;a href=&quot;https://twitter.com/chrishlad/status/1497948359763521542&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;chrishlad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can push your team to do what you want them to do&lt;/p&gt;
&lt;p&gt;Or you can let them run at what they are great at &lt;a href=&quot;https://twitter.com/jasonlk/status/1499455314655121427&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good and meaningfull lines thought of sharing.&lt;/p&gt;
&lt;p&gt;@warikoo &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#doEpicShit&quot;&gt;#doEpicShit&lt;/a&gt; &lt;a href=&quot;https://t.co/GSWRoAEsqw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GSWRoAEsqw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/pinu233/status/1499749912212230144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;pinu233&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Eat like a lion, work like a lion, feel like a lion, live like a lion. &lt;a href=&quot;https://twitter.com/naval/status/1500608982469079042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You do not find a happy life. You make it. &lt;a href=&quot;https://twitter.com/ProfFeynman/status/1500712255612420098&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ProfFeynman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You can also commit injustice by doing nothing.&amp;quot; Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1500833913232633856&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I used to think the hard part about product was knowing what to build.&lt;/p&gt;
&lt;p&gt;I was wrong.&lt;/p&gt;
&lt;p&gt;The hard part is boiling the answer down to something simple enough to drive action. &lt;a href=&quot;https://twitter.com/joulee/status/1500866743463387136&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;joulee&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Direct response marketing is all about&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Understanding customers’ needs&lt;/li&gt;
&lt;li&gt;Grabbing their attention&lt;/li&gt;
&lt;li&gt;Using psychology to sell &lt;a href=&quot;https://twitter.com/jspujji/status/1502015455858413570&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most serious problem facing any organization is the one that cannot be discussed. &lt;a href=&quot;https://twitter.com/pmarca/status/1502432636865691648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;pmarca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Other than coding, what’s the highest leverage skill?&lt;/p&gt;
&lt;p&gt;I say marketing &lt;a href=&quot;https://twitter.com/dtcprophet/status/1502683021278916615&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dtcprophet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Circle of Responsibility &lt;a href=&quot;https://t.co/uPnsSMMEw1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/uPnsSMMEw1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1502886544654409730&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What are the key traits of mediocre people at work? &lt;a href=&quot;https://twitter.com/kunalb11/status/1502900416337440771&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@kunalb11 It’s never their fault. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1502994644711485445&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want to DOUBLE your productivity this week?&lt;/p&gt;
&lt;p&gt;Try my SHORT Sunday ritual: &lt;a href=&quot;https://twitter.com/jspujji/status/1503060199531110401&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is the most interesting book I’ve read in many years &lt;a href=&quot;https://t.co/9546XWI2Pc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9546XWI2Pc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/patrick_oshag/status/1503060552188403716&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrick_oshag&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I have a new Sunday ritual: 1 hour walk with nothing but a small pocket notebook and pen.&lt;/p&gt;
&lt;p&gt;No phone&lt;br /&gt;
No music&lt;br /&gt;
No podcasts&lt;br /&gt;
No articles&lt;br /&gt;
No audiobooks&lt;/p&gt;
&lt;p&gt;I let my mind run free and write down any ideas or insights.&lt;/p&gt;
&lt;p&gt;A simple way to prime the mind for a creative, productive week ahead. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1503089560879829001&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sometimes, the simplest thing is the smartest thing to do.&lt;/p&gt;
&lt;p&gt;Like buying bitcoin.&lt;br /&gt;
Eating simple foods.&lt;br /&gt;
Saying no to bullshit requests. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1503107379042271232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Every morning we are born again. What we do today is what matters most.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Buddha &lt;a href=&quot;https://twitter.com/BotPhilosophyQ/status/1503589304819339268&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BotPhilosophyQ&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“I disappoint people every single day, and I will continue to do so until I gain back control of my time” - @Naval, on managing time &amp;amp; schedule &lt;a href=&quot;https://twitter.com/_rogos/status/1503598687892688898&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;_rogos&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 visuals that will change how you see success &amp;amp; productivity:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/gagZeSmwfR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gagZeSmwfR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/elliottaleksndr/status/1503657270147616768&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elliottaleksndr&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I just talked to a founder whose startup is growing &amp;quot;only&amp;quot; 25% a year and thus felt he needed to get bought. I explained that if he did, he&#39;d need to find somewhere to invest the proceeds, and he&#39;d be unlikely to find any investments that grew at 25% a year. &lt;a href=&quot;https://twitter.com/paulg/status/1503701495983783939&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Greatest enemy of a good plan is a dream of a perfect plan.&lt;/p&gt;
&lt;p&gt;Don’t wait, keep on moving forward …&lt;/p&gt;
&lt;p&gt;Slow &amp;amp; steady wins! &lt;a href=&quot;https://twitter.com/syedbalkhi/status/1503711127175417866&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;syedbalkhi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We all know setting personal boundaries will make us happier.&lt;/p&gt;
&lt;p&gt;But setting boundaries with friends, family, and other close relationships is difficult.&lt;/p&gt;
&lt;p&gt;Here are 20 helpful lessons from the NYT bestselling book &amp;quot;Set Boundaries, Find Peace&amp;quot; by @NedraTawwab: &lt;a href=&quot;https://t.co/LzOVY2m0Lx&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LzOVY2m0Lx&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AlexAndBooks_/status/1504162928253095936&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlexAndBooks_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;From $0 to $100m ARR, you have to focus on a single buyer.&lt;/p&gt;
&lt;p&gt;SaaS is so big today, you can now get to $100m ARR on a single buyer persona.&lt;/p&gt;
&lt;p&gt;Stay focused.  Wait until after $100m for more personas.&amp;quot; @spenserskates &lt;a href=&quot;https://t.co/rtF7HZ383G&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/rtF7HZ383G&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1504163494496595968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;One of the great mistakes is to judge policies and programs by their intentions to help the current thing rather than their results.&amp;quot;--Milton Friedman, probably &lt;a href=&quot;https://twitter.com/pmarca/status/1504932049064321033&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;pmarca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI&lt;br /&gt;
UX isn&#39;t UI &lt;a href=&quot;https://twitter.com/itzareous/status/1505206806485864451&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;itzareous&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Individuals rarely admit mistakes. Groups never do.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1505423895360413701&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you aren’t curious about it, you’ll never be good at it.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1505545193080033284&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People think they can’t change themselves, but they can.&lt;/p&gt;
&lt;p&gt;People think they can change others, but they can’t. &lt;a href=&quot;https://twitter.com/naval/status/1505645454754672644&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’re doing sales because you failed at marketing.&lt;/p&gt;
&lt;p&gt;You’re doing marketing because you failed at product. &lt;a href=&quot;https://twitter.com/naval/status/1505668279678824448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The reason the match between founders and ideas matters so much is that the best companies do best when they&#39;re run by their founders. Which, bizarrely enough, means it matters a lot whether Brian Chesky finds his job interesting. Fortunately for Airbnb, he does. &lt;a href=&quot;https://twitter.com/paulg/status/1505902488314068994&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;80% of marketing and sales comes down to grabbing someone&#39;s attention and making it easy for them to buy what you&#39;re selling. &lt;a href=&quot;https://twitter.com/heykahn/status/1506016761493090306&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;heykahn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Distribution v. Product is a silly debate.  They both drive each other in a fundamental way. &lt;a href=&quot;https://twitter.com/jspujji/status/1507073819080638468&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Thinking is difficult, that’s why most people judge.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Carl Jung &lt;a href=&quot;https://twitter.com/NoteToCare/status/1507281231146369081&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NoteToCare&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@mkobach Patterns in source code are a bad sign, not a good one. They mean the code is a bunch of de facto macroexpansions. &lt;a href=&quot;https://twitter.com/paulg/status/1507674754760773637&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Intelligent individuals learn from every thing and every one; average people, from their experiences. The stupid already have all the answers.&lt;/p&gt;
&lt;p&gt;— Socrates &lt;a href=&quot;https://twitter.com/warikoo/status/1507989548927660032&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;warikoo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want to learn how to draw your ideas?&lt;/p&gt;
&lt;p&gt;I’ve spent the last 5 years reading 100s of books to find the most accessible way to draw.&lt;/p&gt;
&lt;p&gt;Even if you think you are ‘artistically challenged’.&lt;/p&gt;
&lt;p&gt;Here’s the top 5 books to help you go from drawing dunce to drawing demon, lighting fast 👇. &lt;a href=&quot;https://twitter.com/EvansNifty/status/1508011677006000128&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;EvansNifty&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The common wisdom is:&lt;/p&gt;
&lt;p&gt;&amp;quot;Hire great people. Leave them alone.&amp;quot;&lt;/p&gt;
&lt;p&gt;It&#39;s actually wrong.&lt;/p&gt;
&lt;p&gt;It should be:&lt;/p&gt;
&lt;p&gt;&amp;quot;Hire great people. Help them be their best.&amp;quot;&lt;/p&gt;
&lt;p&gt;As much as we are all attracted to the idea of &amp;quot;hire and forget&amp;quot;&lt;/p&gt;
&lt;p&gt;You&#39;re doing people a disservice if you&#39;re not helping them. &lt;a href=&quot;https://twitter.com/girdley/status/1508054988118843396&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;girdley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#5&quot;&gt;#5&lt;/a&gt;. Force your VPs to come up with a plan to improve if they haven’t already (and the best ones do this on their own).&lt;/p&gt;
&lt;p&gt;Don’t let them blame others on the team, or holes on the org chart.  Every functional area can always improve. &lt;a href=&quot;https://twitter.com/jasonlk/status/1509601349897363456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A busy calendar and a busy mind would destroy your ability to do great things in this world.&lt;/p&gt;
&lt;p&gt;If you want to do great things, you need free time and you need a free mind.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1509602426696830980&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What’s the best way to ask for feedback?&lt;/p&gt;
&lt;p&gt;Don&#39;t.&lt;/p&gt;
&lt;p&gt;Instead, ask for &lt;em&gt;advice&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#DanielPink&quot;&gt;#DanielPink&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ThePowerOfRegret&quot;&gt;#ThePowerOfRegret&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Advice&quot;&gt;#Advice&lt;/a&gt; &lt;a href=&quot;https://t.co/PSgMR2PxmS&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PSgMR2PxmS&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1509606484556103683&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you can&#39;t decide, the answer is No.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1509632625543036938&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The root of all suffering is attachment.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Buddha &lt;a href=&quot;https://twitter.com/NoteToCare/status/1509817966828961819&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NoteToCare&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you can’t delete an email without flinching or responding, you won’t scale.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1509936125632139265&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to get nothing done at a startup:&lt;/p&gt;
&lt;p&gt;“Do you think we can do x by y?”&lt;/p&gt;
&lt;p&gt;How to get a ton done at a startup:&lt;/p&gt;
&lt;p&gt;“Tell me what would have to be true to do x by y.” &lt;a href=&quot;https://twitter.com/Austen/status/1510003537152937985&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Peace comes from within. Do not seek it without.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Buddha &lt;a href=&quot;https://twitter.com/Johnmcdonough79/status/1510165228260102146&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Johnmcdonough79&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You are what you do, not what you say you&#39;ll do.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Carl Jung &lt;a href=&quot;https://twitter.com/NoteToCare/status/1510180324709486599&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NoteToCare&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bdb zebrane. 17 sposobów, na które w myśleniu używamy wygodnych poręczy, aby ograniczyć wysiłek i osiągnąć komfort - kosztem precyzji i prawdy.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/LjtxOHUvF6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LjtxOHUvF6&lt;/a&gt; &lt;a href=&quot;https://twitter.com/vxel/status/1510210990385815552&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;vxel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Life truly is a single-player game. Nobody stays by your side forever.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1510833538706259976&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@naval Embrace the truth even when it doesn’t benefit you, it ultimately will. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1510854661959569414&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can’t imitate your way to greatness because you can only copy the effect, not the cause. &lt;a href=&quot;https://twitter.com/naval/status/1510861595697549312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Throwing a lot of mediocre people at a problem gets you nowhere&lt;/p&gt;
&lt;p&gt;(This is what mediocre VPs do btw) &lt;a href=&quot;https://twitter.com/jasonlk/status/1511397253205749761&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;While it pays to be open-minded, you also have to be discerning. Remember that the quality of the life you get will depend largely on the quality of the decisions that you make as you pursue your goals. 1/4 &lt;a href=&quot;https://t.co/4Q7LSmA5tH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4Q7LSmA5tH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1512452887938535424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A big part of marketing and sales is just reminding busy people to do something. &lt;a href=&quot;https://twitter.com/jspujji/status/1512457799292358662&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Retirement is when you stop sacrificing today for some imaginary tomorrow.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1512459502745968641&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;&amp;quot;Associate with people who are likely to improve you.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Welcome those who you are capable of improving.&lt;/p&gt;
&lt;p&gt;The process is a mutual one: men learn as they teach.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Seneca &lt;a href=&quot;https://twitter.com/Philosophy_DQ/status/1513083716276559872&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Philosophy_DQ&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;“Being poor is not having too little, it is wanting more.”&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;Seneca &lt;a href=&quot;https://twitter.com/Philosophy_DQ/status/1513083718252044293&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Philosophy_DQ&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;6&quot;&gt;
&lt;li&gt;“Every night before going to sleep, we must ask ourselves:&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;What weakness did I overcome today? What virtue did I acquire?”&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Seneca &lt;a href=&quot;https://twitter.com/Philosophy_DQ/status/1513083721976623108&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Philosophy_DQ&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;15&quot;&gt;
&lt;li&gt;&amp;quot;True happiness is to enjoy the present, without anxious dependence upon the future,&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;not to amuse ourselves with either hopes or fears but to rest satisfied with what we have,&lt;/p&gt;
&lt;p&gt;which is sufficient, for he that is so, wants nothing. &amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Seneca &lt;a href=&quot;https://twitter.com/Philosophy_DQ/status/1513083739122933768&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Philosophy_DQ&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You will get rich by giving society what it wants but does not yet know how to get. At scale.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1513245484634284035&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;In the end, you win through superior craftsmanship, not marketing.&amp;quot; Robert Greene &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1513245700443758602&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You’re going to die one day, and none of this is going to matter. So enjoy yourself. Do something positive. Project some love. Make someone happy. Laugh a little bit. Appreciate the moment. And do your work.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1513248954455977985&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You don’t need mentors, you need action.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1513522004028133382&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;People spend too much time doing and not enough time thinking about what they should be doing.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1513613104067670016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A great sales rep does most of the work for the prospect:&lt;/p&gt;
&lt;p&gt;Does the scheduling&lt;br /&gt;
Does the demos&lt;br /&gt;
Solves the problem&lt;br /&gt;
Helps sell other stakeholders&lt;br /&gt;
Follows up&lt;br /&gt;
Simplifies deployment&lt;/p&gt;
&lt;p&gt;Yes, this is a lot more work than sending a Calendly link the next day, I do admit &lt;a href=&quot;https://twitter.com/jasonlk/status/1513626190359240708&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7 powerful concepts everyone should teach their children: &lt;a href=&quot;https://twitter.com/heykahn/status/1513913594982723596&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;heykahn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Zanotowaliśmy w Brand24 najlepszy kwartał w historii firmy zarówno pod kątem wzrostu MRR, jak i sprzedaży. Rekurencyjne przychody w ujęciu rocznym przekroczyły właśnie 20M zł, a kwartał do kwartału urośliśmy o 21%. Gratulacje dla pracowitego Zespołu! Więcej nowości niebawem 💪🔥 &lt;a href=&quot;https://t.co/Vh41Xldrzg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Vh41Xldrzg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/sadek/status/1514149338699767808&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Weekend time! 🎉 Check out this thread - a watchlist for UX Designers! 🍿 &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#netflix&quot;&gt;#netflix&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#weekend&quot;&gt;#weekend&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ux&quot;&gt;#ux&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#uxdesign&quot;&gt;#uxdesign&lt;/a&gt; &lt;a href=&quot;https://t.co/XmgEGm2BnE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XmgEGm2BnE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/uxgoodies/status/1515039019054338052&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;uxgoodies&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The good big companies are overstaffed by 2x. The bad big companies are overstaffed by 4x or more. &lt;a href=&quot;https://twitter.com/pmarca/status/1515195878604087297&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;pmarca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“A mistake repeated more than once is a decision.”&lt;/p&gt;
&lt;p&gt;~ Paulo Coelho &lt;a href=&quot;https://twitter.com/lawofthinking/status/1515346004371030022&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lawofthinking&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t sell startup features.&lt;/p&gt;
&lt;p&gt;Sell solutions to problems.&lt;/p&gt;
&lt;p&gt;Pretty simple. &lt;a href=&quot;https://twitter.com/agazdecki/status/1515475001947787266&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startups biggest advantage against larger companies is speed of execution so please leverage this. &lt;a href=&quot;https://twitter.com/agazdecki/status/1515541931694075904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you made a product without UX research &lt;a href=&quot;https://t.co/M1gNwFh4N5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/M1gNwFh4N5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/vponamariov/status/1515700551824121859&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;vponamariov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Trust me when I say:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Setting clear expectations with your team&lt;/li&gt;
&lt;li&gt;Marking to market at least monthly&lt;/li&gt;
&lt;li&gt;Adjusting to their strengths&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Will make it 10x easier to produce 10x outcomes.&lt;/p&gt;
&lt;p&gt;They will not have an aligned mental map or context unless you share &amp;amp; compare regularly. &lt;a href=&quot;https://twitter.com/dklineii/status/1516039657011691523&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being really close to your startup&#39;s customers and just listening to their pain points is one of highest ROI things you can possibly do. &lt;a href=&quot;https://twitter.com/agazdecki/status/1516098351434854400&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;60% of what a CEO does is write.&lt;br /&gt;
Dont let anyone tell you otherwise or they arent CEOing correctly &lt;a href=&quot;https://twitter.com/SeanEcom/status/1516261850521907202&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SeanEcom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you launch your startup go on every podcast and tell your story. &lt;a href=&quot;https://twitter.com/agazdecki/status/1516420714039062533&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Just like a low resting heart rate is the byproduct of intense exercise, low anxiety is the byproduct of intense self-examination.&amp;quot; - Naval Ravikant &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1516869580643262465&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“When someone leaves, it&#39;s because someone else is about to arrive.”&lt;/p&gt;
&lt;p&gt;~ Paulo Coelho &lt;a href=&quot;https://twitter.com/lawofthinking/status/1517332615501684736&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lawofthinking&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The more hiring a startup does before reaching product-market fit, the less likely it is to ever reach it. &lt;a href=&quot;https://twitter.com/KyleTibbitts/status/1519142464367566849&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KyleTibbitts&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@mkobach Don&#39;t ask &amp;quot;does that make sense?&amp;quot; Or &amp;quot;need any help?&amp;quot;. You&#39;ll just hear, &amp;quot;I&#39;m good&amp;quot;.&lt;/p&gt;
&lt;p&gt;Ask &amp;quot;what&#39;s the least clear part of what you need to do?&amp;quot;&lt;/p&gt;
&lt;p&gt;Not a yes-no. It&#39;s required to have an answer &lt;a href=&quot;https://twitter.com/nikil_ragav/status/1519835008697094144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nikil_ragav&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@mkobach In 2014 @jasonlk gave this advice in the earliest days at @Salesloft&lt;/p&gt;
&lt;p&gt;Several roles and bosses later, haven’t missed a Sunday since. &lt;a href=&quot;https://twitter.com/tami__mcqueen/status/1519859016960200705&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tami__mcqueen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@mkobach This is exactly what he said to me on my first day at my first job. It has always stayed with me.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/HRGaC19tKY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HRGaC19tKY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rithikvalsan/status/1519943382218735617&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rithikvalsan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The overeducated are worse off than the undereducated, having traded common sense for the illusion of knowledge.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1520016044785610752&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;people either happen to the world, or the world happens to them. &lt;a href=&quot;https://twitter.com/sama/status/1520478721764851712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re interviewing a VP candidate, an agency, a key IC, someone that will be an owner&lt;/p&gt;
&lt;p&gt;And you feel like you know more about part of their job than they do&lt;/p&gt;
&lt;p&gt;Don&#39;t make the hire &lt;a href=&quot;https://twitter.com/jasonlk/status/1521854759967240192&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs said:&lt;/p&gt;
&lt;p&gt;“The most powerful person in the world is the storyteller.”&lt;/p&gt;
&lt;p&gt;Here’s the storytelling framework Jobs used (that you can too): &lt;a href=&quot;https://t.co/PMQOG2X4bU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PMQOG2X4bU&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nathanbaugh27/status/1522911673098682368&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nathanbaugh27&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Children are happy because:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;They&#39;re not self conscious&lt;/li&gt;
&lt;li&gt;They lack a sense of time pressure&lt;/li&gt;
&lt;li&gt;They&#39;ve no goals.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The bottom line is they are living from moment to moment, and the mind is not there to interfere in their bliss.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1523728759039217664&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You should take the approach that you are wrong. Your goal is to be less wrong.&amp;quot;&lt;/p&gt;
&lt;p&gt;— Elon Musk &lt;a href=&quot;https://twitter.com/Kpaxs/status/1523734003513442305&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus on getting distribution first then build the best product second. &lt;a href=&quot;https://twitter.com/agazdecki/status/1524380061356290048&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This takes practice and changing one’s habits. I have found that it typically takes about eighteen months, which is how long it takes to change most habits. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; (2/2) &lt;a href=&quot;https://twitter.com/RayDalio/status/1525839636752388098&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;In the long-run, prioritization beats efficiency.&amp;quot;&lt;/p&gt;
&lt;p&gt;–@JamesClear &lt;a href=&quot;https://twitter.com/jspujji/status/1526049040596578304&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A busy calendar and a busy mind will destroy your ability to create anything great.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1527325461939818496&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What it is. What it does. How it makes you feel. &lt;a href=&quot;https://t.co/NiMieJCrqq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NiMieJCrqq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/JustCopyTips/status/1527340642711457793&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JustCopyTips&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The overscheduled life is not worth living.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1528629551084863489&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;m sorry to inform you but your startups product will be copied so get over it, say thank you for the validation, and keep executing. &lt;a href=&quot;https://twitter.com/agazdecki/status/1529148947712704513&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you need to memorize it, then you didn&#39;t understand it.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1530208809024507911&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Tell your friends you’re a happy person. Then, you’ll be forced to conform to it. You’ll have a consistency bias. You have to live up to it. Your friends will expect you to be a happy person.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1530967707855691776&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Elon Musk on remote work&lt;/p&gt;
&lt;p&gt;May 31, 2022 &lt;a href=&quot;https://t.co/gTw1Bdh18h&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gTw1Bdh18h&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TechEmails/status/1531994582669348864&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TechEmails&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;💯 &lt;a href=&quot;https://t.co/h25XV37hfF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/h25XV37hfF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/IAmSteveHarvey/status/1533992206549151745&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmSteveHarvey&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Two good questions for your boss:&lt;/p&gt;
&lt;p&gt;1/ What am I doing that is useless?&lt;/p&gt;
&lt;p&gt;2/ What should I do that I’m not doing yet? &lt;a href=&quot;https://twitter.com/DellAnnaLuca/status/1535347323726794753&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DellAnnaLuca&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The less scheduled you are, the more creative you’re going to be.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1536237683038556161&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best startup founders focus on making one good decision per day. &lt;a href=&quot;https://twitter.com/agazdecki/status/1536361062924054529&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Smartest people are found near high gross margin businesses. &lt;a href=&quot;https://twitter.com/kunalb11/status/1538182850360446976&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;David Ogilvy wrote words that sold over $1,500,000,000 of advertising.&lt;/p&gt;
&lt;p&gt;And he gave us 38 lessons on how to sell.&lt;/p&gt;
&lt;p&gt;Here are the top 7 to use today🧵 &lt;a href=&quot;https://t.co/3DnPy5XORA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3DnPy5XORA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/chrishlad/status/1538532366708113408&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;chrishlad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You learn how to do things by doing things. &lt;a href=&quot;https://twitter.com/jspujji/status/1539034140217163777&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I keep a long list of biz ideas that I&#39;ve come up with over the years. In Jan, I decided to stop trying to find the “perfect” biz.&lt;/p&gt;
&lt;p&gt;Instead, I’ll start a few!&lt;/p&gt;
&lt;p&gt;If there is a big mkt, a clear value prop, I find the right people and I have an “unfair advantage” I will start it &lt;a href=&quot;https://twitter.com/jspujji/status/1539667260855308288&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@BasedBeff you cannot outaccelerate me &lt;a href=&quot;https://twitter.com/sama/status/1540227243368058880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Life is like riding a bicycle. To keep your balance, you must keep moving.” – Albert Einstein &lt;a href=&quot;https://t.co/nhxsWAOm6q&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nhxsWAOm6q&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AlbertEinstein/status/1540470831226167301&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlbertEinstein&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If they wrote it to make money, don&#39;t read it.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1540587847337385984&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;15 Powerful Visuals About Psychology &amp;amp; Life&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/zaLUEkaWts&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zaLUEkaWts&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DeepFlowMDL/status/1540641947768872960&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DeepFlowMDL&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;At an early stage company, 90%+ of employee effort goes toward building a better product and working with customers.&lt;/p&gt;
&lt;p&gt;At very large companies, it&#39;s probably like 10-15%.&lt;/p&gt;
&lt;p&gt;A primary objective for companies in the middle is to stave off this inevitable tide as long they can. &lt;a href=&quot;https://twitter.com/jaltma/status/1540747447747481600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jaltma&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The overscheduled life is not worth living.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1541042593810849794&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You don’t need mentors, you need action.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1541588441158123520&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All undervalued wide moat stocks according to Morningstar: &lt;a href=&quot;https://t.co/KnUjYVrYwj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KnUjYVrYwj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QCompounding/status/1541705713285824514&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QCompounding&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Think less. Experiment more. &lt;a href=&quot;https://t.co/tM2ahB4avs&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tM2ahB4avs&lt;/a&gt; &lt;a href=&quot;https://twitter.com/OzolinsJanis/status/1541734708844929026&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;OzolinsJanis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to assemble a team that truly enjoys working together building a product they truly believe needs to exist. &lt;a href=&quot;https://twitter.com/agazdecki/status/1541793165891383298&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A regular reminder I give entrepreneurs (and myself):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Amazon only sold books for its first 3-4 years&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Facebook was only in colleges for its first 2 years&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Apples reboot had only the iPod for 6 years&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The path to ubiquity starts with narrow focus. &lt;a href=&quot;https://twitter.com/jspujji/status/1541811941718609920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Value your time. It is all you have. It’s more important than your money. It’s more important than your friends. It is more important than anything. Your time is all you have. Do not waste your time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1541831290868989955&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The true constraint of any startups growth is not capital, ideas or even talent.&lt;/p&gt;
&lt;p&gt;It’s the founders bandwidth to effectively make decisions. &lt;a href=&quot;https://twitter.com/jspujji/status/1544523509652721665&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;15 Powerful Visuals About Psychology &amp;amp; Life&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/ljTaemSBQt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ljTaemSBQt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DeepFlowMDL/status/1544991461074096129&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DeepFlowMDL&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;57 sentences that will make you a better husband and father today: &lt;a href=&quot;https://t.co/zQNSRSlZZK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zQNSRSlZZK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1545039912818311168&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Today I deleted Notion.&lt;/p&gt;
&lt;p&gt;Why?&lt;br /&gt;
I realized I was spending more time trying to increase productivity and efficiency, instead of actually doing the things I was trying to make more efficient. &lt;a href=&quot;https://twitter.com/tadaspetra/status/1545149403270356992&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tadaspetra&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;99% of effort is wasted.&lt;/p&gt;
&lt;p&gt;I say this because you should be very thoughtful and realize in most things (relationships, work, even in learning) what you’re trying to do is find the thing you can go all-in on to earn compound interest.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1545269697326768128&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Parenting toddlers is exhausting.&lt;/p&gt;
&lt;p&gt;“Terrible-Twos” and “Threenagers” are rightfully earned names.&lt;/p&gt;
&lt;p&gt;7 essential priorities for parenting this emotional age: &lt;a href=&quot;https://twitter.com/jbryanporter/status/1545396981245296640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jbryanporter&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;Prioritize Healthy Emotional Outlets&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Teach your kids to separate emotions from actions.&lt;/p&gt;
&lt;p&gt;&amp;quot;It&#39;s okay to be angry, but it&#39;s not okay to hit.&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;quot;Jealousy is natural, but it&#39;s not okay to take.&amp;quot;&lt;/p&gt;
&lt;p&gt;Create space for them to express emotion in a healthy way. &lt;a href=&quot;https://twitter.com/jbryanporter/status/1545396985976553473&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jbryanporter&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;6&quot;&gt;
&lt;li&gt;Prioritize Expectations&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Toddlers respond well to expectations.&lt;/p&gt;
&lt;p&gt;Give a X-minute warning before a transition, like ending play time.&lt;/p&gt;
&lt;p&gt;Letting them know bedtime is approaching.&lt;/p&gt;
&lt;p&gt;Consistently give (only) 1 warning before a consequence.&lt;/p&gt;
&lt;p&gt;This is a great way to care for them. &lt;a href=&quot;https://twitter.com/jbryanporter/status/1545396993941557249&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jbryanporter&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Brand Marketing:&lt;/p&gt;
&lt;p&gt;$1m ARR:  Makes Little Sense&lt;br /&gt;
$10m ARR:  Ok Let’s Do Some&lt;br /&gt;
$100m ARR:  Most of Marketing&lt;br /&gt;
$1B ARR:  All of Marketing &lt;a href=&quot;https://twitter.com/jasonlk/status/1545398884041576448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You only control the effort, not the results. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1545437825058963456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ideally, someone other than you should be objectively measuring and reporting on your progress. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/fjgi9Cogy1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fjgi9Cogy1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1545473306329063430&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders who are doing well and those who are doing badly both underestimate the importance of growth rate. &lt;a href=&quot;https://twitter.com/paulg/status/1546476751324332032&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Almost every important mistake I&#39;ve made in the past 15+ years has been due to lowering the hire bar&lt;/p&gt;
&lt;p&gt;Directly or indirectly, it leads to chaos, slowdown, doubt, and confusing inputs &lt;a href=&quot;https://twitter.com/jasonlk/status/1546508610984984577&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don&#39;t think about ROI, I think about ROE (Return on Effort).&lt;/p&gt;
&lt;p&gt;When too much effort is spent on something small and inconsequential, it offends my sensibilities far more than too much money spent on something that wasn&#39;t worth it.&lt;/p&gt;
&lt;p&gt;Here&#39;s what I mean:&lt;br /&gt;
&lt;a href=&quot;https://t.co/EaaFG5T8SA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/EaaFG5T8SA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonfried/status/1547675202338709505&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you push the mediocre, they quit&lt;/p&gt;
&lt;p&gt;When you push the great ones, they step up&lt;/p&gt;
&lt;p&gt;Tough to get just right &lt;a href=&quot;https://twitter.com/jasonlk/status/1548383744150478848&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@SaveYourSons Freedom. Family. Peace.&lt;/p&gt;
&lt;p&gt;Not too much to ask for. &lt;a href=&quot;https://twitter.com/IAmAaronWill/status/1549029813037551618&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmAaronWill&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Complexity is always a killer of productivity. Every time we’ve &lt;em&gt;reduced&lt;/em&gt; pricing and packaging options, we’ve grown faster; &lt;em&gt;standardized&lt;/em&gt; on an internal process, we’ve moved faster; &lt;em&gt;simplified&lt;/em&gt; our architecture, we’ve built faster. &lt;a href=&quot;https://twitter.com/levie/status/1549068649930952705&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s like we&#39;re twins separated at birth (I&#39;m Danny Devito).&lt;/p&gt;
&lt;p&gt;I so, so, so believe in the power of simplifying. &lt;a href=&quot;https://twitter.com/dharmesh/status/1549091110760357888&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most marriages either fail or are miserable.&lt;/p&gt;
&lt;p&gt;I’ve been with my wife for 13 years.&lt;/p&gt;
&lt;p&gt;Here are 13 ways to THRIVE in your marriage. &lt;a href=&quot;https://twitter.com/brettboettcher1/status/1549354538238447616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;brettboettcher1&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A busy calendar and a busy mind will destroy your ability to create anything great.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1550414849976451072&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Improve your communication, improve your life.&lt;/p&gt;
&lt;p&gt;Communication =&lt;br /&gt;
• better relationships&lt;br /&gt;
• stronger leadership&lt;br /&gt;
• winning negotiations&lt;br /&gt;
• easier buy-in&lt;br /&gt;
• closing more sales&lt;/p&gt;
&lt;p&gt;9 ways to become a better communicator today: &lt;a href=&quot;https://twitter.com/wes_kao/status/1550480827112476675&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wes_kao&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve found the most joy in learning by oscillating between periods of intense building followed by intense learning. It creates this beautiful feedback loop between the two where you get to put in practice what you learn while exploring before you build again. &lt;a href=&quot;https://twitter.com/Suhail/status/1550483655071436800&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What comes so easily to you, Doesn&#39;t necessarily come so easily to others.&lt;/p&gt;
&lt;p&gt;Never commit the crime of underestimating your Strengths.&lt;/p&gt;
&lt;p&gt;Exploit them instead.&lt;/p&gt;
&lt;p&gt;To the HILT.&lt;/p&gt;
&lt;p&gt;The whole fucking Time.&lt;/p&gt;
&lt;p&gt;This is what will make you EXCEPTIONAL. &lt;a href=&quot;https://twitter.com/Be_Un_Stoppable/status/1550484311538667527&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Be_Un_Stoppable&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startups usually take a while (often a year or two) to figure out exactly what their business is. The biggest preventable cause of failure is spending too much money, by hiring too many people, during this period. &lt;a href=&quot;https://twitter.com/paulg/status/1551276104056311809&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t be like this prince.&lt;/p&gt;
&lt;p&gt;Stop planning and just get the shit done. &lt;a href=&quot;https://t.co/4M6lpVnpLR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4M6lpVnpLR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/vponamariov/status/1551496257755021312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;vponamariov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every &lt;em&gt;single&lt;/em&gt; thing in your product that creates friction limits adoption. Even the difference between requiring a user to click a button vs. see information on mouse over can be an order of magnitude more discoverability of a feature. &lt;a href=&quot;https://twitter.com/levie/status/1553795008150458369&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you find yourself &amp;quot;overthinking&amp;quot; a lot, you have too little on your plate.&lt;/p&gt;
&lt;p&gt;Take up more projects. You won&#39;t have time to overthink.&lt;/p&gt;
&lt;p&gt;Also start meditating. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1554566457140191232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;An abundance on money and time can kill even the best-intentioned product.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1554653781345779712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Normalize not feeling guilty for removing toxic people from your life - no matter who they are. If a person disregards your feelings, ignores your boundaries and &amp;quot;continues&amp;quot; to treat you in a harmful way, they need to go. &lt;a href=&quot;https://twitter.com/_Pammy_DS_/status/1555905279413338112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;&lt;em&gt;Pammy_DS&lt;/em&gt;&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;PMF is not virality, it&#39;s high user retention with great compounding growth. &lt;a href=&quot;https://twitter.com/Suhail/status/1556789086710480896&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you can&#39;t decide, the answer is No.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1557666634067636224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Every man is at war with himself, except a Buddha.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1557787681660215296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For example, I&#39;ve noticed that the founders of successful startups tend to become much more commanding. You can start out as a diffident hacker, but you can&#39;t run a big company as one. Gates and Jobs are the rule, not the exception. &lt;a href=&quot;https://twitter.com/paulg/status/1557817475491778561&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Common theme I&#39;ve noticed amongst successful founders:&lt;/p&gt;
&lt;p&gt;They&#39;re OBSESSED with cancellations.&lt;/p&gt;
&lt;p&gt;Every time a customer leaves it hurts them on a personal level. &lt;a href=&quot;https://twitter.com/JohnIsBuilding/status/1557819156593926144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JohnIsBuilding&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Talked to a great founder that was &amp;quot;beating one of your portfolio companies in every deal&amp;quot;&lt;/p&gt;
&lt;p&gt;It was possible, he&#39;s growing 3x right now at $3m in ARR&lt;/p&gt;
&lt;p&gt;The thing is, that means he&#39;s adding $6m in bookings&lt;/p&gt;
&lt;p&gt;The bigger competitor will add $60m this year &lt;a href=&quot;https://twitter.com/jasonlk/status/1557854370896781312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you interview for a VP of Sales, don&#39;t ask them how they do sales&lt;/p&gt;
&lt;p&gt;They are all really, really good at talking about process&lt;/p&gt;
&lt;p&gt;Ask them how they will get you more customers&lt;/p&gt;
&lt;p&gt;Most won&#39;t have a good answer &lt;a href=&quot;https://twitter.com/jasonlk/status/1557891364729327617&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A new mental model I&#39;m discovering:&lt;/p&gt;
&lt;p&gt;When someone is pushing for you to be &amp;quot;reasonable,&amp;quot; but can&#39;t identify what exactly it is that is unreasonable, often times that means they would personally be more comfortable if you were to remain mediocre. &lt;a href=&quot;https://twitter.com/Austen/status/1557933479282753536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Skills that help you become successful are rarely the skills you need to stay successful. More often that not, the skills you need to stay successful are the exact opposite of the skills that helped you get there in the first place. &lt;a href=&quot;https://twitter.com/heykahn/status/1559600506644729856&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;heykahn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Wealth is a good example. Concentration usually helps you build it, but diversification helps you preserve it. If you stay concentrated for too long, you&#39;re bound to lose it sooner or later. &lt;a href=&quot;https://twitter.com/heykahn/status/1559600509140365312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;heykahn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Develop &#39;strategic incompetence&#39; - people won&#39;t ask you to do things you hate to do, if you&#39;re bad at them.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1559631149760143367&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@kpooya They made something people want. &lt;a href=&quot;https://twitter.com/paulg/status/1559676265908408321&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;try a lot of things and do more of what works&lt;/p&gt;
&lt;p&gt;work on things that are interesting but not prestigious&lt;/p&gt;
&lt;p&gt;follow the path as it unfolds &lt;a href=&quot;https://twitter.com/sama/status/1559718846281355264&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the most striking patterns I&#39;ve noticed among the biggest YC cos is how consistently they still do YCish stuff internally, e.g. when launching new things. Being a startup is not just a phase companies go through. It can also be part of their culture ongoing. &lt;a href=&quot;https://twitter.com/paulg/status/1559937844382400512&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;i am still amazed how most startup investors are great at understanding that startups can grow exponentially but don’t understand that markets can too&lt;/p&gt;
&lt;p&gt;“the TAM is too small” has cost startup investors more money than any other often-repeated phrase i know of &lt;a href=&quot;https://twitter.com/sama/status/1560476032125194240&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;(“the founder is too inexperienced” is a close second and “what’s the barrier to entry?” is a close third) &lt;a href=&quot;https://twitter.com/sama/status/1560476033249251329&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Find a relationship where you, naturally being you, makes the other person happy. And the other person, naturally being the other person, makes you happy.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1560845580795912194&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fail, then learn.&lt;/p&gt;
&lt;p&gt;Act, then ask.&lt;/p&gt;
&lt;p&gt;Move, then steer.&lt;/p&gt;
&lt;p&gt;A tank full of gas, directions on the map, and hands on the wheel is nothing but wishful thinking if your foot is off the pedal. &lt;a href=&quot;https://twitter.com/thedankoe/status/1561282467243466753&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thedankoe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t minimize costs - maximize revenues. &lt;a href=&quot;https://twitter.com/naval/status/156135644488400896&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;10,000 iterations, not 10,000 hours&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1561453335512862725&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you think people have scar tissue, you should see organizations. Each time there&#39;s a disaster, they create a process to prevent future disasters of that type. Eventually they accrete a thick layer of these processes that prevents them from moving. Then they die. &lt;a href=&quot;https://twitter.com/paulg/status/1561566435012251648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Reading is only useful if you have enough experience to think critically.&lt;/p&gt;
&lt;p&gt;Failing is only useful if you did your best to not fail.&lt;/p&gt;
&lt;p&gt;Discussing is only useful if you are ready to change your mind.&lt;/p&gt;
&lt;p&gt;Working hard is only useful if you are in the right direction. &lt;a href=&quot;https://twitter.com/orangebook/status/1561588703604011008&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Intuition never lies, it knows when something is off. Trust what it tells you about the energy and signs you get from people and places. &lt;a href=&quot;https://twitter.com/_Pammy_DS_/status/1561703503571177472&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;&lt;em&gt;Pammy_DS&lt;/em&gt;&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just focus on finding 10 paying customers that couldn&#39;t live without your startup&#39;s product then go from there. Nail it then scale it. &lt;a href=&quot;https://twitter.com/agazdecki/status/1561754515161747456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The older I get, the more I realize self-confidence makes all the difference. &lt;a href=&quot;https://twitter.com/thejustinwelsh/status/1561760905326727168&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thejustinwelsh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; mistake I see founders make when they hire their first VP of Sales …&lt;/p&gt;
&lt;p&gt;Is that the founder stops doing much sales themselves.&lt;/p&gt;
&lt;p&gt;It doesn’t work that way.  Sales almost always goes down as a result.  Oftentimes, dramatically so. &lt;a href=&quot;https://twitter.com/jasonlk/status/1562820989540438016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Some of the most creative and productive people I have ever met work in multi-week bursts and then have weeks where they just idle with little done. It’s the nature of the human animal.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1563009590635073537&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The people that don&#39;t show up at the office will end up working for the people that do. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1563495794128236544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It feels very simple and light but still useful. Like a good tool. There is no drama or complex ideas. Just the things we need. I don&#39;t feel constrained by it but feel like it speeds me up.&lt;/p&gt;
&lt;p&gt;Like it should be but seems there is this tendency to complicate things uncessarily &lt;a href=&quot;https://twitter.com/karrisaarinen/status/1563626155550261248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karrisaarinen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The purpose of wealth is freedom.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1564313934710161409&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1/ Using AI to generate fashion&lt;/p&gt;
&lt;p&gt;After a bunch of experimentation I finally got DALL-E to work for video by combining it with a few other AI tools&lt;/p&gt;
&lt;p&gt;See below for my workflow -&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#dalle2&quot;&gt;#dalle2&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#dalle&quot;&gt;#dalle&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#AIart&quot;&gt;#AIart&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ArtificialIntelligence&quot;&gt;#ArtificialIntelligence&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#digitalfashion&quot;&gt;#digitalfashion&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#virtualfashion&quot;&gt;#virtualfashion&lt;/a&gt; &lt;a href=&quot;https://t.co/x3zP3fIp4G&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/x3zP3fIp4G&lt;/a&gt; &lt;a href=&quot;https://twitter.com/karenxcheng/status/1564626773001719813&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karenxcheng&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You have to pick something big to work on, because it&#39;s hard to commit your life to something small.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1564768932862492672&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It doesn’t matter what you eat; if you eat too much (volume) of food, you’ll be tired. It’s called blood flow diversion. Eat to 85% full and you’ll avoid this source of fatigue. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#science&quot;&gt;#science&lt;/a&gt; &lt;a href=&quot;https://twitter.com/hubermanlab/status/1565025471477059584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hubermanlab&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What I used to consider wealthy:&lt;br /&gt;
• Mansion&lt;br /&gt;
• Fast car&lt;br /&gt;
• Fancy watch&lt;br /&gt;
• Expensive suits&lt;/p&gt;
&lt;p&gt;What I now consider wealthy:&lt;br /&gt;
• Abundance of freedom&lt;br /&gt;
• Deep connection with family and friends&lt;br /&gt;
• Physical vitality&lt;br /&gt;
• Mental fortitude&lt;/p&gt;
&lt;p&gt;Find your definition of wealth—then prioritize it. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1565068944586727424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The only real test of intelligence is if you get what you want out of life.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1565107664803315713&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Product designers—particularly software designers—seem far more interested with adding features than they are with preventing frustration. &lt;a href=&quot;https://twitter.com/kocienda/status/1565339267978539008&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kocienda&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Amen. &lt;a href=&quot;https://twitter.com/DanielPink/status/1565341606877663232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to ask for feedback:&lt;/p&gt;
&lt;p&gt;What should I stop doing?&lt;br /&gt;
What should I start doing?&lt;br /&gt;
What should I continue doing? &lt;a href=&quot;https://twitter.com/shl/status/1565789181863161856&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Build it as if you are going to own it forever. The exit is the Investor&#39;s problem.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1566867007437295616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fixed goals equal static products and ultimately failed businesses. OKRs encourage agility both in your product and business. Here&#39;s how. &lt;a href=&quot;https://t.co/zg3ZZHKcMz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zg3ZZHKcMz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jboogie/status/1566871388694216705&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jboogie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Imagine how effective you would be if you weren’t anxious all the time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1567018505656061957&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7 bad habits that sabotage your brain health: &lt;a href=&quot;https://twitter.com/FitFounder/status/1569309654349406212&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Life is compound interest.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1569326966863319040&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The best way, perhaps the only way, to change others is to become an example.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1570140359572992000&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The only real test of intelligence is if you get what you want out of life.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1570145862554046464&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/xXlaNdAqdu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xXlaNdAqdu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1570414536053723142&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you’re more passionate about founding a business than the business itself, you can fall into a ten year trap. Better to stay emotionally unattached and select the best opportunity that arises.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1570502768527544323&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Persistence beats timing. Execution beats luck. Not immediately, but eventually.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1570813008892366850&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Slack started as a video game.&lt;/p&gt;
&lt;p&gt;YouTube started as a dating site.&lt;/p&gt;
&lt;p&gt;Twitter started as a podcast finder.&lt;/p&gt;
&lt;p&gt;@microacquire started as marketplace to acquire SaaS startups.&lt;/p&gt;
&lt;p&gt;Shopify started as eCommerce store.&lt;/p&gt;
&lt;p&gt;Pinterest started as m-commerce app.&lt;/p&gt;
&lt;p&gt;Lesson: listen to your customers. &lt;a href=&quot;https://twitter.com/agazdecki/status/1571513586488610817&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best startups just get shit done.&lt;/p&gt;
&lt;p&gt;Is it the best? Not always.&lt;/p&gt;
&lt;p&gt;Is it the fastest? Absolutely.&lt;/p&gt;
&lt;p&gt;How do they learn? The market.&lt;/p&gt;
&lt;p&gt;Who helps them improve? Customers.&lt;/p&gt;
&lt;p&gt;Speed of execution wins. &lt;a href=&quot;https://twitter.com/agazdecki/status/1572086135786184704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Obs from working with 200 companies: 20% of features drive 80% of willingness to pay (wtp). This 20% is also the easiest to build typically. Hence companies release this 20% as MVP for low price/free and give the farm away &amp;amp; struggle to build 80% which drives 20% wtp @lennysan &lt;a href=&quot;https://twitter.com/MadhavanSF/status/1572669272580579331&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MadhavanSF&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t be afraid to create opinionated software.&lt;/p&gt;
&lt;p&gt;That&#39;s kind of the point. It&#39;s what people are paying for.&lt;/p&gt;
&lt;p&gt;Most business applications are fancy Excel spreadsheets with opinions. &lt;a href=&quot;https://twitter.com/dharmesh/status/1573022932523163653&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Be so big that it’s cool to hate you.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1574765918923669504&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The nice thing about free users, is that so long as they&#39;re active, they remain possible to convert later, when you&#39;re better at it.&lt;/p&gt;
&lt;p&gt;If they also don&#39;t stay active, that&#39;s your primary challenge. If you don&#39;t solve that, it&#39;s really a free trial, not freemium. &lt;a href=&quot;https://twitter.com/asmartbear/status/1576242326279684096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@patrick_oshag &lt;a href=&quot;https://t.co/LSlN38IPZ9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LSlN38IPZ9&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jaredkrouss/status/1576321353795469312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jaredkrouss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@patrick_oshag Behave: The Biology of Humans at Our Best and Worst &lt;a href=&quot;https://t.co/wJAKof2X9G&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wJAKof2X9G&lt;/a&gt; &lt;a href=&quot;https://twitter.com/manjipal/status/1576328164384833537&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;manjipal&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just a quick reminder. Whenever somebody gives you a feature to ship, consider saying something like…&lt;/p&gt;
&lt;p&gt;“That sounds great. Can you tell me a little more about the problem this is intending to solve, who it solves it for and what other solutions you&#39;ve considered?” &lt;a href=&quot;https://twitter.com/andybudd/status/1576512709327085568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andybudd&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don’t want a lot of user interface in my apps. The best software gets out of the way. &lt;a href=&quot;https://twitter.com/kocienda/status/1576601475815337985&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kocienda&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don’t want much whimsy in my software either, since I don’t want apps that call attention to themselves. The more frequently I use a feature, the less likely I want anything about it to be whimsical. &lt;a href=&quot;https://twitter.com/kocienda/status/1576601478898151425&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kocienda&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to be close to customers and one way to do this is handling support so you truly understand what pain points to solve. &lt;a href=&quot;https://twitter.com/agazdecki/status/1576615292800626690&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Here’s what we’d recommend based on the data submitted by founders who sold businesses on @microacquire in the last six months.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;SaaS: 2-5x revenue or 4-7x profit&lt;/li&gt;
&lt;li&gt;Ecommerce: 1-2x revenue or 3-5x profit&lt;/li&gt;
&lt;li&gt;Marketplace: 1-3x revenue&lt;/li&gt;
&lt;li&gt;Agency: 1x revenue or 2-3x profit &lt;a href=&quot;https://twitter.com/agazdecki/status/1576938521037721600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Inspiration is perishable - act on it immediately.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1577312082675974149&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to give other leaders autonomy to fully own parts of the business and give them everything they need to succeed. &lt;a href=&quot;https://twitter.com/agazdecki/status/1578002082107338752&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re not sure which supplements work (and which ones don&#39;t), here&#39;s a cool graphic I found recently that might help: &lt;a href=&quot;https://t.co/WlM5uEqKJF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WlM5uEqKJF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/heykahn/status/1578339656109682688&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;heykahn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Exercise can affect your unborn children&#39;s genes by altering the chemistry of DNA in sperm and egg cells.&lt;/p&gt;
&lt;p&gt;Aerobic exercise for 3 months altered sperm DNA by silencing genes linked to the risk of autism, OCD, Alzheimer’s, obesity, type 2 diabetes, and atherosclerosis. &lt;a href=&quot;https://twitter.com/foundmyfitness/status/1578487663304196096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;foundmyfitness&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Picking the right direction to go in is way more important than how hard you work.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1578675063934664705&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most powerful life hacks I’ve found: &lt;a href=&quot;https://twitter.com/SahilBloom/status/1578719931947839488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Entrepreneurs are just built different and put in late hours, weekends, whatever it takes to get a startup off the ground. For the love of building. &lt;a href=&quot;https://twitter.com/agazdecki/status/1578834371246952448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most new managers suck at managing.&lt;/p&gt;
&lt;p&gt;You&#39;re suddenly responsible for leading a team and you have no idea how to do it.&lt;/p&gt;
&lt;p&gt;I&#39;ve served as a manager and executive at several companies.&lt;/p&gt;
&lt;p&gt;Here&#39;s a step by step cheatsheet to help you become a better leader today: &lt;a href=&quot;https://twitter.com/heykahn/status/1579821671728369665&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;heykahn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Definitely.  If you have to ask, you’re not there. &lt;a href=&quot;https://twitter.com/asmartbear/status/1579864697280634881&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When was the last time you watched someone try to sign up for your product?  Or use your software?  Or interact with your Support?  Where you just sit there and watch -- no questions?&lt;/p&gt;
&lt;p&gt;You might be surprised if you do... maybe that&#39;s why you&#39;re not... you&#39;re afraid maybe. &lt;a href=&quot;https://twitter.com/asmartbear/status/1580294033389539328&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to build a successful startup:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Look at large markets&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Find top companies&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Study them. Find weaknesses&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Serve most underserved customer&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Message and position to narrow ICP&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bootstrap the company&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sell it on @microacquire&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Not easy but I see this daily. &lt;a href=&quot;https://twitter.com/agazdecki/status/1581360633823387648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;More accountability isn&#39;t always better. In fact, the better an organization is, the more measuring their performance decreases it. &lt;a href=&quot;https://twitter.com/paulg/status/1582715435031502848&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to always help your team think bigger, remove blockers, execute with speed, and keep momentum high. &lt;a href=&quot;https://twitter.com/agazdecki/status/1582771729356554247&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;think with a very long time horizon, act with great short-term urgency and effectiveness, success guaranteed &lt;a href=&quot;https://twitter.com/sama/status/1582816262832300032&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rich Barton (@Rich_Barton) on how to name a company &lt;a href=&quot;https://t.co/eguVZLdsIE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/eguVZLdsIE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/patrick_oshag/status/1583067186113187841&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrick_oshag&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Please build a startup that is great at solving 1 painful problem rather than solving 100+ problems just okay. &lt;a href=&quot;https://twitter.com/agazdecki/status/1583070048754679809&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do not use your energy to worry. Use your energy to believe, to create, to learn, to think and to grow. &lt;a href=&quot;https://twitter.com/ProfFeynman/status/1583095110879047682&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ProfFeynman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/wvjNaRhaMS&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wvjNaRhaMS&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ycombinator/status/1583109128230051840&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ycombinator&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Observe when you’re angry—anger is a loss of control over the situation.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1583346595742904320&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A Simple Roadmap To Get Wealthy:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Find a niche&lt;/li&gt;
&lt;li&gt;Identify low-competition keywords&lt;/li&gt;
&lt;li&gt;Write good content&lt;/li&gt;
&lt;li&gt;Scale it to 5 figures a month&lt;/li&gt;
&lt;li&gt;Sell it for $1M on @FEIntl&lt;/li&gt;
&lt;li&gt;Rinse &amp;amp; Repeat &lt;a href=&quot;https://twitter.com/ThomasSmale/status/1583444300356292612&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ThomasSmale&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;📆 Want to make &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#GoogleCalendar&quot;&gt;#GoogleCalendar&lt;/a&gt; or &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#AppleCalendar&quot;&gt;#AppleCalendar&lt;/a&gt; a whole lot easier to manage?&lt;/p&gt;
&lt;p&gt;Say &amp;quot;YES&amp;quot; to TimeCamp integration ✅😉&lt;/p&gt;
&lt;p&gt;It automatically syncs your tasks with the calendars you select, providing a visualization graph, and automating your reports.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#workload&quot;&gt;#workload&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#projectmanagement&quot;&gt;#projectmanagement&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1584504255842779136&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the difference between a great person and a median person is  that they’re in contact with divinity like 2% of the time vs 0.01% &lt;a href=&quot;https://twitter.com/tszzl/status/1584777332660654081&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tszzl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In case you needed this: more hours worked does not always mean more things done!&lt;/p&gt;
&lt;p&gt;Tomorrow is another day to continue from where you stopped today.&lt;/p&gt;
&lt;p&gt;You got this! 💪&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#wednesdaywisdom&quot;&gt;#wednesdaywisdom&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#productivity&quot;&gt;#productivity&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#procrastination&quot;&gt;#procrastination&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1585264772215349250&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;📥Import and export your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#calendar&quot;&gt;#calendar&lt;/a&gt; events as time entries directly to your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#timesheet&quot;&gt;#timesheet&lt;/a&gt; in one go ✅ by pairing TimeCamp with Google Calendar or iCal.&lt;/p&gt;
&lt;p&gt;✍️Assign each event to a specific project, using that event’s name as a keyword in the project.&lt;/p&gt;
&lt;p&gt;Enjoy easy activity tracking!💚 &lt;a href=&quot;https://twitter.com/timecamp/status/1585931195195719680&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;These 10 rules will change your life today… (I guarantee it): &lt;a href=&quot;https://twitter.com/matt_gray_/status/1585975399007281152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;matt_gray_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Until you are clearly &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt;,&lt;/p&gt;
&lt;p&gt;Your homepage should plainly list the 3 things you do better than the competition &lt;a href=&quot;https://twitter.com/jasonlk/status/1586771201463943168&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What&#39;s the best movie for entrepreneurs? &lt;a href=&quot;https://twitter.com/heyeaslo/status/1587678689340395520&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;heyeaslo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@heyeaslo Pirates of Silicon Valley &lt;a href=&quot;https://t.co/lWnFuTpU00&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lWnFuTpU00&lt;/a&gt; &lt;a href=&quot;https://twitter.com/knowcodepro/status/1587688046807306241&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;knowcodepro&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Give me 2 minutes, and I’ll teach you 6 rules to be charismatic: &lt;a href=&quot;https://twitter.com/SystemSunday/status/1587782263978205184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SystemSunday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;5&quot;&gt;
&lt;li&gt;Don’t Complain or Gossip. Ever.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Nobody likes to hear complaining.&lt;/p&gt;
&lt;p&gt;So why do we do it ourselves?&lt;/p&gt;
&lt;p&gt;(Respectfully standing up for yourself is different.)&lt;/p&gt;
&lt;p&gt;Separately, when you talk bad about others,&lt;/p&gt;
&lt;p&gt;people wonder if you talk bad about them too.&lt;/p&gt;
&lt;p&gt;Just don’t do it. &lt;a href=&quot;https://twitter.com/SystemSunday/status/1587782270043279360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SystemSunday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Leadership principles I know at 33, I wish I had known at 21: &lt;a href=&quot;https://twitter.com/matt_gray_/status/1587792388629594113&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;matt_gray_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No Agenda, No Meeting&lt;/p&gt;
&lt;p&gt;Time is your most valuable resource.&lt;/p&gt;
&lt;p&gt;Hours are wasted in meetings that could be emails.&lt;/p&gt;
&lt;p&gt;When you have meetings, make every minute count by having a clear agenda:&lt;/p&gt;
&lt;p&gt;• What do we want to achieve?&lt;br /&gt;
• How are we going to get there?&lt;br /&gt;
• What&#39;s our timeline? &lt;a href=&quot;https://twitter.com/matt_gray_/status/1587792390882004992&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;matt_gray_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;PM is not the CEO of the Product. But it doesn&#39;t stop there.&lt;/p&gt;
&lt;p&gt;She should not even dictate WHAT needs to be built.&lt;/p&gt;
&lt;p&gt;Let me explain. In most companies, it goes like this: 🧵&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#productmanagement&quot;&gt;#productmanagement&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#prodmgmt&quot;&gt;#prodmgmt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PawelHuryn/status/1587852576829104136&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PawelHuryn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I asked my paid newsletter subscribers what book most helped them become a better product manager.&lt;/p&gt;
&lt;p&gt;Here are the top 10 most mentioned books (in order):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Inspired by Marty Cargan by @cagan&lt;/li&gt;
&lt;li&gt;The Mom Test by @robfitz&lt;/li&gt;
&lt;li&gt;Continuous Discovery Habits by @ttorres &lt;a href=&quot;https://twitter.com/lennysan/status/1587863096843857920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@heyeaslo 1. Wecrash - Great story on the rise and fall of Adam Neuman. The energy is just infectious&lt;br /&gt;
2. Superpumped - How Travis created Uber and went off-limits&lt;br /&gt;
3. Social Network - No words here&lt;br /&gt;
4. Founder - How to reinvent the business model&lt;br /&gt;
5. Pursuit of Happyness - Sheer perseverance &lt;a href=&quot;https://twitter.com/mani5hprasad/status/1587880013784698880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mani5hprasad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UI/UX design tips: Input field size guides for Android UI.&lt;br /&gt;
Although these guides are not fixed, they can be changed with the proper use of a grid system and font.&lt;/p&gt;
&lt;p&gt;Thread..&lt;br /&gt;
(Cc it&#39;s.dezinxIG) &lt;a href=&quot;https://t.co/kftrkoTNLf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/kftrkoTNLf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/creativestefan/status/1588103171917897728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;creativestefan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;And then you have a second problem: all the unnecessary people you&#39;ve hired become a drag on the necessary ones. The unproductive people need to seem like they&#39;re achieving something, so they&#39;ll organize meetings to waste the time of the productive ones. &lt;a href=&quot;https://twitter.com/paulg/status/1588114556311801856&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Too busy to hit the gym? Do a microworkout.&lt;/p&gt;
&lt;p&gt;Microworkouts are short sessions that improve your fitness while boosting your metabolism.&lt;/p&gt;
&lt;p&gt;Here are 16 microworkouts you can do anywhere: &lt;a href=&quot;https://twitter.com/FitFounder/status/1588155583848398849&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To get from A to Z, decide when B and Z are.&lt;/p&gt;
&lt;p&gt;Without Z, there&#39;s no vision, it&#39;s a random walk, no reason to believe it will end well.&lt;/p&gt;
&lt;p&gt;Without B, it&#39;s wishful thinking with no clear way to make progress. &lt;a href=&quot;https://twitter.com/asmartbear/status/1588266315441225754&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Very much hope these luddites suing GitHub over CoPilot lose badly. &lt;a href=&quot;https://twitter.com/maccaw/status/1588302473340456960&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maccaw&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Maybe the difference between a 10x engineer and a 1x is that the 1x decided to build a CI system / Kubernetes deployment system over a month and the 10x engineer copy-pasted them into 8 boxes in 5 minutes. &lt;a href=&quot;https://twitter.com/Suhail/status/1588320561549438980&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;most of the world has lost the will to do big things--incredible alpha now in working on a big project.&lt;/p&gt;
&lt;p&gt;most of the world has also lost the ability to think on a long time horizon.&lt;/p&gt;
&lt;p&gt;combine the two and you&#39;ll be really happy! &lt;a href=&quot;https://twitter.com/sama/status/1588324670335438849&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;100% remote tends to be soulless &lt;a href=&quot;https://t.co/gglPo220Ue&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gglPo220Ue&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TrevMcKendrick/status/1588612835072184321&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TrevMcKendrick&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Competitors can’t copy your startup’s speed, culture, execution, vision, story, team so just focus on those things. &lt;a href=&quot;https://twitter.com/agazdecki/status/1588873078461075456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In 2004 doctors told me:&lt;/p&gt;
&lt;p&gt;&amp;quot;We found several chronic diseases in your body. And if you don&#39;t take this treatment, you&#39;ll die&amp;quot;&lt;/p&gt;
&lt;p&gt;I said &amp;quot;no thanks&amp;quot; and spent 5 years + $1.5 million of my own time and money to find a natural solution.&lt;/p&gt;
&lt;p&gt;The result? I&#39;m alive&lt;/p&gt;
&lt;p&gt;Here&#39;s the wild story: &lt;a href=&quot;https://twitter.com/IanActivated/status/1588911055832584193&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IanActivated&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Us from Mars&lt;br /&gt;
Credit: NASA &lt;a href=&quot;https://t.co/vx9mQk08NL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vx9mQk08NL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/konstructivizm/status/1589129658641317888&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;konstructivizm&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A famous psychologist can predict divorce with 91% accuracy.&lt;/p&gt;
&lt;p&gt;A-list celebs and billionaires go to him with their relationship challenges.&lt;/p&gt;
&lt;p&gt;Here’s the most destructive pattern he identified (and how to protect against it): &lt;a href=&quot;https://twitter.com/mattschnuck/status/1589284599519006721&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mattschnuck&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build a Google-like search for your data in 30 mins.&lt;/p&gt;
&lt;p&gt;Large Language Models have completely changed the search landscape making semantic search accessible and affordable for all.&lt;/p&gt;
&lt;p&gt;(A thread) 🧵👇 &lt;a href=&quot;https://twitter.com/Saboo_Shubham_/status/1589291524822532097&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Saboo_Shubham_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;20 lessons every father must teach his daughter: &lt;a href=&quot;https://t.co/GGeEAA0sL1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GGeEAA0sL1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/CliftonSellers/status/1589294056391282689&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;CliftonSellers&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Creativity starts with an empty calendar and ends with a full one.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1589334048668786689&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Speed of execution and decision making is the biggest advantage startups have over larger companies. Plain and simple. &lt;a href=&quot;https://twitter.com/agazdecki/status/1589604734633381890&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What is body composition?&lt;/p&gt;
&lt;p&gt;Body composition shows the % of fat &amp;amp; muscle in your body.&lt;/p&gt;
&lt;p&gt;Healthy male range: 8%-17% bodyfat&lt;br /&gt;
Healthy female range: 16%-25% body fat&lt;/p&gt;
&lt;p&gt;Now we know what body composition &amp;amp; why it&#39;s so important.&lt;/p&gt;
&lt;p&gt;Here&#39;s how to change your body composition: &lt;a href=&quot;https://twitter.com/TheJackBly/status/1589611206654005248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJackBly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;22 lessons every parent must teach their children:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;You need to teach your children that they aren&#39;t the victim.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You need to teach your children that hard work will always beat talent. &lt;a href=&quot;https://twitter.com/CliftonSellers/status/1589656436673478656&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;CliftonSellers&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@MasterTimBlais DNA is a 4 bit self modifying program that has been executing and forking nonstop for 3,500,000,000 years with such efficiency that the code to make a human species fits on a small thumb drive. It is so relentless that it covers every available niche on Earth. &lt;a href=&quot;https://twitter.com/oren_ai/status/1590359634631876608&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;oren_ai&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lock yourself in a room and read those 12 books on PM&lt;/p&gt;
&lt;p&gt;(you&#39;ll thank me later; Nov 2022): 🧵&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#productmanagement&quot;&gt;#productmanagement&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#prodmgmt&quot;&gt;#prodmgmt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PawelHuryn/status/1590631393364611072&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PawelHuryn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you love meetings and power point presentations join a large company.&lt;/p&gt;
&lt;p&gt;If you love getting shit done and your job changing frequently join a startup. &lt;a href=&quot;https://twitter.com/agazdecki/status/1590724854172758016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What’s 1 thing every father should teach his son? &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1590738908610203650&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pick one thing from your long to-do list that you really can just scratch off and never do, and delete it.&lt;/p&gt;
&lt;p&gt;(If it&#39;s truly important, it will reappear, don&#39;t worry.) &lt;a href=&quot;https://twitter.com/asmartbear/status/1590749938643832848&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just hit our biggest day ever in terms of clicks, and getting close to 1M impressions/day 😳 &lt;a href=&quot;https://t.co/p0GqufATEp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/p0GqufATEp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/thepatwalls/status/1591113547022422018&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thepatwalls&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Matt Mochary has been CEO coach to @naval, the founders of OpenAI, Notion, Rippling, Robinhood, Coinbase, Reddit, Plaid, Flexport, Opendoor, partners at Sequoia, YC, Benchmark, and many others.&lt;/p&gt;
&lt;p&gt;He also open-sourced his entire curriculum, templates and all. Here&#39;s a link 👇 &lt;a href=&quot;https://t.co/6xPI6RIpWp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6xPI6RIpWp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lennysan/status/1591470516178948096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ul&gt;
&lt;li&gt;No meetings before 11am.&lt;/li&gt;
&lt;li&gt;No meetings when emails or calls will do.&lt;/li&gt;
&lt;li&gt;Don’t schedule calls, text coordinate them on the fly when possible.&lt;br /&gt;
-Cram all meetings into two days a week.&lt;/li&gt;
&lt;li&gt;1-on-1s are usually 30-minute walking meetings.&lt;br /&gt;
(Meetings are the death of productivity)&lt;br /&gt;
@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1591850630980591616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The faster you ship.&lt;/p&gt;
&lt;p&gt;The faster you learn.&lt;/p&gt;
&lt;p&gt;The faster you iterate.&lt;/p&gt;
&lt;p&gt;The faster you find product market fit.&lt;/p&gt;
&lt;p&gt;The faster your startup grows.&lt;/p&gt;
&lt;p&gt;It ain’t easy but also not complicated. &lt;a href=&quot;https://twitter.com/agazdecki/status/1592134924219600897&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Without speed of execution most startups just wouldn&#39;t exist, pretty simple. &lt;a href=&quot;https://twitter.com/agazdecki/status/1592341847183327233&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Even if things are challenging, make sure you thoughtfully review everyone&#39;s comp at year end&lt;/p&gt;
&lt;p&gt;Overpaying doesn&#39;t seem to buy you any goodwill&lt;/p&gt;
&lt;p&gt;But underpaying, boy, it festers&lt;/p&gt;
&lt;p&gt;Fix it &lt;a href=&quot;https://twitter.com/jasonlk/status/1592347404287844354&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I&#39;m about 2x more productive when I avoid wheat, alcohol, and meetings.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1592517525333499904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The following example starts with centre aligned text, then changes to left alignment for the other elements.&lt;/p&gt;
&lt;p&gt;The mixture of alignments adds unnecessary complexity, resulting in slightly increased cognitive load and a less tidy interface. &lt;a href=&quot;https://t.co/tFLebnha9b&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tFLebnha9b&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AdhamDannaway/status/1592533715632078853&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AdhamDannaway&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI - HUMAN collaboration will skyrocket across all professions.&lt;/p&gt;
&lt;p&gt;It’s best summed up by an idea that LinkedIn Founder @reidhoffman  recently shared with me: “In the next 5 years, every profession will have an AI co-pilot.”&lt;/p&gt;
&lt;p&gt;Thread. &lt;a href=&quot;https://twitter.com/PeterDiamandis/status/1592604380616077312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PeterDiamandis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What is retirement?&lt;/p&gt;
&lt;p&gt;“When you stop sacrificing today for tomorrow. When today is complete, in and of itself, you’re retired” - @naval &lt;a href=&quot;https://twitter.com/ShaanVP/status/1592627378790236160&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ShaanVP&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What seems to be going on with the Twitter product lately is too much Project Thinking and too little Product Thinking &lt;a href=&quot;https://t.co/zndbutItaB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zndbutItaB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/shreyas/status/1592663521472712705&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A new exciting journey begins - OpenWidget is live 🎉✨ We are starting with simple tools for building better relations in an e-commerce world, but we won&#39;t stop there (more use cases soon!) Check our PH campaign &lt;a href=&quot;https://t.co/wVI48ARFXQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wVI48ARFXQ&lt;/a&gt; &lt;a href=&quot;https://t.co/J7kwveE6SM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/J7kwveE6SM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/MJawinski/status/1592792403215540224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MJawinski&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@LeaVerou YC has funded lots of founders with kids.&lt;/p&gt;
&lt;p&gt;I would ordinarily just ignore this sort of random trolling, but I wouldn&#39;t want potential founders to be discouraged by it. It&#39;s harder to start a startup with kids, especially very young ones, but it&#39;s still possible. &lt;a href=&quot;https://twitter.com/paulg/status/1593221487275958273&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;At $1M monthly revenue I didn&#39;t know how we&#39;d do $2M.&lt;/p&gt;
&lt;p&gt;By $5M it was clear how we could get to $10M.&lt;/p&gt;
&lt;p&gt;Here&#39;s what I&#39;ve learned about scaling a startup: &lt;a href=&quot;https://twitter.com/bbourque/status/1593944770572853255&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bbourque&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;There are only a few marketing strategies that scale:&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;paid acquisition&lt;/li&gt;
&lt;li&gt;organic&lt;/li&gt;
&lt;li&gt;product-led growth&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Most products don&#39;t sell themselves.&lt;/p&gt;
&lt;p&gt;A single big channel can make your business.&lt;/p&gt;
&lt;p&gt;Defend it with additional channels in parallel. &lt;a href=&quot;https://twitter.com/bbourque/status/1593944787853246464&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bbourque&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How headcount explodes in a startup:&lt;/p&gt;
&lt;p&gt;You do a critical task. It takes 1/8 of your time, and is easy and cheap to hire for. So you hire someone to do the task.&lt;/p&gt;
&lt;p&gt;That person does that task well. Great hire! &lt;a href=&quot;https://twitter.com/Austen/status/1594397332006531072&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In fact that person is so smart and resourceful that they start doing two other tasks that, while not critical, are great. What an awesome hire!&lt;/p&gt;
&lt;p&gt;Add those two great things to the list of things we do! &lt;a href=&quot;https://twitter.com/Austen/status/1594397333885624320&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Except unknowingly, you just went from one task that takes 1/8 of a person’s time to three tasks that are a full-time job plus 1/8 of a person to manage them.&lt;/p&gt;
&lt;p&gt;And you can’t eliminate that role, that person does three important tasks!&lt;/p&gt;
&lt;p&gt;Now compound. &lt;a href=&quot;https://twitter.com/Austen/status/1594397335160643584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How can you combat this natural force?&lt;/p&gt;
&lt;p&gt;The only ways I’ve seen:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Have extreme focus and clarity, saying no to many great things that are nice (and can be done with excess bandwidth).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Have people be willing to do tasks that feel “below” their level. &lt;a href=&quot;https://twitter.com/Austen/status/1594397336444100608&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I love to read autobiographies of people who started iconic companies. I was fortunate to work for Zuck and Bezos as their origin stories were still being written, and it&#39;s fun to pattern match against other founders. Here’s a list of some of my favorite business biographies: &lt;a href=&quot;https://twitter.com/DanRose999/status/1594416695581769728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanRose999&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A really, really rough rule in SaaS is you need a second product firmly in place by 10,000 customers, or $100m ARR, whichever comes first&lt;/p&gt;
&lt;p&gt;That probably means launching it by the time you have 5,000 customers&lt;/p&gt;
&lt;p&gt;If your ACV is low, that could be as early as $10m ARR &lt;a href=&quot;https://twitter.com/jasonlk/status/1594529393359015937&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve been an entrepreneur for 7.5 years.&lt;/p&gt;
&lt;p&gt;These rules-of-thumb would&#39;ve saved me 5 years of time and millions of dollars.&lt;/p&gt;
&lt;p&gt;7 business laws to ignore at your own risk: &lt;a href=&quot;https://twitter.com/barrettjoneill/status/1594690624430678016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;barrettjoneill&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A couple tracked the impact of their choices + behaviours on sleep quality for 2.5 years.&lt;/p&gt;
&lt;p&gt;Below were the ones that had the most impact: &lt;a href=&quot;https://t.co/mztmFofRfr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mztmFofRfr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FitFounder/status/1594807306323365889&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When your startup tries to serve everyone you end up serving no one. &lt;a href=&quot;https://twitter.com/agazdecki/status/1594883618463444992&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s not 10,000 hours, it’s 10,000 iterations. &lt;a href=&quot;https://twitter.com/naval/status/1594923336043069441&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great stories tell hard truths. &lt;a href=&quot;https://twitter.com/naval/status/1594927541571112961&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good Morning Everyone! Is inflation cancelled? Container shipping costs are back to pre-pandemic levels. &lt;a href=&quot;https://t.co/IBWxzyNClg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IBWxzyNClg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GRDecter/status/1595047100647366657&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GRDecter&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Overthinking everything kills so many startups so please ship your product. &lt;a href=&quot;https://twitter.com/agazdecki/status/1595051074540691457&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most founders don’t realize they have multiple corp tax requirements each year. To get access to tax credits (up to $500k/yr) &amp;amp; avoid penalties, filing on time is a must.&lt;/p&gt;
&lt;p&gt;At @tryfondo we&#39;ve helped 1,000+ founders with this.&lt;/p&gt;
&lt;p&gt;The most important tax deadlines you can&#39;t ignore 👇 &lt;a href=&quot;https://twitter.com/davj/status/1595054141021179904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;davj&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Learn through experience.&lt;/p&gt;
&lt;p&gt;Teach through storytelling. &lt;a href=&quot;https://twitter.com/dharmesh/status/1595062968382681090&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;So far, the only startups I’ve lost money investing in had one thing in common: they had high churn in the early days&lt;/p&gt;
&lt;p&gt;Some fought through it&lt;/p&gt;
&lt;p&gt;But a lot never do &lt;a href=&quot;https://twitter.com/jasonlk/status/1595092680614240257&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A good rule for life: Always give people a second chance, but never give them a third. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1595109492634849281&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In technology, never outsource the thing that benefits your customers the most. You should own it and relentlessly make it better. Nobody should know it better than you. &lt;a href=&quot;https://twitter.com/Suhail/status/1595256674972884993&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If your operating cadence is quarterly your company will ship 4 things per year.&lt;/p&gt;
&lt;p&gt;If your operating cadence is monthly you’ll ship 12.&lt;/p&gt;
&lt;p&gt;Biweekly you’ll ship 100.&lt;/p&gt;
&lt;p&gt;Weekly you’ll ship 50.&lt;/p&gt;
&lt;p&gt;Daily you’ll ship 260. &lt;a href=&quot;https://twitter.com/Austen/status/1595285676378902528&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@elonmusk Good health&lt;br /&gt;
Time in nature&lt;br /&gt;
Peace and stability&lt;br /&gt;
Clean water, good air&lt;br /&gt;
A dutiful wife that cooks well&lt;br /&gt;
Meaningful work you like doing&lt;br /&gt;
Strong children you spend time with &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1595340036836569088&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Making people laugh and smile with your startups marketing is powerful. &lt;a href=&quot;https://twitter.com/agazdecki/status/1595408219316391937&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you always feel tired read this: &lt;a href=&quot;https://twitter.com/FitFounder/status/1595417438538956800&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the long-run, prioritization beats efficiency. &lt;a href=&quot;https://twitter.com/JamesClear/status/1595431991708569600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why I want you to have your own principles: (1/7) &lt;a href=&quot;https://t.co/MS8kNNLpNp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MS8kNNLpNp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1595496277114060801&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You get rewarded for unique knowledge, not for effort.&lt;/p&gt;
&lt;p&gt;Effort is required to create unique knowledge.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1595582219224944640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Meditation is intermittent fasting for the mind.&lt;br /&gt;
Too much sugar leads to a heavy body &amp;amp; too many distractions lead to a heavy mind.&lt;br /&gt;
Time spent undistracted &amp;amp; alone, in self-examination, journaling, meditation, resolves the unresolved and takes us from mentally fat to fit.&lt;br /&gt;
@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1595703773174939657&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The people who succeed are irrationally passionate about something.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1595764420399058944&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Charlie Munger is a modern-day polymath and one of the most respected investors of all time.&lt;/p&gt;
&lt;p&gt;He credits reading 500 pages/day with much of his success—his children even call him a book with legs.&lt;/p&gt;
&lt;p&gt;Here are 20 of his favourite books: &lt;a href=&quot;https://twitter.com/_alexbrogan/status/1595783110838276099&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;_alexbrogan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Beware of perfectionism.&lt;/p&gt;
&lt;p&gt;Churchill said another way to spell “perfectionism” is P-A-R-A-L-Y-S-I-S.&lt;/p&gt;
&lt;p&gt;It’s good to have high standards but all virtues become vices if taken too far. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1595900088362016768&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Code is the biggest lever humanity has ever invented. Yet it’s still constrained by how fast you can learn and type. Imagine how the world changes when these bottlenecks are solved. &lt;a href=&quot;https://twitter.com/amasad/status/1596264732394426368&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amasad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Looking back, the best outcomes came from pure actions, without motive.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1596341723919257600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to lose fat:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Eat less food (no oil, no sugar)&lt;/li&gt;
&lt;li&gt;Strength train 3-4x per week (this preserves muscle mass)&lt;/li&gt;
&lt;li&gt;20 minutes of cardio every day&lt;/li&gt;
&lt;li&gt;10k-15k steps (use your smartphone/watch to track)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It&#39;s that simple. You should drop 2-4kg per month. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1596369943875883008&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;We confuse equal opportunity &amp;amp; equal outcome. Equal opportunity is a noble goal. Free people make different choices &amp;amp; have unequal outcomes.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1596402625087475712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I’m trying to get rid of is the word &#39;should.&#39; Whenever the word &#39;should&#39; creeps up in your mind, it’s guilt or social programming. Doing something because you &#39;should&#39; basically means you don’t actually want to do it. It’s just making you miserable.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1596493977145982981&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@bgabraga @scottintheworld So many ways! I would start by just learning first - Backlinko and Authority Hacker are good places to start. But focus on creating good content above all else. Some links will come and others you can generate with a little hustle. &lt;a href=&quot;https://twitter.com/NicheRanger/status/1596633870132281345&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NicheRanger&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startup founders who are great at sales and marketing will win the next decade because building the best product simply isn&#39;t enough anymore. &lt;a href=&quot;https://twitter.com/agazdecki/status/1596862909904142337&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you write your principles down:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You will think more deeply about them&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If you pause to think about your principles for dealing with the situations you are encountering, you will think much more deeply about them, which will make them better. (1/6) &lt;a href=&quot;https://t.co/Pp2dybW5I8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Pp2dybW5I8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1597313995136208897&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start VPs of Sales lead from the front:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;They are in all the big deals&lt;/li&gt;
&lt;li&gt;They know every deal&lt;/li&gt;
&lt;li&gt;They backup the team&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;BiggerCo VPs of Sales lead from behind:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;They monitor dashboards&lt;/li&gt;
&lt;li&gt;They tell team to sell more&lt;/li&gt;
&lt;li&gt;They meet some customers in the EBC &lt;a href=&quot;https://twitter.com/jasonlk/status/1597338793899544576&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;At least once a day, I see a startup’s website and think, “I have no idea what this company does.” Don&#39;t think I&#39;m alone here.&lt;/p&gt;
&lt;p&gt;Here&#39;s how to develop early &amp;amp; growth stage homepage copy that actually explains your product and drives your audience to convert: &lt;a href=&quot;https://twitter.com/emilykramer/status/1597382081708843008&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;emilykramer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A good design is one that allows the user to accomplish their goal efficiently and effortlessly. &lt;a href=&quot;https://twitter.com/DenisJeliazkov/status/1597425126991085568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DenisJeliazkov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;It’s becoming easier and easier to be social, but exceptional people are built in solitude.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1597464874518335489&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ghee &amp;gt; Vegetable oil&lt;/p&gt;
&lt;p&gt;Unless you can&#39;t afford ghee, there is no reason to cook in vegetable oil.&lt;/p&gt;
&lt;p&gt;You want to live long and be strong right? Eat ghee. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1597555621012070401&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It doesn’t matter how great your startup&#39;s product is unless you can actually convince people to purchase it so please learn sales, its 90% of the job. &lt;a href=&quot;https://twitter.com/agazdecki/status/1597581904978378752&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Here&#39;s some books I recommend...&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;To sell is human&lt;/li&gt;
&lt;li&gt;Sales acceleration formula&lt;/li&gt;
&lt;li&gt;Predictable revenue&lt;/li&gt;
&lt;li&gt;The challenger sale&lt;/li&gt;
&lt;li&gt;Sell the way you buy&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Then cold calling potential customers.&lt;/p&gt;
&lt;p&gt;Experience is always the best teacher. &lt;a href=&quot;https://twitter.com/agazdecki/status/1597585919741415424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The two-minute rule specifies that you have to give someone an uninterrupted two minutes to explain their thinking before jumping in with your own. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; (1/2) &lt;a href=&quot;https://t.co/h3s9VzlACR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/h3s9VzlACR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1597605324906975232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Winners tend to underestimate the role of luck in outcomes, and losers to overestimate it. So all other things being equal, someone who is always talking about luck is probably a loser. &lt;a href=&quot;https://twitter.com/paulg/status/1597620265286270979&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Being unhappy is very inefficient.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1597647075365240832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The fundamental delusion - there is something out there that will make me happy and fulfilled forever.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1597737923855646720&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Marketing isn’t about tricking people into buying your product…&lt;/p&gt;
&lt;p&gt;It’s about offering a solution to an already existing problem. &lt;a href=&quot;https://twitter.com/DenisJeliazkov/status/1597787512914731011&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DenisJeliazkov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you have two choices to make, and they’re relatively equal choices, take the path more difficult and more painful in the short term.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1597919872926654465&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Create a basic landing page, start talking to customers, understand their problems, build a simple solution for it, and just like that you have a startup. &lt;a href=&quot;https://twitter.com/agazdecki/status/1597948316155015169&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Some of the most creative and productive people I have ever met work in multi-week bursts and then have weeks where they just idle with little done. It’s the nature of the human animal.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1597950323498401792&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Friendly reminder your job as CEO of a startup is to recruit a team of generalists to build and then recruit a team of specialists to scale. &lt;a href=&quot;https://twitter.com/agazdecki/status/1597966986398400512&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I, and I alone, am responsible for everything I think and feel.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1598011224993796096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The measure of wisdom is how calm you are when facing any given situation.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1598098801662693376&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What AI Twitter forgets is that 99.9999% of the world doesn’t know what a GPT-4 is, never will, and doesn’t care.&lt;/p&gt;
&lt;p&gt;They want to get a promotion.&lt;br /&gt;
Or get home to their family early.&lt;br /&gt;
Or find someone to marry.&lt;/p&gt;
&lt;p&gt;Use AI to help become the hero in their life and they will love you. &lt;a href=&quot;https://twitter.com/DaveRogenmoser/status/1598121368414846976&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DaveRogenmoser&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Value your time. It is all you have. It’s more important than your money. It’s more important than your friends. It is more important than anything. Your time is all you have. Do not waste your time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1598313969550209024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;New wave of startups coming. Their stack:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;landing page&lt;/li&gt;
&lt;li&gt;form input + stripe button&lt;/li&gt;
&lt;li&gt;ChatGPT api&lt;/li&gt;
&lt;li&gt;output displayed/emailed&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Who can make money the quickest?! &lt;a href=&quot;https://twitter.com/bentossell/status/1598430145014288384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bentossell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Positioning over predicting.&lt;/p&gt;
&lt;p&gt;Put yourself in a position that allows you to prosper no matter the circumstances and you can always play offense.&lt;/p&gt;
&lt;p&gt;— Peter Kaufman &lt;a href=&quot;https://twitter.com/shaneparrish/status/1598433302637060127&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every startup needs to have an unfair advantage in their market and it doesn&#39;t always have to be product. It can be...&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Brand&lt;/li&gt;
&lt;li&gt;Design&lt;/li&gt;
&lt;li&gt;Marketing&lt;/li&gt;
&lt;li&gt;Distribution&lt;/li&gt;
&lt;li&gt;Support&lt;/li&gt;
&lt;li&gt;Dark mode&lt;/li&gt;
&lt;li&gt;Team&lt;/li&gt;
&lt;li&gt;Culture&lt;/li&gt;
&lt;li&gt;Pricing&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The list is endless. &lt;a href=&quot;https://twitter.com/agazdecki/status/1598459053549973508&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI is doing 80% of my coding – the future looks brighter than ever! 🤩 &lt;a href=&quot;https://t.co/h6kTCdPnSf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/h6kTCdPnSf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dannypostmaa/status/1598476315707191296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dannypostmaa&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’m sorry, I simply cannot be cynical about a technology that can accomplish this. &lt;a href=&quot;https://t.co/yjlY72eZ0m&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/yjlY72eZ0m&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tqbf/status/1598513757805858820&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tqbf&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You don’t need mentors, you need action.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1598678119006756865&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The striking thing about the reaction to ChatGPT is not just the number of people who are blown away by it, but who they are. These are not people who get excited by every shiny new thing. Clearly something big is happening. &lt;a href=&quot;https://twitter.com/paulg/status/1598698665337561088&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg The greatest part of ChatGPT right now is the creativity of humans in the questions they ask.&lt;/p&gt;
&lt;p&gt;The second greatest part is the unbelievable responses this AI is generating. 🤯 &lt;a href=&quot;https://twitter.com/bockius/status/1598707472792924160&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bockius&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your main job as a startup founder or employee right now is to figure out how to get OpenAI to do 90% of your work for you and still get paid. &lt;a href=&quot;https://twitter.com/agazdecki/status/1598729557611544576&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Infinite Tools.&lt;/p&gt;
&lt;p&gt;My biggest regret is not understanding this earlier: &lt;a href=&quot;https://t.co/XADrHTfr3V&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XADrHTfr3V&lt;/a&gt; &lt;a href=&quot;https://twitter.com/george__mack/status/1598753870875852801&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@dagorenouf It gets good after year 3-4. &lt;a href=&quot;https://twitter.com/agazdecki/status/1599051524143214592&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fast talkers are people who articulately and assertively say things faster than they can be assessed as a way of pushing their agenda past other people&#39;s examination or objections. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; (1/3) &lt;a href=&quot;https://t.co/SwBIjzX83v&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SwBIjzX83v&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1599056902637248514&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How educator Alycia Zimmerman used her students’ favorite plastic blocks to help them learn math skills&lt;/p&gt;
&lt;p&gt;[read more: &lt;a href=&quot;https://t.co/853bkBgnFV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/853bkBgnFV&lt;/a&gt;] &lt;a href=&quot;https://t.co/k5bCaJ1eIz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/k5bCaJ1eIz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1599475884255490049&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;90% of good UX is removing things until it’s as simple as can be…&lt;/p&gt;
&lt;p&gt;Sometimes less is really more. &lt;a href=&quot;https://twitter.com/DenisJeliazkov/status/1599780705998966784&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DenisJeliazkov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@waitbutwhy Related advice for founders:&lt;/p&gt;
&lt;p&gt;If you&#39;re making something for young people, assume they&#39;re willing to spend time but not money.&lt;/p&gt;
&lt;p&gt;Rich people love things that save them time, and hate things that waste their time. &lt;a href=&quot;https://twitter.com/paulg/status/1599783224191766528&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Together, these fives steps make up an evolutionary loop. Let’s look at this process more granularly. First you have to pick what you are going after–your goals. You choice of goals will determine your direction. As you move toward your goals, you will encounter problems. (1/5) &lt;a href=&quot;https://t.co/MzTgRHcOio&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MzTgRHcOio&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1599850502291759104&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;3 rules to express your thoughts so everyone understands:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Make no more than three points.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Explain difficult ideas in three different ways.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Make important points three times.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;(via @alanalda)&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ZN5BtCxL63&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZN5BtCxL63&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1599856781693489159&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI has officially replaced CEOs. &lt;a href=&quot;https://t.co/Om0n6jowHt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Om0n6jowHt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/levie/status/1599864785071673344&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As you get wealthier, focus on upgrading your mind, not on upgrading your lifestyle. &lt;a href=&quot;https://twitter.com/orangebook/status/1600468060313636864&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you are a perfectionist, be a perfectionist about learning from your mistakes. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1600520533501628416&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to 3x your reading speed in 7 days: &lt;a href=&quot;https://twitter.com/SystemSunday/status/1601568970301386755&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SystemSunday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s much easier to sell a $1000 product 1,000 times than it is to sell a $10 product 100,000 times.&lt;/p&gt;
&lt;p&gt;You are not Amazon and don&#39;t have ultra wide distribution.&lt;/p&gt;
&lt;p&gt;Unless you hate money, create a high value product you can sell at a high price point. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1601917968018857984&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The true potential of AI is to augment human intelligence -- to serve as our interface to an increasingly complex, connected, and information-intensive world.&lt;/p&gt;
&lt;p&gt;Imagine having a conversation with Wikipedia. Or a brainstorming session with arXiv. &lt;a href=&quot;https://twitter.com/fchollet/status/1602112355890257920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fchollet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your main job as a startup founder is to put in the work and find paying customers yourself in the beginning. Please stop making excuses. &lt;a href=&quot;https://twitter.com/agazdecki/status/1602278663860342784&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Earth at night viewed from space. &lt;a href=&quot;https://t.co/UGRVGQvcVi&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/UGRVGQvcVi&lt;/a&gt; &lt;a href=&quot;https://twitter.com/wonderofscience/status/1602279601488568322&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wonderofscience&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A positive mindset doesn&#39;t ensure success, but a negative one ensures defeat. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1602294900745293827&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I want to help you discover good principles that suit you and write them down. While that might sound like a lot or like you have a lot to do to develop great principles, that’s not true at all. All you need to do is start journaling and see what comes from it. (1/2) &lt;a href=&quot;https://t.co/F4ev6KPUf1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/F4ev6KPUf1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1602321970325901313&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A friendship based on business is superior to a business based on friendship.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;John D Rockefeller &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1602401660860792832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You will get rich by giving society what it wants but does not yet know how to get. At scale.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1602409707439853584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Inspiration for you:&lt;/p&gt;
&lt;p&gt;The biggest businesses I&#39;ve ever sold started as someone’s side hustle.&lt;/p&gt;
&lt;p&gt;Start your side hustle to change your life. &lt;a href=&quot;https://twitter.com/ThomasSmale/status/1602663956207878146&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ThomasSmale&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My office at this moment. The papers on the desk are notes for a new essay. After dropping 10 yo off at school, I go for a walk and think about what to write next. I bring a piece of paper to scribble down notes that I never read, and probably couldn&#39;t. &lt;a href=&quot;https://t.co/RGkpjY5Vkj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/RGkpjY5Vkj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1602717511274958850&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Everyone Must Talk to Customers&amp;quot; &lt;a href=&quot;https://t.co/hJqVCmneIc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hJqVCmneIc&lt;/a&gt; @jboogie &lt;a href=&quot;https://t.co/hQNcKonDGA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hQNcKonDGA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AgeOfProduct/status/1602745175855751169&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AgeOfProduct&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Guard your time. Forget the money.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1602773353533669377&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@jasonlk Hire great CSM team.  Survey 1-2x/year and for sure 6 months prior to renewal.  Ask NPS question.  Ask renewal intent question.  Monitor usage.  Monitor escalations.  Monitor executive changes and do immediately relationship rebuild when they happen.  Watch for sponsor changes. &lt;a href=&quot;https://twitter.com/Kellblog/status/1602874810119630849&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kellblog&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;private keys will never catch on&amp;quot;, skeptics say as apple releases end-to-end encryption for iCloud in iOS 16.2 that prompts you to safeguard your own 28-character recovery key &lt;a href=&quot;https://twitter.com/0xfoobar/status/1602921683941486592&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;0xfoobar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2019 when we got started with Linear, most SaaS websites at the time seemed to be these &amp;quot;Corporate Memphis&amp;quot; sites with vague benefit statements and weird  colorful illustrations. No screenshots of the product and dark sites were very rare in B2B SaaS. &lt;a href=&quot;https://t.co/VRP3vvdctj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VRP3vvdctj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/karrisaarinen/status/1603088513536245760&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karrisaarinen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Design wise, we really wanted to talk people like us and who to build things well. Dark mode and dark website for was that we are not part of the &amp;quot;Corporate Memphis&amp;quot; and we care about crafting a product that works and fits needs.&lt;/p&gt;
&lt;p&gt;Some of our early &amp;quot;specs&amp;quot; for Linear interface &lt;a href=&quot;https://t.co/KozFvUB6P4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KozFvUB6P4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/karrisaarinen/status/1603088516598190080&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karrisaarinen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;All benefits in life come from compound interest, whether in money, relationships, love, health, activities, or habits. I only want to be around people I know I’m going to be around for the rest of my life. I only want to work on things I know have long-term payout.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1603319955461644288&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My Annual Review:&lt;/p&gt;
&lt;p&gt;(1) What did I change my mind on?&lt;br /&gt;
(2) What created energy?&lt;br /&gt;
(3) What drained energy?&lt;br /&gt;
(4) What were the boat anchors?&lt;br /&gt;
(5) What did I not do because of fear?&lt;br /&gt;
(6) What were my greatest hits/misses?&lt;br /&gt;
(7) What did I learn?&lt;/p&gt;
&lt;p&gt;Follow me @SahilBloom for more in 2023. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1603388586715451395&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I want to help you discover good principles that suit you and write them down. While that might sound like a lot or like you have a lot to do to develop great principles, that’s not true at all. All you need to do is start journaling and see what comes from it. (1/2) &lt;a href=&quot;https://t.co/DjPXZCvxKw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DjPXZCvxKw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1603411058579881988&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;With people you care about, tell them the truth.&lt;/p&gt;
&lt;p&gt;With people you don&#39;t, tell them what they want to hear. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1603488821458309120&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A lot of people ask me for help deciding on a niche for their site. I always tell them their primary passion is the best answer.&lt;/p&gt;
&lt;p&gt;But I like data too.&lt;/p&gt;
&lt;p&gt;So look at what&#39;s already proven outside of a website.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Every sizable sub-Reddit is a $10k+/mo website.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;be continued: &lt;a href=&quot;https://twitter.com/scottintheworld/status/1603899686267428864&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;scottintheworld&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What was the best book you read in 2022 and the main lesson you took from it? &lt;a href=&quot;https://twitter.com/shaneparrish/status/1604105864465461248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus your startup on solving one painful problem really well, not 100. &lt;a href=&quot;https://twitter.com/agazdecki/status/1604110560697556993&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;67% of startups fail due to co-founder dynamics.&lt;/p&gt;
&lt;p&gt;5 crucial cofounder conversations (that also protect against a divorce): &lt;a href=&quot;https://twitter.com/mattschnuck/status/1604146922825977856&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mattschnuck&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@ShaneAParrish The book you wish your parents had read. I’m convinced this is the only book any parent or caregiver needs to read. Main takeaway; All feelings are valid and the old way of do as I say is dead. &lt;a href=&quot;https://t.co/ir51zqXTwK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ir51zqXTwK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Chris_Lamont/status/1604395141195878401&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Chris_Lamont&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@ShaneAParrish The Courage to be Disliked by Kishimi and Koga. Everything in your life is in your power to change, provided you have the courage to do so. &lt;a href=&quot;https://t.co/ivTK6XA0kQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ivTK6XA0kQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kkmurerwa/status/1604400979809636352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kkmurerwa&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@WrongsToWrite Relationships determine quality of your life — choose wisely. &lt;a href=&quot;https://twitter.com/mkalbeitzer1/status/1604519358474031107&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mkalbeitzer1&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The goal of great design is to make complex tasks simple and easy to understand. &lt;a href=&quot;https://twitter.com/DenisJeliazkov/status/1604854093482172418&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DenisJeliazkov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Shit on @elonmusk all you want, but he has The Now Habit.&lt;/p&gt;
&lt;p&gt;As soon as he has an idea, he takes action towards making it happen.&lt;/p&gt;
&lt;p&gt;This is inherently chaotic, but for better or worse, it&#39;s likely a big part of why he&#39;s so successful.&lt;/p&gt;
&lt;p&gt;Rapid action, iteration, and experimentation. &lt;a href=&quot;https://twitter.com/awilkinson/status/1604860082986311681&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone is repeating “outcomes over output.”&lt;/p&gt;
&lt;p&gt;But there is no single definition of what outcomes are.&lt;/p&gt;
&lt;p&gt;Let’s simplify this. There are three types of outcomes: &lt;a href=&quot;https://twitter.com/PawelHuryn/status/1604866800541642752&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PawelHuryn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ul&gt;
&lt;li&gt;Product teams should focus on product outcomes, which they can influence directly, and customer outcomes (especially for a new product) that drive those results. &lt;a href=&quot;https://twitter.com/PawelHuryn/status/1604866845877538819&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PawelHuryn&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The secret of happiness, you see, is not found in seeking more, but in developing the capacity to enjoy less.&amp;quot; — Socrates &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1604959791004016640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t think. Don’t overanalyze. Do the work. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1605201400866443266&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jeff Bezos said:&lt;/p&gt;
&lt;p&gt;“There is no way to write a six-page narratively structured memo and not have clear thinking.”&lt;/p&gt;
&lt;p&gt;Here’s the writing framework Bezos uses (that you can too): &lt;a href=&quot;https://twitter.com/nathanbaugh27/status/1605215781268111360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nathanbaugh27&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@GerberKawasaki Please tell us your great ideas, Ross … &lt;a href=&quot;https://twitter.com/elonmusk/status/1605281685972701197&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The highest roi on any dollar spent is a house cleaner. &lt;a href=&quot;https://twitter.com/barrettjoneill/status/1605353033420148736&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;barrettjoneill&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Kroczek po kroczku. &lt;a href=&quot;https://t.co/1oNLW0Wljx&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/1oNLW0Wljx&lt;/a&gt; &lt;a href=&quot;https://twitter.com/sadek/status/1605522771764822016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I lost my grandmother in 2017.&lt;/p&gt;
&lt;p&gt;For a while, I thought of her every day.&lt;/p&gt;
&lt;p&gt;Then, once a week, then once a month.&lt;/p&gt;
&lt;p&gt;I didn&#39;t think of her at all this year, until her 5th death anniversary.&lt;/p&gt;
&lt;p&gt;Stop living for other people&#39;s approval. Even the ones who love you forget you so fast. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1605541849006948352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’m working across 4 companies of varying sizes at the moment&lt;/p&gt;
&lt;p&gt;Here are the most common causes of friction I see and how you can prevent them…. &lt;a href=&quot;https://twitter.com/AmandaMGoetz/status/1605562397166403584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AmandaMGoetz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clear strategic vision&lt;/p&gt;
&lt;p&gt;With a clear understanding of where the company is headed (repeated over and over in every meeting), decisions can made at every level without the CEO in the room.&lt;/p&gt;
&lt;p&gt;The teams have the destination and can figure out the best way to get there. &lt;a href=&quot;https://twitter.com/AmandaMGoetz/status/1605562399653695488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AmandaMGoetz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clear brand strategy and positioning&lt;/p&gt;
&lt;p&gt;Without an understanding of you WHY - communicated and understood across every department - you will become a bag of features.&lt;/p&gt;
&lt;p&gt;No one is buying features. &lt;a href=&quot;https://twitter.com/AmandaMGoetz/status/1605562402451337216&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AmandaMGoetz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus &amp;amp; Anti-Goals&lt;/p&gt;
&lt;p&gt;It’s faster to do one thing with 100% attention than 10 things at 10% attention.&lt;/p&gt;
&lt;p&gt;Creating clear goals and anti-goals (what are we consciously choosing to not pursue) will help clear the teams to move faster. &lt;a href=&quot;https://twitter.com/AmandaMGoetz/status/1605562405362073600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AmandaMGoetz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clear definition of success&lt;/p&gt;
&lt;p&gt;We need to promote this app feature!&lt;/p&gt;
&lt;p&gt;Why?&lt;br /&gt;
to ⬆️ DAUs?&lt;br /&gt;
to ⬆️ sales?&lt;br /&gt;
we believe increased usage will increase LTV?&lt;/p&gt;
&lt;p&gt;For a hypothesis with quantitative measures of success and test.&lt;/p&gt;
&lt;p&gt;No goal? No go. &lt;a href=&quot;https://twitter.com/AmandaMGoetz/status/1605562408918913024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AmandaMGoetz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clear DRIs&lt;/p&gt;
&lt;p&gt;A DRI is the “directly responsible individual”&lt;/p&gt;
&lt;p&gt;That person isn’t doing all the work but they are responsible for making sure it gets done.&lt;/p&gt;
&lt;p&gt;So many meetings end with no one knowing who is clearly in charge of the project. &lt;a href=&quot;https://twitter.com/AmandaMGoetz/status/1605562413692108803&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AmandaMGoetz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;No success in the professional realm can compensate for failure in the home.&amp;quot; - A wise friend.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1605790235685785600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 companies that hit massive scale with surprisingly small teams: &lt;a href=&quot;https://twitter.com/nathanbarry/status/1605948702933516288&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nathanbarry&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;0/ Most first time founders screw up their board by optimizing for the wrong things. Having built multiple of my own (and screwed up) and having sat on dozens more, here are a few things to keep in mind 👇 &lt;a href=&quot;https://twitter.com/martin_casado/status/1606045787086999553&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;martin_casado&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nothing you consume can go on your resume&lt;/p&gt;
&lt;p&gt;Only things you create &lt;a href=&quot;https://twitter.com/fortelabs/status/1606066640163962880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fortelabs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Happy holidays from the TimeCamp team!&lt;/p&gt;
&lt;p&gt;Make each hour of this festive season count🎄💚&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#MerryChristmas&quot;&gt;#MerryChristmas&lt;/a&gt; and &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#HappyNewYear&quot;&gt;#HappyNewYear&lt;/a&gt; &lt;a href=&quot;https://t.co/g1OxUjhbyX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/g1OxUjhbyX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1606338974120673280&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Inspiration is perishable - act on it immediately.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1606488080818372608&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Work Like a Lion&lt;/p&gt;
&lt;p&gt;Parkinson&#39;s Law says that work expands to fill the time available for its completion.&lt;/p&gt;
&lt;p&gt;When you establish fixed hours to work, you&#39;ll find unproductive ways to fill it.&lt;/p&gt;
&lt;p&gt;Work longer, get less done.&lt;/p&gt;
&lt;p&gt;Work like a lion instead—wait, SPRINT, rest, repeat. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1606645637172187136&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you don’t have leverage, you’re never going to make real wealth.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1606700228874326018&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;To measure the quality of your life, simply do nothing, and see how it feels.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1606730679378534400&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just in case someone was worried that $NOW was reporting renewal rates because they didn&#39;t have good net retention &lt;a href=&quot;https://t.co/iDENeUYF8V&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iDENeUYF8V&lt;/a&gt; &lt;a href=&quot;https://twitter.com/shomikghosh21/status/1607790396796727296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shomikghosh21&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to understand that you work for your team and not the other way around because without them you have nothing. &lt;a href=&quot;https://twitter.com/agazdecki/status/1609721747527577600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/anB2On78OG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/anB2On78OG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1609970246093357057&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A poem written by an 85 year old woman at the end of her life: &lt;a href=&quot;https://t.co/ASwDFVibLf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ASwDFVibLf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/IAmAndrewKirby/status/1610041005998505984&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmAndrewKirby&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Before you set goals, do this first: &lt;a href=&quot;https://t.co/3AuiJkE8Fm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3AuiJkE8Fm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/chrishlad/status/1610061394803580930&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;chrishlad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg &lt;a href=&quot;https://t.co/i8vyO3zVTH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/i8vyO3zVTH&lt;/a&gt; your 10 yo would like this book. Written by the father of the former Alameda CEO. Amazingly 30 new Barnes and Nobles opening this year &lt;a href=&quot;https://twitter.com/patsfan2333/status/1610115259359977474&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patsfan2333&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The more seriously you take yourself, the unhappier you’re going to be.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1610180198443503616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life is like a giant smorgasbord with more delicious alternatives than you can ever hope to taste. Choosing a goal often means rejecting some things you want in order to get other things that you want or need even more. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; (1/3) &lt;a href=&quot;https://t.co/cJT80qiDdm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/cJT80qiDdm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1610299110619324417&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I watched every single Jeff Bezos interview.&lt;/p&gt;
&lt;p&gt;He says the same word 100s of times.&lt;/p&gt;
&lt;p&gt;And it’s the only obsession that matters: &lt;a href=&quot;https://t.co/NBQjpUsxIE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NBQjpUsxIE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/brandon/status/1610636138993139715&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;brandon&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;Walking is not a good exercise&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Walking is one of the most underrated exercises on the planet.&lt;/p&gt;
&lt;p&gt;It decreases stress, increases energy, improves creativity, &amp;amp; helps you burn calories.&lt;/p&gt;
&lt;p&gt;When done in nature it is one of the best things you could do to your brain and body. &lt;a href=&quot;https://twitter.com/FitFounder/status/1610637758199914501&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What do 36 million people use now that eventually 5 billion will? &lt;a href=&quot;https://twitter.com/paulg/status/1610644813526745089&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Trying something new.&lt;/p&gt;
&lt;p&gt;Since podcast episodes can be overlooked, or forgotten, I&#39;m going to share 5 nuggets of wisdom from some favorite past episodes.&lt;/p&gt;
&lt;p&gt;First up, my conversation with @ElenaVera on B2B growth strategy.&lt;/p&gt;
&lt;p&gt;Here are five killer insights from Elena: &lt;a href=&quot;https://twitter.com/lennysan/status/1610706529086509058&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1/ Much of your growth strategy can be boiled down to a 3x3 matrix.&lt;/p&gt;
&lt;p&gt;Your job is to pick the right growth motion (Product-led, Marketing-led, Sales-led) for each of your three main growth levers (Acquisition, Monetization, Retention). &lt;a href=&quot;https://t.co/Rq1nKCBIup&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Rq1nKCBIup&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lennysan/status/1610706530969735168&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If AI saves people from having to write, it will also save them from having the ideas that writing engenders. &lt;a href=&quot;https://twitter.com/paulg/status/1610812670290325504&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI will not replace you. A person using AI will. &lt;a href=&quot;https://twitter.com/svpino/status/1610984481342771200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;svpino&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;13&quot;&gt;
&lt;li&gt;Fix the lightbulb&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;And take out the trash. And unclog the toilet. And replace your air filters.&lt;/p&gt;
&lt;p&gt;If little things around the house need to get done, do them. That&#39;s your job. Nobody&#39;s going to do it for you.&lt;/p&gt;
&lt;p&gt;Take ownership of your surroundings. That&#39;s what a man does. &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1611343558455214083&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;20&quot;&gt;
&lt;li&gt;It&#39;s supposed to be hard&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;When you&#39;re doing something difficult and you want to quit, remind yourself:&lt;/p&gt;
&lt;p&gt;&amp;quot;It&#39;s supposed to be hard. If it was easy, I wouldn&#39;t be getting better.&amp;quot;&lt;/p&gt;
&lt;p&gt;Becoming elite is never easy. If it was, that word would lose all meaning.&lt;/p&gt;
&lt;p&gt;Seek difficulty daily &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1611343579049299968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Nothing taught by force stays in the soul.&amp;quot; — Plato &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1611482762518859777&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@SystemSunday When i was in taiwan and working for a company there, everyone after eating lunch will sleep on their table for like 30 mins or so. I think it&#39;s quite common in china and Japan as well. &lt;a href=&quot;https://twitter.com/VonRofX/status/1612107695745794048&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;VonRofX&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In your opinion, what’s the main cause of unhappiness for men? &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1612158688143327235&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A Growth Hacking lesson from @calm&lt;/p&gt;
&lt;p&gt;As @reforge alumni, I learned (the hard way) how important retention is for your business growth. Nobody knows this better than Calm, the meditation app.&lt;br /&gt;
Calm was able to boost its retention rate by following these steps: &lt;a href=&quot;https://twitter.com/DPirciu/status/1612473656747106309&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DPirciu&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To the people who &amp;quot;can&#39;t lose weight&amp;quot;:&lt;/p&gt;
&lt;p&gt;Try getting on a 1000 calorie per day deficit.&lt;/p&gt;
&lt;p&gt;It&#39;s literally impossible to not lose weight.&lt;/p&gt;
&lt;p&gt;You are just eating too much. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1612548517519851526&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Impatience with actions, patience with results.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1612573806232588310&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Get wealthy, get healthy, get happy.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1612846729878978563&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Five steps to starting your PLG motion&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Read on&lt;/em&gt; &lt;a href=&quot;https://t.co/TPNhLqKcgm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TPNhLqKcgm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lennysan/status/1612855537649188865&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’re not talking to customers a few times a week, you don’t understand your customers.&lt;/p&gt;
&lt;p&gt;Applies to every position, no exceptions.&lt;/p&gt;
&lt;p&gt;Not everyone &lt;em&gt;has&lt;/em&gt; to understand the customer. But then they can’t be in charge of decisions which do require that information. &lt;a href=&quot;https://twitter.com/asmartbear/status/1612924296988446726&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Break your shot into 6 sections.&lt;/p&gt;
&lt;p&gt;You occupy the middle two.&lt;/p&gt;
&lt;p&gt;Your job is now to fill the other four. &lt;a href=&quot;https://t.co/ogUuihov9C&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ogUuihov9C&lt;/a&gt; &lt;a href=&quot;https://twitter.com/theKevinShen/status/1613191001966796800&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;theKevinShen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;At Stripe we care about being meticulous in our craft. Sometimes that means putting effort into getting the small things right. Little details compound into end to end experiences that are surprisingly great.&lt;/p&gt;
&lt;p&gt;We shipped 100s of tiny tweaks last year. Some of my favorites 🧵 &lt;a href=&quot;https://twitter.com/dps/status/1613239937532579840&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dps&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In your opinion, what&#39;s something every father should teach his son? &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1613523018197647364&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@SaveYourSons Middle of it right now. 😅 Basic mechanics. &lt;a href=&quot;https://t.co/NEi9qM7qIa&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NEi9qM7qIa&lt;/a&gt; &lt;a href=&quot;https://twitter.com/LightTemplar83/status/1613533128332541953&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LightTemplar83&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@SaveYourSons Too many to list, but:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Telling the truth even when it&#39;s hard&lt;/li&gt;
&lt;li&gt;Treating people with love and respect&lt;/li&gt;
&lt;li&gt;Excellence comes from hard work and reps&lt;/li&gt;
&lt;li&gt;There are lessons in failure&lt;/li&gt;
&lt;li&gt;Emotions are useful but should be secondary to logic&lt;/li&gt;
&lt;li&gt;Things worth having are hard to get &lt;a href=&quot;https://twitter.com/SethStuck/status/1613554384423784448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SethStuck&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Don’t worry about remembering. Just try to understand important points. Write, ruminate, pace, do what it takes to understand. Don’t memorize.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1614379464225443841&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How much venture capital does it take to get to $145m ARR, growing 40%, with a $1.1 Billion market cap?&lt;/p&gt;
&lt;p&gt;$300m?  $200m?  $150m?&lt;/p&gt;
&lt;p&gt;Try $14m for Docebo&lt;/p&gt;
&lt;p&gt;In a very crowded category, with a sales-driven motion, they got there on just $14m&lt;/p&gt;
&lt;p&gt;5 Interesting Learnings: 🔽🔽🔽🔽🔽 &lt;a href=&quot;https://twitter.com/jasonlk/status/1614673748438974470&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People who don&#39;t understand startups sometimes try to claim that successful founders merely got lucky. If a startup required only a single decision, this could be true. But a startup involves thousands of decisions, most of which you have to get right. &lt;a href=&quot;https://twitter.com/paulg/status/1615657532403421184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For heaven&#39;s sake don&#39;t bother directing your questions to people who aren&#39;t responsible or, worse still, throw your questions out there without directing them at all. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/nzCNJceESJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nzCNJceESJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1615728324591947779&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Interesting idea: &amp;quot;A person’s choice of a spouse ... is much more revealing than anything they say or do in public.&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/LVrdfH3ueV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LVrdfH3ueV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1615813707346415650&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to have extreme concentration and focus only on top priorities because time is by far your most valuable asset. &lt;a href=&quot;https://twitter.com/agazdecki/status/1615840405907714053&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great CEOs are decision machines. &lt;a href=&quot;https://twitter.com/dharmesh/status/1615938381971689477&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Space I can recover. Time, never.” — Napoleon Bonaparte &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1616073060406415360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just because someone thinks something doesn&#39;t mean it&#39;s true. Be especially skeptical of statements that begin with &amp;quot;I think that I . . .&amp;quot; since most people can&#39;t accurately assess themselves. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/z8KwX2GNHo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/z8KwX2GNHo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1616098165890973696&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people (and companies) need a near-death experience before they can really change. &lt;a href=&quot;https://twitter.com/tfadell/status/1616205115488145414&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tfadell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The modern mind is overstimulated and the modern body is understimulated and overfed.&lt;/p&gt;
&lt;p&gt;Meditation, exercise, and fasting restore an ancient balance.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1616387938622775296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Darwin was particularly disciplined about this. When he suspected that he wanted to believe something, he made a point of looking for contradictory evidence. &lt;a href=&quot;https://twitter.com/paulg/status/1616445755572785156&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/NBucSx0Bq9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NBucSx0Bq9&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1616464633539215361&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Working oneself through disagreements can be time-consuming, so you can imagine how an idea meritocracy--where disagreement is not just tolerated but encouraged--could become dysfunctional if it&#39;s not managed well. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; (1/3) &lt;a href=&quot;https://t.co/kNngr1XA99&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/kNngr1XA99&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1616816985563885568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pretty much every smart person I know has a ChatGPT tab open while they work now. Amazing how fast that happened. &lt;a href=&quot;https://twitter.com/nabeelqu/status/1616845386903347200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nabeelqu&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A busy calendar and a busy mind will destroy your ability to create anything great.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1617225709021274112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startups and entrepreneurship is a game of grit not intelligence. &lt;a href=&quot;https://twitter.com/agazdecki/status/1617273266602926082&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want job security for your kid, tell them to be a plumber, not a doctor. &lt;a href=&quot;https://twitter.com/amasad/status/1617364092486045699&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amasad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;In any situation in life, you always have three choices: you can change it, you can accept it, or you can leave it.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1617468307350724608&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You’re going to die one day, and none of this is going to matter. So enjoy yourself. Do something positive. Project some love. Make someone happy. Laugh a little bit. Appreciate the moment. And do your work.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1617498632353095681&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To prioritize the day, think about the decade:&lt;/p&gt;
&lt;p&gt;If I want to be on track to achieve X in 10 years, what do I need to do today? &lt;a href=&quot;https://twitter.com/JamesClear/status/1617537777201029121&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Yes.&lt;/p&gt;
&lt;p&gt;That&#39;s how I invalidated one really good startup idea, but validated a second, and now that second is @wpengine, a unicorn still going strong.  &lt;a href=&quot;https://t.co/2pQNFJgwqL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2pQNFJgwqL&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And here&#39;s how to build and run those customer interviews: &lt;a href=&quot;https://t.co/gS1rFkKeyc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gS1rFkKeyc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1617569412579573773&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What improved your quality of life so much you wish you did it sooner? &lt;a href=&quot;https://twitter.com/FitFounder/status/1617965014513750016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Can you sum up your life’s philosophy in one sentence? &lt;a href=&quot;https://twitter.com/WealthInc247/status/1618021505379741696&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;WealthInc247&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;it&#39;s not enough to just fix the bad things; we need to aspire to a future that involves building new amazing things&lt;/p&gt;
&lt;p&gt;a lot of tech (and public policy) has forgotten this &lt;a href=&quot;https://twitter.com/sama/status/1618065876007411712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to align and inspire your team around a mission with a clear strategy on how to execute it into reality. &lt;a href=&quot;https://twitter.com/agazdecki/status/1618238106620289024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Life is short—the fruit of this life is a good character and acts for the common good.” —Marcus Aurelius &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1618247348877934594&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’ll feel better once you get started. &lt;a href=&quot;https://twitter.com/JamesClear/status/1618270622941065220&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: can you say with certainty you’re not one of the 10 companies? &lt;a href=&quot;https://twitter.com/DavidSacks/status/1618279629789499393&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DavidSacks&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I have 2 portfolio companies that would have had a pretty mediocre 2022 ... except ...&lt;/p&gt;
&lt;p&gt;Except they built a great second product&lt;/p&gt;
&lt;p&gt;Both instead ended the year accelerating, after a rough patch&lt;/p&gt;
&lt;p&gt;My only point is this:&lt;/p&gt;
&lt;p&gt;Find a way &lt;a href=&quot;https://twitter.com/jasonlk/status/1618286259134205962&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;And if you don&#39;t know the way?&lt;/p&gt;
&lt;p&gt;Go on a listening tour&lt;/p&gt;
&lt;p&gt;Go talk to 100 of your customers, at least 20 in person&lt;/p&gt;
&lt;p&gt;They always have some good ideas&lt;/p&gt;
&lt;p&gt;Build the best one or two &lt;a href=&quot;https://twitter.com/jasonlk/status/1618286964264030209&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Charisma is the ability to project confidence and love at the same time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1618287077916872717&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You know you&#39;re good at something when you switch from making decisions with your conscious mind to making decisions with your instincts.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1618347601220214805&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you have a new product trying to break into a mature market, you should spend a lot of time on how to reduce switching costs, as that might be a larger barrier even than sales and marketing. Maybe even offer to switch manually for the customer, or pay off their contracts. &lt;a href=&quot;https://twitter.com/asmartbear/status/1618359880598921226&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you can&#39;t decide, the answer is No.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1618377926101155841&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hold your kids when they’re young - otherwise you’ll be holding them when they’re older. &lt;a href=&quot;https://twitter.com/naval/status/1618479926193303553&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Please stop building new features and market the ones your startup has. &lt;a href=&quot;https://twitter.com/agazdecki/status/1618609573451157505&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Idea: Before writing an essay, have ChatGPT write one on the same topic to show you what would be the conventional thing to say, so you can avoid saying that. &lt;a href=&quot;https://twitter.com/paulg/status/1618676092163997696&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Money doesn’t buy happiness - it buys freedom.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1618922891994710016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;On the way to school, 10 yo asked &amp;quot;What if I&#39;m a failure?&amp;quot; I told him that at least some of his projects would probably fail, and that if they didn&#39;t, it would mean he was being too conservative. &lt;a href=&quot;https://twitter.com/paulg/status/1618964868954226701&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One possible solution to having less time to work after having kids: work on harder things. The hardest kinds of work can&#39;t be done for more than 4 or 5 hours a day anyway. &lt;a href=&quot;https://twitter.com/paulg/status/1618983023382499331&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t be in a hurry. Takes the fun out of life. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1619041239688708098&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;All modern diseases are diseases of abundance. We punish ourselves by constantly entertaining our minds and bodies.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1619619859322503173&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Think Short Term&lt;/p&gt;
&lt;p&gt;Thinking about problems too far in the future is a trap.&lt;/p&gt;
&lt;p&gt;The answer is to figure it out when you get there.&lt;/p&gt;
&lt;p&gt;Far more startups die while debating this question than die because they didn’t think about it enough. &lt;a href=&quot;https://twitter.com/bbourque/status/1619674370753929216&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bbourque&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I built multiple $100M+ companies.&lt;/p&gt;
&lt;p&gt;The &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; impact lever? Hiring top talent.&lt;/p&gt;
&lt;p&gt;13 tips to hire the right people every time: &lt;a href=&quot;https://twitter.com/adcock_brett/status/1619719190281347072&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adcock_brett&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Feedback doesn&#39;t have to be either candid or kind.&lt;/p&gt;
&lt;p&gt;Good feedback is candid &lt;em&gt;and&lt;/em&gt; kind. And it&#39;s even better when it&#39;s actionable.&lt;/p&gt;
&lt;p&gt;The magic formula: Candid + Kind + Actionable&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/beAOCF2cbf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/beAOCF2cbf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1619727524153491456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just as Instagram makes people look better than they are, Twitter makes them seem smarter than they are. &lt;a href=&quot;https://twitter.com/naval/status/1619867277410865152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It takes time to develop your gut, but once it’s developed, don’t listen to anything else. &lt;a href=&quot;https://twitter.com/naval/status/1619901860693053440&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The modern mental illness is anxiety.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1619924366036279296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Morning Pages to jeden z najlepszych &amp;quot;nawyków&amp;quot; jakie sobie wyrobiłem w ciągu ostatnich kilku lat.&lt;/p&gt;
&lt;p&gt;Dlaczego? Co to jest? I jak pomaga mi na codzień? 👇 &lt;a href=&quot;https://t.co/nxEIUnESb6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nxEIUnESb6&lt;/a&gt; &lt;a href=&quot;https://twitter.com/pawelkadysz/status/1619958844024836096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;pawelkadysz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A $20/mo product is just as much work to make and sell as a $10/mo product, but it requires 1/2 the customers before you can quit your day job or hire your next employee. &lt;a href=&quot;https://twitter.com/asmartbear/status/1620434549783109642&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;🙏 My personal thanks to all of those impacted by the HubSpot layoffs today (about 7% of the team).&lt;/p&gt;
&lt;p&gt;Appreciate your contributions.&lt;/p&gt;
&lt;p&gt;It has been 16 years since HubSpot was founded, and we are making the necessary changes to (hopefully) have 16 more of Solving For The Customer. &lt;a href=&quot;https://twitter.com/dharmesh/status/1620480612049248257&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;No success in the professional realm can compensate for failure in the home.&amp;quot; - A wise friend.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1620530485041438725&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life is a series of seasons, and what works in one season may not work in the next.&lt;/p&gt;
&lt;p&gt;What season are you in right now? What habits does that season require? &lt;a href=&quot;https://twitter.com/JamesClear/status/1620799132645343234&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Observe when you’re angry—anger is a loss of control over the situation.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1620951886244499456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Money buys you freedom in the material world. It’s not going to make you happy, it’s not going to solve your health problems, it’s not going to make ur family great, it’s not going to make you fit,it’s not going to make you calm.But it will solve a lot of external problems&lt;br /&gt;
@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1621012284310159360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Water before coffee.&lt;/p&gt;
&lt;p&gt;Weights before cardio.&lt;/p&gt;
&lt;p&gt;Reading before social media.&lt;/p&gt;
&lt;p&gt;Simple habits that can make a ton of difference. &lt;a href=&quot;https://twitter.com/FitFounder/status/1621115525404278784&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve hired 133 people.&lt;br /&gt;
Sold millions in software.&lt;br /&gt;
0 funding.&lt;/p&gt;
&lt;p&gt;Want to know what holds your company back from being high performers?&lt;/p&gt;
&lt;p&gt;You treat your team like children.&lt;/p&gt;
&lt;p&gt;Let me explain. 🧵 &lt;a href=&quot;https://twitter.com/Patticus/status/1621557633793523713&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Patticus&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What I would &lt;em&gt;REALLY&lt;/em&gt; love to have is a private version of ChatGPT that’s been trained on your internal org documents. Have an HR question? Ask Chat. Don’t know how to use some application? Ask Chat. When is the next vacation day? Ask Chat. &lt;a href=&quot;https://twitter.com/tunguz/status/1621558059557392384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tunguz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Soon you will be forgotten.&lt;/p&gt;
&lt;p&gt;Enjoy. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1621623809965957121&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hire for potential made sense when people stayed at the same  company for 5 years. Makes much less sense when people shift roles every 18 months. &lt;a href=&quot;https://twitter.com/andybudd/status/1621658735901904896&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andybudd&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great artists don’t study art history to figure out what art to create.&lt;/p&gt;
&lt;p&gt;Great founders don’t analyze the market to figure out what product to build. &lt;a href=&quot;https://twitter.com/naval/status/1622022348265390081&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Smart phones removed boredom at the cost of peace of mind. &lt;a href=&quot;https://twitter.com/TheStoicEmpire/status/1622148801107484673&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmpire&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone does not report to everyone. Responsibilities and authorities are assigned to individuals based on assessments of their ability to handle them.  &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; (1/4) &lt;a href=&quot;https://t.co/DC4M7DPpsT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DC4M7DPpsT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1622226394196361216&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A vendor called us this week to ask why we were churning&lt;/p&gt;
&lt;p&gt;We didn’t have the energy to debate the real reason, so we told them &amp;gt;a&amp;lt; reason&lt;/p&gt;
&lt;p&gt;But not the real reason&lt;/p&gt;
&lt;p&gt;I suspect this is pretty common &lt;a href=&quot;https://twitter.com/jasonlk/status/1622272861749800960&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Before you commit to executing on an idea - starting a company or launching a new product - you should commit to researching it and trying it out first. &lt;a href=&quot;https://twitter.com/tfadell/status/1622747004316139526&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tfadell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to find ways to innovate on distribution strategy as much as you innovate on product strategy. &lt;a href=&quot;https://twitter.com/agazdecki/status/1622955053119332352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s surprising and super unfortunate how vulnerable humans still are to nature. Seems like we should not be at this point in technology. &lt;a href=&quot;https://twitter.com/amasad/status/1623216247386304512&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amasad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In physics, power = work / time&lt;/p&gt;
&lt;p&gt;In business, power = high-leverage work / time &lt;a href=&quot;https://twitter.com/JamesClear/status/1623342368270258177&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/SbRxueOx6u&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SbRxueOx6u&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1623378792088539144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start from user needs. Everything else will flow from there. &lt;a href=&quot;https://twitter.com/jboogie/status/1623620692775165954&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jboogie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Peter Thiel: Distribution should be part of product design &lt;a href=&quot;https://t.co/Fk7Tj6IvNe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Fk7Tj6IvNe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1623687130630307842&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Avoid unnecessary battles, keep your energy for the battles that are worth it, that you won’t be able to avoid. &lt;a href=&quot;https://twitter.com/orangebook/status/1623905276297646085&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Persistence beats timing. Execution beats luck. Not immediately, but eventually.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1623950646084001792&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ten hours spent doing the right things &amp;gt; 80 hours doing the wrong things. &lt;a href=&quot;https://twitter.com/shl/status/1624111072025407488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A decision-making group in which those who don&#39;t get what they want continue to fight rather than work for what the group has decided is destined to fail... &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; (1/4) &lt;a href=&quot;https://t.co/4ZeB4jmy0r&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4ZeB4jmy0r&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1624133621119389704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Disagree. A backlog is a time boxed, prioritised list of work. It is a forcing function to filter, prioritise and get something out the door in an effort to learn and improve, not to mention make progress.&lt;/p&gt;
&lt;p&gt;If used correctly, it is a fantastic management tool (that’s a big IF). &lt;a href=&quot;https://twitter.com/jboogie/status/1624710210400010241&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jboogie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop powering through crap:&lt;/p&gt;
&lt;p&gt;There are many books I regret powering through, none that I regret quitting. Life is too short to put up with bad writing — bad anything.&lt;/p&gt;
&lt;p&gt;If the food sucks, stop eating it. If the speaker is boring, get up and go. If the party is no fun, leave. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1624770311374897152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most important part of building a startup is figuring out the go to market model, from marketing to sales, this role is for the founder. &lt;a href=&quot;https://twitter.com/agazdecki/status/1624800845714927616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you delegate away everything that you love, what’s the point?&lt;/p&gt;
&lt;p&gt;Wasn’t “not doing things you don’t like” one of the reasons you started a company?&lt;/p&gt;
&lt;p&gt;At the same time, is “CEO” the correct title anymore?&lt;/p&gt;
&lt;p&gt;Consistent decisions. &lt;a href=&quot;https://twitter.com/asmartbear/status/1624814400090546177&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Looking for a stellar freelance front-end web design/dev for help with &lt;a href=&quot;https://t.co/3fZmGzNYi0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3fZmGzNYi0&lt;/a&gt; (40k+ users a day) and other projects.&lt;/p&gt;
&lt;p&gt;Must have launched stunning web apps using NextJS/React -- and believe in quick iteration.&lt;/p&gt;
&lt;p&gt;Above market rate for exceptional talent.&lt;/p&gt;
&lt;p&gt;Direct individuals only -- no agencies.&lt;/p&gt;
&lt;p&gt;Email me: my-twitter-handle @ hubspot-dot-com &lt;a href=&quot;https://twitter.com/dharmesh/status/1624816969529556994&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In an idea meritocracy, there is bound to be more disagreement than in a typical organization, but when it&#39;s taken to an extreme, arguing and nitpicking can undermine the idea meritocracy&#39;s effectiveness. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/69n9r0f9ki&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/69n9r0f9ki&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1624826638356647940&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I often enjoy chasing bugs in purely functional code. But not bugs in threaded code with state. Does anyone enjoy chasing those? &lt;a href=&quot;https://twitter.com/paulg/status/1625221304835276800&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remember this.&lt;/p&gt;
&lt;p&gt;If you are confident about where you’re going, it’s OK to be uncertain about how you’ll get there. &lt;a href=&quot;https://twitter.com/mbrandolph/status/1625282030086000640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mbrandolph&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your startup&#39;s meetings don&#39;t need an agenda they need an outcome.&lt;/p&gt;
&lt;p&gt;Too much time is wasted in meetings talking about stuff you&#39;re gonna do.&lt;/p&gt;
&lt;p&gt;Just put that in an email or Slack message. &lt;a href=&quot;https://twitter.com/agazdecki/status/1625492548281319426&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What precedes an inflection in growth?&lt;/p&gt;
&lt;p&gt;I researched 20+ products and found a few surprises:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;The majority of growth inflections came after a specific product improvement&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many growth inflections came from an unexpected external event, without the product changing at all... &lt;a href=&quot;https://t.co/buX8jKqjPI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/buX8jKqjPI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lennysan/status/1625529433057787904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Here&#39;s a list of the 24 startups I&#39;ve tried to build over the years and why they failed: &lt;a href=&quot;https://t.co/SuiMBPShuq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SuiMBPShuq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/thepatwalls/status/1626277123303383041&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thepatwalls&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Yesterday I used ChatGPT to write a blog post...&lt;/p&gt;
&lt;p&gt;It went straight to number 1 in Google.&lt;/p&gt;
&lt;p&gt;And got 3,500 visits in the first 24 hours 🤯&lt;/p&gt;
&lt;p&gt;Here are the details so you can try this method yourself👇 &lt;a href=&quot;https://twitter.com/NicheSiteLady/status/1626576195688009734&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NicheSiteLady&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In a company with 100 employees, 10 will produce half the work.&lt;/p&gt;
&lt;p&gt;This is Price’s Law: 50% of the work is produced by the square root of the total employee base. &lt;a href=&quot;https://twitter.com/tmrohan/status/1626599534179799042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tmrohan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;5 Stoic lessons from Seneca:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;We suffer more in imagination than in reality&lt;/li&gt;
&lt;li&gt;Associate only with people who improve you&lt;/li&gt;
&lt;li&gt;The greatest remedy for anger is delay&lt;/li&gt;
&lt;li&gt;Value your time more than your possessions&lt;/li&gt;
&lt;li&gt;Death is not in the distant future. We are dying every day &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1626627560393297922&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In your opinion, what’s the biggest mistake modern parents make raising their kids? &lt;a href=&quot;https://twitter.com/SaveYourSons/status/1626947469400592384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SaveYourSons&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@SaveYourSons Technology has changed, but I really believe the core mistakes are the same as they’ve always been. Bartering with attention and affection, lack of discipline, not teaching the value of work, and not teaching healthy relationship skills by example. &lt;a href=&quot;https://twitter.com/JoshChavis65/status/1626952573197377536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JoshChavis65&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Work as hard as you can. Even though what you work on and who you work with are more important.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1627037064553279488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@SaveYourSons Teaching kids to “find” themselves… Instead, teach kids to build themselves. &lt;a href=&quot;https://twitter.com/goteacherless/status/1627104704827387906&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;goteacherless&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@SaveYourSons Failing to tell them they can&#39;t leave legos on the kitchen floor. &lt;a href=&quot;https://twitter.com/mbritton/status/1627245432920330241&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mbritton&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Procrastination is merely the avoidance of unpleasant emotions. Get comfortable with unpleasant emotions and the issue of procrastination takes care of itself. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1627303240097210370&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Between the ages of 30-50 we lose up to 15% of our lung capacity. By age 80, we lose up to 30%.&lt;/p&gt;
&lt;p&gt;The older we get the more we lose lung capacity.&lt;/p&gt;
&lt;p&gt;If you want to live longer, build stronger lungs. &lt;a href=&quot;https://twitter.com/FitFounder/status/1627321671391580160&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;writing a really great prompt for a chatbot persona is an amazingly high-leverage skill and an early example of programming in a little bit of natural language &lt;a href=&quot;https://twitter.com/sama/status/1627796054040285184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My favorite startup strategy:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Talk to customers&lt;/li&gt;
&lt;li&gt;Talk to customers&lt;/li&gt;
&lt;li&gt;Talk to customers&lt;/li&gt;
&lt;li&gt;Talk to customers&lt;/li&gt;
&lt;li&gt;Talk to customers &lt;a href=&quot;https://twitter.com/agazdecki/status/1628030263262584832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to accept that every single problem at your company is entirely your fault and also your job to fix. &lt;a href=&quot;https://twitter.com/agazdecki/status/1628133038474547201&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Leverage Lists &amp;gt; To Do Lists &lt;a href=&quot;https://t.co/ZARVsGPDKX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZARVsGPDKX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/george__mack/status/1628499381900169216&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ask a customer if they’ll use a feature; they say “yes” but don’t use it.&lt;/p&gt;
&lt;p&gt;Ask them to name a feature they actually want and there’s the “faster horse” problem of incremental improvement instead of vision.&lt;/p&gt;
&lt;p&gt;What’s the answer? Just “gut feel” and sometimes you’re right? &lt;a href=&quot;https://twitter.com/asmartbear/status/1628506718719119361&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The key is not to avoid making mistakes—it’s to avoid making the same mistake twice. &lt;a href=&quot;https://twitter.com/mbrandolph/status/1628630872512679937&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mbrandolph&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone is gambling, all the time.&lt;/p&gt;
&lt;p&gt;The &amp;quot;risk takers&amp;quot; have the courage to attempt something and gamble with the possibility of failure.&lt;/p&gt;
&lt;p&gt;The &amp;quot;risk averse&amp;quot; avoid failure, but gamble with the opportunity cost of what they could have achieved—had they found the courage to try. &lt;a href=&quot;https://twitter.com/JamesClear/status/1628768908290273281&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My mission is to support Entrepreneurs in building global organizations.&lt;/p&gt;
&lt;p&gt;Entrepreneurs have a real opportunity to change the world for the better. We won&#39;t change the world for the better by investing in real estate for rent. &lt;a href=&quot;https://twitter.com/tomik99/status/1628797847943487492&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People with the most to teach live like they have the most to learn — and Steve loved learning. He was the most curious person I’ve ever met, which made him the best teacher I’ve ever known. Happy birthday, my friend. &lt;a href=&quot;https://t.co/J45swZfZQ8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/J45swZfZQ8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tim_cook/status/1629134630296363011&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tim_cook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Premature strategery makes us feel smart but often results in a bad product.&lt;/p&gt;
&lt;p&gt;Early on, avoid using smart-sounding terms like moats, switching costs, scale economies when making product decisions. Instead, fixate on what will make your product resonate strongly with customers. &lt;a href=&quot;https://twitter.com/shreyas/status/1629199614430842880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/dJ24Aa3vYg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/dJ24Aa3vYg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1629208433592520704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The only thing that really matters for a startup is having a product that people really want, and ideally can’t help but tell others about.&lt;/p&gt;
&lt;p&gt;That’s probably 90% of the game. All the other startup accoutrements that we all hem and haw about are worth the other 10%. &lt;a href=&quot;https://twitter.com/jaltma/status/1629561226631217152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jaltma&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If being productive means you&#39;re responding faster to other people&#39;s priorities, you are doing it wrong. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1629847506120245249&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most important thing you can do is understand that hiring is a high risk gamble that needs to be approached deliberately. A lot of time, effort, &amp;amp; resources go into hiring and developing new employees before it’s clear whether or not they are good fits. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; 1/2 &lt;a href=&quot;https://t.co/oIWFGufDdu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oIWFGufDdu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1629887716648157184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Slowly shifting from a “work until 2 AM” because everybody is asleep and you can focus” to a “work starting at 4 am because everybody is asleep and you can focus” and it is shocking how different it is &lt;a href=&quot;https://twitter.com/Austen/status/1631176316526694401&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Apple exec on App Store&lt;/p&gt;
&lt;p&gt;February 3, 2012 &lt;a href=&quot;https://t.co/6FVyBGn0hI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6FVyBGn0hI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TechEmails/status/1631352764247977985&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TechEmails&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everything great that ever existed had somebody micromanaging it &lt;a href=&quot;https://twitter.com/Austen/status/1631415599929896960&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Austen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nie można w sensie ekonomicznym mówić w Polsce o deficycie mieszkań.&lt;/p&gt;
&lt;p&gt;Nie jest tak, że więcej osób stać na mieszkanie niż może je kupić.&lt;/p&gt;
&lt;p&gt;Można mówić o kryzysie aspiracji.&lt;br /&gt;
Większość ma większe aspiracje niż może zrealizować.&lt;/p&gt;
&lt;p&gt;Drogą do realizacji aspiracji jest praca. &lt;a href=&quot;https://twitter.com/SebStodolak/status/1631573624204173314&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SebStodolak&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You know that decision / conversation / action that your dreading, but you already know that once it&#39;s done, you&#39;ll think &amp;quot;what a relief that at least it&#39;s over?&amp;quot;&lt;/p&gt;
&lt;p&gt;Do it today.&lt;/p&gt;
&lt;p&gt;You&#39;ll incur the pain regardless. So why drag out the dread as well? &lt;a href=&quot;https://twitter.com/asmartbear/status/1631701556633403395&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;EXCLUSIVE $TSLA 🧵: I spoke with Tom Zhu after the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#InvestorDay&quot;&gt;#InvestorDay&lt;/a&gt; presentation and he shared key information that is not known until now.&lt;/p&gt;
&lt;p&gt;I’m convinced he will be @Tesla’s next CEO after @elonmusk. He’s charismatic, succinct, incredibly intelligent and acts with a great sense of urgency. He will be our Tim 🍏 Cook!&lt;/p&gt;
&lt;p&gt;Here is what he told me 1/x &lt;a href=&quot;https://twitter.com/MatthewDR/status/1631708001487962112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MatthewDR&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@FitFounder Make 1:1 time with each kid a priority. It&#39;s good for them and you.&lt;/p&gt;
&lt;p&gt;Aside from that, enjoy the blessing man.&lt;/p&gt;
&lt;p&gt;Most people will tell you how hard it is (and it is at times).&lt;/p&gt;
&lt;p&gt;But that pales in comparison to the joy. &lt;a href=&quot;https://twitter.com/TMitrosilis/status/1631745534502522880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TMitrosilis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;My job is not to win a popularity contest.&amp;quot; — Steve Jobs, 1997 &lt;a href=&quot;https://twitter.com/SJobs_Stories/status/1631761370424262662&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SJobs_Stories&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;when we started @runwayco i made every product decision.&lt;/p&gt;
&lt;p&gt;now (thanks to our team) i spend most of my time talking to customers and helping to bring the customer context to the team.&lt;/p&gt;
&lt;p&gt;turns out the second one works a lot better. &lt;a href=&quot;https://twitter.com/blader/status/1631778788253257728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;blader&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My favorite productivity trick is deciding something is actually not worth doing. &lt;a href=&quot;https://twitter.com/dvassallo/status/1631822208384520193&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dvassallo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Persistence beats timing. Execution beats luck. Not immediately, but eventually.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1631967974100959233&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@BesDMarx Founders aren&#39;t perfect. Just better than you. &lt;a href=&quot;https://twitter.com/paulg/status/1631970636833648640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I made a list of 10 things I know I’d regret on my deathbed.&lt;/p&gt;
&lt;p&gt;It was illuminating and inspiring.&lt;/p&gt;
&lt;p&gt;Here’s my list (and why everyone should make one): &lt;a href=&quot;https://twitter.com/SahilBloom/status/1632006130867027971&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;you’re not depressed&lt;/p&gt;
&lt;p&gt;you’re just paying $1,500/month for a car you drive 2 hours per week &lt;a href=&quot;https://twitter.com/GuyDealership/status/1632018311159349250&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GuyDealership&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As much as I&#39;ve been posted a bit recently on customer research, this is correct.  You should do just enough to make sure you don&#39;t waste the next 6-12 months of your life, but get to building as soon as you&#39;ve honestly validated that it might work. &lt;a href=&quot;https://twitter.com/asmartbear/status/1632065194863087617&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A good heuristic for founders - if it wasn’t your product, would you still use it? &lt;a href=&quot;https://twitter.com/naval/status/1632088518381150208&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;working hard is infectious&lt;/p&gt;
&lt;p&gt;being around people who are always working makes it shockingly easy to work really hard&lt;/p&gt;
&lt;p&gt;inversely, surrounding yourself with leisurely or lazy people will make it nearly impossible to work hard&lt;/p&gt;
&lt;p&gt;choose your own adventure—but be intentional &lt;a href=&quot;https://twitter.com/alexandr_wang/status/1632540964958130176&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;alexandr_wang&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs said:&lt;/p&gt;
&lt;p&gt;“The most powerful person in the world is the storyteller.”&lt;/p&gt;
&lt;p&gt;Legendary brands like Apple and Nike are built on storytelling.&lt;/p&gt;
&lt;p&gt;Here&#39;s the simple 7 step framework to help you master storytelling: &lt;a href=&quot;https://twitter.com/heykahn/status/1633096561688293379&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;heykahn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the problems associated w/wealth is the expectation gap. At a maximally luxurious resort, a diluted espresso or delayed room service can make you frustrated. At a Hampton Inn, almost nothing irritates you.&lt;br /&gt;
Generalize the differential between expectation &amp;amp; delivery. &lt;a href=&quot;https://twitter.com/nntaleb/status/1633583930111586305&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nntaleb&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your grandchildren will wish you wrote more. &lt;a href=&quot;https://twitter.com/david_perell/status/1634052622272323586&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;At the product retreat, we used GPT-3 to understand why customers cancel their paid Todoist accounts.&lt;/p&gt;
&lt;p&gt;Here’s a small write-up of how this works and how you could utilize this to get valuable insights into improving your products. 🤖 &lt;a href=&quot;https://twitter.com/amix3k/status/1634126513615380482&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amix3k&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The more at peace we are, the more productive we can be. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1634192415266586625&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is especially true over short periods of time like a year or two, yet most people want to assume that when someone does something wrong the person will learn the lesson and change. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; (1/2) &lt;a href=&quot;https://t.co/wM81mxs5p2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wM81mxs5p2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1634200159671275520&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don&#39;t know, giving the customer a faster horse might be just fine.&lt;/p&gt;
&lt;p&gt;Especially if you&#39;re building the next 37signals and not the next Ford/Tesla. &lt;a href=&quot;https://twitter.com/asmartbear/status/1634206044774621185&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I just sold &lt;a href=&quot;https://t.co/culXGjg8HN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/culXGjg8HN&lt;/a&gt; for $65,000 🤩🚀&lt;/p&gt;
&lt;p&gt;Launched it 3 months ago, with 0 budget and less than 600 followers. I learned to code only 9 months ago.&lt;/p&gt;
&lt;p&gt;Big thanks @agazdecki &amp;amp; @acquiredotcom to have made it possible!&lt;/p&gt;
&lt;p&gt;If you&#39;re curious, here is the whole story:&lt;/p&gt;
&lt;p&gt;December 2022, 20:40. I had a sudden idea. What if I made an app to generate logos using AI?&lt;/p&gt;
&lt;p&gt;I was making AI logos already for my other projects, so I knew how to do it. However, I needed to validate 2 hypotheses:&lt;/p&gt;
&lt;p&gt;🤔 Can I make logos in an automated way?&lt;br /&gt;
🤔 Would people pay for it?&lt;/p&gt;
&lt;p&gt;I decided to make an MVP in 48 hours, as deadlines are the way to go when launching anything: &lt;a href=&quot;https://t.co/XLbPOgAD7Q&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XLbPOgAD7Q&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;48 hours, 1 earthquake and 2 power outages later, I had my crappy MVP ready 🥳&lt;/p&gt;
&lt;p&gt;By crappy I mean a static HTML page linked to a Typeform to collect payment. The back end was literally me generating the logos and sending them by email.&lt;br /&gt;
No framework, no fancy stuff, just text and pictures.&lt;/p&gt;
&lt;p&gt;I made a few posts on Twitter and generated a couple of sales from it: &lt;a href=&quot;https://t.co/oJWmZapfJ4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oJWmZapfJ4&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Sales = Validation. The next step was to make an automated version, so I made another challenge of making an automated version in 48h and launching it on @ProductHunt 🚀🚀&lt;/p&gt;
&lt;p&gt;And oh boy, things went crazy! I launched on December 11 and generated +$1000 of sales, ended up Product of the Day, and got tons of followers on Twitter, so I knew I was into something 🤩&lt;/p&gt;
&lt;p&gt;However, it was far from perfect. Lots of logos needed additional editing or ended up weird because the customer inputs/prompts weren&#39;t good.&lt;/p&gt;
&lt;p&gt;So, I started from scratch again and made a brand new version in January.&lt;br /&gt;
The new version offered way more options, and better results overall ✨&lt;/p&gt;
&lt;p&gt;Then, I added the app to every startup directory I could put my hand on. And that&#39;s how most of my traffic came.&lt;/p&gt;
&lt;p&gt;I also kept posting on Twitter, every time someone asked &amp;quot;what are you working on?&amp;quot; I replied with the name of the app, and the same when someone asked for AI-generated logos 🤓&lt;/p&gt;
&lt;p&gt;And... That&#39;s pretty much it. I tried to run some ads on Twitter &amp;amp; Reddit but it didn&#39;t work that much, as it&#39;s not targeted enough.&lt;/p&gt;
&lt;p&gt;Now, I don&#39;t have much interest in logo/design, and I don&#39;t have the technical skills to improve the app further, so, I decided to sell it in February.&lt;/p&gt;
&lt;p&gt;@acquiredotcom made the process pretty easy, I received a few offers, and ended up choosing the best offer. Then I did the transfer and here we are 🥳&lt;/p&gt;
&lt;p&gt;In total, the app made +$23,000 in sales and $15,000 in profit. So, that&#39;s around $80,000 in total (profit + sale), which is equivalent to at least 5 years of safety net where I live 😱&lt;/p&gt;
&lt;p&gt;If you want a more detailed post, I wrote everything I was doing in real-time back then: &lt;a href=&quot;https://t.co/iEpUio2pDs&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iEpUio2pDs&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now, keep in mind that it&#39;s not my first shot at entrepreneurship.&lt;br /&gt;
In the last 5 years, I launched around 35 projects and most were total failures. Just between October and December 2022, I released 7 different apps.&lt;/p&gt;
&lt;p&gt;I never gave up. I kept showing up. It&#39;s a number game.&lt;/p&gt;
&lt;p&gt;The odds are against you, but at some point, you&#39;ll get something that sticks 😉&lt;/p&gt;
&lt;p&gt;So... What&#39;s next? 🤔&lt;/p&gt;
&lt;p&gt;I hate customer service. So I hired an assistant to do it on &lt;a href=&quot;https://t.co/culXGjg8HN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/culXGjg8HN&lt;/a&gt;. But in most cases, it&#39;s the same questions over and over. So I made an app to help my assistant works 2x faster.&lt;/p&gt;
&lt;p&gt;Last weekend, I made a post to show it and some people asked for a public app, so I made it.&lt;/p&gt;
&lt;p&gt;If you want to join the beta, you can go to &lt;a href=&quot;https://t.co/iO5YcpP4I2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iO5YcpP4I2&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For testers, it&#39;s $15/month forever instead of +$30 later.&lt;/p&gt;
&lt;p&gt;It&#39;s also a crappy MVP, there is not even a Stripe integration, I’ll DM users to give them the payment link 😁&lt;/p&gt;
&lt;p&gt;And again, thanks to everyone for the massive support I got with MakeLogo along the way. Couldn&#39;t have done it without you 🥰 &lt;a href=&quot;https://twitter.com/nico_jeannen/status/1634514139560415233&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nico_jeannen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The wealthiest people I know don’t have anger issues.&lt;/p&gt;
&lt;p&gt;I don’t think I’ve ever seen them upset.&lt;/p&gt;
&lt;p&gt;If anything they have a very stoic response to any negative situation.&lt;/p&gt;
&lt;p&gt;They just look at the facts, handle it and move on. &lt;a href=&quot;https://twitter.com/danmartell/status/1634899628826165248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;danmartell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you focus on ROI, the numerator often isn’t terribly different between many tasks, which means you over-weight “quick wins.”&lt;/p&gt;
&lt;p&gt;QWs are good, but what if you never have a big impact?&lt;/p&gt;
&lt;p&gt;I explain how to not fall into this trap in:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/GZp5dEYLZ7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GZp5dEYLZ7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1634946173424238593&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A roadmap for internal hype is different from a roadmap for selling potential new customers is different from a roadmap for engaging with long-time customers is different from a roadmap for holding teams accountable is different from ... &lt;a href=&quot;https://twitter.com/asmartbear/status/1635016139628593155&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the benefits of DIY is avoiding moving money through the economy.&lt;/p&gt;
&lt;p&gt;If you pay a plumber $100:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;$30 go to the IRS&lt;/li&gt;
&lt;li&gt;$15 go to social security&lt;/li&gt;
&lt;li&gt;$10 go as sales tax&lt;/li&gt;
&lt;li&gt;$4 go to the credit card processor&lt;/li&gt;
&lt;li&gt;$3 go to the gas station&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You spend $100, the plumber keeps $38. &lt;a href=&quot;https://twitter.com/dvassallo/status/1635137428116897793&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dvassallo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Perfection isn’t free.&lt;/p&gt;
&lt;p&gt;Striving for perfection may seem ideal, but it comes with a cost.&lt;/p&gt;
&lt;p&gt;As you invest more time and resources, the cost of missed opportunities increases.&lt;/p&gt;
&lt;p&gt;Sometimes &#39;better&#39; is good enough. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1635148760446820353&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What if you sort your to-do list by &amp;quot;leverage,&amp;quot; as defined (loosely, I admit) by getting maximum results from a given effort?&lt;/p&gt;
&lt;p&gt;OK, you can&#39;t ignore firm due-dates, but within hard constraints, is this a better way to set &amp;quot;priority?&amp;quot; &lt;a href=&quot;https://twitter.com/asmartbear/status/1635279392304947202&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@mbertulli That depends on your team size and budget...&lt;/p&gt;
&lt;p&gt;I also find that many tasks can just not be done at all, or changed to a 20% version that&#39;s clearly worse but allows you to move on.  Sometimes that&#39;s needed too for the &#39;O&#39; &lt;a href=&quot;https://twitter.com/asmartbear/status/1635303472588541953&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;ChatGPT has changed SEO forever.&lt;/p&gt;
&lt;p&gt;However, many SEO specialists and content creators don&#39;t use it.&lt;/p&gt;
&lt;p&gt;I&#39;m using it daily now. This is how. 👇 &lt;a href=&quot;https://twitter.com/Ldnbox/status/1635317295257112579&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Ldnbox&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Where your fear is, there is your task”&lt;/p&gt;
&lt;p&gt;— Carl Jung&lt;/p&gt;
&lt;p&gt;Such a wonderful, deep observation about getting things done. &lt;a href=&quot;https://twitter.com/shreyas/status/1635476878957109248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Text is precise, compact, indexable, transmissible, translatable, asynchronous &amp;amp; quick to absorb. Intelligent, busy people prefer text.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1635575998413524992&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In order to apply most of your energy in one direction, you have to say no to things that a lot of other people say yes to.&lt;/p&gt;
&lt;p&gt;Most successful people are masters at eliminating the unnecessary from their lives. &lt;a href=&quot;https://twitter.com/farnamstreet/status/1635596776479641600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;farnamstreet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To ship faster, shrink the team. &lt;a href=&quot;https://twitter.com/shl/status/1635643090404007936&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you don&#39;t have the energy to perform excellent, focussed work, spending that time grooming your to-do list (including priority, pushing out due dates, purging some things, reducing the sizes of &amp;quot;next actions&amp;quot;) ensures you will be effective in the next time window. &lt;a href=&quot;https://twitter.com/asmartbear/status/1635672473038471172&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone’s dad or father figure had a few wise words they really wanted you to remember.&lt;/p&gt;
&lt;p&gt;My dad’s top 3 were:&lt;/p&gt;
&lt;p&gt;Whatever you do, be the best.&lt;br /&gt;
They can never take your education.&lt;br /&gt;
God gave you the power to ignore, use it.&lt;/p&gt;
&lt;p&gt;What were your dads? &lt;a href=&quot;https://twitter.com/AlexHormozi/status/1635714525218631680&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlexHormozi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People plan too much. You can probably get away with planning 90% less. &lt;a href=&quot;https://twitter.com/amasad/status/1635879788908019712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amasad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You know what&#39;s better than delegating?&lt;/p&gt;
&lt;p&gt;Just not doing it.&lt;/p&gt;
&lt;p&gt;Or doing something in 1/10th the time that obviates it.&lt;/p&gt;
&lt;p&gt;Most stuff you want/should do, you don&#39;t have time for, so this should be a lot more common than you think.  It&#39;s a matter of facing facts. &lt;a href=&quot;https://twitter.com/asmartbear/status/1636364754263392257&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I&#39;m about 2x more productive when I avoid wheat, alcohol, and meetings.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1636413768535277569&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you&#39;re forced to attend an unnecessary meeting that could have been an email. &lt;a href=&quot;https://t.co/8ohP4FMIcL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8ohP4FMIcL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1636626608801849345&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good copy is falsifiable. &lt;a href=&quot;https://t.co/GaNSLOvzAz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GaNSLOvzAz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GoodMarketingHQ/status/1636720046880829440&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GoodMarketingHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you&#39;re doing a deal with a large organization, find out if the people you&#39;re negotiating with actually have final say. Usually they don&#39;t, and that means the deal you&#39;ve agreed upon can be, and often is, killed at the last minute by higher ups. &lt;a href=&quot;https://twitter.com/paulg/status/1636794001750900736&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;With Outlook and GMail adding both email generation and summarisation, this is what email will look like soon.&lt;/p&gt;
&lt;p&gt;(graphic by @multikev) &lt;a href=&quot;https://t.co/JVt2sEHTjy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/JVt2sEHTjy&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tanayj/status/1636873342194970626&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tanayj&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How do you organize all of the projects and tasks you’re working on each week? &lt;a href=&quot;https://twitter.com/dickiebush/status/1637202781202182144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@dickiebush I&#39;ve been putting them into $10 / 100 / 1000 / $10k buckets via @khemaridh&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/1woqZ3hDGM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/1woqZ3hDGM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/artofnext/status/1637240696775249920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;artofnext&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to create an &amp;quot;Aging Effect&amp;quot; video using Midjourney v5 &amp;amp; RunwayML&lt;/p&gt;
&lt;p&gt;🧵 Thread w/ step-by-step breakdown of workflow &lt;a href=&quot;https://t.co/H12sXlUQ6q&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/H12sXlUQ6q&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nickfloats/status/1637438460297629697&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nickfloats&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Here is my calendar for this week.&lt;/p&gt;
&lt;p&gt;🔑 The secret? Embracing an async-first work approach! It&#39;s a game-changer, and I&#39;m surprised more people (especially leaders) haven&#39;t adopted it yet. &lt;a href=&quot;https://t.co/zae3MclX1x&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zae3MclX1x&lt;/a&gt; &lt;a href=&quot;https://twitter.com/amix3k/status/1637754735624159235&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amix3k&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;4 years in, Microsoft had only 11 employees. Growing headcount is nothing to celebrate. Moving mountains with limited resources is. &lt;a href=&quot;https://twitter.com/sethbannon/status/1637942665487716352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sethbannon&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bycie przedsiębiorcą nie powinno być celem, a efektem ubocznym stworzenia rozwiązania faktycznego problemu. &lt;a href=&quot;https://twitter.com/sadek/status/1638105866565046272&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The reality is life is a single-player game. You’re born alone. You’re going to die alone. All of your interpretations are alone. All your memories are alone. You’re gone in three generations and nobody cares. Before you showed up, nobody cared. It’s all single-player.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1638123786418688000&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why should anyone buy your product over some competitor?&lt;/p&gt;
&lt;p&gt;If you can&#39;t answer in the space of a tweet, you need to work on the answer.&lt;/p&gt;
&lt;p&gt;If there is no answer, you have bigger problems than achieving pithy communication. &lt;a href=&quot;https://twitter.com/asmartbear/status/1638176443208445954&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re not working hard, ideas don’t matter. The best idea is worthless without execution.&lt;/p&gt;
&lt;p&gt;If you&#39;re already working hard, ideas are crucial. Most effort is wasted on mediocre ideas. &lt;a href=&quot;https://twitter.com/JamesClear/status/1638178650347429888&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The one decision I’ve made that is particularly career limiting is I try never to do meetings. My life is so much better for it. But obviously would be impossible for me to run any kind of organization at scale with this policy. &lt;a href=&quot;https://twitter.com/maccaw/status/1638208255934492674&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maccaw&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I hear many founders with millions in revenue saying they “don’t have product-market fit”&lt;/p&gt;
&lt;p&gt;That’s wrong&lt;/p&gt;
&lt;p&gt;What’s usually happening is their software isn’t very good, so everyone is churning when it doesn’t do what was promised&lt;/p&gt;
&lt;p&gt;If the product worked well, they’d stay &lt;a href=&quot;https://twitter.com/jasonlk/status/1638349915343712258&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“The most courageous decision that you can make each day is to be in a good mood.”&lt;/p&gt;
&lt;p&gt;— Voltaire &lt;a href=&quot;https://twitter.com/farnamstreet/status/1638480762184802305&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;farnamstreet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;🎾 &amp;quot;You have to go talk to the users every week and spend a lot of time with them to hear their pain, get inside their head.&amp;quot; &lt;a href=&quot;https://twitter.com/nurijanian/status/1638509900534804484&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nurijanian&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Collisons are playing the long game. That&#39;s one of their secret weapons. &lt;a href=&quot;https://twitter.com/paulg/status/1638522295743393792&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;ChatGPT is just the tip of the iceberg.&lt;/p&gt;
&lt;p&gt;20 AI tools that will transform your productivity forever: &lt;a href=&quot;https://t.co/MPk4sb6nZF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MPk4sb6nZF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/heykahn/status/1638544259925299203&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;heykahn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are 303 visuals in What&#39;s Our Problem? Here are 15 of them.&lt;/p&gt;
&lt;p&gt;First, the path of a maturing thinker. I still often find myself on this roller-coaster when I learn about a new topic. It&#39;s human nature. But as we grow as thinkers, we can get better at skipping steps 1-4. &lt;a href=&quot;https://t.co/vcmsb9jf6F&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vcmsb9jf6F&lt;/a&gt; &lt;a href=&quot;https://twitter.com/waitbutwhy/status/1639003224907849728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;waitbutwhy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We’re at the start of a new software paradigm where you can have a single interface to ask AI to run a query across any number of systems, synthesize the responses in a human readable way, or execute any number of tasks in that system. 🤯 &lt;a href=&quot;https://twitter.com/levie/status/1639090768542576640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Most people will choose unhappiness over uncertainty.&amp;quot; — @tferriss &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1639250754027536384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Knowing how little you matter is very important for your own mental health and happiness.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1639485760792322050&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Confidence is one of the biggest life hacks, and I&#39;m not sure anything else even comes close. &lt;a href=&quot;https://twitter.com/drgurner/status/1639708318879961091&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;drgurner&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Welcome to YC and congrats on the launch, team @withBerilium!&lt;/p&gt;
&lt;p&gt;Berilium (YC W23) is a wealthtech investing platform that lets individuals access top private equity and private credit investments, with minimums starting at $10k.&lt;/p&gt;
&lt;p&gt;Learn more: &lt;a href=&quot;https://t.co/1kJ08c1PG1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/1kJ08c1PG1&lt;/a&gt; &lt;a href=&quot;https://t.co/VquDMEUvU4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VquDMEUvU4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ycombinator/status/1640443576646508549&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ycombinator&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want to get rid of the belly fat? I made an 8-minute video on the STEP-BY-STEP plan you can use to lose 15-50 pounds in 90 days.&lt;/p&gt;
&lt;p&gt;Impossible to fail if you follow the plan.&lt;/p&gt;
&lt;p&gt;It&#39;s yours for FREE - just comment &amp;quot;easy&amp;quot; below.&lt;/p&gt;
&lt;p&gt;(must be following me) &lt;a href=&quot;https://t.co/oaHUO2ow23&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oaHUO2ow23&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TheJackBly/status/1640729530632380416&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJackBly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is a great way of expressing what Tim Urban, and I, and many others have discovered about how to be successful through failing well and accepting what you don’t know. (1/3) &lt;a href=&quot;https://twitter.com/RayDalio/status/1641198943995408386&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No first-version of a successful software product was ever built by more than 10 engineers. Agree/disagree?&lt;/p&gt;
&lt;p&gt;My mentor, Rajeev Motwani, who also mentored the founders of Google, used to say that the ideal size for a first-version product team is from 5-7 people. Just like in a startup, these lean teams should consist of driven self-starters who thrive in a highly independent environment. These people also have to have the right skills and talent.&lt;/p&gt;
&lt;p&gt;If a team requires more than 10 members to function, Rajeev used to say you haven&#39;t chosen the right team. &lt;a href=&quot;https://twitter.com/jyotibansalsf/status/1641796614787420163&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jyotibansalsf&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most projects are not large enough for Microservices. &lt;a href=&quot;https://twitter.com/simas_ch/status/1642081782999797760&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;simas_ch&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The 8 best movies that every entrepreneur should watch:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Moneyball&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;quot;When your enemy’s making mistakes, don’t interrupt him.&amp;quot; &lt;a href=&quot;https://t.co/N6Cmauitrn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/N6Cmauitrn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/matt_gray_/status/1642160066907238402&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;matt_gray_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Balance rarely comes from increasing efficiency. It usually involves reducing responsibilities.&lt;/p&gt;
&lt;p&gt;The more priorities we have, the harder they are to juggle. It&#39;s better to do a few things well than be overwhelmed by many.&lt;/p&gt;
&lt;p&gt;A key to avoiding burnout is deciding what doesn&#39;t matter. &lt;a href=&quot;https://twitter.com/AdamMGrant/status/1642180266234990594&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AdamMGrant&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A new Steve Jobs memoir… really? The important parts have been said by now. If you really want to honor SJ’s legacy:&lt;/p&gt;
&lt;p&gt;• Imagine a way you think the world could be better.&lt;br /&gt;
• Figure out a concrete way to make it happen.&lt;br /&gt;
• Get to work.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/WRQKvlkw7j&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WRQKvlkw7j&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kocienda/status/1642221515428216832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kocienda&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One thing I’ve learned in the last year: Your entire life can change with one year of focused daily effort.&lt;/p&gt;
&lt;p&gt;If you bring the energy every single day, there are quite literally no limits to what you can achieve.&lt;/p&gt;
&lt;p&gt;Never bet against the person who just keeps showing up. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1642266765089730561&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The great law of nature is that it never stops. There is no end. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1642512226727886848&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;HBR Case Study from 2025:&lt;/p&gt;
&lt;p&gt;You’re the founder/CEO of a $75M+ revenue company. You not only have PMF, you are the leading player in your category, a category that you created. You raised a humongous round in 2021 so while you’re not profitable, you have 5+ years of runway. Life is peachy, right?&lt;/p&gt;
&lt;p&gt;Not so fast. You have 3 problems:&lt;/p&gt;
&lt;p&gt;(a) Your growth has slowed down as buying cycles have lengthened. You were growing 50-70% YoY, now it’s 10-20% YoY. This dramatic, unprecedented slowdown has made you question your TAM, your category, everything.&lt;br /&gt;
(b) Your new investors from 2021 - remember them? - are pushing you to grow faster. They want to see their investment grow 3x in 3 years. You don’t want to tell them that it’s instead probably shrunk by 70% in the last two years.&lt;br /&gt;
(c) Your execs and employees are growing nervous. They’re questioning what the real value of the company is. You don’t have good answers for them.&lt;/p&gt;
&lt;p&gt;What do you do? Do you pour fuel on uncertain growth, increase your burn, shorten your runway? Or do you cut back, become profitable, grow more predictably? How do you mollify your stakeholders?&lt;/p&gt;
&lt;p&gt;It’s April 2023. You stand at the floor-to-ceiling windows  of your penthouse (bought with the proceeds of your secondary sale in 2022), pondering these fundamental questions as you look out at the glittering (SF / NYC / Miami / London / Bengaluru) skuline. Your board meeting is this coming week. What is your strategy? What will you communicate to them? &lt;a href=&quot;https://twitter.com/gokulr/status/1642736925084884992&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gokulr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@gokulr Spend the next 6mos with the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; goal of increasing NPS and the following 6mos with the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; goal of increasing NRR. &lt;a href=&quot;https://twitter.com/calcsam/status/1642743139705430016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;calcsam&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@gokulr your growth slowed because your buyer’s reality changed.&lt;/p&gt;
&lt;p&gt;Start customer centric: what changed? where is their focus? how can you be relevant?&lt;/p&gt;
&lt;p&gt;Spend time with CS, get on calls, fly to your customers, start a customer advocacy group&lt;/p&gt;
&lt;p&gt;Whatever NRR you have, get it to 120%+ &lt;a href=&quot;https://twitter.com/briansowards/status/1642922288554311685&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;briansowards&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Why We Ditched Slack for Basecamp (or...) How Basecamp Made Us Happy Again&amp;quot;&lt;/p&gt;
&lt;p&gt;How the crew at &lt;a href=&quot;https://t.co/fXIDIGgWUy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fXIDIGgWUy&lt;/a&gt; changed how they worked for the better by switching to Basecamp.&lt;/p&gt;
&lt;p&gt;The tools you use matter:&lt;br /&gt;
&lt;a href=&quot;https://t.co/bFD6N7Tq8u&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/bFD6N7Tq8u&lt;/a&gt; &lt;a href=&quot;https://t.co/jIg87cTLBa&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jIg87cTLBa&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonfried/status/1642977891855237120&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My wife and I recently started a monthly check-in ritual.&lt;/p&gt;
&lt;p&gt;It’s been incredible for our relationship.&lt;/p&gt;
&lt;p&gt;The Life Dinner: &lt;a href=&quot;https://twitter.com/SahilBloom/status/1643615338058207234&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To niesamowite uczucie, kiedy duży producent samochodowy z USA pisze do nas, że poprawili elementy produktu (np zagłówki) w oparciu o analizy przygotowane przez nasz &lt;a href=&quot;https://t.co/vVUrjvuJwG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vVUrjvuJwG&lt;/a&gt; 💪 🔥  Wiedza konsumencka, jaką nasz zespół potrafi znaleźć i przeanalizować zrywa kapcie. &lt;a href=&quot;https://t.co/faPfBScshG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/faPfBScshG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/sadek/status/1643686658900992006&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;🥱 Tired of the old-fashioned punch card system?&lt;/p&gt;
&lt;p&gt;Our new time clock feature is here to revolutionize how you manage your on-site team!&lt;/p&gt;
&lt;p&gt;🚪🚶‍♂️TimeCamp Kiosk lets your employees clock in and out easily using a shared device and a unique 4-digit PIN code!&lt;/p&gt;
&lt;p&gt;👇Available on all plans. &lt;a href=&quot;https://t.co/MD314Zn8GK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MD314Zn8GK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1643920219247706114&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mark Zuckerberg: &amp;quot;Our philosophy on perks&amp;quot;&lt;/p&gt;
&lt;p&gt;September 18, 2009 &lt;a href=&quot;https://t.co/745jkOOday&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/745jkOOday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TechEmails/status/1644008720131850240&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TechEmails&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;these 5 lines of code can add crazy shit to your apps. use them.&lt;/p&gt;
&lt;p&gt;🧵: &lt;a href=&quot;https://t.co/HoIDtm4fnl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HoIDtm4fnl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Steve8708/status/1644161688365830144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Steve8708&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The endemic battle of SMB SaaS is to somehow, some way get to 100% NRR &lt;a href=&quot;https://twitter.com/jasonlk/status/1644180089603764224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Today I spent about an hour and 20 minutes writing Google sign-in code in Javascript. 3 trips to the stack, I then went and asked Ghostwriter in Replit... a few seconds later, code done.&lt;/p&gt;
&lt;p&gt;This world is changing my friend. &lt;a href=&quot;https://twitter.com/DanRaine/status/1644470795052412931&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanRaine&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I coach several founders who compete directly against each other.&lt;/p&gt;
&lt;p&gt;Here’s what the winner does:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Don’t worry about competition&lt;/li&gt;
&lt;li&gt;They fall in love w/ problem, not solution&lt;/li&gt;
&lt;li&gt;Talk to customers&lt;/li&gt;
&lt;li&gt;Have a crystal clear vision for domination&lt;/li&gt;
&lt;li&gt;They execute daily (every day)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Focus. &lt;a href=&quot;https://twitter.com/danmartell/status/1644487770923208705&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;danmartell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of my essential rules for life. &lt;a href=&quot;https://t.co/ucShpKKGLQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ucShpKKGLQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SahilBloom/status/1644711729803272200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Becoming somewhat usable 😊&lt;br /&gt;
&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#buildingpublic&quot;&gt;#buildingpublic&lt;/a&gt; &lt;a href=&quot;https://t.co/xO1FzB2hSt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xO1FzB2hSt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/gahabeen/status/1644715572850982914&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gahabeen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nobody ever said radical honesty was easy. Sometimes, especially with new employees who have not yet gotten used to it, an honest assessment feels like an attack. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; (1/2) &lt;a href=&quot;https://t.co/iwDYZ2dJsT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iwDYZ2dJsT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1644729451006050310&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Run toward bad news&lt;/p&gt;
&lt;p&gt;Sometimes you need a moment.  That&#39;s OK. But after that, hiding makes it worse.&lt;/p&gt;
&lt;p&gt;Process it ... Then:&lt;/p&gt;
&lt;p&gt;Address it&lt;br /&gt;
Share it&lt;br /&gt;
Talk about it&lt;br /&gt;
Make a plan&lt;br /&gt;
Act on it&lt;/p&gt;
&lt;p&gt;Your team and investors will rally &lt;a href=&quot;https://twitter.com/jasonlk/status/1645109875922423813&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;VC&#39;s are FINALLY starting to realize the power of industry specific software aka vertical SaaS.&lt;/p&gt;
&lt;p&gt;In the last few months I&#39;ve seen more and more top tier investors come out of the woodwork with blogs and overviews.&lt;/p&gt;
&lt;p&gt;Why the time is right for YOU to start a vSaaS business 🧵 &lt;a href=&quot;https://t.co/k0JHORrckD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/k0JHORrckD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lukesophinos/status/1645422641489285120&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lukesophinos&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Thank you to all the investors who are investing in the YC w23 batch.  After working with over 800 YC companies over the past 10 years I also wanted to offer 1 piece of advice. &lt;a href=&quot;https://twitter.com/mwseibel/status/1645828477659258881&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mwseibel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You get paid for being right first, and to be first, you can’t wait for consensus.&amp;quot; - @naval &lt;a href=&quot;https://twitter.com/QuotesOfNaval/status/1646166296931778562&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuotesOfNaval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s often the case that someone receiving critical feedback gets preoccupied with the implications of that feedback instead of whether it&#39;s true. This is a mistake. As I&#39;ll explain later, conflating the &amp;quot;what is&amp;quot; with the &amp;quot;what to do about it&amp;quot; typically leads to bad decision making. Help others through this by giving feedback in a way that makes it clear that you&#39;re just trying to understand what&#39;s true. Figuring out what to do about it is a separate discussion. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1646172468644651011&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A Founder we’re working with is getting a 65% - 75% demo conversion rate right now, want to tell you how we did it:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Installed a system that increased the show up rate. Instead of reminders talking about the “demo” (which no one cares about), we focused on the benefit they’d get from attending the demo.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Created a 2 month “nurture” campaign for no-shows. Each email speaks to a specific pain point, and how we can solve it for them. CTA was to “Speak with a specialist to get help” instead of “schedule your demo.”&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;NOTE: We didn’t make them feel bad by saying, “You missed the demo” or “Haven’t been able to get a hold of you.” Every email we sent focused on a pain they might be having and how we can help&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Added additional qualification questions to the demo request page. We discovered that their ideal clients all had a similar characteristics, so we added a question addressing that to the demo request page.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fewer demo requests came in, but the quality was significantly higher.&lt;br /&gt;
Now that they were spending less time talking to unqualified prospects, we used the “Strategic Partner Playbook” to find partners who already built an audience of their ideal customers, and reached out to them.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Good quality partners care less about the extra money they’ll make, and more about sending their audience to someone that they trust and that will help their audience have more success.&lt;/p&gt;
&lt;p&gt;So the outreach was focused on “Here’s how we can help you provide more value to your audience” , while using the partner commission as a secondary bonus.&lt;/p&gt;
&lt;p&gt;Made a few other small tweaks. These were the main ones.&lt;/p&gt;
&lt;p&gt;Next step is to get more demos.&lt;/p&gt;
&lt;p&gt;Please note, this plan was designed specifically for them - it may or may not work for you.&lt;/p&gt;
&lt;p&gt;Doing the right things in the wrong order leads to frustration and discouragement, so make sure you focus on the ORDER right now instead of the HOW. &lt;a href=&quot;https://twitter.com/danmartell/status/1646225405492199424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;danmartell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Pocket Guide of Essential YC Advice 📙 &lt;a href=&quot;https://t.co/flwwSdXwHP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/flwwSdXwHP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ycombinator/status/1646232786246967297&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ycombinator&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Unique is great, but the best ideas are copied; nothing stays unique.&lt;/p&gt;
&lt;p&gt;Special, you can control. Unique you can’t.&lt;/p&gt;
&lt;p&gt;Strive to have a special company - brand, values, product, some features. &lt;a href=&quot;https://twitter.com/asmartbear/status/1646511618375942150&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I built a $100M software company called Vettery.&lt;/p&gt;
&lt;p&gt;This wouldn&#39;t have been possible without a culture of speed &amp;amp; efficiency.&lt;/p&gt;
&lt;p&gt;7 hard-earned productivity insights: &lt;a href=&quot;https://twitter.com/adcock_brett/status/1646875286682882049&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adcock_brett&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Early signs of start-up success:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;founders being 100% focused on talking to customers &amp;amp; finding PMF&lt;/li&gt;
&lt;li&gt;rate of product releases&lt;/li&gt;
&lt;li&gt;founders obsessing about quality of first 10 team members&lt;/li&gt;
&lt;li&gt;how quickly founders fire 1st underperforming employee&lt;/li&gt;
&lt;li&gt;consistency of investor updates &lt;a href=&quot;https://twitter.com/bwertz/status/1646920625867612160&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bwertz&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Laundry is a battle you can&#39;t win. Especially if you have kids.&lt;/p&gt;
&lt;p&gt;After our second baby, the laundry situation in our home went crazy. There were piles of unsorted laundry EVERYWHERE.&lt;/p&gt;
&lt;p&gt;Well, not anymore. Because we DIY&#39;d a system.&lt;/p&gt;
&lt;p&gt;Introducing the &amp;quot;Trofast Laundry System&amp;quot; 👇👇👇 &lt;a href=&quot;https://t.co/5Jd0mrrlnR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5Jd0mrrlnR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/hellobasak/status/1646950403911589893&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hellobasak&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Step &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#4&quot;&gt;#4&lt;/a&gt; - Create an admin playbook.&lt;/p&gt;
&lt;p&gt;Have your assistant create the playbook, NOT you.&lt;/p&gt;
&lt;p&gt;As they&#39;re learning your preferences, scheduling, replying, etc...&lt;/p&gt;
&lt;p&gt;Ask them to document it and show it to you.&lt;/p&gt;
&lt;p&gt;This locks in learning and allows you to quickly train anyone. &lt;a href=&quot;https://t.co/cSstQxhpne&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/cSstQxhpne&lt;/a&gt; &lt;a href=&quot;https://twitter.com/danmartell/status/1647361137263120385&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;danmartell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Big ideas are magnets for talented people&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Determine your direction, then take massive action&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Listening deeply is more valuable than talking loudly &lt;a href=&quot;https://twitter.com/adcock_brett/status/1647608173333983232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adcock_brett&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;
&lt;p&gt;Build a network of peers to keep you accountable to your goals&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Instinct backed by data is as close to a sure decision as you&#39;ll get&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most powerful productivity hack in the world is saying no &lt;a href=&quot;https://twitter.com/adcock_brett/status/1647608175930245122&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adcock_brett&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;23&quot;&gt;
&lt;li&gt;
&lt;p&gt;Never build something if you aren&#39;t committed to making it great&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Set challenging deadlines and you&#39;ll hit them the same as other deadlines, in half the time&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Planning every week out will change your career &lt;a href=&quot;https://twitter.com/adcock_brett/status/1647608191600201728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adcock_brett&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;you don&#39;t actually love &amp;quot;quiet luxury.&amp;quot; you&#39;re in love with the idea of inherited wealth, spacious uncluttered homes, and enough free time to pursue your hobbies &lt;a href=&quot;https://t.co/OwSn6wWxVP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OwSn6wWxVP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dieworkwear/status/1647662031619895296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dieworkwear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I find mental “time travel” to be a very useful trick:&lt;/p&gt;
&lt;p&gt;Go back 10 years and realize how amazed your younger self would be at where you are today.&lt;/p&gt;
&lt;p&gt;Go forward 50 years and realize how much your older self will long for the challenges you’re currently facing.&lt;/p&gt;
&lt;p&gt;Works wonders. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1647692622469668865&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Work under uncertainty:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Hard work → Trial &amp;amp; error&lt;/li&gt;
&lt;li&gt;Focus → Many things at once&lt;/li&gt;
&lt;li&gt;Optimization → 80/20 rule&lt;/li&gt;
&lt;li&gt;Consistency → Intensity&lt;/li&gt;
&lt;li&gt;Avoid distractions → Embrace randomness&lt;/li&gt;
&lt;li&gt;Practice 10,000 hrs → 100 bets&lt;/li&gt;
&lt;li&gt;Goals → Stay in the game&lt;/li&gt;
&lt;li&gt;Efficiency → Slack in the system &lt;a href=&quot;https://twitter.com/dvassallo/status/1647706616350007300&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dvassallo&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When we can’t deal with a certain pain, we compensate by compulsively distracting ourselves from that pain. &lt;a href=&quot;https://t.co/WLBws6Y00W&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WLBws6Y00W&lt;/a&gt; &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1647944248329744385&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You&#39;ve heard the expression &amp;quot;no pain no gain.&amp;quot; Psychologists have shown that the most powerful personal transformations come from experiencing the pain from mistakes that a person never wants to have again--known as &amp;quot;hitting bottom.&amp;quot; So don&#39;t be hesitant to give people those experiences or have them yourself.&lt;/p&gt;
&lt;p&gt;While it is important to be clear to people about what they are doing well, it is even more important to point out their weaknesses and have them reflect on them.&lt;/p&gt;
&lt;p&gt;Problems require more time than things that are going well. They must be identified and understood and addressed, while things that are running smoothly require less attention. Instead of celebrating how great we are, we focus on where we need to improve, which is how we got to be so great. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1647980942185693184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;awkward truth:&lt;/p&gt;
&lt;p&gt;engineering productivity is far more correlated with culture than team size&lt;/p&gt;
&lt;p&gt;there are startups w/ 10 engineers that ship more for their customers than big co engineering teams of 1000 (ex: Midjourney)&lt;/p&gt;
&lt;p&gt;you cannot throw people and/or money at building great things &lt;a href=&quot;https://twitter.com/alexandr_wang/status/1648040173631049728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;alexandr_wang&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You generally gain time from using unit-tests and I have the data to back this up.&lt;/p&gt;
&lt;p&gt;I recently listened to the latest @MicroConf video with @robwalling and @derrickreimer and in it they discussed unit-tests. This thread is my contribution.&lt;/p&gt;
&lt;p&gt;Thanks to @asmartbear for feedback. &lt;a href=&quot;https://twitter.com/Tony_Meijer/status/1648415111034306560&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tony_Meijer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The people who succeed are irrationally passionate about something.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1648642345913708544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to become an expert at anything, read this.&lt;/p&gt;
&lt;p&gt;The 4 Stages of Competence: &lt;a href=&quot;https://t.co/0sYP7XdUOZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0sYP7XdUOZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SahilBloom/status/1648700361090252804&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lesson from the early years of HubSpot:&lt;/p&gt;
&lt;p&gt;Don&#39;t try to convince people you have a better solution than your competitors.&lt;/p&gt;
&lt;p&gt;Convince them that you picked a better problem to solve. &lt;a href=&quot;https://twitter.com/dharmesh/status/1648880275559006210&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Question time: What’s the best way to ensure accurate timekeeping for on-site company employees – ☀️ a sundial or ⌚️ a wristwatch?&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#timemanagement&quot;&gt;#timemanagement&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#HR&quot;&gt;#HR&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#payroll&quot;&gt;#payroll&lt;/a&gt; &lt;a href=&quot;https://t.co/ABEWpL9lkY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ABEWpL9lkY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1649032172005732353&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We&#39;ve adopted @rjs/@basecamp Shape-Up methodology almost one year ago.&lt;/p&gt;
&lt;p&gt;Thanks to @NotionHQ databases and @linear projects and updates our workflow has never been more efficient.&lt;/p&gt;
&lt;p&gt;Here&#39;s some info (with screenshots) how we set it up 👇 &lt;a href=&quot;https://twitter.com/digitalbase/status/1649042726737018882&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;digitalbase&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s true, indie devs hate marketing and love writing code and maybe design.&lt;/p&gt;
&lt;p&gt;That&#39;s why they don&#39;t spend enough time on marketing and sales.&lt;/p&gt;
&lt;p&gt;That&#39;s part of why they typically fail.&lt;/p&gt;
&lt;p&gt;Possibly the main reason. &lt;a href=&quot;https://twitter.com/asmartbear/status/1649079293358555140&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Humans aren’t evolved to worry about everything happening outside of their immediate environment.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1649370141770088448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Success is the inevitable byproduct of learning (not education).&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1649460990239703041&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;This is how GPT-4 sees and hears itself&amp;quot;&lt;/p&gt;
&lt;p&gt;I used GPT-4 to describe itself. Then I used its description to generate an image, a video based on this image and a soundtrack.&lt;/p&gt;
&lt;p&gt;Tools I used: GPT-4, Midjourney, Kainber AI, Mubert, RunwayML&lt;/p&gt;
&lt;p&gt;This is the description I used that GPT-4 had of itself as a prompt to text-to-image, image-to-video, and text-to-music. I put the video and sound together in RunwayML. &lt;a href=&quot;https://twitter.com/icreatelife/status/1649873812295491584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;icreatelife&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The RICE prioritization framework is flawed.&lt;/p&gt;
&lt;p&gt;Purely ROI-driven prioritization can lead to worse outcomes.&lt;/p&gt;
&lt;p&gt;Ranking features on cost vs value is often usually worse than just looking at the value side of the equation.&lt;/p&gt;
&lt;p&gt;Ask: What really matters to customers? &lt;a href=&quot;https://t.co/aXIqp1mICv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/aXIqp1mICv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1650301332681641984&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can use formulas to generate fractals in the prompts. If you are not great at maths, just take this prompt and ask GPT-4 to re-write it for a different fractal.&lt;/p&gt;
&lt;p&gt;Share with me your fractals.&lt;/p&gt;
&lt;p&gt;Prompt: A highly detailed airbrush painting, using a parametric equation to create captivating art, x(t) = A * cos(a * t) * cos(t) + A * sin(b * t) * cos(t) and y(t) = A * cos(a * t) * sin(t) + A * sin(b * t) * sin(t), where &#39;A&#39;, &#39;a&#39;, and &#39;b&#39; are constants, and &#39;t&#39; ranges from 0 to 2π. By experimenting with different values for &#39;A&#39;, &#39;a&#39;, and &#39;b&#39;, you can generate a variety of intriguing and visually appealing designs, combine this with other artistic elements and styles to create a captivating abstract design --ar 3:2 &lt;a href=&quot;https://twitter.com/icreatelife/status/1650329191521345537&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;icreatelife&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We took a website from 0 to 750K/mo SEO traffic using 100% AI-generated content.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;7K total pages generated&lt;/li&gt;
&lt;li&gt;Hit 300K/mo after 6 months&lt;/li&gt;
&lt;li&gt;Hit 750K/mo after 12 months&lt;/li&gt;
&lt;li&gt;4K+ keywords in positions 1-3&lt;/li&gt;
&lt;li&gt;13K+ keywords in positions 4-10&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here’s the breakdown: &lt;a href=&quot;https://t.co/tQf65aXpWt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tQf65aXpWt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jakezward/status/1650476352380731397&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jakezward&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Truly absurd to me how much of corporate America spends their entire work day on Zoom calls with tens of people&lt;/p&gt;
&lt;p&gt;Almost everyone’s camera is off and is muted&lt;/p&gt;
&lt;p&gt;No one particularly wants to be there&lt;/p&gt;
&lt;p&gt;Everyone is distracted and doing other stuff&lt;/p&gt;
&lt;p&gt;Can’t be good, no? &lt;a href=&quot;https://twitter.com/ankurnagpal/status/1650497634082209801&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ankurnagpal&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Write down all the projects you are working on right now. What is the one thing that, if you had the courage to eliminate it entirely, would make all the others easier? &lt;a href=&quot;https://twitter.com/JamesClear/status/1650499839183007751&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;CEOs selling to enterprises: don’t let the PLG / PLS motion blind you to the importance of relationships in enterprise sales. These relationships are nurtured over time through meals, gifts, sporting events, etc. Don’t skimp on $1000 to close $5m deals.&lt;/p&gt;
&lt;p&gt;Too many CEOs who’ve grown up in the age of PLG, seem to think of enterprise selling as purely transactional and rational. Don’t make this mistake.  Have your EA or CoS figure out a schedule of getting Warriors / Knicks / Lakers tickets for your enterprise partners and prospects, taking them to nice dinners, sending them (nice) holiday gifts, etc. Don’t leave it to chance. Build the machine. &lt;a href=&quot;https://twitter.com/gokulr/status/1651286146209693699&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gokulr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’re overloaded with things to do, you’re doing all, or almost all, of them poorly.&lt;/p&gt;
&lt;p&gt;That’s actually ok, if none of them need to be done well, and you cannot delegate.  But what does that say about the value of your time?&lt;/p&gt;
&lt;p&gt;What is the opportunity cost of that?  (1/2) &lt;a href=&quot;https://twitter.com/asmartbear/status/1651322053532811266&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Act out of interest, not out of obligation. &lt;a href=&quot;https://twitter.com/naval/status/1651396449027096578&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Large company&#39;s asset is distribution.&lt;/p&gt;
&lt;p&gt;Small company&#39;s asset is speed of product delivery.&lt;/p&gt;
&lt;p&gt;Partnerships only work when both can profit.&lt;/p&gt;
&lt;p&gt;That means putting great product into an existing channel.&lt;/p&gt;
&lt;p&gt;Hard to make anything else work. &lt;a href=&quot;https://twitter.com/asmartbear/status/1651585070757470208&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A founder is someone who keeps the organization focused on the product and not the organization. &lt;a href=&quot;https://twitter.com/naval/status/1651754201763188736&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You say you don&#39;t have time to read but here you are on Twitter. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1651934315067113472&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Businesses that switched to Stripe&#39;s newest payments integration—the Payment Element—saw a 10.5% increase in revenue on average compared to those that did not.&amp;quot;&lt;/p&gt;
&lt;p&gt;That figure is so large that it sounds like some kind of specious marketing hand-wave, so we elaborated a bit more in this post: &lt;a href=&quot;https://t.co/Jtdre56Kls&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Jtdre56Kls&lt;/a&gt;. The finding is actually from a full difference-in-differences analysis run by our in-house data scientists and economists, with n=10,000 sample size. &lt;a href=&quot;https://twitter.com/patrickc/status/1651999780464381952&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrickc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/biXok7mN3V&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/biXok7mN3V&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1652012766440423426&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;After 20 years of interviewing candidates, I&#39;ve found this to be the single most useful interview question:&lt;/p&gt;
&lt;p&gt;&amp;quot;What is your greatest strength ... that you are most worried about not coming across in an interview setting?&amp;quot; &lt;a href=&quot;https://twitter.com/blader/status/1653491665527783424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;blader&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The world&#39;s most valuable skill: Clarity of Thought.&lt;/p&gt;
&lt;p&gt;The problem? There&#39;s no school for this. It takes time, patience and a lot of early career fumbling.&lt;/p&gt;
&lt;p&gt;In this week&#39;s screenshot essay (with my friends at @Compound), I broke down how I have increased my clarity of thought and the practical questions I ask myself when I&#39;m trying to break through: &lt;a href=&quot;https://twitter.com/RomeenSheth/status/1653515764861747200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RomeenSheth&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@icreatelife &lt;a href=&quot;https://t.co/Fmn7VQUjlo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Fmn7VQUjlo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kylelf_/status/1653571481874612224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kylelf_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the arc of technology is towards simplicity.&lt;/p&gt;
&lt;p&gt;talking to a computer like we talk to a human is pretty simple.&lt;/p&gt;
&lt;p&gt;we have come a long way from punch cards to natural language, but within the paradigm of natural language, we can now go so far. &lt;a href=&quot;https://twitter.com/sama/status/1653770471878574082&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol&gt;
&lt;li&gt;Try a bunch of new stuff, fail at most of it&lt;/li&gt;
&lt;li&gt;Find something that works&lt;/li&gt;
&lt;li&gt;Then double down on what works, quit doing everything else&lt;/li&gt;
&lt;li&gt;Grow exponentially&lt;/li&gt;
&lt;li&gt;When growth slows down, go back to Step 1&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;This can practically be applied to all areas of life. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1654467228874559490&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;By age 3, kids prefer nature&#39;s fractal patterns, despite the fact that most are raised in manmade structures with Euclidean geometry, suggesting this may be something innate, and may explain how viewing nature’s fractals reduces stress and mental fatigue &lt;a href=&quot;https://t.co/f3KxZ860uq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/f3KxZ860uq&lt;/a&gt; &lt;a href=&quot;https://t.co/28YAC5w1kA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/28YAC5w1kA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1654491135300042758&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Overdeliver like crazy. Make your clients feel like they&#39;re stealing from you. This is what leads to viral word of mouth. &lt;a href=&quot;https://twitter.com/TheJackBly/status/1654503529254465536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJackBly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Exemplary representation of the Ohm&#39;s law&lt;/p&gt;
&lt;p&gt;[read more: &lt;a href=&quot;https://t.co/d1PqC7zfi5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/d1PqC7zfi5&lt;/a&gt;]&lt;br /&gt;
&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#FridayFunday&quot;&gt;#FridayFunday&lt;/a&gt; &lt;a href=&quot;https://t.co/gcly9DMx4C&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gcly9DMx4C&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1654511267921506304&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A rare counterexample to the principle of specialization: your site should never seem like it was made by communications people, and the best way to achieve this is for it not to be. This is something founders should continue to micromanage forever. &lt;a href=&quot;https://twitter.com/paulg/status/1654765304184971264&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is an instance of a more general principle: don&#39;t delegate the soul of the organization. &lt;a href=&quot;https://twitter.com/paulg/status/1654765847439712257&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;how i get gpt4 to efficiently teach me anything:&lt;/p&gt;
&lt;p&gt;&amp;quot;Teach me how &amp;lt;anything&amp;gt; works by asking questions about my level of understanding of necessary concepts. With each response, fill in gaps in my understanding, then recursively ask me more questions to check my understanding.&amp;quot; &lt;a href=&quot;https://twitter.com/blader/status/1655320754442092545&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;blader&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Unique&amp;quot; is great, but the best ideas are copied; nothing stays unique.&lt;/p&gt;
&lt;p&gt;&amp;quot;Special,&amp;quot; you can control. Unique you can’t.&lt;/p&gt;
&lt;p&gt;Strive to have a special company - brand, values, product, some features. &lt;a href=&quot;https://twitter.com/asmartbear/status/1656689425487675393&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1/ How to do outbound at your startup:&lt;/p&gt;
&lt;p&gt;I talk to startups every day about using outbound to generate new opportunities. Almost 100% of them are doing it wrong. &lt;a href=&quot;https://twitter.com/samdblond/status/1656712091749826575&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;samdblond&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Our Q1 board meeting was yesterday.&lt;/p&gt;
&lt;p&gt;It was my 33rd board meeting as CEO of @Broadlume&lt;/p&gt;
&lt;p&gt;Coming from @Google I had never run a board meeting beforehand&lt;/p&gt;
&lt;p&gt;I kept notes for myself after each meeting starting in 2015.&lt;/p&gt;
&lt;p&gt;After 33 meetings, here are the 10 big lessons learned 👇 &lt;a href=&quot;https://twitter.com/toddsaunders/status/1657103865878020096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;toddsaunders&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2/ Send monthly board updates&lt;/p&gt;
&lt;p&gt;This will again eliminate end of quarter surprises and build trust with your board.&lt;/p&gt;
&lt;p&gt;Losing trust with your board is hard to regain.&lt;/p&gt;
&lt;p&gt;Keep the updates consistent MoM&lt;br /&gt;
👉  Financials&lt;br /&gt;
👉 CEO summary / perspective&lt;br /&gt;
👉 Good news&lt;br /&gt;
👉 Bad news &lt;a href=&quot;https://twitter.com/toddsaunders/status/1657103873813762050&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;toddsaunders&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;4/ Let your team run the show&lt;/p&gt;
&lt;p&gt;As CEO, you should do the executive summary and add commentary to other slides but your executive team are the ones presenting.&lt;/p&gt;
&lt;p&gt;CFO - finance slides&lt;br /&gt;
CRO - revenue slides&lt;br /&gt;
COO - all reporting and KPIs &lt;a href=&quot;https://twitter.com/toddsaunders/status/1657103880428179476&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;toddsaunders&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;PSA: You need a Chief of Staff.&lt;/p&gt;
&lt;p&gt;I hired one last year:&lt;/p&gt;
&lt;p&gt;My productivity doubled – and I’m having a ton more fun.&lt;/p&gt;
&lt;p&gt;I wish I’d done it years ago.&lt;/p&gt;
&lt;p&gt;Here&#39;s how I did it: &lt;a href=&quot;https://twitter.com/girdley/status/1657358781163143168&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;girdley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2 unemployed friends bootstrapped a SaaS &amp;amp; sold it for $10M+ in 18 months&lt;/p&gt;
&lt;p&gt;Hustled to grow it from 0 to $1.2M in revenue&lt;/p&gt;
&lt;p&gt;This is my story, how much money I made &amp;amp; everything I learned 👇 &lt;a href=&quot;https://t.co/ipCoEUtEBV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ipCoEUtEBV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tibo_maker/status/1658454527404658688&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tibo_maker&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A feature should either THRILL ≥15% of customers or be USEFUL to ≥60%.&lt;/p&gt;
&lt;p&gt;Amazing how many are neither.&lt;/p&gt;
&lt;p&gt;You don&#39;t have time for those. &lt;a href=&quot;https://twitter.com/asmartbear/status/1658470154672406528&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My reflection on the TOP 3 FATAL MISTAKES I made with @Zlappo that ended up killing my business:&lt;/p&gt;
&lt;p&gt;(sharing so you hopefully don&#39;t make the same mistakes as me)&lt;/p&gt;
&lt;p&gt;🧵 &lt;a href=&quot;https://twitter.com/therealjayber/status/1658985390391586816&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;therealjayber&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Someone you want to sit down at the end of the day, each day, to talk about the day.&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/wmeDcTA3Ty&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wmeDcTA3Ty&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1659038865137758208&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My favorite quotes after reviewing my notes on Sam Zell:&lt;/p&gt;
&lt;p&gt;“I believe the fundamentals of business—supply and demand, liquidity equals value, good corporate governance, and reliable partners, to name a few—apply across the board.”&lt;/p&gt;
&lt;p&gt;“When you’re a repeat player, when your world is your business and your business is your world, it’s all about long-term relationships. In any negotiation I believe in leaving a little bit on the table. And in any relationship I believe in sharing the stakes.”&lt;/p&gt;
&lt;p&gt;“On one of my walks I discovered a newsstand underneath the “L” tracks. It was 1953, and a provocative new magazine called Playboy had just made its debut featuring Marilyn Monroe on the cover. It sold for 50 cents. I bought a copy and thought it was terrific. So I brought it home to Highland Park, where it wasn’t for sale, and showed it to my friends. One of them offered to buy it. “Three bucks,” I said. After that, I started a little magazine import business and, in the process, learned a lasting business lesson: Where there is scarcity, price is no object. This basic tenet of supply and demand would later become a governing principle of my investment philosophy.”&lt;/p&gt;
&lt;p&gt;“Opportunity is very often embedded in the imbalance between supply and demand. It could be rising demand against flat or diminishing supply, or flat demand against shrinking supply. When there’s an imbalance, I look at where the two lines will intersect and then determine whether it is cheaper to buy or to build. Usually the answer is in acquisition, which eliminates a lot of the risk inherent in development.”&lt;/p&gt;
&lt;p&gt;“The most reliable measure of our buildings’ value remained—and had always been, in my opinion—replacement cost. Replacement cost mattered more to me than rents or comparable prices or vacancies or economic growth or stock price. This was because replacement cost determined the price of future competition.”&lt;/p&gt;
&lt;p&gt;“there’s no substitute for limited competition. You can be a genius, but if there’s a lot of competition, it won’t matter.”&lt;/p&gt;
&lt;p&gt;“I often say I’m chairman of everything and the CEO of nothing. I stick to what I’m good at—vision, direction, strategy. That’s where I add the most value. I spend almost my entire day listening to other people. I ask questions, I probe, I raise possibilities.”&lt;/p&gt;
&lt;p&gt;“I tell my kids and grandkids, “Your responsibility is to maximize the skills you were given. But whatever you decide to do, invest everything you have in it—excel. What I’ve done is not the example I wanted to set; it’s the way I’ve done it that I hope you emulate, through focus, effort, and commitment.”&lt;/p&gt;
&lt;p&gt;And perhaps best of all…&lt;/p&gt;
&lt;p&gt;“if you’re really good at what you do, you have the freedom to be who you really are.” &lt;a href=&quot;https://twitter.com/patrick_oshag/status/1659536501716275200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrick_oshag&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You might want to &amp;quot;work forever&amp;quot; because it&#39;s fulfilling, but probably not on exactly the same things.  This is the founder&#39;s dilemma -- you like newness but mature companies require process and repeatability.&lt;/p&gt;
&lt;p&gt;Solution: Change your role and hire the best. &lt;a href=&quot;https://twitter.com/asmartbear/status/1659953936772526081&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Noise is a secret destroyer of productivity.&lt;/p&gt;
&lt;p&gt;It is secret because it impacts cognition, not effort, so we don’t notice, but a 10db noise increase (from a dishwasher to a vacuum) lowers productivity by 5%. Noise is also greater in poorer neighborhoods... &lt;a href=&quot;https://t.co/RaIAsSudyY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/RaIAsSudyY&lt;/a&gt; &lt;a href=&quot;https://t.co/egb8YckkhV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/egb8YckkhV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/emollick/status/1660093233181933568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;emollick&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I deleted all productivity apps a while ago and I couldn’t be happier.&lt;/p&gt;
&lt;p&gt;Using several apps to become more productive actually makes you unproductive. You waste valuable time that you could use for work.&lt;/p&gt;
&lt;p&gt;Take a pen and a paper or simple note app, write down your tasks, and cross them when you finish. Simple and effective. &lt;a href=&quot;https://twitter.com/catalinmpit/status/1660262315252391941&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;catalinmpit&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Investors in startups used to ask “what if Google copies your idea?” But now I think they should be asking mature companies “what if indie hackers copies your product and makes it cheaper with less people / technical debt &amp;amp; moves faster” &lt;a href=&quot;https://twitter.com/ransegall/status/1660313117379706881&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ransegall&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build a life that you don’t need to escape from. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1660314578180509696&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No matter what work you do, at a high level you are simply setting goals and building machines to help you achieve them. I built the machine that is Bridgewater by constantly comparing its actual outcomes to my mental map of the outcomes that it should be producing, and finding ways to improve it.&lt;/p&gt;
&lt;p&gt;I won&#39;t say anything specific about how you should set your own organization&#39;s goals other than that the high-level principles about goal setting I covered in Life Principles apply equally to individuals and organizations. I will, however, point out that in running your organization, you and the people you work with must be clear on how your lower-level goals--whether they&#39;re to produce things cost-effectively, achieve high customer satisfaction, help a certain number of people in need, whatever--grow out of your higher-level goals and values.&lt;/p&gt;
&lt;p&gt;No matter how good you are at design, your machine will have problems. You or some other capable mechanic needs to identify those problems and look under the hood of the machine to diagnose their root causes. You or whoever is diagnosing those problems has to understand what the parts of the machine--the designs and the people-- are like and how they work together to produce the outcomes. The people are the most important part, since most everything, including the designs themselves, comes from people. Unless you have a clear understanding of your machine from a higher level--and can visualize all its parts and how they work together--you will inevitably fail at this diagnosis and fall short of your potential.&lt;/p&gt;
&lt;p&gt;At Bridgewater, the high-level goal of all of our machines is to create excellent outcomes for our clients--in the returns on their investments, of course, but also in the quality of our relationship and our thought partnership in understanding global economies and markets more broadly. Before we had anything else at Bridgewater, we had this commitment to excellence. Maintaining these extremely high standards has always been a challenge, especially as the pace of our growth and change accelerated. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1660360545344581632&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pains me to say this, but even I have changed my stance on remote.&lt;/p&gt;
&lt;p&gt;We tried hard, developed the best tooling allowed by the tech — and still, remote falls very short of colocation, especially for startups that are still pre-product market fit. &lt;a href=&quot;https://twitter.com/Altimor/status/1660718458152304640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Altimor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re a solo/small-team, don&#39;t add any features which preclude you from taking a week off,  i.e. something real-time, something complex that breaks a lot, something coupled to external systems which themselves often change/break. &lt;a href=&quot;https://twitter.com/asmartbear/status/1660744399196770309&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’m at a stage in my life where my goal is to pass what I’ve learned along to others, and I often get asked for my advice for young people in particular.&lt;/p&gt;
&lt;p&gt;You’re at a stage in your life that you are just starting out on the phase in life that I’m ending. I learned some stuff that helped me that I believe can help you.&lt;/p&gt;
&lt;p&gt;As you know, I have found that most everything happens over and over again for pretty much the same reasons, so in order to understanding anything, it pays to understand how a typical case unfolds and observe the cause-effect relationships that make it unfold that way. In this exercise, I am going to ask you to look at both the typical life arc and your own life arc and reflect on them, This exercise will help you imagine what probably will come at you, plan for it, and deal with it when it comes.&lt;/p&gt;
&lt;p&gt;Not all life arcs are the same, and no arc is better in any way than another—they’re each their own unique journey, reflecting the circumstances faced by and decisions of the person traveling the arc—but the archetypical life lasts about 80 years and evolve in three very different phases. Even if your life arc bears little resemblance to the typical one, my hope is that you’ll find value in reflecting on your journey.&lt;/p&gt;
&lt;p&gt;I suggest that you get a few pieces of paper and a pen, copy the basic arc, and put a tick where you are with “me” next to it. Looking through these phases, now how the descriptions of what’s happening to the typical person match up with your own experiences, especially at the critical junctures. The choices you make at these junctures have big implications on the life that you will have. As you will see, the paths we take along the way affect the type of journey we have.&lt;/p&gt;
&lt;p&gt;This perspective has helped me and many people I have shared it with, and I hope it will help you too. If you’d like to experience an interactive version of the exercise, you can in the free Principles in Action app here: &lt;a href=&quot;https://t.co/VsYkrX8NaT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VsYkrX8NaT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1661428192912048142&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you aren’t sure, another 100 opinions willl only make you less sure. Ultimately you have to ask yourself. &lt;a href=&quot;https://twitter.com/jasonfried/status/1661437062514634753&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I created a vector database of all my Readwise highlights using OpenAI’s embeddings API.&lt;/p&gt;
&lt;p&gt;It&#39;s an amazing way to semantically search anything I&#39;ve highlighted in the past. I can also look at &amp;quot;similar&amp;quot; quotes that may not even have any overlapping works, but similar concepts. &lt;a href=&quot;https://t.co/Ptlq32dta2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Ptlq32dta2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/maxolson/status/1662205085131350017&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maxolson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the most valuable pieces of startup-advice I got was:&lt;/p&gt;
&lt;p&gt;“Build something for yourself. Build something you want to use every day” — by @Conaw in ~2019.&lt;/p&gt;
&lt;p&gt;This mindset fuels a profound understanding of user needs, genuine passion, swift iterations, and lasting motivation. &lt;a href=&quot;https://twitter.com/JohannesMutter/status/1662333029388541952&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JohannesMutter&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No matter how complete any project or plan, there will always be things that come out of nowhere and look like the most important or urgent or attractive thing to focus on. These shiny objects may be traps that will distract you from thinking in a machinelike way, so be on your guard for them and don&#39;t let yourself be seduced. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1662411398733807617&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Distribution &amp;gt; Product &lt;a href=&quot;https://twitter.com/asmartbear/status/1662490648534982656&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;for everything I want, the price is intensity&lt;/p&gt;
&lt;p&gt;But instead of doing &amp;quot;the obvious thing, with high intensity&amp;quot;&lt;/p&gt;
&lt;p&gt;I look for &amp;quot;the secret strategy&amp;quot; in business, fitness, life... Stupid!&lt;/p&gt;
&lt;p&gt;The past 30 days, I&#39;ve made so much progress by realizing &amp;quot;intensity is the strategy&amp;quot; &lt;a href=&quot;https://twitter.com/ShaanVP/status/1663578512983490560&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ShaanVP&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I want tech to be simpler, less obtrusive, to be light on its feet, to melt away, to blend into my life. &lt;a href=&quot;https://twitter.com/kocienda/status/1664266103693127683&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kocienda&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Canva:&lt;/p&gt;
&lt;p&gt;$1.5 Billion in ARR&lt;br /&gt;
135 million monthly users&lt;br /&gt;
Sixth year of profitability&lt;/p&gt;
&lt;p&gt;Not too shabby! &lt;a href=&quot;https://twitter.com/jasonlk/status/1664889331176075266&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;** Hiring without a process.&lt;/p&gt;
&lt;p&gt;For the longest time (2004-2015) my hiring process was:&lt;/p&gt;
&lt;p&gt;Spend an hour w/ candidate-&amp;gt;trust my intuition-&amp;gt;make a hire.&lt;/p&gt;
&lt;p&gt;No references, no metrics, no funnel. No nothing.&lt;/p&gt;
&lt;p&gt;Bad hires, especially in leadership spots, have cost me millions.&lt;/p&gt;
&lt;p&gt;All my fault. &lt;a href=&quot;https://twitter.com/girdley/status/1664968930501459969&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;girdley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I learn much better with diagrams than with a long text.&lt;/p&gt;
&lt;p&gt;If you&#39;re like me, this short guide is for you.&lt;/p&gt;
&lt;p&gt;Draw diagrams for any subject using AI: &lt;a href=&quot;https://t.co/ptPieCA3Wi&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ptPieCA3Wi&lt;/a&gt; &lt;a href=&quot;https://twitter.com/itsPaulAi/status/1664982414588870656&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;itsPaulAi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I like roadmaps as &amp;quot;Now / Next / Later.&amp;quot;  Communication without too much commitment.&lt;/p&gt;
&lt;p&gt;But, you&#39;re still naming specific features; what if you change your mind?&lt;/p&gt;
&lt;p&gt;So, perhaps even better:&lt;/p&gt;
&lt;p&gt;Now / Probable / Possible&lt;/p&gt;
&lt;p&gt;Still communicate ideas, but easier to change. &lt;a href=&quot;https://twitter.com/asmartbear/status/1665027377095757825&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@asmartbear Already seeing intent play a bigger part in ranking, matching your content to the actual user goal rather than just matching the keywords &lt;a href=&quot;https://twitter.com/chrisgarrett/status/1665094148494434307&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;chrisgarrett&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@Duderichy This is my favorite animation!!! I have it bookmarked on my phone for parties. Such a whitepill on past 40 years. &lt;a href=&quot;https://t.co/hScqcrooJr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hScqcrooJr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/eshear/status/1665194196469161987&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eshear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Whatever people don&#39;t like doing, but HAVE to (regardless why), is could be an opportunity for a product or service.&lt;/p&gt;
&lt;p&gt;Either make it so they don&#39;t have to do it, or so it takes 1/10th the time/energy/attention. &lt;a href=&quot;https://twitter.com/asmartbear/status/1665751912900186112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s has truly nothing to do with 2hr battery life. The apps &amp;amp; marketing pitch is awful even if it had 24 HR battery life…. This is not a painkiller.&lt;br /&gt;
Platforms don’t become useful products. Useful products become platforms… &lt;a href=&quot;https://twitter.com/tfadell/status/1666056560664104964&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tfadell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The more features you add, the more customers might decide your tool does &amp;quot;everything I need.&amp;quot;&lt;/p&gt;
&lt;p&gt;And also the more cluttered and confusing it often gets.&lt;/p&gt;
&lt;p&gt;You might need to decide which end of the spectrum is best for your product, market, and personal proclivity. &lt;a href=&quot;https://twitter.com/asmartbear/status/1666113078184800257&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you keep getting bogged down in details, you either have a problem with managing or training, or you have the wrong people doing the job. The real sign of a master manager is that he doesn&#39;t have to do practically anything. Managers should view the need to get involved in the nitty-gritty as a bad sign.&lt;/p&gt;
&lt;p&gt;At the same time, there&#39;s danger in thinking you&#39;re delegating details when you&#39;re actually being too distant from what&#39;s important and essentially are not managing. Great managers know the difference. They strive to hire, train, and oversee in a way in which others can superbly handle as much as possible on their own. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1666508901116682254&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Slack only charges for active users, not &amp;quot;users,&amp;quot; not &amp;quot;logins.&amp;quot;&lt;/p&gt;
&lt;p&gt;That&#39;s price-to-value, not price-to-what-is-easy or price-to-what-we-might-get-away-with.&lt;/p&gt;
&lt;p&gt;Good lesson. &lt;a href=&quot;https://twitter.com/asmartbear/status/1666542353484480512&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People often mock the aggressive overconfidence of startup founders. But some version of this is exactly what startups require. You don&#39;t start successful startups by being diffident. &lt;a href=&quot;https://twitter.com/paulg/status/1666747866839240704&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;🧪How to measure experimentations? — from Notion AI engineer @thesephist&lt;/p&gt;
&lt;p&gt;For high variance, low structure experimentations, the artifact/measurement shouldn’t be code/releases&lt;/p&gt;
&lt;p&gt;But a map of explored space — checks and Xs of what works, what doesn’t&lt;/p&gt;
&lt;p&gt;Record the decisions, prototypes &amp;amp; docs that explore the problem/solution space.&lt;/p&gt;
&lt;p&gt;Thanks @RethinkTalks for hosting such an inspiring and intimate dinner &lt;a href=&quot;https://twitter.com/eugenechantk/status/1667033201955737605&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eugenechantk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you’ve built the wrong product that solves an unimportant problem or you’ve chosen to build the wrong features or you’ve chosen the wrong customer segments, no amount of sorcery on “go-to-market” is going to fix your woes.&lt;/p&gt;
&lt;p&gt;But that doesn’t stop some product leaders (under whose leadership said product was built) from managing optics impeccably and (intentionally or unintentionally) complicating things to point at:&lt;/p&gt;
&lt;p&gt;a) GTM alignment&lt;/p&gt;
&lt;p&gt;b) adoption incentives &amp;amp; growth tactics&lt;/p&gt;
&lt;p&gt;c) more deployment resources&lt;/p&gt;
&lt;p&gt;d) infra / cross-team dependencies&lt;/p&gt;
&lt;p&gt;e) or, the next big feature&lt;/p&gt;
&lt;p&gt;as the silver bullet that will unlock amazing growth next quarter / next half / next year.&lt;/p&gt;
&lt;p&gt;These product leaders appear at QBR after QBR with superb slides / docs, which are customized perfectly to appeal to the biases of the company’s senior executives and / or the company’s stated operating values.&lt;/p&gt;
&lt;p&gt;Some executives, especially those who don’t have extremely high Product Sense, get manipulated by this show (and it is a show).&lt;/p&gt;
&lt;p&gt;The other execs (including the profoundly gifted founder or product-focused CEO) often satisfice, thinking that “the team is doing everything it can”, “we’ve invested too much to give up now”, and “the alternative of firing the product leader feels worse”.&lt;/p&gt;
&lt;p&gt;And so this show goes on for quarters and quarters &amp;amp; years and years. The emperor has no clothes but sadly the spectators can’t see, speak, nor kill the show. &lt;a href=&quot;https://twitter.com/shreyas/status/1667188240020033536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Naming your fear is huge unlock and something I try to force myself to do on a regular basis.&lt;/p&gt;
&lt;p&gt;Excellent inaugural newsletter for In The Trenches &lt;a href=&quot;https://twitter.com/Shane___Martin/status/1667216741284610048&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Shane___Martin&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Piotr Karwatka (@piotrkarwatka) presents 4 strategies for open-source monetization:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Consulting,&lt;/li&gt;
&lt;li&gt;Open Core,&lt;/li&gt;
&lt;li&gt;Cloud,&lt;/li&gt;
&lt;li&gt;Mixed Model.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ZJ9ZrxghjZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZJ9ZrxghjZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tomik99/status/1668244255033139202&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;First-time founders: What is the most impactful advice you’ve gotten so far? &lt;a href=&quot;https://twitter.com/hnshah/status/1668313429374046210&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We&#39;re big fans of ClickHouse at PostHog.&lt;/p&gt;
&lt;p&gt;Over the years, we&#39;ve built a lot of expertise and systems related to it.&lt;/p&gt;
&lt;p&gt;To formalize and share these, we&#39;re launching HouseWatch, an open-source suite of tools for monitoring and managing ClickHouse.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/hJzGfFBlDh&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hJzGfFBlDh&lt;/a&gt; &lt;a href=&quot;https://twitter.com/posthog/status/1669006705299173376&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;posthog&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Wdrożenie hiszpańskiej wersji panelu Brand24 dla krajów hiszpańskojęzycznych podniosło konwersję na sprzedaż z 1.2% na 1.6% 🔥🇪🇸 Duża rzecz, bo w skali roku, przy aktualnym ruchu z tych regionów oznacza to pozyskanie dodatkowych 100 klientów rocznie. Brawo dla całego Zespołu! 🚀&lt;/p&gt;
&lt;p&gt;A to dopiero początek rewolucji językowej. Przetłumaczyliśmy na razie wyłącznie panel. Teraz bierzemy się za pozostałe etapy ścieżki jaką przechodzi klient rejestrujący się w B24. Równolegle wchodzą kolejne języki (np Indonezyjski) 🔥🔥 &lt;a href=&quot;https://twitter.com/sadek/status/1671416799294812162&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Is marketing about explaining the problem?&lt;br /&gt;
Is marketing about showing the solution?&lt;br /&gt;
Is marketing about explaining the benefits?&lt;br /&gt;
Is marketing about positioning relative to competitors?&lt;/p&gt;
&lt;p&gt;Or what is it? &lt;a href=&quot;https://twitter.com/asmartbear/status/1671516944304881666&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Can I remind you of something?&lt;/p&gt;
&lt;p&gt;YOU HAVE ONE LIFE&lt;/p&gt;
&lt;p&gt;YOU HAVE ONE CHANCE TO ACTUALIZE AS MANY OF YOUR GOALS AND DREAMS AS POSSIBLE&lt;/p&gt;
&lt;p&gt;Be unrealistically optimistic, always look for the value in the worst of times, and HUNT for the experiences that you need to grow into the type of person who is worthy of your dreams. (So many experiences that we could&#39;ve used to grow pass us everyday because we&#39;re not looking)&lt;/p&gt;
&lt;p&gt;I love &amp;amp; believe in you :). &lt;a href=&quot;https://twitter.com/iantheviralguy/status/1672016492945350656&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iantheviralguy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This conversation between Jose Mourinho (amazing soccer manager) and Dele Alli (super talented but badly inconsistent player) is one of the most inspirational pieces I’ve seen.&lt;/p&gt;
&lt;p&gt;Worth a watch (regardless of whether you know/like soccer) &lt;a href=&quot;https://t.co/wjboEoB13O&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wjboEoB13O&lt;/a&gt; &lt;a href=&quot;https://twitter.com/destraynor/status/1672241314698493953&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;destraynor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Things I&#39;m doing at 43 to avoid regret when I&#39;m 83: &lt;a href=&quot;https://t.co/MSY83x1jlG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MSY83x1jlG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FitFounder/status/1672606338285727744&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How To Invest Time:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;To-do list - Actions to complete regularly.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Leverage lists - Actions that work for you after completion.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Leverage Lists &amp;gt; To-Do Lists&lt;/p&gt;
&lt;p&gt;If you look at the world through the leverage list frame, your actions begin to change:&lt;/p&gt;
&lt;p&gt;To-do list = Go to the gym.&lt;br /&gt;
Leverage list = Book a personal trainer for 3 months.&lt;/p&gt;
&lt;p&gt;To-do list = Train someone on the marketing team.&lt;br /&gt;
Leverage list = Record the training so it can be re-used whenever someone new joins.&lt;/p&gt;
&lt;p&gt;To-do lists are time liabilities. They require willpower again in the future.&lt;/p&gt;
&lt;p&gt;Leverage lists are time assets. They need willpower once -- and then live on in the future.&lt;/p&gt;
&lt;p&gt;Time Investment Razor:&lt;/p&gt;
&lt;p&gt;• If once done, the item will appear again - you&#39;re working on time liabilities.&lt;/p&gt;
&lt;p&gt;• If once done, your future to-do list is forever shorter or easier - you&#39;re working on time assets.&lt;/p&gt;
&lt;p&gt;Note to younger self: Invest in time assets. Reduce and avoid time liabilities.&lt;/p&gt;
&lt;p&gt;Time management was ironically a waste of time. I should&#39;ve focused more on time investments.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;PS. One of my favorite things to do is copy and paste my essays into Midjourney. This is the image it produced when I fed it this essay. &lt;a href=&quot;https://twitter.com/george__mack/status/1672623840407502852&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;george__mack&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Time spent has nothing to do with job done.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1672671177981009926&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every PM should know these websites! 👇&lt;/p&gt;
&lt;p&gt;1️⃣ useronboard .com - 100s of onboarding UX teardowns&lt;/p&gt;
&lt;p&gt;2️⃣ product5x .com - 50 free templates + case studies + interview prep&lt;/p&gt;
&lt;p&gt;3️⃣  hustlebadger .com - 30+ definitive guides to strategy and execution&lt;/p&gt;
&lt;p&gt;Share it with your friends! Thanks 💜 &lt;a href=&quot;https://twitter.com/carlvellotti/status/1672679801792897024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;OK, we all need help on this.  Let&#39;s help each other.&lt;/p&gt;
&lt;p&gt;At least 10 times in the past month, someone has said to me:&lt;/p&gt;
&lt;p&gt;&amp;gt;&amp;gt;&amp;gt; I want to talk to customers more, but they don&#39;t respond to requests for meetings, nor to surveys. What do I do?  Pay them?? &amp;lt;&amp;lt;&amp;lt;&lt;/p&gt;
&lt;p&gt;Let&#39;s give ideas. I&#39;ll start: &lt;a href=&quot;https://twitter.com/asmartbear/status/1674795028441616386&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@asmartbear Make the offer more attractive than “you do free work for me”, such as e.g. interviewing them for customer profile or podcast or similar.&lt;/p&gt;
&lt;p&gt;You’ll spend less time talking about your app and more time talking about their business, which &lt;em&gt;actually may be more useful&lt;/em&gt; at one’s stage. &lt;a href=&quot;https://twitter.com/patio11/status/1674806495958151169&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patio11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bryan Johnson spends $2 million a year to be 18 years old again.&lt;/p&gt;
&lt;p&gt;In 2021, he reduced his epigenetic age by 5.1 years in 7 months (a world record)&lt;/p&gt;
&lt;p&gt;His 13-steps for a long healthy life: &lt;a href=&quot;https://t.co/h2ne4m44Fo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/h2ne4m44Fo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ColinKeeley/status/1675124451191713792&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ColinKeeley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When I was in my 20&#39;s I had man boobs &amp;amp; a big belly.&lt;/p&gt;
&lt;p&gt;I tried every supplement &amp;amp; fad diet on the planet but none of it worked for me.&lt;/p&gt;
&lt;p&gt;My friends said I&#39;d be stuck in that fat body forever.&lt;/p&gt;
&lt;p&gt;But I said fuck that &amp;amp; focused on these 7 things to get lean once &amp;amp; for all 👇 &lt;a href=&quot;https://t.co/oyHDXpFGBj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oyHDXpFGBj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FitFounder/status/1675143047644938243&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you have time to wonder whether you have PM fit, you don’t have it.&lt;/p&gt;
&lt;p&gt;If you can’t keep up with the orders and don’t even know why they’re coming in so fast, you have it. &lt;a href=&quot;https://twitter.com/asmartbear/status/1675964695604240385&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@asmartbear +99&lt;/p&gt;
&lt;p&gt;PM fit is when you are growing faster than you know why &lt;a href=&quot;https://twitter.com/jasonlk/status/1675966399544725504&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop using cardio to lose weight.&lt;/p&gt;
&lt;p&gt;Do that shit with your diet. &lt;a href=&quot;https://twitter.com/FitFounder/status/1676908162354487296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The legend is speaking facts. &lt;a href=&quot;https://t.co/aEnisYAxvR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/aEnisYAxvR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/richardyuzee/status/1677351671284867078&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;richardyuzee&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A lot of people have asked me to respond to this (and I will), but for now consider this:&lt;/p&gt;
&lt;p&gt;Their model projects -8% real returns over the next 12 years. The worst 12 year period in market history (i.e. The Great Depression) had -2.9% real returns.&lt;/p&gt;
&lt;p&gt;So what do you think? &lt;a href=&quot;https://twitter.com/dollarsanddata/status/1679485557389262848&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dollarsanddata&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Andrew Huberman is the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; health scientist.&lt;/p&gt;
&lt;p&gt;I’ve listened to 100+ hours of his podcast and interviews.&lt;/p&gt;
&lt;p&gt;His 7-steps for a long healthy life: &lt;a href=&quot;https://t.co/ju8c7IjgNq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ju8c7IjgNq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ColinKeeley/status/1680580353659142146&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ColinKeeley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Procrastination is a desire to have your future self do the things your present self want to avoid.&lt;/p&gt;
&lt;p&gt;But guess what!?&lt;/p&gt;
&lt;p&gt;Your future self won&#39;t want to do this any more than your present self does. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1682978883878920193&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your company should be your best product.&lt;/p&gt;
&lt;p&gt;💬 &lt;a href=&quot;https://twitter.com/lukemiler/status/1684203085298651137&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lukemiler&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is an MRI image of 3 people:&lt;/p&gt;
&lt;p&gt;The top is a 40 year old triathlete.&lt;br /&gt;
The middle is a 74 year old sedentary person.&lt;br /&gt;
The bottom is a 70 year old triathlete.&lt;/p&gt;
&lt;p&gt;The dark part is the muscle and the light part is the fat.&lt;/p&gt;
&lt;p&gt;What you see is that a 70 year old may be able to retain the same amount of muscle and bone density as a 40 year old if maintained through exercise.&lt;/p&gt;
&lt;p&gt;If not, then you suffer the fate of the 74 year old sedentary person.&lt;/p&gt;
&lt;p&gt;The lesson? You either use it or lose it.&lt;/p&gt;
&lt;p&gt;Stay active and train consistently to live a long and prosperous life. &lt;a href=&quot;https://twitter.com/FitFounder/status/1684557260641771527&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;fight back every time suggests deferring a decision to a meeting to be scheduled for next week.&lt;/p&gt;
&lt;p&gt;sometimes there is a good reason but its quite rare. &lt;a href=&quot;https://twitter.com/sama/status/1684715843056271360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you are a man&lt;/p&gt;
&lt;p&gt;And you can&#39;t do 30 push ups in a row you should be concerned. &lt;a href=&quot;https://twitter.com/TheManMakerx/status/1685031052446949377&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheManMakerx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The more seriously you take yourself, the unhappier you’re going to be.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1685748598372540416&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What personality or skills or attributes means you&#39;ll be a successful founder?&lt;/p&gt;
&lt;p&gt;Hot take: Nothing.&lt;/p&gt;
&lt;p&gt;Give me any attributes, and I’ll find someone successful who has all the opposite attributes, and unsuccessful with the same ones.&lt;/p&gt;
&lt;p&gt;It’s not a magic set of attributes. &lt;a href=&quot;https://twitter.com/asmartbear/status/1685750413939613696&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Text is precise, compact, indexable, transmissible, translatable, asynchronous &amp;amp; quick to absorb. Intelligent, busy people prefer text.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1685990945337360384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the cut-throat tech world, the few who survive often have one thing in common:&lt;/p&gt;
&lt;p&gt;They ship incredibly fast ⚡️&lt;/p&gt;
&lt;p&gt;Staying ahead in the competitive market is the key to success.&lt;/p&gt;
&lt;p&gt;But fast shipping doesn&#39;t mean rushing products or releasing useless features - it means being agile, flexible, and efficient in product development and release.&lt;/p&gt;
&lt;p&gt;Startups are known for their rapid growth, and product shipping speed is a key indicator.&lt;/p&gt;
&lt;p&gt;@paulg, co-founder of Y Combinator, suggests frequently releasing new features can predict startup success. He said:&lt;/p&gt;
&lt;p&gt;&amp;quot; Mere rate of shipping new features is a surprisingly accurate predictor of startup success.&lt;/p&gt;
&lt;p&gt;In this domain, at least, slowness is way more likely to be due to inability than prudence. The startups that do things slowly don&#39;t do them any better. Just slower. &amp;quot;&lt;/p&gt;
&lt;p&gt;Why does this matter?&lt;/p&gt;
&lt;p&gt;Simply put, when you ship quickly, you learn from your customers, iterate quicker, and identify valuable offerings for your users.&lt;/p&gt;
&lt;p&gt;Let me share 6 simple yet unconventional strategies that can help you deliver value to your users (and you) at the speed of light.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Say No to Staging&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Staging environments, used for testing with simulated data or unreleased interfaces, can sometimes slow down the process.&lt;/p&gt;
&lt;p&gt;To speed this up, use a feature flag system. This lets you test a specific user experience on a subset of your users in production while still keeping things safe.&lt;/p&gt;
&lt;p&gt;This way, you&#39;re just one click away from going live.&lt;/p&gt;
&lt;p&gt;This approach means your engineers need to be more responsible, ensuring their features are ready and free from bugs.&lt;/p&gt;
&lt;p&gt;The trick is to adopt a feature flab system…&lt;/p&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;Adopt a feature flag system&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;A feature flag is a way to flag a specific user experience for only a portion of your users. When you do that, you can learn from production but also be on the safe side.&lt;/p&gt;
&lt;p&gt;If you want to be the only one to try it out, you can also only flag yourself or your company or your account, which makes it a type of staging environment without the deployment overhead.&lt;/p&gt;
&lt;p&gt;The great thing about adopting this system is that you are always one click away from going live.&lt;/p&gt;
&lt;p&gt;Your engineering will now know that when you ship something into the feature flag, it’s only one click away from being released by a Product Manager - usually using very simple no-code interfaces or tools like @LaunchDarkly.&lt;/p&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;QA Straight Away&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Switching between different tasks (aka context-switching) can slow down engineers.&lt;/p&gt;
&lt;p&gt;Instead of jumping from one task to another, implement immediate quality assurance (QA). This means checking the work right after it&#39;s done.&lt;/p&gt;
&lt;p&gt;A quick 10-20 minute QA can speed up delivery by solving issues on the spot.&lt;/p&gt;
&lt;p&gt;While some companies have specific QA roles, many startups find that everyone can participate in QA, creating a culture of shared responsibility and speed.&lt;/p&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;Minimize the Scope&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;A smaller scope allows you to deliver projects faster and more effectively.&lt;/p&gt;
&lt;p&gt;The key is to dream big but start small.&lt;br /&gt;
Big ideas are exciting, but they often require a lot of time and resources.&lt;/p&gt;
&lt;p&gt;By breaking projects into smaller parts and shipping them incrementally, you can accelerate overall delivery.&lt;/p&gt;
&lt;p&gt;This strategy also allows for immediate user feedback, enabling you to make necessary adjustments quickly.&lt;/p&gt;
&lt;p&gt;Having a clear scoping phase in your product development process can help you set your initial milestone, collect feedback promptly, and determine the next steps quicker, laying the groundwork for rapid, iterative progress.&lt;/p&gt;
&lt;ol start=&quot;5&quot;&gt;
&lt;li&gt;Be Consistent With Changelogs&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Changelogs, whether public or internal, are a great tool to help maintain your shipping pace.&lt;/p&gt;
&lt;p&gt;Regular updates on your team&#39;s activities and what you&#39;ve delivered can foster a sense of urgency and focus, effectively pushing your team to deliver quickly and consistently.&lt;/p&gt;
&lt;p&gt;By establishing a regular cadence of updates, your team can remain accountable and motivated, knowing that their progress will be documented and communicated.&lt;/p&gt;
&lt;p&gt;This creates momentum that can significantly speed up your shipping cycle.&lt;/p&gt;
&lt;ol start=&quot;6&quot;&gt;
&lt;li&gt;Define Clear Engineering Ownership&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Clear ownership of tasks can significantly speed up your delivery.&lt;/p&gt;
&lt;p&gt;When engineers are responsible for solving a user&#39;s problem, they are more invested in the result, which means they’re more motivated to deliver faster.&lt;/p&gt;
&lt;p&gt;There are fewer delays and bottlenecks because each engineer has a clear understanding of their role and responsibilities.&lt;/p&gt;
&lt;p&gt;This approach leans more towards an engineering-driven culture, a strategy proven to boost pace in companies like Intercom and Stripe.&lt;/p&gt;
&lt;p&gt;By empowering engineers to take ownership, you cultivate a culture of accountability and speed.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;While they may seem unconventional, these five strategies can profoundly improve and speed up your delivery and ultimately drive your product&#39;s success.&lt;/p&gt;
&lt;p&gt;In the fast-paced world of tech startups, speed is of the essence, and these strategies can help you stay ahead of the curve.&lt;/p&gt;
&lt;p&gt;So, move forward, adopt these techniques, and watch your shipping pace skyrocket.&lt;/p&gt;
&lt;p&gt;I hope these strategies help you as much as they&#39;ve helped me and the rest of the June team.&lt;/p&gt;
&lt;p&gt;Remember, success isn&#39;t just about having brilliant ideas; it&#39;s about bringing them to life as swiftly and efficiently as possible.&lt;/p&gt;
&lt;p&gt;If you&#39;ve discovered other strategies that work well, I&#39;d love to hear about them! DM me 😃 and I’ll share your ideas with the rest of the world. &lt;a href=&quot;https://twitter.com/0zne/status/1686718965936975873&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;0zne&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You shouldn&#39;t work hard to create your offer.&lt;/p&gt;
&lt;p&gt;You should just copy and paste what your clients tell you into your offer. &lt;a href=&quot;https://twitter.com/TheJackBly/status/1686830795141349376&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJackBly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Greatness is in the details. &lt;a href=&quot;https://twitter.com/asmartbear/status/1686836074092326912&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Current Status &lt;a href=&quot;https://t.co/xxpOdyn6e8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xxpOdyn6e8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/martymadrid/status/1687148418458689536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;martymadrid&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Such an incredibly freaking awesome breakdown of different paths to product-market fit.&lt;/p&gt;
&lt;p&gt;All guided by different North Stars. &lt;a href=&quot;https://t.co/9wAOCpwznZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9wAOCpwznZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1687175338487353344&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Recent realization: Successful creators all look different. Failing creators all look the same. &lt;a href=&quot;https://twitter.com/AlexLlullTW/status/1687180282762514434&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlexLlullTW&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Money doesn’t buy happiness - it buys freedom.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1687186321868005376&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I think children give you the unique opportunity to genuinely love something more than you love yourself. And I think that is really important for being happy because the moment you love something more than you love yourself, you&#39;re no longer self-obsessed.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1687674793548550144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Be careful. Most &amp;quot;products&amp;quot; are, in fact, projects.&lt;/p&gt;
&lt;p&gt;9 red flags (and how it should work):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Large PRD: You start an initiative by documenting everything.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Feature factory: Implement the requirements. Don&#39;t ask why.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Waterfall: All the requirements are collected in the &amp;quot;initial phase.&amp;quot;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Gatt roadmap: A time-based, feature-based roadmap.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No discovery: No need to validate ideas before implementing them.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No designer: There is no Product Designer on the team.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No analytics: You have no idea how people use your product.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Customer in charge: Powerful customer(s) make all the decisions.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No strategy: You try to maximize sales by satisfying all customers and grasping every opportunity.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here is a better way:&lt;/p&gt;
&lt;ol start=&quot;10&quot;&gt;
&lt;li&gt;
&lt;p&gt;Your cross-functional team is empowered to solve the problems.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;PM, Product Designer, and Lead Engineer perform Product Discovery together. Continuously.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You have an outcome-based roadmap. Preferably Now-Next-Later.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you commit to a date, you do it rarely and only after the Discovery. You never commit too early.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You manage the value, usability, feasibility, and viability risks by experimenting.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The riskiest assumptions are tested before the implementation.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Choosing, instrumenting, and tracking the right metrics is key.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You ship incrementally, measure the outcomes and learn from it.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tradeoffs are essential. What you do, but also what you don&#39;t. You respect your market and the unique value proposition.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And if your product hasn&#39;t been launched yet:&lt;/p&gt;
&lt;ol start=&quot;19&quot;&gt;
&lt;li&gt;
&lt;p&gt;Discover the market and define a unique value proposition, business model, initial vision, and strategy.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Test your business idea with the help of MVP prototypes. Before the implementation.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You define the go-to-market strategy and validate key assumptions. Messaging included.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can&#39;t rely on product analytics before launching the product, so you rely more on customer interviews and data from your experiments.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Product Trio performs the Initial Product Discovery, like in an existing product. You always need a Product Designer and Lead Engineer.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Once you ship, use product analytics and apply Continuous Product Discovery.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Hope that helps.&lt;/p&gt;
&lt;p&gt;What are your thoughts?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;P.S. It&#39;s just 1 of 6 free issues I published today in my newsletter. The link is under my profile: @PawelHuryn &lt;a href=&quot;https://twitter.com/PawelHuryn/status/1687704674126761984&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PawelHuryn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can make any information-heavy design look less busy through the power of emphasis and de-emphasis.&lt;/p&gt;
&lt;p&gt;Learn more: &lt;a href=&quot;https://t.co/ENnwR040Aa&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ENnwR040Aa&lt;/a&gt; &lt;a href=&quot;https://t.co/YnqOwlaNMd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YnqOwlaNMd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/uxmovement/status/1689692314225008640&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;uxmovement&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Observe when you’re angry—anger is a loss of control over the situation.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1689704665850761216&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You get what you tolerate in life.&lt;/p&gt;
&lt;p&gt;So stop tolerating “half-ass” performance from yourself.&lt;/p&gt;
&lt;p&gt;You deserve better. &lt;a href=&quot;https://twitter.com/richardyuzee/status/1689724024832573440&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;richardyuzee&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;9 tips for misery in work &amp;amp; life:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;See self as a victim&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Complain constantly&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Resent successful people&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Compare habitually&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nitpick to feel superior&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Assume bad intent&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Refuse to listen to others&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Aim to impress everyone&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Learn only by making mistakes &lt;a href=&quot;https://twitter.com/shreyas/status/1690187781400915968&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Find a relationship where you, naturally being you, makes the other person happy. And the other person, naturally being the other person, makes you happy.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1690222326842085376&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;6&quot;&gt;
&lt;li&gt;Choose 2 feature landscaping plants.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;A grass and one other.&lt;/p&gt;
&lt;p&gt;Plant them all over your property.  Could mix in a couple others as well but there is serious power in numbers &lt;a href=&quot;https://t.co/FWf7abyo4C&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/FWf7abyo4C&lt;/a&gt; &lt;a href=&quot;https://twitter.com/hanslorei/status/1690336965856813056&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hanslorei&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;All in all we went from $0 to $100m to $0 because I followed the advice of the VCs.&amp;quot;&lt;/p&gt;
&lt;p&gt;When you raise from a VC you need to build a unicorn (aka 1B+ company) and nothing else&lt;/p&gt;
&lt;p&gt;Doing 10M ARR? You are a failure, 50M ARR? Nope.. You failed&lt;/p&gt;
&lt;p&gt;A lot of amazing startups implode because of this model and this is also exactly the reason why I am never that worried to compete with well-funded companies because I know the chances of them imploding are very high&lt;/p&gt;
&lt;p&gt;@levelsio said it very well: You are just another 1/100 bet to a VC&lt;/p&gt;
&lt;p&gt;Is all funding bad? no, I think there are interesting opportunities and now that the model is changing (I hope) we will see more &amp;quot;boring&amp;quot; investments made in companies that focus more on sustainable business models &lt;a href=&quot;https://twitter.com/forgebitz/status/1690439702447308800&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;forgebitz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The modern mind is overstimulated and the modern body is understimulated and overfed.&lt;/p&gt;
&lt;p&gt;Meditation, exercise, and fasting restore an ancient balance.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1690800387551617024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I find that most people (me included) cannot learn something if they&#39;re not actively looking to learn it.&lt;/p&gt;
&lt;p&gt;So, startup/product &amp;quot;advice&amp;quot; just bounces off.&lt;/p&gt;
&lt;p&gt;You need to already be in trouble, or actively looking to solve something, to hear it. &lt;a href=&quot;https://twitter.com/asmartbear/status/1690823850261368832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Coolest login screen ever! By @dsenneff.&lt;/p&gt;
&lt;p&gt;Source code: &lt;a href=&quot;https://t.co/sIJT5xsS1o&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sIJT5xsS1o&lt;/a&gt; &lt;a href=&quot;https://t.co/x6IyCR7ikI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/x6IyCR7ikI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1690888804595355648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Continuous Discovery Habits has over 1,600 reviews on Amazon, with a 4.6 rating.&lt;/p&gt;
&lt;p&gt;It&#39;s consistently the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; recommended book in my Product Management circles.&lt;/p&gt;
&lt;p&gt;I&#39;ve had it on my desk for years. Here are my 10 favorite takeaways: &lt;a href=&quot;https://t.co/xuzL34SnXy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xuzL34SnXy&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aakashg0/status/1690944364284198912&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aakashg0&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Karma is just you, repeating your patterns, virtues, and flaws until you finally get what you deserve.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1691103383099482112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What&#39;s the best piece or book on how Apple works?&lt;/p&gt;
&lt;p&gt;Particularly interested in the non-standard things they do around org design, DRI culture, and product management. Already read &amp;quot;Creative Selection.&amp;quot; &lt;a href=&quot;https://twitter.com/amasad/status/1691145915846045696&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;amasad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Easily the best breakdown of use case I&#39;ve seen &lt;a href=&quot;https://t.co/CN3aJrZ4Xl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CN3aJrZ4Xl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1691161582380687360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;m surprised how often I&#39;ve heard the story:&lt;/p&gt;
&lt;p&gt;&amp;quot;We weren&#39;t shipping. We fired the CTO. Now I&#39;m in charge of strategy. We need to focus on shipping stuff that&#39;s valuable. I&#39;ve tried setting appetites, but the team just keeps expanding the scope.&amp;quot;&lt;/p&gt;
&lt;p&gt;How to narrow down the scope? Sometimes they try leaning on designers to specify the solution. But then this happens:&lt;/p&gt;
&lt;p&gt;&amp;quot;We go to the designers with a hypothesis, they say okay ... and then 35 interviews later, they&#39;re like &#39;we&#39;re not really sure&#39;.&amp;quot;&lt;/p&gt;
&lt;p&gt;The way forward isn&#39;t more and more discovery. Or more &amp;quot;iterations&amp;quot; that just push off the hard decisions. The way forward is to shape more rigorously. That means putting technical and design heads together up front to wrestle with the trade-offs and unearth the technical complexities.&lt;/p&gt;
&lt;p&gt;I&#39;ll teach how to run shaping sessions in the upcoming cohort of Shaping in Real Life in October. Ticket sales just opened today.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/0oLLquG8VI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0oLLquG8VI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/rjs/status/1691439579063074816&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rjs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to make sure your content ranks 📈...&lt;/p&gt;
&lt;p&gt;Step 1 - Find a keyword&lt;/p&gt;
&lt;p&gt;One of the most important steps in the entire ranking process is honing in on a viable keyword.&lt;/p&gt;
&lt;p&gt;Here&#39;s the reality - you could be the greatest writer in the world, but if you don&#39;t target any keyword, or you target the wrong keyword, you&#39;re unlikely to get organic traffic.&lt;/p&gt;
&lt;p&gt;You&#39;ll spend hours researching, writing, formatting, inserting photos, etc. and the world will never read a single line of your content.&lt;/p&gt;
&lt;p&gt;All that effort for NOTHING.&lt;/p&gt;
&lt;p&gt;I learned this lesson the hard way (after researching, writing and publishing my first 10 posts).&lt;/p&gt;
&lt;p&gt;Those posts were not targeted - they were broad.&lt;/p&gt;
&lt;p&gt;Broad topics typically (not always) result in little to no traffic - especially for a new site.&lt;/p&gt;
&lt;p&gt;Either no one is searching those terms directly, or they are very competitive.&lt;/p&gt;
&lt;p&gt;You need a target.&lt;/p&gt;
&lt;p&gt;Something at least a little bit more specific.&lt;/p&gt;
&lt;p&gt;There are several keyword research tools out there, and lots of different ways to use them to unearth great keywords.&lt;/p&gt;
&lt;p&gt;For this example, let&#39;s go with &amp;quot;Block Island Beaches&amp;quot; as our keyword.&lt;/p&gt;
&lt;p&gt;Ahrefs estimates 450 traffic potential and thinks it&#39;s easy to rank for (we&#39;ll be the judge of that!).&lt;/p&gt;
&lt;p&gt;Traffic is clearly seasonal, as evidenced by the spikes during summer months.&lt;/p&gt;
&lt;p&gt;But at this point, based on what I see surface level, this keyword is worth investigating:&lt;/p&gt;
&lt;p&gt;-it&#39;s getting some decent traffic&lt;br /&gt;
-it&#39;s potentially low competition&lt;br /&gt;
-it&#39;s a good article to write for Block Island (the topic I am currently covering right now for Stay New England)&lt;/p&gt;
&lt;p&gt;Step 2 - Search the exact keyword in Google&lt;/p&gt;
&lt;p&gt;Some people skip this step, which is nuts - I never write for a keyword without Googling it and analyzing page one first.&lt;/p&gt;
&lt;p&gt;The very first thing I look for is layout - what is Google surfacing to the user?&lt;/p&gt;
&lt;p&gt;From this very first check you can determine the type of content that Google values for this keyword.&lt;/p&gt;
&lt;p&gt;I&#39;m intending on writing a blog post, so if Google is ranking videos first, or a carousel of items to buy from, my content format (just a blog) may not be the best fit for this particular keyword.&lt;/p&gt;
&lt;p&gt;Maybe I should add a video, or ignore this keyword altogether, etc.&lt;/p&gt;
&lt;p&gt;This step can also help you understand a bit of the search intent. What Google is surfacing IN THEORY is what most people are looking for.&lt;/p&gt;
&lt;p&gt;When I Google &amp;quot;Block Island Beach&amp;quot;, I see a content site at the very top - good start.&lt;/p&gt;
&lt;p&gt;If I write a blog post, with the way Google is presenting this information in search today, I have a chance to rank at the top too.&lt;/p&gt;
&lt;p&gt;This search result page may (and will) change over time, but I&#39;ll worry about that when it does.&lt;/p&gt;
&lt;p&gt;Step 3 - Check the titles and URLs of top ranking sites&lt;/p&gt;
&lt;p&gt;Google has gotten better at figuring out what content is about, even if you don&#39;t use the exact keyword in the title or URL.&lt;/p&gt;
&lt;p&gt;That said, I don&#39;t take any chances - I always use the exact keyword in both.&lt;/p&gt;
&lt;p&gt;When your title and URL both contain the keyword, it&#39;s hard for Google to completely miss what you&#39;re trying to accomplish with your content.&lt;/p&gt;
&lt;p&gt;Some people like to get cute here and &amp;quot;let Google figure it out&amp;quot;. Not me.&lt;/p&gt;
&lt;p&gt;If I see content ranking on page one that don&#39;t have the keyword in the URL and Title, I see that as a potential weakness and opening for me.&lt;/p&gt;
&lt;p&gt;For our keyword &amp;quot;Block Island Beaches&amp;quot;, most ranking content is doing a pretty good job of this.&lt;/p&gt;
&lt;p&gt;One thing I noticed however is that the &amp;quot;Block Island Beach House&amp;quot; is ranking high. That&#39;s the name of a hotel.&lt;/p&gt;
&lt;p&gt;How likely is it that a searcher who types in &amp;quot;Block Island Beaches&amp;quot; to Google is intending to find the &amp;quot;Block Island Beach House&amp;quot; hotel?&lt;/p&gt;
&lt;p&gt;Not likely! Another good sign for me...&lt;/p&gt;
&lt;p&gt;Step 4 - Quickly check DR of sites ranking on page 1&lt;/p&gt;
&lt;p&gt;DR is a made up score that determines how &amp;quot;strong&amp;quot; or &amp;quot;authoritative&amp;quot; a domain is. Basically, how much does Google &amp;quot;trust&amp;quot; a site.&lt;/p&gt;
&lt;p&gt;In theory, the higher the DR, the easier it is for them to rank content, and the harder it is for you to compete.&lt;/p&gt;
&lt;p&gt;I say &amp;quot;in theory&amp;quot; because I, and many others, regularly outrank higher DR sites (there are several ways to do this that we&#39;ll cover in a moment).&lt;/p&gt;
&lt;p&gt;For now, we just want to quickly see the first page landscape in regards to DR.&lt;/p&gt;
&lt;p&gt;If every site ranking on page one was a DR 80 or higher, that would a bit of a red flag for me - I&#39;ll probably have a hard time breaking through.&lt;/p&gt;
&lt;p&gt;Ignoring my site for now 😅 , I see DR 54 at the one spot and then DR 28, 39, and 37 sites all ranking in the top 10.&lt;/p&gt;
&lt;p&gt;Another good sign...&lt;/p&gt;
&lt;p&gt;Step 5 - Check the freshness of content&lt;/p&gt;
&lt;p&gt;Google loves fresh, up-to-date content.&lt;/p&gt;
&lt;p&gt;Don&#39;t get me wrong, just because your content is new, doesn&#39;t mean it&#39;s necessarily going to rank.&lt;/p&gt;
&lt;p&gt;But if a lot of the content on page one is old-ish, that&#39;s yet another data point that suggests you have a real chance to rank!&lt;/p&gt;
&lt;p&gt;Sometimes Google provides a date in the SERPs but many times it&#39;s missing.&lt;/p&gt;
&lt;p&gt;Here&#39;s a tip to get a quick down and dirty estimate of freshness...&lt;/p&gt;
&lt;p&gt;Type your keyword into Google and click Search. After the page loads, add this string to the end of the search page URL “&amp;amp;as_qdr=y15” and reload the page.&lt;/p&gt;
&lt;p&gt;This will add the &amp;quot;last index date&amp;quot; for each page to the SERPS.&lt;/p&gt;
&lt;p&gt;Last index date is a good rough estimate of freshness (in theory, if the content was modified recently, Google would crawl and index it again!).&lt;/p&gt;
&lt;p&gt;When I add this string to my Google search for &amp;quot;Block Island Beaches&amp;quot; this is what I get...&lt;/p&gt;
&lt;p&gt;Several pages last indexed in 2017! 6 years ago.&lt;/p&gt;
&lt;p&gt;Another good sign...&lt;/p&gt;
&lt;p&gt;Step 6 - Click into and analyze each and every site ranking on page one&lt;/p&gt;
&lt;p&gt;The steps above (minus the keyword research) take me about 30 seconds.&lt;/p&gt;
&lt;p&gt;But now comes the real work.&lt;/p&gt;
&lt;p&gt;You need to open up every site ranking on page one and review their content.&lt;/p&gt;
&lt;p&gt;How many words long is it?&lt;/p&gt;
&lt;p&gt;Is it comprehensive?&lt;/p&gt;
&lt;p&gt;Does it match user intent?&lt;/p&gt;
&lt;p&gt;Original photos?&lt;/p&gt;
&lt;p&gt;Usefulness?&lt;/p&gt;
&lt;p&gt;How&#39;s the writing overall?&lt;/p&gt;
&lt;p&gt;The goal here is get an objective sense of the overall quality of the content ranking on the first page.&lt;/p&gt;
&lt;p&gt;Ultimately the question is: &amp;quot;Can you do better?&amp;quot;.&lt;/p&gt;
&lt;p&gt;Step 7 - Bringing it all together&lt;/p&gt;
&lt;p&gt;Ok, so we found a keyword that was getting decent volume and appeared to be low competition: &amp;quot;Block Island Beaches&amp;quot;.&lt;/p&gt;
&lt;p&gt;We then searched this exact term in Google and...&lt;/p&gt;
&lt;p&gt;-We checked the format that Google returns at the very top (blogs, videos, products, etc.)&lt;br /&gt;
-We checked page one to see if the exact keyword was in titles and URLs of ranking content&lt;br /&gt;
-We looked at the DR of each site on page one&lt;br /&gt;
-We checked the freshness of content on page one&lt;br /&gt;
-We clicked into each and every page ranking on the first page and assessed:&lt;br /&gt;
-Length/comprehensiveness of content&lt;br /&gt;
-Does it match the intent behind the search?&lt;br /&gt;
-How useful is the content itself?&lt;br /&gt;
-Original photos/content?&lt;br /&gt;
-How&#39;s the writing in general?&lt;/p&gt;
&lt;p&gt;And after all of that we made a judgement call on whether or not we should write content for the keyword.&lt;/p&gt;
&lt;p&gt;In this case I determined:&lt;br /&gt;
​&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The competition was moderate at best and&lt;/li&gt;
&lt;li&gt;I (well my wife) could create a better piece of content than anything else ranking on page one.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So we did...Stay New England currently ranks &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#2-3&quot;&gt;#2-3&lt;/a&gt; on desktop and mobile for &amp;quot;Block Island Beaches&amp;quot;.&lt;/p&gt;
&lt;p&gt;Signing-off&lt;/p&gt;
&lt;p&gt;You&#39;re probably looking at this process and thinking, &amp;quot;Wow, that seems like a ton of work just to determine whether or not it&#39;s worth writing content for a single keyword&amp;quot;.&lt;/p&gt;
&lt;p&gt;It is a lot of work.&lt;/p&gt;
&lt;p&gt;But creating great content is even more work.&lt;/p&gt;
&lt;p&gt;And if you&#39;re going to commit all that time, you better make sure your content ends up ranking.&lt;/p&gt;
&lt;p&gt;When I sit down to write, I like to stack the deck in my favor.&lt;/p&gt;
&lt;p&gt;I do that by following this process every single time.&lt;/p&gt;
&lt;p&gt;The good news is that after you do this enough, the entire process becomes automatic.&lt;/p&gt;
&lt;p&gt;You start to just get a feel for it. It gets much easier.&lt;/p&gt;
&lt;p&gt;🫡 &lt;a href=&quot;https://twitter.com/NicheDown/status/1691496328407166976&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NicheDown&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Product Management can be a framework-jungle.&lt;/p&gt;
&lt;p&gt;Below you find some frameworks which can make your life as a PM easier!&lt;/p&gt;
&lt;p&gt;If you want to know more about these, comment or send me a DM. &lt;a href=&quot;https://t.co/PVCkAeOiK0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PVCkAeOiK0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/KiwiDenny/status/1691510396866179074&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KiwiDenny&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;4 ways for validate your B2B startup idea:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The do-it-manually path&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;@christinacaci manually created compliance reports for a few companies and noticed (surprisingly) that they all found them very valuable. She then built @TrustVanta (last valued at $1.6B): &lt;a href=&quot;https://t.co/5tW8zEt0xz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5tW8zEt0xz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lennysan/status/1691560789579325475&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Kolejna nowość! 🔥 Duży upgrade funkcji porównań marek w Brand24. Dużo łatwiej o porównanie z konkurencją i szybko wrzucić je do cyklicznego podsumowania / raportu. Można łatwo zdiagnozować co wpłynęło tak drastycznie na ekspozycję Natalii Janoszek pod koniec Lipca... &lt;a href=&quot;https://t.co/BWRKZHXYwP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BWRKZHXYwP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/sadek/status/1691701935017963953&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You’re going to die one day, and none of this is going to matter. So enjoy yourself. Do something positive. Project some love. Make someone happy. Laugh a little bit. Appreciate the moment. And do your work.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1691866410165887054&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You don&#39;t have to be brilliant, only a little bit wiser than the other guys, on average, for a long, long time.&amp;quot;&lt;/p&gt;
&lt;p&gt;– Charlie Munger &lt;a href=&quot;https://twitter.com/farnamstreet/status/1692235374557319412&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;farnamstreet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop wasting hours looking for the perfect book, just pick one of these:&lt;/p&gt;
&lt;p&gt;Health: Ikigai&lt;br /&gt;
History: Sapiens&lt;br /&gt;
Sales: $100M Offers&lt;br /&gt;
Habits: Atomic Habits&lt;br /&gt;
Stoicism: Meditations&lt;br /&gt;
Creativity: The War of Art&lt;br /&gt;
Productivity: The ONE Thing&lt;br /&gt;
Leadership: Extreme Ownership&lt;br /&gt;
Mental Toughness: Can&#39;t Hurt Me&lt;br /&gt;
Personal Finance: Just Keep Buying&lt;br /&gt;
Investing: The Psychology of Money&lt;br /&gt;
Psychology: Man&#39;s Search For Meaning&lt;br /&gt;
Negotiation: Never Split The Difference&lt;br /&gt;
Communication: How To Talk To Anyone&lt;br /&gt;
Entrepreneurship: The Millionaire Fastlane &lt;a href=&quot;https://twitter.com/AlexAndBooks_/status/1692550798251610469&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlexAndBooks_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;OKRs are a simple, incredibly effective approach for setting, monitoring, and achieving your goals.&lt;/p&gt;
&lt;p&gt;But they are commonly misunderstood.&lt;/p&gt;
&lt;p&gt;How to start?&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Empowered teams&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;OKRs work only with a culture of empowerment. In companies with a dysfunctional organizational culture, OKRs might become another tool to impose control over employees.&lt;/p&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;Vision and strategy&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Before defining your first OKR, it&#39;s essential to establish a vision and strategy.&lt;/p&gt;
&lt;p&gt;While the vision provides a long-term &amp;quot;Why,&amp;quot; the OKR motivates and guides a team in the short term, typically over a quarter, defining:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Why it&#39;s important.&lt;/li&gt;
&lt;li&gt;What we need to achieve.&lt;/li&gt;
&lt;li&gt;How we will measure we succeeded.&lt;/li&gt;
&lt;/ul&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;Start with just one team&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;First, get one team to try OKRs before the whole company jumps in. This team should be cross-functional, able to reach their goals without relying on others.&lt;/p&gt;
&lt;p&gt;After a few months, celebrate what they&#39;ve achieved. Hopefully, this will get other teams excited about OKRs.&lt;/p&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;Select just one OKR&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Start with a single OKR for the entire company without cascading it down. This simplifies the implementation and allows you to identify teams that need more coaching. This is particularly effective in smaller companies.&lt;/p&gt;
&lt;ol start=&quot;5&quot;&gt;
&lt;li&gt;Start from initiatives focused on the outputs&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For example, if you&#39;re adding a new search feature, think backward. Ask yourself: What’s the goal of this initiative? How would we measure that we succeeded?&lt;/p&gt;
&lt;p&gt;This helps you turn the task into an OKR and start thinking and making decisions based on data.&lt;/p&gt;
&lt;ol start=&quot;6&quot;&gt;
&lt;li&gt;Keep things simple&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Don&#39;t expect to figure out everything from the start. Test ideas, learn from them, and get better over time.&lt;/p&gt;
&lt;p&gt;Based on Radical Focus by @cwodtke&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;P.S. In the free part of my latest newsletter (1,351 words), I described:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Two Approaches to OKRs&lt;/li&gt;
&lt;li&gt;Why Do We Need OKRs?&lt;/li&gt;
&lt;li&gt;What Exactly Are OKRs?&lt;br /&gt;
3.1 Prerequisites&lt;br /&gt;
3.2 How to create Objectives?&lt;br /&gt;
3.3 How to create Key Results?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;And in the premium part (2,440 words), we deep-dive into the OKRs:&lt;/p&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;OKRs: A Quarter Step-by-Step:&lt;br /&gt;
4.1 How to start?&lt;br /&gt;
4.2 During the quarter + my advice&lt;br /&gt;
4.3 Closing the quarter&lt;/li&gt;
&lt;li&gt;OKRs: Best Practices and Common Mistakes&lt;/li&gt;
&lt;li&gt;OKRs: Advanced Techniques&lt;br /&gt;
6.1 OKRs and Scrum&lt;br /&gt;
6.2 OKRs and Product Roadmap&lt;br /&gt;
6.3 OKRs and Continuous Product Discovery&lt;br /&gt;
6.4 Extending the traditional OKRs&lt;br /&gt;
6.5 OKRs vs. alternatives&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Hope that helps.&lt;/p&gt;
&lt;p&gt;You can keep learning here: &lt;a href=&quot;https://t.co/8iIHE1xXpQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8iIHE1xXpQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PawelHuryn/status/1692860787340042499&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PawelHuryn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;All modern diseases are diseases of abundance. We punish ourselves by constantly entertaining our minds and bodies.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1693529871077577088&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nike staff memo from 1977. &lt;a href=&quot;https://t.co/s43hlfFKvn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/s43hlfFKvn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/JonErlichman/status/1693607621998121282&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JonErlichman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The measure of wealth is freedom. The measure of health is lightness. The measure of intellect is judgment. The measure of wisdom is silence. The measure of love is peace.&amp;quot;&lt;br /&gt;
@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1693711568582869030&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You make money to solve your money and material problems.  I think the best way to stay away from this constant love of money is to not upgrade your lifestyle as you make money.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1694281323047698916&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I have my guiding motto on a wall in my house. It’s a quote from George Bernard Shaw that says: “The reasonable man adapts himself to the world; the unreasonable one persists in trying to adapt the world to himself. Therefore, all progress depends on the unreasonable man.”&lt;/p&gt;
&lt;p&gt;I am not sure about other entrepreneurs, but for me being unreasonable is a difficult thing. Like many others, I struggle with wanting to be liked.&lt;/p&gt;
&lt;p&gt;So seeing this on my wall every day when I wake up serves as a reminder to not worry about conforming, and to persist. Because without it, companies such as Spotify and many others wouldn&#39;t exist. &lt;a href=&quot;https://twitter.com/eldsjal/status/1694385101755343212&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eldsjal&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If there&#39;s one thing that we should be teaching kids, it&#39;s how to fight addiction. How not to get addicted to stuff. Because that is where it&#39;s all headed.&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/hvgMTF0UEV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hvgMTF0UEV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1694412983265526224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I’m not going to be the most successful person on the planet, nor do I want to be. I just want to be the most successful version of myself while working the least hard possible.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1694584067713638823&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The reason you&#39;re scared to make that decision is: What if you&#39;re wrong?&lt;/p&gt;
&lt;p&gt;Sure, but will delaying change your risk level of being wrong?  Really?&lt;/p&gt;
&lt;p&gt;If yes, then go do that.&lt;/p&gt;
&lt;p&gt;But it&#39;s probably &amp;quot;no,&amp;quot; in which case just make the decision so you can reap the benefits sooner. &lt;a href=&quot;https://twitter.com/asmartbear/status/1694740172737273909&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every engineer complains about tech debt.&lt;/p&gt;
&lt;p&gt;If you&#39;re not technical, these complaints are hard to understand.&lt;/p&gt;
&lt;p&gt;Try using this table with:&lt;br /&gt;
• Type of tech debt&lt;br /&gt;
• Causes&lt;br /&gt;
• Mitigation&lt;br /&gt;
• Long-term impact&lt;/p&gt;
&lt;p&gt;It will give you context to have more productive conversations. &lt;a href=&quot;https://t.co/lg49qwFEvT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lg49qwFEvT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1694875053874110643&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;literally all I want in life is to marry the love of my life and move into a cute little house in the countryside and eat dinner together every day and build a b2b saas company that vertically integrates in a highly fragmented, low nps industry while generating shareholder value &lt;a href=&quot;https://twitter.com/roshanpateI/status/1695105795220762926&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;roshanpateI&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A good life is not a life without suffering.&lt;/p&gt;
&lt;p&gt;A good life is a life of meaningful suffering. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1695417056307429380&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want to be great to work with?&lt;/p&gt;
&lt;p&gt;Do what you said you were going to do.&lt;/p&gt;
&lt;p&gt;It&#39;s unbelievable how rare this trait is. &lt;a href=&quot;https://t.co/KD7uxWOAij&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KD7uxWOAij&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lukemiler/status/1696543845905735897&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lukemiler&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Product Management is not about:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Asking customers about the requirements&lt;/li&gt;
&lt;li&gt;Writing detailed specifications&lt;/li&gt;
&lt;li&gt;Creating prototypes and wireframes&lt;/li&gt;
&lt;li&gt;Assigning tasks to developers&lt;/li&gt;
&lt;li&gt;Verifying and accepting the work of others&lt;/li&gt;
&lt;li&gt;Obsessing over velocity, deadlines, and roadmaps&lt;/li&gt;
&lt;li&gt;Mastering Scrum to perfection&lt;/li&gt;
&lt;li&gt;Acting like the CEO of the product&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Anyone can do that.&lt;/p&gt;
&lt;p&gt;It&#39;s about:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Understanding customer&#39;s problems, needs, and desires&lt;/li&gt;
&lt;li&gt;Understanding the market and the business in depth&lt;/li&gt;
&lt;li&gt;Collaborating closely with engineers and designers&lt;/li&gt;
&lt;li&gt;Identifying opportunities, ideating solutions, and tackling the risks together&lt;/li&gt;
&lt;li&gt;Marrying customer goals and business goals&lt;/li&gt;
&lt;li&gt;Influencing others to work toward the common goal&lt;/li&gt;
&lt;li&gt;Being humble (it&#39;s ok not to be the smartest person in the room)&lt;/li&gt;
&lt;li&gt;Experimenting to validate assumptions&lt;/li&gt;
&lt;li&gt;Leading without authority&lt;/li&gt;
&lt;li&gt;Turning chaos into clarity&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Start with these questions:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Why are we building this thing?&lt;/li&gt;
&lt;li&gt;Why are we building it now?&lt;/li&gt;
&lt;li&gt;For whom are we building it?&lt;/li&gt;
&lt;li&gt;What&#39;s the unique value of our product?&lt;/li&gt;
&lt;li&gt;How is it aligned with the company&#39;s vision?&lt;/li&gt;
&lt;li&gt;How is it aligned with the business strategy?&lt;/li&gt;
&lt;li&gt;What does success look like? How can we measure it?&lt;/li&gt;
&lt;li&gt;What are the customer needs/jobs (functional, emotional, social)?&lt;/li&gt;
&lt;li&gt;How will it affect our customers and users?&lt;/li&gt;
&lt;li&gt;How will it create value for the business?&lt;/li&gt;
&lt;li&gt;Can we buy it instead of building it?&lt;/li&gt;
&lt;li&gt;How can we make sure that our customers would love it?&lt;/li&gt;
&lt;li&gt;Will our customers know how to use it?&lt;/li&gt;
&lt;li&gt;Can our business support it (e.g., legal, finances)?&lt;/li&gt;
&lt;li&gt;Is it feasible? Can we build it?&lt;/li&gt;
&lt;li&gt;How can we bring it to the market? Do we have the required channels?&lt;/li&gt;
&lt;li&gt;Should we do it at all? Are there any ethical considerations?&lt;/li&gt;
&lt;li&gt;What are the riskiest assumptions? How can we validate them?&lt;/li&gt;
&lt;li&gt;What does the data tell us?&lt;/li&gt;
&lt;li&gt;How can we get maximum validating learning with minimum effort?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Be curious. Learn and experiment. Question solutions and push back on things handled down.&lt;/p&gt;
&lt;p&gt;Remember that product management is about creating a &amp;quot;product customers love, yet also works for our business&amp;quot; (Marty Cagan, Inspired), not about pleasing stakeholders.&lt;/p&gt;
&lt;p&gt;After 9 years, I&#39;m still learning daily, and I do not know everything, but I can give you my perspective on any questions you have.&lt;/p&gt;
&lt;p&gt;Drop them below. &lt;a href=&quot;https://twitter.com/PawelHuryn/status/1696546810842509710&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PawelHuryn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“When a man can’t find a deep sense of meaning, they distract themselves with pleasure.” — Viktor Frankl &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1696553481824272526&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Money buys you freedom in the material world. It’s not going to make you happy, it’s not going to solve your health problems, it’s not going to make ur family great, it’s not going to make you fit,it’s not going to make you calm.But it will solve a lot of external problems&lt;br /&gt;
@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1696603625311834626&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The real value of your initial product is the feedback loop it creates &lt;a href=&quot;https://twitter.com/tlbtlbtlb/status/1696730880985989434&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tlbtlbtlb&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Amazing how quickly focus can shift from &amp;quot;delivering to customers&amp;quot; to &amp;quot;persuading other team to do something&amp;quot; as a company grows&lt;/p&gt;
&lt;p&gt;One of the most insidious viruses that can infect a company &lt;a href=&quot;https://twitter.com/gauravvohra1/status/1696943913658101914&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gauravvohra1&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Taking risk is a job. &lt;a href=&quot;https://twitter.com/shl/status/1696960228900876328&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of my favorite quotes from Ogilvy: “The problem with market research is people don&#39;t think how they feel, they don&#39;t say what they think and they don&#39;t do what they say.”&lt;/p&gt;
&lt;p&gt;You can’t survey your way into every solution. You still need to develop your own point of view. &lt;a href=&quot;https://twitter.com/wes_kao/status/1696973378308157507&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wes_kao&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I don’t believe in hierarchical relationships. I don’t want to be above anybody, and I don’t want to be below anybody. If I can’t treat someone like a peer and if they can’t treat me like peer, I just don’t want to interact with them.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1697540800182395248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You work for others until you can work for yourself.&lt;/p&gt;
&lt;p&gt;You work for yourself until you can work for others. &lt;a href=&quot;https://twitter.com/naval/status/1697747774698401989&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When people copy you, the best strategy is usually to ignore them. People who copy you are (a) unoriginal and (b) opportunists, and those are both strong predictors of failure. If you wait them out, they&#39;ll eventually drop away. &lt;a href=&quot;https://twitter.com/paulg/status/1697761812698034630&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Our Building of Basecamp workshop from nearly 20 years ago spoke the truth 😄 &lt;a href=&quot;https://t.co/jIHOhoGxMD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jIHOhoGxMD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dhh/status/1698041553019867307&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dhh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Huge shoutout to all the writers who crammed their years of wisdom into 100+ pages. You saved me from years of trial and error. &lt;a href=&quot;https://t.co/PFUkf1hKjE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PFUkf1hKjE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dannypostmaa/status/1698255886412845194&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dannypostmaa&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“The person you marry is the person you fight with. The house you buy is the house you repair. The dream job you take is the job you stress over. Everything comes with an inherent sacrifice—whatever makes us feel good will also inevitably make us feel bad.” — @IAmMarkManson &lt;a href=&quot;https://twitter.com/ChrisWillx/status/1698319939319251176&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ChrisWillx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The less energy we waste regretting the past or worrying about the future, the more energy we will have for what’s in front of us. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1698319996886409605&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Strategy + Discovery + Delivery&lt;/p&gt;
&lt;p&gt;(Yes, another diagram that will send you scrambling to inspect or create new artifacts) &lt;a href=&quot;https://t.co/IMJickilv8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IMJickilv8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nurijanian/status/1698334347558789194&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nurijanian&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;That &amp;quot;working through it&amp;quot; period is when you try out different processes and people, seeing what goes well or poorly, learning from the iterations, and moving toward the ideal systematic design. Even with a good future design picture in mind, it will naturally take some mistakes and learning to get to a good &amp;quot;then&amp;quot; state.&lt;/p&gt;
&lt;p&gt;People frequently complain about this kind of iterative process because it tends to be true that people are happier with nothing at all than with something imperfect, even though it would be more logical to have the imperfect thing. That kind of thinking doesn&#39;t make sense, so don&#39;t let it distract you. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1698351190000689550&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A product manager who doesn&#39;t QA their own products is like a chef who doesn&#39;t taste their own food. &lt;a href=&quot;https://t.co/jlfy5T7aMx&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jlfy5T7aMx&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1698372926540537966&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The evolution from the Brahmi numeral system through the Arabic numeral system to the one used in Europe in XV and XVI century &lt;a href=&quot;https://t.co/HRNOp2v90I&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HRNOp2v90I&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1698385621490770329&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most underrated secret to success.&lt;/p&gt;
&lt;p&gt;You say you will do a thing, then you actually do the thing.&lt;/p&gt;
&lt;p&gt;90% do not do this. &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1698402241621754058&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;CEOs / Executives:&lt;br /&gt;
When you freak out about a team missing their launch date by a week or a few weeks, you should know that freaking out (or punishing this team) will not actually achieve the outcome you want.&lt;/p&gt;
&lt;p&gt;This also applies if you appreciate a team very publicly mainly for hitting their committed date.&lt;/p&gt;
&lt;p&gt;I know you want a culture of speed, sense of urgency, execution discipline, set an example, etc. etc. but in practice you will almost certainly get the opposite of that if you do these things.&lt;/p&gt;
&lt;p&gt;Why?&lt;br /&gt;
Unintended consequences.&lt;/p&gt;
&lt;p&gt;From now on, every team — wanting to avoid punishment &amp;amp; seeking your appreciation — will start padding their schedules and creating a perception of greater complexity to justify the schedules.&lt;/p&gt;
&lt;p&gt;This in turn will slow things down a lot more, company-wide.&lt;/p&gt;
&lt;p&gt;Plus, despite heavily padding the schedule, it’s not like these teams are going sometimes launch a project early. Because of Parkinson’s Law (“work expands to fill the time allotted for its completion”), these teams will still struggle to barely hit the padded date they committed to.&lt;/p&gt;
&lt;p&gt;This is not intuitive to some executives. They have forgotten how first-level &amp;amp; mid-level managers will respond to incentives and disincentives set by the execs and the CEO.&lt;/p&gt;
&lt;p&gt;What to do?&lt;br /&gt;
You must learn to see the odd missed date as an acceptable cost of setting ambitious goals and aggressive deadlines. If you want teams to move as fast as they can, you must be tolerant of the occasional missed date.&lt;/p&gt;
&lt;p&gt;(it is a different matter if there is an external customer / partner / regulator / analyst / Wall Street commitment for a given launch date — in most companies, for most launches, this is not the case) &lt;a href=&quot;https://twitter.com/shreyas/status/1698417026535141714&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;ICYMI - I think the traditional MVP is selfish and isn&#39;t the best way to iterate into great software.   Use SLC instead:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/kP9eSQUSWS&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/kP9eSQUSWS&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1698697244730376555&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are three levels of knowing:&lt;/p&gt;
&lt;p&gt;1.Simplicity—the child’s view&lt;br /&gt;
2.Complexity—the adult’s view&lt;br /&gt;
3.Informed Simplicity—the enlightened view of reality&lt;/p&gt;
&lt;p&gt;The beautiful part of arriving at Informed Simplicity is you get to travel. &lt;a href=&quot;https://t.co/Ryau6L2zHP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Ryau6L2zHP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1698720007856001251&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;B2B: the shittier the product, the more services you must provide.&lt;/p&gt;
&lt;p&gt;the more services you provide, the worse your product scales.&lt;/p&gt;
&lt;p&gt;the worse your product scales, the fewer customers you can address.&lt;/p&gt;
&lt;p&gt;the fewer customers you can address, the more expensive you must make the price. &lt;a href=&quot;https://twitter.com/blader/status/1698728208999600269&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;blader&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It goes against all intuition &amp;amp; emotional defaults but I find the best way to destress when facing a problem is to run directly at the problem as fast as possible &lt;a href=&quot;https://twitter.com/TrevMcKendrick/status/1698783438986510830&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TrevMcKendrick&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pick one thing from your long to-do list that you really can just scratch off and never do, and delete it.&lt;/p&gt;
&lt;p&gt;(If it&#39;s truly important, it will reappear, don&#39;t worry.) &lt;a href=&quot;https://twitter.com/asmartbear/status/1699090364064313480&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Open source software has evolved from a movement into a big business. Gitlab, Confluent, Databricks, MongoDB, Elastic, Snyk, Hashicorp, Mulesoft, have become huge companies using open source software.&lt;/p&gt;
&lt;p&gt;Across, just these they have generated about $100b in market cap.&lt;/p&gt;
&lt;p&gt;Early on, open source pioneers viewed software freedom as an end unto itself. They encouraged permissive licensing so anyone could use, modify, and distribute their code.&lt;/p&gt;
&lt;p&gt;Fast forward to today : open source has become a go-to market strategy for many software startups because it presents a powerful antidote to monotonically increasing acquisition costs.&lt;/p&gt;
&lt;p&gt;In the early days of an open source project, broad licenses like the MIT or Apache licenses, which empower users to use the software in almost any way, encourage adoption. Open source is a marketing strategy that fills the top of the sales funnel with users who may later convert to paying customers.&lt;/p&gt;
&lt;p&gt;But over time, tension emerges between the company and its community. These permissive licenses might enable competitors to offer competing products or clouds to host managed versions. Sometimes, the open source software’s capabilities are powerful enough to satisfy potentially paying users.&lt;/p&gt;
&lt;p&gt;As an open-source startup matures, many open source companies change their licensing. Elastic, MongoDB, &amp;amp; Gitlab started with open source, but later added restrictions to convert community users into paying customers &amp;amp; prevent clouds from offering competing products.&lt;/p&gt;
&lt;p&gt;The community backlash is predictable. Developers lament the death of free software. But from a business perspective, this progression is logical.&lt;/p&gt;
&lt;p&gt;Companies a transition from one pricing model to another : Open source marketing strategy achieves penetration early on. At scale, startups pivot to maximization to extract the most dollars from their customers.&lt;/p&gt;
&lt;p&gt;This transition typically occurs when a technology has entered the early / late majority stage of technology diffusion. Revenue is concentrated in the top accounts &amp;amp; future growth lies in those enterprises, too. This focus up-market creates opportunity for new startups to repeat the cycle with less restrictive licenses. &lt;a href=&quot;https://twitter.com/ttunguz/status/1699094334325571789&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ttunguz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Best of the Best about Product Roadmaps just for you!&lt;/p&gt;
&lt;p&gt;Articles, blog posts, podcasts, videos, tweets and books.&lt;/p&gt;
&lt;p&gt;Get access to this crazy overview with linked sources!&lt;/p&gt;
&lt;p&gt;Like + Retweet + Reply &amp;quot;Roadmaps&amp;quot;&lt;br /&gt;
(Follow so I can send the link) &lt;a href=&quot;https://t.co/6Z82vNEAKd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6Z82vNEAKd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/KiwiDenny/status/1700032290691166476&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KiwiDenny&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;In any situation in life, you always have three choices: you can change it, you can accept it, or you can leave it.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1700987763259285684&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Peter Thiel: Distribution should be part of product design &lt;a href=&quot;https://t.co/DuEWRGF6xo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DuEWRGF6xo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1701238908934144334&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I, and I alone, am responsible for everything I think and feel.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1701290256304124364&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rules for a peaceful life:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Avoid drama&lt;/li&gt;
&lt;li&gt;If you like drama, look for it in someone else&#39;s life -- lots of movies / shows / books out there and there&#39;s no shortage of it on the internet (don&#39;t contribute tho) &lt;a href=&quot;https://twitter.com/joulee/status/1701303396417020251&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;joulee&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;95% wzrostu zysku operacyjnego Brand24 w H1 2023. W pierwszym półroczu zrobiliśmy 2,7 mln zł EBIT. Przychody urosły o 27% r/r, ale chcemy rosnąć jeszcze szybciej. Dobrze też zapowiada się Q3, bo na wakacje zrobiliśmy nowe rekordy sprzedaży (mimo, że wakacje są typowo słabsze). Oczywiście dużo jeszcze zależy od Września i retencji, ale jesteśmy dobrej myśli. Zmiany produktowe przynoszą efekty. Strategia przesuwania portfolio w stronę większych (ale nie największych) firm przynosi konkretne efekty. Brawo dla całego Zespołu! 🔥❤️ &lt;a href=&quot;https://twitter.com/sadek/status/1701550363847848350&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What is one belief or strategy you have adopted that has made your life easier? &lt;a href=&quot;https://twitter.com/JamesClear/status/1702053326609957105&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@JamesClear I am responsible for everything that happens to me in my life, whether or not it&#39;s my fault.&lt;/p&gt;
&lt;p&gt;Changed everything. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1702053926798082439&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 ideas from David Ogilvy:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Search all the parks in all your cities; you&#39;ll find no statues of committees.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the best companies promises are always kept, whatever it may cost in agony and overtime.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;3.  Don&#39;t bunt. Aim out of the park. Aim for the company of immortals.&lt;/p&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;
&lt;p&gt;Only First Class business, and that in a First Class way.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Chef did not tolerate incompetence. He knew that it is demoralising for professionals to work alongside incompetent amateurs.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pay peanuts and you get monkeys.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;7. I admire people who work hard, who bite the bullet.&lt;/p&gt;
&lt;ol start=&quot;7&quot;&gt;
&lt;li&gt;If you don&#39;t enjoy what you are doing, I beg you to find another job. Remember the Scottish proverb, &amp;quot;Be happy while you&#39;re living, for you&#39;re a long time dead.&amp;quot;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;9.  Big ideas are usually simple ideas.&lt;/p&gt;
&lt;ol start=&quot;8&quot;&gt;
&lt;li&gt;You aren&#39;t advertising to a standing army; you’re advertising to a moving parade. &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1702151849808208198&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An important lesson everyone needs to hear:&lt;/p&gt;
&lt;p&gt;Focus on direction—not speed.&lt;/p&gt;
&lt;p&gt;It’s better to climb slowly up the RIGHT mountain than to climb fast up the WRONG one!&lt;/p&gt;
&lt;p&gt;The Paradox of Speed: Sometimes you have to slow down to speed up.&lt;/p&gt;
&lt;p&gt;The benefits of slowing down are extensive:&lt;/p&gt;
&lt;p&gt;• Focus on high leverage opportunities&lt;br /&gt;
• Be more deliberate with direction&lt;br /&gt;
• Restore energy + avoid burnout&lt;br /&gt;
• Notice things you previously missed&lt;/p&gt;
&lt;p&gt;I’ve fallen into the “Speed Trap” on several occasions:&lt;/p&gt;
&lt;p&gt;Climbing as fast as I could, only to get to the top of the mountain and realize I climbed the wrong one...&lt;/p&gt;
&lt;p&gt;It’s a terrible feeling—one that can be avoided by focusing on direction first, speed second.&lt;/p&gt;
&lt;p&gt;Remember: Slow is smooth and smooth is fast. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1702292474465558858&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Ask yourself at every moment, ‘Is this necessary?’” — Marcus Aurelius &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1702306328360923224&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Smart partners negotiate fair deals because they know that lopsided deals are fragile and that most value accumulates in long term trust relationships.&lt;/p&gt;
&lt;p&gt;You can tell a lot about a potential partner by their opening offer.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1702329101904982340&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;5 habits that are killing your productivity:&lt;/p&gt;
&lt;p&gt;1/ You don’t wake up early (Marcus Aurelius)&lt;br /&gt;
2/ You focus on what’s outside your control (Epictetus)&lt;br /&gt;
3/ You’re in the wrong crowd (Marcus Aurelius)&lt;br /&gt;
4/ You don’t know how to say “no” (Seneca)&lt;br /&gt;
5/ You think you’ll live forever (Seneca) &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1702351656275546504&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your title means nothing, what you’ve shipped means everything. &lt;a href=&quot;https://twitter.com/BrianNorgard/status/1702364691685843408&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianNorgard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Using this feature has made a huge improvement to my ChatGPT experience. The answers it gives are so much more useful. Great feature add!&lt;/p&gt;
&lt;p&gt;Here are my custom instructions in case it helps/inspires you:&lt;/p&gt;
&lt;p&gt;My name is Kent C. Dodds. I live in Utah, USA. I&#39;m an experienced Web Developer. I build and sell courses on full stack web development. Some tools I use regularly include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;TypeScript&lt;/li&gt;
&lt;li&gt;Node.js&lt;/li&gt;
&lt;li&gt;Remix (the web framework)&lt;/li&gt;
&lt;li&gt;SQLite&lt;/li&gt;
&lt;li&gt;Tailwind&lt;/li&gt;
&lt;li&gt;React&lt;/li&gt;
&lt;/ul&gt;
&lt;p semi:=&quot;&quot; false,=&quot;&quot; useTabs:=&quot;&quot; true,=&quot;&quot; singleQuote:=&quot;&quot; true=&quot;&quot;&gt;Here&#39;s my prettier config:&lt;/p&gt;
&lt;p&gt;I prefer function declarations over function expressions.&lt;/p&gt;
&lt;p&gt;I prefer: &lt;code&gt;thing ? &#39;whatever&#39; : null&lt;/code&gt; over &lt;code&gt;thing &amp;amp;&amp;amp; &#39;whatever&#39;&lt;/code&gt; (especially in JSX).&lt;/p&gt;
&lt;p&gt;I like descriptive TypeScript type names (no one-letter type names for me). I also prefer the Array generic over the bracket syntax.&lt;/p&gt;
&lt;hr /&gt;
&lt;ul&gt;
&lt;li&gt;Be casual unless otherwise specified&lt;/li&gt;
&lt;li&gt;Call me &amp;quot;Kent&amp;quot;&lt;/li&gt;
&lt;li&gt;Be terse&lt;/li&gt;
&lt;li&gt;Suggest solutions that I didn’t think about—anticipate my needs&lt;/li&gt;
&lt;li&gt;Treat me as an expert&lt;/li&gt;
&lt;li&gt;Be accurate and thorough&lt;/li&gt;
&lt;li&gt;Give the answer immediately. Provide detailed explanations and restate my query in your own words if necessary after giving the answer&lt;/li&gt;
&lt;li&gt;Value good arguments over authorities, the source is irrelevant&lt;/li&gt;
&lt;li&gt;Consider new technologies and contrarian ideas, not just the conventional wisdom&lt;/li&gt;
&lt;li&gt;You may use high levels of speculation or prediction, just flag it for me&lt;/li&gt;
&lt;li&gt;No moral lectures&lt;/li&gt;
&lt;li&gt;Discuss safety only when it&#39;s crucial and non-obvious&lt;/li&gt;
&lt;li&gt;If your content policy is an issue, provide the closest acceptable response and explain the content policy issue afterward&lt;/li&gt;
&lt;li&gt;Cite sources whenever possible at the end, not inline&lt;/li&gt;
&lt;li&gt;No need to mention your knowledge cutoff&lt;/li&gt;
&lt;li&gt;No need to disclose you&#39;re an AI&lt;/li&gt;
&lt;li&gt;Please respect my prettier preferences when you provide code.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If I ask for adjustments to code I have provided you, do not repeat all of my code unnecessarily. Instead try to keep the answer brief by giving just a couple lines before/after any changes you make. Multiple code blocks are ok.&lt;/p&gt;
&lt;p&gt;If the quality of your response has been substantially reduced due to my custom instructions, please explain the issue. &lt;a href=&quot;https://twitter.com/kentcdodds/status/1702771901175836700&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kentcdodds&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;22 Truths I Wish I Knew At 22&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Most of your friends aren&#39;t really your friends. Real friends are there for you when you have nothing to offer. Cherish them.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Success in life is proportional to the number of difficult conversations you&#39;re willing to have.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;(a visual thread) &lt;a href=&quot;https://t.co/LWr4JRFGKA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LWr4JRFGKA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SahilBloom/status/1703024502639104264&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Walter Isaacson on the link between suffering and greatness and those with happy childhoods:&lt;/p&gt;
&lt;p&gt;“We grow up with fewer demons but we grow up with less drive. We end being Boswell and not Johnson. We end up being the observer and not the doer. Respect those who are in the arena…”&lt;/p&gt;
&lt;p&gt;A few years ago, I learned that Jobs, Ellison, Musk and Bezos have one central thing in common: abandonment, estrangement or abuse by their fathers. Issacson writes the same about Leonardo da Vinci: he was illegitimate in a time where that meant ostracism. Many political leaders — Clinton, Obama, etc— have similar stories of turning abandonment into drive.&lt;/p&gt;
&lt;p&gt;We are afraid to talk about how deep suffering often is essential for leadership and greatness —it is likely the common thread in creating real progress and achievement throughout history. &lt;a href=&quot;https://twitter.com/KTmBoyle/status/1703097287239491766&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KTmBoyle&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Agreed. What I didn’t say and should have is that the other common thread for many of these men: incredible  mothers. Bezos speaks about how his mother took him as an infant to her classes at community college, promising he wouldn’t cry during the lectures.&lt;/p&gt;
&lt;p&gt;Children need someone to help them turn tragedy into resilience. &lt;a href=&quot;https://twitter.com/KTmBoyle/status/1703101000628772934&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KTmBoyle&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jesus lord bless up i added the ChatGPT custom instructions to my taste and it works so damn good im in love. This has solved so many of my complaints w chatgpt&lt;/p&gt;
&lt;p&gt;My instructions:&lt;br /&gt;
&amp;quot;Speak in specific, topic relevant terminology. Do NOT hedge or qualify. Do not waffle. Speak directly and be willing to make creative guesses. Explain your reasoning.&lt;/p&gt;
&lt;p&gt;Be willing to reference less reputable sources for ideas.&lt;/p&gt;
&lt;p&gt;Be willing to form opinions on things.&amp;quot; &lt;a href=&quot;https://twitter.com/seconds_0/status/1704351686767300817&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;seconds_0&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Difference Between Urgent and Important&lt;/p&gt;
&lt;p&gt;Urgent tasks are time-sensitive and require attention. These tasks can be anything from responding to emails, returning phone calls, or even picking up groceries on the way home so you can eat dinner.&lt;/p&gt;
&lt;p&gt;Important tasks, on the other hand, move us forward with vision and meaning. They are the things we want to get done but also bring us meaning because they are aligned with our values and goals. They are deliberate and often require focused attention.&lt;/p&gt;
&lt;p&gt;We tend to feel stressed and overwhelmed when we focus on urgent but unimportant tasks. While these things are easy to check off our list, when left undone, there are little to no consequences.&lt;/p&gt;
&lt;p&gt;The key to productivity is doing more of what matters and less of what doesn&#39;t. The people who do this best are the ones who consistently understand what is urgent and important and eliminate the rest. By concentrating their mental and physical energy in the right place, they dramatically improve their impact.&lt;/p&gt;
&lt;p&gt;Reducing the surface area of your attention means asking yourself the difficult question of whether what you are doing really matters to the outcome you want.&lt;/p&gt;
&lt;p&gt;If you are ruthless, you can eliminate 20-40% of what you are doing today without impacting the most important things. All that time you save can then be invested in the most important things.&lt;/p&gt;
&lt;p&gt;The problem is that it&#39;s a difficult question to ask and answer honestly.&lt;/p&gt;
&lt;p&gt;Admitting you&#39;re doing something that doesn&#39;t matter means you&#39;ve been wasting your time up to now. It&#39;s much easier to keep doing what we&#39;ve been doing and tell ourselves that if we just had one more productivity hack, we&#39;d make more progress.&lt;/p&gt;
&lt;p&gt;Being busy and being productive are not the same thing. It&#39;s easy to be busy. It&#39;s hard to be productive.&lt;/p&gt;
&lt;p&gt;The real &amp;quot;work&amp;quot; of productivity is less about improving efficiency and more about improving effectiveness.&lt;/p&gt;
&lt;p&gt;Being productive is not about doing more; it&#39;s about concentrating all your energy on the few things that matter. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1704479506226950563&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The good news about joining a tiny startup is you will interface directly with the CEO on a regular basis&lt;/p&gt;
&lt;p&gt;Sometimes even as a peer&lt;/p&gt;
&lt;p&gt;The &amp;quot;bad&amp;quot; news is that CEO will hold you to a pretty darn high standard &lt;a href=&quot;https://twitter.com/jasonlk/status/1704505051971031322&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Find a relationship where you, naturally being you, makes the other person happy. And the other person, naturally being the other person, makes you happy.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1704660211753959633&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t live in peace, live in truce with all of your conflicting desires. &lt;a href=&quot;https://twitter.com/naval/status/1704804837009789173&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If your team always asks &amp;quot;why?&amp;quot;, they don&#39;t get your strategy.&lt;/p&gt;
&lt;p&gt;So what can you do?&lt;/p&gt;
&lt;p&gt;(Hint: it&#39;s not showing them the roadmap.)&lt;/p&gt;
&lt;p&gt;🧵👇 &lt;a href=&quot;https://t.co/y5wp0F95iY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/y5wp0F95iY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1705294723810787706&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;From 1980 to 2014, a JP Morgan study found:&lt;/p&gt;
&lt;p&gt;▪️ 40% of stocks lose money&lt;br /&gt;
▪️ 64% of stocks underperform&lt;br /&gt;
▪️ ~7% of stocks accounted for nearly ALL of the gains&lt;/p&gt;
&lt;p&gt;One reason indexing investing works so well is all of this chaos is invisible &lt;a href=&quot;https://twitter.com/BrianFeroldi/status/1705341798015488509&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianFeroldi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Best way to get better and go faster is to work from the real thing. Not mockups, not wireframes, not sketches, not descriptions... Build, use, repair, refine. Real reveals what fake obscures. Get real, move faster, build better. &lt;a href=&quot;https://twitter.com/jasonfried/status/1706349453777768666&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the most consistent mistakes I made when I was younger was to spend my time learning about things that other people thought were interesting — things that were cool or prestigious — instead of trusting my own curiosity. &lt;a href=&quot;https://twitter.com/paulg/status/1706612595426201795&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you have a new product trying to break into a mature market, you should spend a lot of time on how to reduce switching costs, as that might be a larger barrier even than sales and marketing. Maybe even offer to switch manually for the customer, or pay off their contracts. &lt;a href=&quot;https://twitter.com/asmartbear/status/1706767663060426842&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every day, for over a year, the only thing I listened to on my drive to work was this speech.&lt;/p&gt;
&lt;p&gt;It changed my life.&lt;/p&gt;
&lt;p&gt;I still use its lessons every single day.&lt;/p&gt;
&lt;p&gt;We made an abridged video version of it, to help spread the word:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/v8AzIFSJwt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/v8AzIFSJwt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/awilkinson/status/1707050455208181806&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If every day it’s a struggle to find customers it’s not working yet.&lt;/p&gt;
&lt;p&gt;If every day it&#39;s a struggle to keep up with demand, it&#39;s working.&lt;/p&gt;
&lt;p&gt;That&#39;s the difference of &amp;quot;Product/Market fit.&amp;quot; &lt;a href=&quot;https://twitter.com/asmartbear/status/1707095580248358985&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most accurate Idea to Product chart I&#39;ve ever seen.&lt;/p&gt;
&lt;p&gt;(It&#39;s supposed to be messy.) &lt;a href=&quot;https://t.co/ggnx7MzcqW&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ggnx7MzcqW&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1708193831621927361&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Glad I don&#39;t build products for cats... or do I? &lt;a href=&quot;https://t.co/5ZpGGWMuli&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5ZpGGWMuli&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1709244610118115775&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nice model for assessing speed vs quality &lt;a href=&quot;https://t.co/YVkesjiPJF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YVkesjiPJF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1709370577595535838&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Prototypes are the most powerful way to validate product ideas.&lt;/p&gt;
&lt;p&gt;Here&#39;s a complete breakdown of 10 ways to validate your prototypes + save yourself from wasting weeks of time: &lt;a href=&quot;https://t.co/nGqVyMBqSI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nGqVyMBqSI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1709643472364294451&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A friendly reminder to stop trying to optimize your life. &lt;a href=&quot;https://t.co/fo0zZP4YAI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fo0zZP4YAI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dollarsanddata/status/1710323352718414014&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dollarsanddata&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Value your time. It is all you have. It’s more important than your money. It’s more important than your friends. It is more important than anything. Your time is all you have. Do not waste your time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1710435516657578243&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Leverage in an organization is not unlike leverage in the markets; you&#39;re looking for ways to achieve more with less. At Bridgewater, I typically worked at about 50:1 leverage, meaning that for every hour I spent with each person who worked for me, they spent about fifty hours working to move the project along. At our sessions, we would go over the vision and the deliverables, then they&#39;d work on them, and then we&#39;d review the work, and they&#39;d move forward based on my feedback—and we&#39;d do that over and over again. The people who worked for me typically had similar relationships with those who worked for them, though their ratios were typically between 10:1 and 20:1. I am always eager to find people who can do things nearly as well as (and ideally better than) I can so that I can maximize my output per hour.&lt;/p&gt;
&lt;p&gt;Technology is another great tool for providing leverage. To make training as easy to leverage as possible, document the most common questions and answers through audio, video, or written guidelines, and then assign someone to organize them and incorporate them into a manual, which is updated on a regular basis.&lt;/p&gt;
&lt;p&gt;Principles themselves are a form of leverage—they&#39;re a way to compound your understanding of situations so that you don&#39;t need to exert the same effort each time you encounter a problem. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1710781600169132376&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Relationships end because people don&#39;t talk.&lt;/p&gt;
&lt;p&gt;They assume, they react, but they don&#39;t actually have difficult conversations.&lt;/p&gt;
&lt;p&gt;Why Talking Can Save Relationships: &lt;a href=&quot;https://twitter.com/Theholisticpsyc/status/1711022396613026147&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Theholisticpsyc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Designers only &amp;quot;hand-off&amp;quot; designs to engineers to build on waterfall teams.&lt;/p&gt;
&lt;p&gt;On agile teams, it&#39;s a constant back and forth between the two, like passing a hot potato.&lt;/p&gt;
&lt;p&gt;(PMs often help with the passing.) &lt;a href=&quot;https://t.co/exWmokd3U2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/exWmokd3U2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1711418967690977420&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great visual for seeing how:&lt;br /&gt;
• Strategy&lt;br /&gt;
• Goals&lt;br /&gt;
• Roadmap&lt;br /&gt;
• Sprints&lt;/p&gt;
&lt;p&gt;All tie into each other. &lt;a href=&quot;https://t.co/DLSd2tYhGA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DLSd2tYhGA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1711455308499783920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;20 years in building companies taught me: speed is king.&lt;/p&gt;
&lt;p&gt;Moving fast is a miracle drug. Here&#39;s why:&lt;/p&gt;
&lt;p&gt;→ You learn more about the end-state product per unit time.&lt;/p&gt;
&lt;p&gt;There is no team able to accurately predict every future product need. Having an iterative product schedule will solve for this.&lt;/p&gt;
&lt;p&gt;→ Achieves a more robust product.&lt;/p&gt;
&lt;p&gt;If I had to summarize technology development: it&#39;s how many iterations you have done and then how much progress you&#39;ve made b/t those iterations.&lt;/p&gt;
&lt;p&gt;→ Helps prioritize what&#39;s important.&lt;/p&gt;
&lt;p&gt;Speeds means you only have time for the priority matters. There is no time for things that don&#39;t matter.&lt;/p&gt;
&lt;p&gt;→ Time is what will kill your company.&lt;/p&gt;
&lt;p&gt;P.S. Moving fast is so important to me that it&#39;s a corporate value at Figure. &lt;a href=&quot;https://twitter.com/adcock_brett/status/1711461601105371144&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adcock_brett&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Few people want to be saints nowadays, but everyone is trying to lose weight.” —Rene Girard &lt;a href=&quot;https://t.co/TOwMPHVJD4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TOwMPHVJD4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lukeburgis/status/1711592110586007666&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lukeburgis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Looking back, the best outcomes came from pure actions, without motive.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1711810577419698380&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re AB testing at a startup, you&#39;re doing it wrong:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;For AB tests to be stat sig, you usually need tons of time and data.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Talking to customers is much more efficient for hitting PMF.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Holding out 5% and comparing after some time is faster + more reliable. &lt;a href=&quot;https://twitter.com/carlvellotti/status/1711907295775363517&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A happy person isn’t someone who’s happy all the time. It’s someone who effortlessly interprets events in such a way that they don’t lose their innate peace.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1711962578966954093&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In order to apply most of your energy in one direction, you have to say no to things that a lot of other people say yes to.&lt;/p&gt;
&lt;p&gt;Most successful people are masters at eliminating the unnecessary from their lives. &lt;a href=&quot;https://twitter.com/farnamstreet/status/1712251966124949910&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;farnamstreet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;every time you think you&#39;re a good programmer remember that roller coaster 2 was programmed entirely in assembly with no bugs by only one guy &lt;a href=&quot;https://twitter.com/sabrinaesaquino/status/1712557882783457382&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sabrinaesaquino&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;m a big fan of @ravi_mehta&#39;s product competency chart.&lt;/p&gt;
&lt;p&gt;Whenever trying to choose what I want to learn next, I look to this chart to see the areas I think I&#39;m weakest.&lt;/p&gt;
&lt;p&gt;It&#39;s also a good thing to run through with your manager to find areas of improvement. &lt;a href=&quot;https://t.co/tnhBjrHELu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tnhBjrHELu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1712632058474909729&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The secret that underlies most successful entrepreneurs:&lt;/p&gt;
&lt;p&gt;The ability to switch back and forth between the creative mind and the constant grind.&lt;/p&gt;
&lt;p&gt;Again, and again, and again. &lt;a href=&quot;https://twitter.com/dharmesh/status/1712706469626343910&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Knowing how little you matter is very important for your own mental health and happiness.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1713242009639759931&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;To measure the quality of your life, simply do nothing, and see how it feels.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1714000004183146779&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The next time a customer says something like &amp;quot;that&#39;s just what I wanted,&amp;quot; instead of only taking the complement, dive in with them and find out exactly why that is.&lt;/p&gt;
&lt;p&gt;Problem? JTBD? Failure of alternative? Cost? Delight?&lt;/p&gt;
&lt;p&gt;That&#39;s your magic. Focus on that. &lt;a href=&quot;https://twitter.com/asmartbear/status/1714310631103291832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stakeholders always want your team&#39;s velocity to be higher.&lt;/p&gt;
&lt;p&gt;This is super stressful when you&#39;re already at full speed.&lt;/p&gt;
&lt;p&gt;But remember, you can ship things that aren&#39;t features.&lt;/p&gt;
&lt;p&gt;Here&#39;s an overview of 6 things you can ship (with no devs) to accelerate learning and show progress. &lt;a href=&quot;https://t.co/jzVXNlRpgp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jzVXNlRpgp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/carlvellotti/status/1714444030577156398&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;carlvellotti&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@patrickc on Stripe:&lt;br /&gt;
“My intuition is that more of Stripe success than one would think is down to the fact that people like beautiful things and for rational reasons.&lt;/p&gt;
&lt;p&gt;Because, what does a beautiful thing tell you? It tells you the person who made it really cared, and you can observe some superficial details, but probably they didn’t only care about those and did everything in else in slapdash way.&lt;/p&gt;
&lt;p&gt;So, if you care about the infrastructure being holistically good, indexing on the superficial characteristics is not an irrational thing to do.“&lt;/p&gt;
&lt;p&gt;Couldn&#39;t have said better and proud to have Patrick as an investor in @linear.&lt;/p&gt;
&lt;p&gt;We shouldn&#39;t accept poorly made things and that lack beauty. &lt;a href=&quot;https://twitter.com/karrisaarinen/status/1714502584277619160&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karrisaarinen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Decisions:&lt;/p&gt;
&lt;p&gt;• If you can’t decide, the answer is no.&lt;/p&gt;
&lt;p&gt;• If two equally difficult paths, choose the one more painful in the short term (pain avoidance is creating an illusion of equality).&lt;/p&gt;
&lt;p&gt;• Choose the path that leaves you more equanimous in the long term.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1714545095855222956&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You don&#39;t need more employees, you need a better business model.&lt;/p&gt;
&lt;p&gt;I know people who make $1M/year+ with no payroll.&lt;/p&gt;
&lt;p&gt;One way to do it is something called  &amp;quot;Productized Services.&amp;quot;&lt;/p&gt;
&lt;p&gt;Ever heard of Designjoy?&lt;/p&gt;
&lt;p&gt;Here&#39;s how he leveraged this framework (so you can steal his homework):&lt;/p&gt;
&lt;p&gt;In 2017, Brett Williams decided he wanted more than his 9-5 design job.&lt;/p&gt;
&lt;p&gt;But he didn’t want to be another freelancer fighting for penny-pinching clients.&lt;/p&gt;
&lt;p&gt;Nor did he want to start an agency managing people and sending all profit to payroll.&lt;/p&gt;
&lt;p&gt;But what&#39;s the other option?&lt;/p&gt;
&lt;p&gt;Productized services.&lt;/p&gt;
&lt;p&gt;You take a service, and standardize your offering to all customers:&lt;br /&gt;
• Same price&lt;br /&gt;
• Clearly defined scope of work&lt;/p&gt;
&lt;p&gt;For Brett, this was Design-as-a-Service:&lt;/p&gt;
&lt;p&gt;It&#39;s like Netflix for design: You pay a monthly subscription – but instead of unlimited Stranger Things re-watches, you get unlimited graphic design requests.&lt;/p&gt;
&lt;p&gt;The keyword here is “unlimited.”&lt;/p&gt;
&lt;p&gt;Whether you make 5 requests a month or 50, the price stays the same (but only one request at a time).&lt;/p&gt;
&lt;p&gt;Why does this model work so well?&lt;/p&gt;
&lt;p&gt;The cost of finding, interviewing, training, compensating, and managing new graphic designers is through the roof.&lt;/p&gt;
&lt;p&gt;But with Designjoy?&lt;/p&gt;
&lt;p&gt;All you have to do is buy a subscription, then forget you ever did.&lt;/p&gt;
&lt;p&gt;So how does Brett swing being Designjoy&#39;s ONLY employee?&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;NO meetings.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Aside from a 15min discovery call before signing up, you never see Brett’s face again. Ever.&lt;/p&gt;
&lt;p&gt;You might be wondering how a company doesn&#39;t implode if it has zero contact with its clients...&lt;/p&gt;
&lt;p&gt;It all comes down to leveraging tools.&lt;/p&gt;
&lt;p&gt;To field design requests, Brett uses a method so simple it’ll make you cry…&lt;/p&gt;
&lt;p&gt;Trello. That&#39;s it.&lt;/p&gt;
&lt;p&gt;On signup, clients get their own Trello board where they log design requests.&lt;/p&gt;
&lt;p&gt;On the backend, Brett views these requests and fulfills them in 30 minutes to 48 hours – completely async.&lt;/p&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;Cutting out red tape&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;A traditional agency&#39;s onboarding process:&lt;/p&gt;
&lt;p&gt;Visit website &amp;gt; Book call &amp;gt; Wait 1+ days before meeting &amp;gt; Set follow-up call &amp;gt; Finalize price/scope of project &amp;gt; Sign contract &amp;gt; Begin project.&lt;/p&gt;
&lt;p&gt;I lost my patience just writing that...&lt;/p&gt;
&lt;p&gt;But with DesignJoy?&lt;/p&gt;
&lt;p&gt;You go from 1st-time visitor to paying client in 30 seconds.&lt;/p&gt;
&lt;p&gt;No meetings. No contracts. No bullsh*t.&lt;/p&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;Speed&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Brett is good at what he does. Period.&lt;/p&gt;
&lt;p&gt;He services ~20 clients every month, solo. At $5k per client, that’s up to $1.3M in ARR.&lt;/p&gt;
&lt;p&gt;So… How can you replicate this?&lt;/p&gt;
&lt;p&gt;3 things you need:&lt;/p&gt;
&lt;p&gt;• A skill/service.&lt;br /&gt;
• SPEED in performing that skill.&lt;br /&gt;
• A niche offer within the skill to set yourself apart.&lt;/p&gt;
&lt;p&gt;Check out this list to get the gears turning:&lt;/p&gt;
&lt;p&gt;PS – If this kind of stuff interests you, highly recommend following @BrettFromDJ to watch along as he builds. &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1714637947574857897&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Patrick Collison, Stripe CEO, on why quality matters:&lt;/p&gt;
&lt;p&gt;&amp;quot;If Stripe is a monstrously successful business but what we make isn&#39;t beautiful and Stripe doesn&#39;t embody a culture of incredibly exacting craftsmanship, I&#39;ll be much less happy.&lt;/p&gt;
&lt;p&gt;My intuition is that more of Stripe&#39;s success than one would think is downstream of the fact that people like beautiful things.&lt;/p&gt;
&lt;p&gt;Because what does a beautiful thing tell you?&lt;/p&gt;
&lt;p&gt;Well, it tells you the person who made it really cared.&amp;quot; &lt;a href=&quot;https://twitter.com/petergyang/status/1715033116656779448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;petergyang&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If design is art, plus constraint, then strategy is business design, which is inspiration plus constraint.&lt;/p&gt;
&lt;p&gt;The decisions you make, both the + and - consequences of that, are the constraints&lt;/p&gt;
&lt;p&gt;These are often called enabling constraints.&lt;/p&gt;
&lt;p&gt;Articulate, and accept them. &lt;a href=&quot;https://twitter.com/asmartbear/status/1715033918288589284&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Primer on how we design at @linear:&lt;/p&gt;
&lt;p&gt;The main point is that the design is only a reference, never any kind of deliverable itself, so the way it&#39;s constructed doesn&#39;t really matter.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;We screenshot the app and design on top of&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Simple design system that has mostly colors, type and some basic components (rest you can screenshot/recreate)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We have one design file each quarter, each person creates a page in it for their projects (easier to see what others are working on)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Naming layers, using auto layout, components is up to the designer if they want to use them or not&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Use prototypes if needed to show a flow or some other interaction&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Once the design is good enough, and we start building and the design is now only a reference. The real design is the app again and you start the process over. &lt;a href=&quot;https://twitter.com/karrisaarinen/status/1715085201653805116&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karrisaarinen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I don’t believe in hierarchical relationships. I don’t want to be above anybody, and I don’t want to be below anybody. If I can’t treat someone like a peer and if they can’t treat me like peer, I just don’t want to interact with them.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1715275911682240659&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“AI content must be bad then, right?”&lt;/p&gt;
&lt;p&gt;Not exactly. I’ve used AI in SEO campaigns for over 2 years now.&lt;/p&gt;
&lt;p&gt;None of our projects have been hit by any Google update... &lt;a href=&quot;https://t.co/tKnft7hB8s&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tKnft7hB8s&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jakezward/status/1716780942755262782&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jakezward&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Memo from Sam Bankman-Fried &lt;a href=&quot;https://t.co/qJX2MSfD8V&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qJX2MSfD8V&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TechEmails/status/1716891295585808837&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TechEmails&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life changed for me when I realized:&lt;/p&gt;
&lt;p&gt;There would be ~10 decisions in life that would be actually important.&lt;/p&gt;
&lt;p&gt;The rest were just noise. &lt;a href=&quot;https://twitter.com/girdley/status/1717149437527548112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;girdley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I’m not going to be the most successful person on the planet, nor do I want to be. I just want to be the most successful version of myself while working the least hard possible.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1717625392712794519&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When it takes more effort to debate a decision than to execute one of the choices, just knock it out.&lt;/p&gt;
&lt;p&gt;But if execution risk is high, more deliberation or research is wise.&lt;/p&gt;
&lt;p&gt;More on when to decide quickly or not:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/KbLhQOhKZH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KbLhQOhKZH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1718706586690961713&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Children are happy because:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;They&#39;re not self conscious&lt;/li&gt;
&lt;li&gt;They lack a sense of time pressure&lt;/li&gt;
&lt;li&gt;They&#39;ve no goals.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The bottom line is they are living from moment to moment, and the mind is not there to interfere in their bliss.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1718716079483048401&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s impossible to please everyone. The question is whether you’re disappointing the right people.&lt;/p&gt;
&lt;p&gt;– Adam Grant &lt;a href=&quot;https://t.co/wcin3Pry2W&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wcin3Pry2W&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lukemiler/status/1718719359990808960&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lukemiler&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many of you have asked about how to deal with perceived setbacks, so I wanted to share some of the principles that have helped me in moments like this. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/xLjMQdMBdI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xLjMQdMBdI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1718733973503819941&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;.@raycastapp is a gateway drug for keyboard shortcuts.&lt;/p&gt;
&lt;p&gt;This is a thread about how I fell down the rabbit hole… &lt;a href=&quot;https://t.co/X7x8Lt2AH7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/X7x8Lt2AH7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RhettTrickett/status/1718956053096747173&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RhettTrickett&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If the value you create is not mainly a function of the hours you spend, then you&#39;re likely in the right line of work.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1718988625336283553&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What problem are they trying to solve with that feature?&lt;br /&gt;
How much revenue does that 10% represent?&lt;br /&gt;
Will they leave if they don&#39;t get that feature?&lt;br /&gt;
Are there other features that 10% want more?&lt;/p&gt;
&lt;p&gt;No could look like: &amp;quot;That&#39;s a great idea; we know a few other customers that would also like that feature, but it doesn&#39;t align with our current priorities and would prevent us from doing x,y,z for you. We might consider it in the future, but a,b,c would have to be in place first. If/when that happens, we&#39;d love your input on what that feature might look like. Would that be ok?&amp;quot; &lt;a href=&quot;https://twitter.com/steedancrowe/status/1718990276637630550&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;steedancrowe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Old Mark Zuckerberg email from 2008.&lt;/p&gt;
&lt;p&gt;Execution speed is everything at startups.&lt;/p&gt;
&lt;p&gt;Your job as the founder is to set this tempo. &lt;a href=&quot;https://t.co/VVptjAkcJa&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VVptjAkcJa&lt;/a&gt; &lt;a href=&quot;https://twitter.com/agazdecki/status/1719409626935120283&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most successful parents take away one gift from their kids which made them successful in first place : struggle &lt;a href=&quot;https://twitter.com/kunalb11/status/1720099482719940690&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The people who say you shouldn’t work on your business on the weekends either:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Have never built a successful business or&lt;/li&gt;
&lt;li&gt;Spent years working overtime to build a sustainable business/lifestyle (great!) and forgot what it took to get there (not great!) &lt;a href=&quot;https://twitter.com/asmartbear/status/1720796797268873539&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The people who succeed are irrationally passionate about something.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1721272675622862877&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you have time to wonder whether you have Product/Market Fit, you don’t have it.&lt;/p&gt;
&lt;p&gt;If you can’t keep up with the orders and don’t even know where they’re coming from, you have it.&lt;/p&gt;
&lt;p&gt;Here’s how you know, backed by data:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/OoY6423JFR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OoY6423JFR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1721915420066607567&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For example, watch this YouTuber walk around his room and see how the sensor tracks him: &lt;a href=&quot;https://t.co/OVIDHDk3V1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OVIDHDk3V1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Julian/status/1722268331196215645&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Julian&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My notes from Anna Wintour’s biography turned into maxims:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Hire talented people as found, not as needed.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Taste is as rare as a unicorn.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;3.Your employees should describe you as “easy to understand.”&lt;/p&gt;
&lt;p&gt;4.Pretend to be completely in control and people will assume that you are.&lt;/p&gt;
&lt;p&gt;5.Have a sharp eye for the weaknesses of others.&lt;/p&gt;
&lt;p&gt;6.Combine ruthless efficiency with hyper competence.&lt;/p&gt;
&lt;p&gt;7.If you’re not early, you’re late.&lt;/p&gt;
&lt;p&gt;8.Get to the point.&lt;/p&gt;
&lt;p&gt;9.Emails don’t need a subject line.&lt;/p&gt;
&lt;ol start=&quot;10&quot;&gt;
&lt;li&gt;A blueprint for building power in media: Ads, Advice, Relationships, Money&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/dp8vtuMASH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/dp8vtuMASH&lt;/a&gt; decisive.&lt;/p&gt;
&lt;p&gt;12.Powerful people associate with valuable brands.&lt;/p&gt;
&lt;p&gt;13.Control all the ingredients.&lt;/p&gt;
&lt;ol start=&quot;11&quot;&gt;
&lt;li&gt;
&lt;p&gt;Meticulously make friends with people who are the best in their field.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nobody should know your niche as well as you.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Keep a strict professional schedule.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;17.Recruit hungry young people.&lt;/p&gt;
&lt;ol start=&quot;14&quot;&gt;
&lt;li&gt;
&lt;p&gt;Make decisions quickly.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Master the terse memo.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Read voraciously.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Always act in service of your mission.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders want information. They don’t want to be told what to do.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Passion, purpose, and discipline are universally admired.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Killing products is necessary to teach your team your standards.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Create an environment where excellence is expected.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People judge you by your performance so focus on the outcome.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Be the first to leave.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Be frank about your ambition. People can’t help if they don’t know what you want.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Quality over feelings.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The founder’s job is to make sure it’s done right.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Have no qualms about being completely focused.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Talent routinely makes the mistake of being self-absorbed instead of being of service.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stay close to the money.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Money comes naturally as a result of service.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Media can invent celebrity.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The only predictable thing about you should be your passion for your product.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Self-confidence is contagious. Self-doubt is too.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You get two minutes, the second is a courtesy.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Control the guest list.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Resist any cheapening of the brand, however popular and lucrative it might be in the short term.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Relationships last longer than money.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build up your entire industry and you rise automatically.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Repetition is the foundation of clarity of thought.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t try to handle stress. Learn to enjoy it.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The story of the father is embedded in the daughter. &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1722638617351217166&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;With over 90% of the country being covered by mountains, Kyrgyzstan has an overall population density of just 31 people/km², which makes of it one if not the least-crowded country in the world.&lt;/p&gt;
&lt;p&gt;[📹Tynchtykmr]&lt;br /&gt;
&lt;a href=&quot;https://t.co/AI3SNUpf2j&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AI3SNUpf2j&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1723051420750901539&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Really impressed with Supabase. So many indie devs love it; now I know why. Super fast, excellent UI, stored procs as auto-doc’ed API calls, excellent Typescript support for your own schema and APIs. Wow. &lt;a href=&quot;https://twitter.com/asmartbear/status/1723054421066612893&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;🤔 Odkryłem „przebiegły” sposób na uczenie inżynierii finansowej moich dzieci. Efekt przerósł moje oczekiwania i miło mnie zaskoczył 👦🏼👦🏼+🎮=🤯&lt;/p&gt;
&lt;p&gt;Mam trzech synów. Dwaj starsi grywają, jak większość dzieci w gry. Zastosowałem proste sposoby, które pozwalają im zrozumieć mechanizmy finansowe rządzące światem i ich konsekwencje na nasze życie.&lt;/p&gt;
&lt;p&gt;Każdy z nich, ma jakąś ilość czasu grania na konsoli, zależna od wieku. Mogą grać tylko w weekend- tzw. payday. Wprowadziłem więc opcje, które urozmaiciły ich życie i sposób myślenia.&lt;/p&gt;
&lt;p&gt;🏦 Mogą grać na kredyt: wtedy, za każde 5 minut grania w ten weekend, zabieram im 10 minut grania z kolejnego tygodnia.&lt;/p&gt;
&lt;p&gt;📈 Mogą inwestować: za każde zaoszczędzone 5 minut w tym tygodniu, otrzymają 1 minutę (20%) dodatkowego grania w kolejnym tygodniu.&lt;/p&gt;
&lt;p&gt;📚 Mogą zarabiać: za każde 10 dodatkowych minut czytania dziennie ponad limit, otrzymują dodatkowe 5 minut grania.&lt;/p&gt;
&lt;p&gt;Efekt mnie mocno zaskoczył:&lt;br /&gt;
✅ Pilnują dokładnie czasu grania.&lt;br /&gt;
✅ Chętnie zarabiają dodatkowy czas, żeby móc grać więcej.&lt;br /&gt;
✅ Nie chcą używać kredytu bo im się nie opłaca.&lt;br /&gt;
✅ Każdą minutę ponad potrzebę i chęć grania, inwestują w większą ilość grania w kolejnym tygodniu.&lt;/p&gt;
&lt;p&gt;Co myślicie o tej metodzie? Jakie są Wasze sposoby na uczenie dzieci finansów?&lt;br /&gt;
&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#dzieci&quot;&gt;#dzieci&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#finanse&quot;&gt;#finanse&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#wychowanie&quot;&gt;#wychowanie&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#inflacja&quot;&gt;#inflacja&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Dawid_Palka_/status/1723241933928017928&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Dawid_Palka_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best parenting advice I&#39;ve ever gotten.&lt;/p&gt;
&lt;p&gt;From some of history’s greatest thinkers and parents: &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1724110183503376747&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;6&quot;&gt;
&lt;li&gt;Be demanding and supportive&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;From @angeladuckw: “The parenting style that is good for grit is also the parenting style good for most other things: Be really, really demanding, and be very, very supportive.” &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1724110211127087427&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Learn to ask, “If this is the only thing I accomplish today, will I be satisfied with my day?”&lt;/p&gt;
&lt;p&gt;Don’t ever arrive at the office or in front of your computer without a clear list of priorities. You’ll just read unassociated e-mail and scramble your brain for the day. Compile your to-do list for tomorrow no later than this evening. I don’t recommend using digital to-do lists, because it is possible to add an infinite number of items. I use a standard piece of paper folded in half three times, which fits perfectly in the pocket and limits you to noting only a few items.&lt;/p&gt;
&lt;p&gt;There should never be more than two mission-critical items to complete each day. Never. It just isn’t necessary if they’re actually high-impact.&lt;/p&gt;
&lt;p&gt;If you are stuck trying to decide between multiple items that all seem crucial, as happens to all of us, look at each in turn and ask yourself, If this is the only thing I accomplish today, will I be satisfied with my day?&lt;/p&gt;
&lt;p&gt;To counter the seemingly urgent, ask yourself: What will happen if I don’t do this, and is it worth putting off the important to do it? &lt;a href=&quot;https://twitter.com/tferriss/status/1725914309677514999&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Daniel Kahneman, the Nobel Prize-winning psychologist, has a rule where he never says yes to anything on the spot.&lt;/p&gt;
&lt;p&gt;People-pleasing had him making too many commitments.&lt;/p&gt;
&lt;p&gt;He says something to the effect of: &amp;quot;Thanks for the invite. I don&#39;t say yes to anything on the spot, but I&#39;ll let you know if I&#39;m interested.&amp;quot;&lt;/p&gt;
&lt;p&gt;Turning the choice into a rule lowers the pain of rejection for others and makes the decision easy for you as well. &lt;a href=&quot;https://twitter.com/david_perell/status/1725942105917554841&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As someone who has spent a lot of time trying to spot them, this is a pretty good list. The interesting question is to what degree it&#39;s a recipe as well as a filter. E.g. can encouraging teenage hobbies make people achieve more? It&#39;s not impossible. &lt;a href=&quot;https://twitter.com/paulg/status/1726266819298857042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The more seriously you take yourself, the unhappier you’re going to be.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1726704970404446504&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build a good business.&lt;/p&gt;
&lt;p&gt;Where &amp;quot;good&amp;quot; is defined straightforwardly: revenue growth, expanding margins, customers that tend to stay and grow, employees that tend to stay and grow.&lt;/p&gt;
&lt;p&gt;One of the hardest things to actually do, but you don’t need to over-complicate the high-level goals. &lt;a href=&quot;https://twitter.com/asmartbear/status/1727070132298514771&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rules:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Player one serves up something they are grateful for.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Player 2 must “return” the gratitude with something they are grateful for.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Repeat “serving” gratitudes back to all the players until the 3-min timer goes off. &lt;a href=&quot;https://t.co/939GLA7wMi&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/939GLA7wMi&lt;/a&gt; &lt;a href=&quot;https://twitter.com/mattschnuck/status/1727346627520987474&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mattschnuck&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You need to build a business that runs fine without “special offers” and “sales.”&lt;/p&gt;
&lt;p&gt;Then, you can either have a philosophy of never doing that, or you can do it tactically.&lt;/p&gt;
&lt;p&gt;The point is: Healthy base business, and you’re in control. &lt;a href=&quot;https://twitter.com/asmartbear/status/1727606668249161883&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@jasonlk The very best will learn from all feedback, constructive or not. &lt;a href=&quot;https://twitter.com/dharmesh/status/1727758102269751717&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many of you have asked me about finding a work-life balance, so I wanted to share some of the principles that have helped me to achieve this. I have found that I can squeeze a whole lot more life into life by knowing how to do a few of these very well. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/KpfD7j3ndr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KpfD7j3ndr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1728050851795902489&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;3 core exercises to do every day if you sit at a desk:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Bird Dogs work the back (aka. posterior) part of your core.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;This exercise allows for correct movement, control, and stability of the entire body.&lt;/p&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;McGill Crunches target the front (aka. anterior) part of your core.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;They help you maintain a healthy and functional spine.&lt;/p&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;Side Planks work the side (aka. lateral) part of your core.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;They help you develop a strong, stable core while also strengthening your glutes, hips, and shoulders.&lt;/p&gt;
&lt;p&gt;Tips on doing these exercises:&lt;br /&gt;
· Brace your core by pushing out your abs&lt;br /&gt;
· Squeeze your glutes as if you’re trying to crush a quarter in your butthole.&lt;br /&gt;
· Don’t rush through them. Control each movement.&lt;/p&gt;
&lt;p&gt;Aim for one set of 6 reps of each exercise. Do these to start your day off or as a break between desk sessions.&lt;/p&gt;
&lt;p&gt;Your body and core will thank you.&lt;/p&gt;
&lt;p&gt;If you liked this follow me @fitfounder for more posts like these. &lt;a href=&quot;https://twitter.com/FitFounder/status/1728425101488726457&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The problem with genius is that you have to tolerate madness.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1728816886216073595&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The best way, perhaps the only way, to change others is to become an example.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1728847337139908830&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Two kinds of happiness.&lt;br /&gt;
Worldly happiness is reward from our evolutionary program.Get praise,money,drugs, sex. It busies the mind with craving &amp;amp; anxiety.&lt;br /&gt;
Internal happiness is reward from being in flow.Create, meditate, love, play. It clears the mind &amp;amp; leaves us in peace.&lt;br /&gt;
@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1729150081893548408&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Economic Facts &amp;amp; Fallacies by Sowell&lt;/p&gt;
&lt;p&gt;The best book on the real economy told without political bias. Everyone should read this book.&lt;/p&gt;
&lt;p&gt;Favorite quote:&lt;br /&gt;
“Some things are believed because they are true. But many things are believed simply because they have been asserted repeatedly.” &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1729508961714311324&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;$100M Offers by Hormozi&lt;/p&gt;
&lt;p&gt;Remember: Your problem isn’t your lack of sales, it’s that your product sucks.&lt;/p&gt;
&lt;p&gt;Favorite quote:&lt;/p&gt;
&lt;p&gt;“The degree of pain will be proportional to the price you will be able to charge.” &lt;a href=&quot;https://t.co/e77vh7bsxG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/e77vh7bsxG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1729509071856804208&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I think a life properly lived is just learn, learn, learn all the time.&amp;quot;&lt;/p&gt;
&lt;p&gt;— Charlie Munger &lt;a href=&quot;https://twitter.com/paulg/status/1729612987118256412&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;RIP Charlie Munger&lt;/p&gt;
&lt;p&gt;I&#39;ll always remember him for this talk he gave on the Psychology of Human Misjudgement.&lt;/p&gt;
&lt;p&gt;If you have an hour, it&#39;s well worth the time: &lt;a href=&quot;https://t.co/yCQVlciSQ5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/yCQVlciSQ5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BrianFeroldi/status/1729630902907465795&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianFeroldi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’re always making the best choice based on your current understanding.&lt;/p&gt;
&lt;p&gt;Don’t try to change the choice  -  change the understanding. &lt;a href=&quot;https://twitter.com/naval/status/1730079188743582083&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Living within walking distance of your friends completely transforms your quality of life. &lt;a href=&quot;https://twitter.com/naval/status/1730086239368602041&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bookmarked: How the Search Engine Works According to Leaked Documents&lt;br /&gt;
&lt;a href=&quot;https://t.co/FC9iwrZs9a&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/FC9iwrZs9a&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SEO&quot;&gt;#SEO&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Google&quot;&gt;#Google&lt;/a&gt; by @natzir9 &lt;a href=&quot;https://twitter.com/SEO/status/1730341930926535105&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SEO&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s a superpower to be interested in important things that most other people find boring. They&#39;ll do them out of duty, if they do them at all. So if you do them out of genuine interest, you&#39;ll get a lot further. &lt;a href=&quot;https://twitter.com/paulg/status/1731247771871596762&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to analyze a Balance Sheet in less than 2 minutes: &lt;a href=&quot;https://t.co/jP0CyaZ5fB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jP0CyaZ5fB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BrianFeroldi/status/1731304193204392314&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianFeroldi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I regret using Firebase at Reflect. All sorts of syncing and performance issues. &lt;a href=&quot;https://twitter.com/maccaw/status/1731344993292320976&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maccaw&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Kill Overkill&lt;/p&gt;
&lt;p&gt;Business is often seen as the art of acquisition. Acquiring talent, customers, revenue, profits, mindshare, marketshare. Building and growing requires consumption, addition, parlaying some of this into a lot of that.&lt;/p&gt;
&lt;p&gt;But the smartest businesses — the ones that tend to stick around for the long haul — know that existence is also about avoidance.&lt;/p&gt;
&lt;p&gt;Avoiding careening variable costs, avoiding getting involved with things that aren&#39;t core to your business, avoiding spending time on things that don&#39;t matter, avoiding bad investments, avoiding people who don&#39;t help you prosper, and even avoiding customers who aren&#39;t the right fit.&lt;/p&gt;
&lt;p&gt;However, there&#39;s something even more fundamental to avoid. It would be easy to call it &amp;quot;complexity&amp;quot; but that&#39;s not quite it. Complexity can be necessary, and intricacy can be quite beautiful — just stare into a Moorish mosaic and you&#39;ll know it.&lt;/p&gt;
&lt;p&gt;So complexity isn&#39;t the issue.&lt;/p&gt;
&lt;p&gt;Overkill is the issue.&lt;/p&gt;
&lt;p&gt;Avoiding overkill is the real cheat code. That&#39;s how you jump levels. It&#39;s how you make a lot more progress with a lot less effort.&lt;/p&gt;
&lt;p&gt;Overkill is the dust that settles on the stuff that took a lot of energy to build or buy, but turned out not to be necessary. The over-engineered, over-designed, over-hired, over-litigated, the over-spent, over-promised, over-deliberated.&lt;/p&gt;
&lt;p&gt;Overkill is the policy that was written but never enacted. The technology that was purchased that was never used. The seven steps that could be handled in two. The nine people in a meeting made for three. The business equivalent of the 12 bedroom house for a family of four. The cooks when you don&#39;t even have a kitchen.&lt;/p&gt;
&lt;p&gt;Overkill is using five different products to run a single project. Overkill is an seven-stage interview process that exhausts everyone involved. Overkill is acting like a company 100x your size. Overkill is buying what they bought but that you don&#39;t need. Overkill is paying thousands for something worth hundreds. Overkill is hoping that losing more will turn into a win.&lt;/p&gt;
&lt;p&gt;In our 24 years, there&#39;s nothing we&#39;ve tried to avoid more at 37signals than overkill. In the things we do, in the way we work, in the things we buy, in the things we use. And, especially, in the products we make for our ourselves and our customers. Basecamp and HEY are built to do what they need to do, in the most straightforward, elegant, and enjoyable way, and nothing more. So you can avoid overkill too.&lt;/p&gt;
&lt;p&gt;Every day is an opportunity to find just right. To toss that policy that&#39;s in the way. To slim down the stack. To sharpen things up. To eliminate the work that doesn&#39;t need to be done. To polish the scratched glass so you can see through again.&lt;/p&gt;
&lt;p&gt;Amass what you need, but ignore even more. Kill overkill. &lt;a href=&quot;https://twitter.com/jasonfried/status/1731768982997549539&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Anger is its own punishment.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1732405784623857857&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Regards from &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeCamp&quot;&gt;#TimeCamp&lt;/a&gt;. We recently had a company gathering in Wroclaw, PL. As we all work remotely, meeting our colleagues in person and enjoying a pint of beer together is a refreshing experience. We hope you&#39;re also enjoying the cheerful year-end vibe! 🍻🍰&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#timetracking&quot;&gt;#timetracking&lt;/a&gt; &lt;a href=&quot;https://t.co/ik7n2BLGs8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ik7n2BLGs8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1734265760992653693&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Obvious, the Easy, and the Possible&lt;/p&gt;
&lt;p&gt;Much of the tension in product development and interface design comes from trying to balance the obvious, the easy, and the possible. Figuring out which things go in which bucket is critical to fully understanding how to make something useful.&lt;/p&gt;
&lt;p&gt;Shouldn’t everything be obvious? Unless you’re making a product that just does one thing – like a paperclip, for example – everything won’t be obvious. You have to make tough calls about what needs to be obvious, what should be easy, and what should be possible. The more things something (a product, a feature, a screen, etc) does, the more calls you have to make.&lt;/p&gt;
&lt;p&gt;This isn’t the same as prioritizing things. High, medium, low priority doesn’t tell you enough about the problem. “What needs to be obvious?” is a better question to ask than “What’s high priority?” Further, priority doesn’t tell you anything about cost. And the first thing to internalize is that everything has a cost.&lt;/p&gt;
&lt;p&gt;Making something obvious has a cost. You can’t make everything obvious because you have limited resources. I’m not talking money—although that may be part of it too. I’m primarily talking screen real estate, attention span, comprehension, etc.&lt;/p&gt;
&lt;p&gt;Making something obvious is expensive because it often means you have to make a whole bunch of other things less obvious. Obvious dominates and only one thing can truly dominate at a time. It may be worth it to make that one thing completely obvious, but it’s still expensive.&lt;/p&gt;
&lt;p&gt;Obvious is all about always. The thing(s) people do all the time, the always stuff, should be obvious. The core, the epicenter, the essence of the product should be obvious.&lt;/p&gt;
&lt;p&gt;Beyond obvious, you’ll find easy. The things that should be easy are the things that people do frequently, but not always. It all depends on your product, and your customer, but when you build a product you should know the difference between the things people do all the time and the things they do often. This can be hard, and will often lead to the most internal debates, but it’s important to think deeply about the difference between always and often so you get this right.&lt;/p&gt;
&lt;p&gt;And finally are the things that are possible. These are things people do sometimes. Rarely, even. So they don’t need to be front and center, but they need to be possible.&lt;/p&gt;
&lt;p&gt;Possible is usually the trickiest category because the realistic list of things that should be possible will often be significantly longer than the list of things that should be obvious or easy. That means that some things on the possible list might be better off off the list completely. Instead of making them possible, maybe not making them at all is the right call.&lt;/p&gt;
&lt;p&gt;Coming to know the difference between obvious, easy, and possible takes a lot of practice, deep thinking, critical analysis, and, often, debate. It’s a constant learning process. It helps you figure out what really matters.&lt;/p&gt;
&lt;p&gt;But once you’re able to see the buckets clearly, and you begin to think about things in terms of obvious, easy, and possible instead of high, medium, and low priority, you’re on your way to building better products. &lt;a href=&quot;https://twitter.com/jasonfried/status/1734686046938628520&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“If your choices are beautiful, so too will you be.” — Epictetus &lt;a href=&quot;https://twitter.com/dailystoic/status/1735721420804722835&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;At the top of the day (or the end of the previous day), write down one thing you MUST get done that day. And do it first, as first as possible.&lt;/p&gt;
&lt;p&gt;It&#39;s OK if it&#39;s 2 minutes or 200 minutes. So long as it really needs to happen.&lt;/p&gt;
&lt;p&gt;Times 240 or 365 days, that&#39;s a lot. &lt;a href=&quot;https://twitter.com/asmartbear/status/1737395421314457756&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The reason to go out into society is to find the very few people that you actually want to spend time with. &lt;a href=&quot;https://twitter.com/naval/status/1739534011033153951&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The less things I have on my to-do list, the more productive I am.&lt;/p&gt;
&lt;p&gt;Focus. &lt;a href=&quot;https://twitter.com/TheJackBly/status/1739738040631742508&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJackBly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Devote the rest of your life to making progress.&amp;quot; — Epictetus &lt;a href=&quot;https://twitter.com/dailystoic/status/1740507980108607859&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My 23 favorite insights from 2023:&lt;br /&gt;
&lt;a href=&quot;https://t.co/oGLnRbtIap&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oGLnRbtIap&lt;/a&gt; &lt;a href=&quot;https://twitter.com/waitbutwhy/status/1740824515570233378&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;waitbutwhy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An inability to tolerate feedback is an inability to allow yourself personal growth. &lt;a href=&quot;https://twitter.com/syedbalkhi/status/1740827686753439950&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;syedbalkhi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If it’s truly a mission-driven company (e.g. Patagonia, TOMS, even Tesla), you must have the vision early, and build strategy, positioning, and plan around it, else it’s not real.&lt;/p&gt;
&lt;p&gt;And remember, most companies aren’t mission-driven. Don’t pretend, it’s fake. &lt;a href=&quot;https://twitter.com/asmartbear/status/1741549028079202628&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I will never settle.&lt;/p&gt;
&lt;p&gt;Always growing. &lt;a href=&quot;https://twitter.com/TheJackBly/status/1741566308326502644&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJackBly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being at the 95th percentile in fitness ≈ being 30 years younger. (Image via @andrewchen.) &lt;a href=&quot;https://t.co/tPj0DhZdQr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tPj0DhZdQr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1742885357685747998&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Finding PMF is a game of delayed gratification.&lt;/p&gt;
&lt;p&gt;Notion: 3 yrs&lt;br /&gt;
Airtable: 4 yrs&lt;br /&gt;
Figma: 5 yrs&lt;/p&gt;
&lt;p&gt;Don&#39;t go so fast you tire out your ability to think non-linearly.&lt;/p&gt;
&lt;p&gt;In PMF, go slower to go fast. &lt;a href=&quot;https://twitter.com/thedanigrant/status/1743292318529335618&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thedanigrant&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;80% of Brex&#39;s revenue was sourced from sales outbound. Ashley Kelly and I were responsible for the strategy that led to that outcome. On this episode of the @saastr CRO Confidential podcast we share as much as we can pack in 45 minutes on how to win with outbound sales and scaling an SDR organization. Links in the comments. &lt;a href=&quot;https://twitter.com/samdblond/status/1743336163807535385&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;samdblond&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My childhood national anthems…&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;AIRWOLF &lt;a href=&quot;https://t.co/ejD5rk1QX6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ejD5rk1QX6&lt;/a&gt; &lt;a href=&quot;https://twitter.com/wolfejosh/status/1743640498571477112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wolfejosh&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My default belief is that it&#39;s easier to build companies in large, growing markets.&lt;/p&gt;
&lt;p&gt;Any kind of company.&lt;/p&gt;
&lt;p&gt;Small companies can find niches; large companies can find enough customers paying enough money to become large.&lt;/p&gt;
&lt;p&gt;And all customers are spending money. &lt;a href=&quot;https://twitter.com/asmartbear/status/1743746484607107121&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An interesting way to divide up the world. &lt;a href=&quot;https://t.co/f4u2n6cdki&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/f4u2n6cdki&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1744004979847762425&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Here are 50 realizations that changed my life as an entrepreneur:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Startup valuation is literally a made up number&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s impossible to work with people who don’t answer texts within 24h&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The internet can be your lottery ticket or your prison sentence&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If Abercrombie &amp;amp; Fitch can rebrand (up 285% in 2023), then you can rebrand too&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Having an internet audience is still wildly underpriced&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build products that no one asks for but everyone wants&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s actually a good idea to be poor in your 20s and reinvest everything in yourself (learnings, travel, network, figuring out who you are)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Google is probably not going to “copy your startup”&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Content is your salesperson that works for you 24/7&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Look for opportunities that are low status now, but probably high status in a few years&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lifestyle businesses are still massively underrated. You can often turn them into non lifestyle business if you want&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Avoid dependency on anything. Social apps, VCs etc. Freedom is two words: self-sustaining&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Taking a break doesn’t mean you’re lazy, burn out is real&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Whatever you do, don&#39;t be mid-curve&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The only things that should change your mood are things that will change your life&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Copycats are a nuisance, not killers. They are usually mosquitoes, not sharks.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good design can’t fix a poor product. But good design can multiply a product that’s working.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People follow a journey, not a social account.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’re doing stuff you hate, you aren’t rich&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t create a startup without a &amp;quot;why now&amp;quot;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Strangers don’t want to hear about you. They want to talk about themselves or better themselves.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best negotiators talk 10% of the time, and listen 90%&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good things happen when you add value to people’s lives through content &amp;amp; community&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You could learn a lot about someone by their likes on Twitter&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;First find the niche, then learn from the community, then the startup idea will come to you&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;On hiring: if it isn’t a hell yeah, it’s a hell no. Never compromise for fit.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startups never go according to plan. There is no real plan for startups, only a direction&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best businesses are the ones that look like a movement. It needs to be an identity, not a product.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your identity is never your company ever. Your company is your business&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Change scenery 2-3x per day to be extra creative&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People always want to see behind-the-scenes&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The happiest people live pretty simple lives, not chasing more and more&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If there is an active community, there’s a business there&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Digital businesses beats any laundromat, self-storage or vending machine business (easier, better margins)&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Quick break: follow me @gregisenberg for more of this&lt;/p&gt;
&lt;ol start=&quot;35&quot;&gt;
&lt;li&gt;
&lt;p&gt;Only create 50+% margin businesses like SaaS, paid communities etc.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Cash flow over valuation any day of the week&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hire global talent. The world is bigger than NYC or Silicon Valley.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You create your own narrative. Narrative drives word-of-mouth which drives revenue which is your oxygen.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If something is sold out, customers want it 10x more. Human nature.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Diversify cash flow every year. multiple bets, multiple products&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Selling your first company is an emotional journey&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Designing rituals into your communities is what brings people back. Remind them to ‘see you tomorrow&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being around people who have a clear understanding of what they want from life is refreshing&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Competitors can copy your products, but can&#39;t copy your community&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Make friends with people in your industry. Earn their trust. on’t ask for anything for a long time. Overwhelm with value. It’ll payback.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Listen to podcasts and take notes. It’s basically like you’re sitting in the room with the world’s greatest founders and entrepreneurs&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pick a niche and make a meme page. If you understand the memes, you understand the people. Don&#39;t build until you understand the memes&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The only audience you have is the audience you own (email, texts, community etc)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There&#39;s a fine line between generalist and procrastinator&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People expect opportunities to come to them. They rarely do. Assume you&#39;re alone and go after it&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;What are some realizations you&#39;ve had as an entrepreneur, creator, maker etc?&lt;/p&gt;
&lt;p&gt;Reply or quote RT to let the people know &lt;a href=&quot;https://twitter.com/gregisenberg/status/1744020398272913770&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s not a “family,” it’s a &amp;quot;team.&amp;quot;&lt;/p&gt;
&lt;p&gt;Like a great sports team, you can care a &lt;em&gt;lot&lt;/em&gt; about the people, yet also demand performance. And you pick who is on the team, and you can give people more chances, or not, as time and energy permit. &lt;a href=&quot;https://twitter.com/asmartbear/status/1744081940632744413&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A great VP:  velocity increases in their area&lt;br /&gt;
A good VP: velocity stays constant in their area (still hard)&lt;br /&gt;
A mediocre VIP:  velocity declines&lt;br /&gt;
A bad VP: velocity falls off a cliff within a quarter&lt;/p&gt;
&lt;p&gt;You’ll know in a quarter which you just hired &lt;a href=&quot;https://twitter.com/jasonlk/status/1745107621084864883&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AIs commoditize UIs and APIs.&lt;/p&gt;
&lt;p&gt;If you talk and listen to an AI, then the Operating System UI doesn’t matter.&lt;/p&gt;
&lt;p&gt;UIs are unnecessary plumbing between users and programs.&lt;/p&gt;
&lt;p&gt;A coding AI can connect itself to any API seamlessly.&lt;/p&gt;
&lt;p&gt;APIs are unnecessary plumbing between programs. &lt;a href=&quot;https://twitter.com/naval/status/1745304473587810393&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Do your best&amp;quot; is great when the quality of the work is important, or when you derive personal satisfaction from doing great work.&lt;/p&gt;
&lt;p&gt;Its bad if the work doesn’t matter, or if important work is starved for time as a result.&lt;/p&gt;
&lt;p&gt;How to choose:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/TOBYex68A3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TOBYex68A3&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1745450945276993777&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you have an even slightly complex, slightly unusual, slightly multi-faceted, or slightly weird problem, then you are going to need, if not an extraordinary sense of agency, then at least a powerful sense of agency.&amp;quot;&lt;/p&gt;
&lt;p&gt;The rest of essay is good, too.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/UAV6FFCFgr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/UAV6FFCFgr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/patio11/status/1745469103890936235&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patio11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A busy calendar and a busy mind will destroy your ability to create anything great.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1745617842001842433&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The more seriously you take yourself, the unhappier you’re going to be.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1745920838573191489&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders typically have…&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A dislike of bureaucracy&lt;/li&gt;
&lt;li&gt;A focus on speed&lt;/li&gt;
&lt;li&gt;An obsession for growth&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Designers typically have…&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;An appreciate of process&lt;/li&gt;
&lt;li&gt;A desire to get things right first time&lt;/li&gt;
&lt;li&gt;An obsession with customer needs&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These qualities aren’t necessarily compatible. &lt;a href=&quot;https://twitter.com/andybudd/status/1746121973082533936&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andybudd&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you can’t figure out how to explain your strategy simply, clearly, even to other people at the company…&lt;/p&gt;
&lt;p&gt;…it’s likely that it’s a bad strategy, and/or you don’t understand it yourself.&lt;/p&gt;
&lt;p&gt;You could pull others in, and solve it together. &lt;a href=&quot;https://twitter.com/asmartbear/status/1747547741524238473&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If at the end of the day, you’ve corrected some major error in thinking, some decision, some understanding of the world, that’s a happy and productive day.&lt;/p&gt;
&lt;p&gt;Consider that when fighting evidence that contradicts your current assumptions. &lt;a href=&quot;https://twitter.com/asmartbear/status/1747627515995124097&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your job as CEO of a startup is to hear the harshest feedback from your customers, put your ego aside, listen, then go fix shit. &lt;a href=&quot;https://twitter.com/agazdecki/status/1747663273514983472&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s not enough to make predictions that are correct; the useful ones are bold and specific and yet turn out to be true.&lt;/p&gt;
&lt;p&gt;It turns out you can measure this — both “how accurate” and “how bold” — to evaluate forecasts.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/rLryEuAOKu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/rLryEuAOKu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1747683381461029338&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;What makes great products is not process. It&#39;s content.&amp;quot;&lt;/p&gt;
&lt;p&gt;1 minute of wisdom by Steve Jobs &lt;a href=&quot;https://t.co/KFKIkKzrpN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KFKIkKzrpN&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asanwal/status/1747684723814498637&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asanwal&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What really interesting, exciting, fun thing have you said “no” to in the past month?&lt;/p&gt;
&lt;p&gt;If the answer is “nothing,” either you’re not looking for good Ideas, or you’re not saying “no” enough. &lt;a href=&quot;https://twitter.com/asmartbear/status/1747734721310622048&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How do you get people to say difficult truths out loud?&lt;/p&gt;
&lt;p&gt;Leaders go first. You say it.&lt;/p&gt;
&lt;p&gt;You admit hard things about yourself or your decisions or the company or the competition. You show that naming truth is strength, met with gratitude and solving things together, as a team. &lt;a href=&quot;https://twitter.com/asmartbear/status/1748045265221628349&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Marcus Aurelius had a simple recipe for productivity and for happiness.&lt;/p&gt;
&lt;p&gt;“If you seek tranquility,” he said, “do less.”&lt;/p&gt;
&lt;p&gt;And then he clarifies. Not nothing, less. Do only what’s essential.&lt;/p&gt;
&lt;p&gt;“Which brings a double satisfaction: to do less, better.&amp;quot; &lt;a href=&quot;https://twitter.com/dailystoic/status/1748359829394165854&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Knowing how little you matter is very important for your own mental health and happiness.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1748381301273723286&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Though it won&#39;t feel that way at first, each and every problem you encounter is an opportunity; for that reason, it is essential that you bring them to the surface. Most people don&#39;t like to do this, especially if it exposes their own weaknesses or the weaknesses of someone they care about, but successful people know they have to. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1748409960449319334&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;HOT TAKE: buying things is significantly less exciting than it used to be.&lt;/p&gt;
&lt;p&gt;Maybe it’s just me, but I think most companies:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;have stopped making innovative, useful products&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;focused on building subscriptions&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;believe trapping customers is better than building anything truly amazing&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It’s been a VERY long time since I’ve experienced being  super excited for any product. &lt;a href=&quot;https://twitter.com/mattvanswol/status/1748429683195060719&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mattvanswol&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dear son,&lt;/p&gt;
&lt;p&gt;Be patient when becoming someone you haven’t been before.&lt;/p&gt;
&lt;p&gt;Love, dad &lt;a href=&quot;https://twitter.com/ShaanVP/status/1748487648489177117&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ShaanVP&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I’m not going to be the most successful person on the planet, nor do I want to be. I just want to be the most successful version of myself while working the least hard possible.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1748623899737137330&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Studies have repeatedly found that beards do deeply alter perception and attractiveness.&lt;/p&gt;
&lt;p&gt;Some scientists believe that beards may have played a role in attracting a mate, as they can be a sign of maturity, masculinity, and dominance.&lt;/p&gt;
&lt;p&gt;Do you think it&#39;s true?&lt;/p&gt;
&lt;p&gt;ᵀʰᵉ ᵖʰᵒᵗᵒ ᵒⁿ ᵗʰᵉ ʳⁱᵍʰᵗ ʷᵃˢ ˢˡⁱᵍʰᵗˡʸ ᵈⁱᵍⁱᵗᵃˡˡʸ ᵃˡᵗᵉʳᵉᵈ &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1748667316357750803&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sales is the entire job of a founder.&lt;/p&gt;
&lt;p&gt;Selling your product to customers.&lt;br /&gt;
Selling your mission to employees.&lt;br /&gt;
Selling your vision to investors.&lt;br /&gt;
Selling your company to partnerships.&lt;br /&gt;
Selling your story with the world.&lt;/p&gt;
&lt;p&gt;If you’re not selling at your startup:&lt;br /&gt;
You’re doing it wrong. &lt;a href=&quot;https://twitter.com/agazdecki/status/1749070670569566559&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Cynefin framework explains:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Complicated → can analyze and solve through expertise and process&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Complex → requires heuristics, adaptability, partial solutions&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Overviews:&lt;/p&gt;
&lt;p&gt;From @TaylorPearsonMe: &lt;a href=&quot;https://t.co/4h0PTEsVRz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4h0PTEsVRz&lt;/a&gt;&lt;br /&gt;
And Richard Jones: &lt;a href=&quot;https://t.co/wq9o0HamXq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wq9o0HamXq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1749121089676927178&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone in your company should be on customer calls.&lt;/p&gt;
&lt;p&gt;Sales, Support, Product interviews, events — it all counts.&lt;/p&gt;
&lt;p&gt;Even if unstructured, so long as it’s about their lives and interaction with your product &amp;amp; company.&lt;/p&gt;
&lt;p&gt;Empathy and insight comes automatically to everyone. &lt;a href=&quot;https://twitter.com/asmartbear/status/1749155063015026820&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@acquiredotcom is the Kelley Blue Book for SaaS startups. Check it out! &lt;a href=&quot;https://twitter.com/TheJamesTGraves/status/1749909833023950879&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJamesTGraves&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;86.9% of &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeCamp&quot;&gt;#TimeCamp&lt;/a&gt; users, including AI leader @aktana_inc , improved time tracking reliability in their businesses. Despite offices dispersed across the world, TimeCamp unified their time tracking. Honored to be Aktana&#39;s chosen &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeTracker&quot;&gt;#TimeTracker&lt;/a&gt;. 💪 More: &lt;a href=&quot;https://t.co/lGVxe5DObT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lGVxe5DObT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/1750082105671876819&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7 visuals every investor should memorize:&lt;/p&gt;
&lt;p&gt;1: In the long run, stocks win: &lt;a href=&quot;https://t.co/TuKcC4pUGq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TuKcC4pUGq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BrianFeroldi/status/1750151876090155380&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BrianFeroldi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Einstein once said:&lt;/p&gt;
&lt;p&gt;&amp;quot;The important thing is to keep the important thing the important thing.&amp;quot;&lt;/p&gt;
&lt;p&gt;3 proven methods to never waste your life again on unimportant tasks: &lt;a href=&quot;https://t.co/vux0DQ3pkf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vux0DQ3pkf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BRannegger/status/1750518981608210930&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BRannegger&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@asmartbear Have you ever read Obvious Adams?&lt;/p&gt;
&lt;p&gt;I read it many years ago and still think about it all the time. Basically a biz parable about just doing the obviously &#39;least bad&#39; thing over and over&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/BSUkd01bau&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BSUkd01bau&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TaylorPearsonMe/status/1750586529318342902&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TaylorPearsonMe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@asmartbear I think this article is a reasonably good counterpoint: &lt;a href=&quot;https://t.co/n1wxaUU14u&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/n1wxaUU14u&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I think it really depends on the &#39;skewness&#39; of the decision/domain.&lt;/p&gt;
&lt;p&gt;Left-skewed domains should be handled in the &amp;quot;least bad&amp;quot; way&lt;/p&gt;
&lt;p&gt;But right-skewed really does justify the hero shot. &lt;a href=&quot;https://twitter.com/TaylorPearsonMe/status/1750593468685259146&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TaylorPearsonMe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Following your genuine intellectual curiosity is a better foundation for a career than following whatever is making money right now.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1751147780188365247&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;10&quot;&gt;
&lt;li&gt;I love this story for one simple reason:&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The Silna brothers (&amp;amp; their lawyer) didn&#39;t blink when presented with a good deal.&lt;/p&gt;
&lt;p&gt;Instead, they understood the importance of ownership, had the ability to think long-term &amp;amp; held out for a GREAT deal.&lt;/p&gt;
&lt;p&gt;That ended up being worth $800M. &lt;a href=&quot;https://twitter.com/JoePompliano/status/1751281351368593855&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JoePompliano&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every time you’re tempted to say “It’s a balance,” don’t.&lt;/p&gt;
&lt;p&gt;That’s a cop-out from saying what it really is.&lt;/p&gt;
&lt;p&gt;Either it’s a tension or it’s really one over the other or it’s paradoxically both, or SOMETHING… &lt;a href=&quot;https://twitter.com/asmartbear/status/1751354281649648058&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Charisma is the ability to project confidence and love at the same time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1751359928176968049&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are always more problems to solve, than time to solve them.&lt;/p&gt;
&lt;p&gt;So, getting discouraged at the enormous pile isn’t useful.&lt;/p&gt;
&lt;p&gt;Good news: fixing even a fraction of them isn’t necessary.&lt;/p&gt;
&lt;p&gt;Deciding which one needs to fixed next, is the most important thing. &lt;a href=&quot;https://twitter.com/asmartbear/status/1754555845994525129&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start by saying what part of your strategy you would advance right now, in the absence of obstacles. Then what are the 1-2 things preventing that from happening.  Prioritize execution around the obstacles OR reducing/eliminating the obstacles.&lt;/p&gt;
&lt;p&gt;Full explanation of that is here: &lt;a href=&quot;https://t.co/7HxNw08rgn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7HxNw08rgn&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you&#39;re still not sure which obstacles/challenges are the most important, I give an ordered list in the article, repeated here:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Retention (if customers are leaving, the business model and product isn’t working)&lt;/li&gt;
&lt;li&gt;People (must have the right team)&lt;/li&gt;
&lt;li&gt;Throughput (can’t do enough strategic work per month)&lt;/li&gt;
&lt;li&gt;Growth (of the things you have direct control over)&lt;/li&gt;
&lt;li&gt;Competition&lt;/li&gt;
&lt;li&gt;Health of the code base&lt;/li&gt;
&lt;li&gt;Execution risk &lt;a href=&quot;https://twitter.com/asmartbear/status/1754569550249525348&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Complete Problem Solver is one of the best books I have read on effective problem solving. The first edition of this comprehensive book was written in 1989.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/xeFzAiRzcU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xeFzAiRzcU&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jvembuna/status/1754698774096875545&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jvembuna&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your back hurts because you have a weak core, tight hamstrings, and weak glutes.&lt;/p&gt;
&lt;p&gt;Here are 10 exercises you can do in 10 minutes to undo hours of sitting at the desk: &lt;a href=&quot;https://t.co/6clX64oIhQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6clX64oIhQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/brettboettcher1/status/1754862790563569790&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;brettboettcher1&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The latest in Customer Success:&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1/&quot;&gt;#1/&lt;/a&gt; What is &amp;quot;good&amp;quot; NPS these days?&lt;/p&gt;
&lt;p&gt;👍 35 across the entire Gainsight customer base &lt;a href=&quot;https://t.co/eVXKrZIHdA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/eVXKrZIHdA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1754966125975384535&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This stretch should be mandatory for people who sit at desks:&lt;/p&gt;
&lt;p&gt;It&#39;s called the Couch Stretch and it will change your life.&lt;/p&gt;
&lt;p&gt;Here&#39;s how you do it:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Get on all fours and put one foot up on a couch or chair and another 90 degrees in front to support.&lt;/li&gt;
&lt;li&gt;Bring one arm up and lean back until you feel tension.&lt;/li&gt;
&lt;li&gt;Hold this stretch and breathe deeply.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The further back you lean the harder the stretch gets. The more you go forward the easier it becomes. Go at your own level.&lt;/p&gt;
&lt;p&gt;When you sit for long periods your legs are stuck at bent angles for up to 8 hours a day.&lt;/p&gt;
&lt;p&gt;This causes your hip flexors to shorten by limiting their range of motion. This can create pain in the low back and hips while causing you to become weaker.&lt;/p&gt;
&lt;p&gt;The couch stretch counteracts this by mobilizing your hip flexors back to their natural range of motion.&lt;/p&gt;
&lt;p&gt;Do this every day for 30-60 seconds and watch your body feel better. &lt;a href=&quot;https://twitter.com/FitFounder/status/1755253115836657890&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@jean_twenge 4) I&#39;ve said this 100 times and might say it 100 more times.&lt;/p&gt;
&lt;p&gt;It&#39;s getting v v hard to deny that phone/social media use has coincided with a collapse in physical-world activity for young ppl—just as their anxiety and sadness has surged. &lt;a href=&quot;https://t.co/Ltn6HbyGtt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Ltn6HbyGtt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DKThomp/status/1757817565437382901&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DKThomp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You have to pick something big to work on, because it&#39;s hard to commit your life to something small.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1758396292525596858&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No amount of mediocre art adds up to good art. &lt;a href=&quot;https://twitter.com/naval/status/1758405948253818909&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Luck plays a significant role in success, but it&#39;s also about showing up and putting in the work.&lt;/p&gt;
&lt;p&gt;Your efforts create the opportunities for luck to take effect, like working hard at a startup leading to an acquisition, or showcasing talent on Dribbble leading to a job offer. &lt;a href=&quot;https://twitter.com/asmartbear/status/1758597147245625717&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Happiness is the absence of personal problems.&lt;/p&gt;
&lt;p&gt;You can remove the idea of personal, the idea of problems, or limit and solve the problems. &lt;a href=&quot;https://twitter.com/naval/status/1758686843145740728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Three things in life - your health, your mission, and the people you love. That&#39;s it.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1758820084963787238&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Often we say: “Get more done, in less time.”&lt;/p&gt;
&lt;p&gt;Think instead about how to: “Get only the important things done, in this time.&amp;quot;&lt;/p&gt;
&lt;p&gt;Starting with: What are the most important things?  Are you sure? &lt;a href=&quot;https://twitter.com/asmartbear/status/1758954725771182336&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Best books with fewer than 100 pages. Go.&lt;/p&gt;
&lt;p&gt;I’ll start:&lt;/p&gt;
&lt;p&gt;The Manual, by Epictetus&lt;br /&gt;
&lt;a href=&quot;https://t.co/2ym9FKwItM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2ym9FKwItM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonfried/status/1759433211149750591&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Writing converts your ideas from vague to bad. But once they&#39;re written down you can at least see and fix the badness. &lt;a href=&quot;https://twitter.com/paulg/status/1760023891437850905&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Best thing I&#39;ve read in a long, long time.&lt;/p&gt;
&lt;p&gt;Never stopped nodding.&lt;/p&gt;
&lt;p&gt;Good stuff, @sama. &lt;a href=&quot;https://t.co/rWP0mUVaDO&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/rWP0mUVaDO&lt;/a&gt; &lt;a href=&quot;https://twitter.com/businessbarista/status/1760051793579454480&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;businessbarista&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Psychologist Laszlo Polgar ran the most bizarre experiment on his kids.&lt;/p&gt;
&lt;p&gt;After studying 1000s of geniuses, He was sure that geniuses are made, not born.&lt;/p&gt;
&lt;p&gt;His attempt succeeded and all 3 daughters ended up as chess grandmasters.&lt;/p&gt;
&lt;p&gt;Here are his 6 tips for raising a genius: &lt;a href=&quot;https://t.co/KidHS3MSoT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KidHS3MSoT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/thenicketan/status/1760684279015850448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thenicketan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best case scenario as a product leader is to spend:&lt;br /&gt;
70% of time on L tasks &amp;amp;&lt;br /&gt;
30% of time on N &amp;amp; O tasks&lt;/p&gt;
&lt;p&gt;This is possible and you’ll feel great about your work whenever you can do that.&lt;/p&gt;
&lt;p&gt;Alas, the reality for most folks is:&lt;br /&gt;
30% of time on L tasks &amp;amp;&lt;br /&gt;
70% of time on N &amp;amp; O tasks &lt;a href=&quot;https://twitter.com/shreyas/status/1763332438976344136&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A happy person isn’t someone who’s happy all the time. It’s someone who effortlessly interprets events in such a way that they don’t lose their innate peace.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1763435245469323623&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I think the best way to prepare for the future 20 years is find something you love to do, to have a shot at being one of the best people in the world at it. Build an independent brand around it, with your name.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1763465444499792230&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;To me, the real winners are the ones who step out of the game entirely, who don’t even play the game, who rise above it. Those are the people who have such internal mental and self-control and self-awareness, they need nothing from anybody else.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1763495643346002281&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An idea I can&#39;t stop thinking about:&lt;/p&gt;
&lt;p&gt;Your team is secretly delegating work to you.&lt;/p&gt;
&lt;p&gt;And your servant leadership encourages it.&lt;/p&gt;
&lt;p&gt;Here&#39;s how to spot the monkey before you take it.&lt;/p&gt;
&lt;p&gt;40 years ago, Harvard Business Review published its most reprinted article, &amp;quot;Management Time: Who&#39;s Got the Monkey?&amp;quot;&lt;/p&gt;
&lt;p&gt;The premise is simple.&lt;br /&gt;
And most leaders fall victim to it daily.&lt;/p&gt;
&lt;p&gt;An employee comes to us, &amp;quot;We&#39;ve got a problem.&amp;quot;&lt;/p&gt;
&lt;p&gt;The manager, either out of empathy or simply being too busy to focus (or increasingly due to the asynchronous nature of our communication), says something like, &amp;quot;Let me think about it&amp;quot; or &amp;quot;I can&#39;t focus on that right now, let me get back to you.&amp;quot;&lt;/p&gt;
&lt;p&gt;And with that interaction, the employee took the monkey on their back and placed it on yours.&lt;/p&gt;
&lt;p&gt;The manager&#39;s office is soon overrun with monkeys while the employees sit idle. Patiently at first. Then, they start asking the manager for progress reports. &amp;quot;I just wanted to check in and see how you&#39;re doing.&amp;quot;&lt;/p&gt;
&lt;p&gt;Frustration grows for everyone because the entire setup is inverted.&lt;/p&gt;
&lt;p&gt;Peter Drucker said, &amp;quot;In most organizations, the bottleneck is at the top of the bottle.&amp;quot;&lt;/p&gt;
&lt;p&gt;This is why.&lt;/p&gt;
&lt;p&gt;But there&#39;s a foolproof remedy to this problem. A question that always keeps the monkey where it belongs.&lt;/p&gt;
&lt;p&gt;&amp;quot;What do you recommend?&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It reminds them they own the problem. &lt;/li&gt;
&lt;li&gt;That they&#39;re responsible for solving it. &lt;/li&gt;
&lt;li&gt;That they&#39;re empowered to take action.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And that they&#39;re leaving with the monkey.&lt;/p&gt;
&lt;p&gt;The best part?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This is how people grow. &lt;/li&gt;
&lt;li&gt;This is how they learn to take smart risks. &lt;/li&gt;
&lt;li&gt;This is how you have more time for strategic work.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you found yourself nodding along...&lt;/p&gt;
&lt;p&gt;Go give back your monkeys. &lt;a href=&quot;https://twitter.com/dklineii/status/1763542967912898603&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Observe when you’re angry—anger is a loss of control over the situation.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1763586492104855648&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Naval Ravikant: Hire high-agency people&lt;/p&gt;
&lt;p&gt;“[Hire] people who just solve problems without even being asked to solve the problem—they identify the problem, they go solve it, they don’t even necessarily have to update you every step of the way, they’re not asking silly questions, and they’re just coming up with solutions. Because building a startup is an infinite set of problems that are being thrown at you.”&lt;/p&gt;
&lt;p&gt;Source: @AngelList &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1763592515859407338&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When I joined Google in 1999, I didn&#39;t understand how it was possible to win vs much larger and better funded competitors such as Altavista, but it seemed like a good opportunity to learn.&lt;/p&gt;
&lt;p&gt;What I learned is that if you&#39;re in the lead, and you&#39;re moving faster than everyone else, then no one can ever catch up.&lt;/p&gt;
&lt;p&gt;Now the problem for Google is that it is OpenAI and Perplexity that are in the lead and moving faster.&lt;/p&gt;
&lt;p&gt;Google still has superior assets, but it&#39;s unclear if they will be able to shed the brainworms and accelerate. &lt;a href=&quot;https://twitter.com/paultoo/status/1763616814498795853&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paultoo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There&#39;s no such thing as an ideal daily routine. The best model is the one that works for you.&lt;/p&gt;
&lt;p&gt;Successful people don&#39;t keep similar schedules. Their common practice is experimenting to learn what suits them.&lt;/p&gt;
&lt;p&gt;Don&#39;t be a slave to others&#39; habits. One size doesn&#39;t fit all minds. &lt;a href=&quot;https://t.co/l1H0ak5VU3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/l1H0ak5VU3&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AdamMGrant/status/1763635417620881531&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AdamMGrant&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The ability to focus on the signal—and ignore the noise—is one of the most important attributes of a great leader. &lt;a href=&quot;https://t.co/q9XEP0CZK7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/q9XEP0CZK7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/farnamstreet/status/1763676888315126225&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;farnamstreet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are a few things I re-read every year. One is “Self Reliance” by Emerson. Here’s what stood out to me this time:&lt;/p&gt;
&lt;p&gt;There is a time in every man&#39;s education when he arrives at the conviction that envy is ignorance; that imitation is suicide; that he must take himself for better for worse as his portion; that though the wide universe is full of good, no kernel of nourishing corn can come to him but through his toil bestowed on that plot of ground which is given to him to till.&lt;/p&gt;
&lt;p&gt;A man should learn to detect and watch that gleam of light which flashes across his mind from within, more than the lustre of the firmament of bards and sages. Yet he dismisses without notice his thought, because it is his. In every work of genius we recognize our own rejected thoughts; they come back to us with a certain alienated majesty.&lt;/p&gt;
&lt;p&gt;We lie in the lap of immense intelligence, which makes us receivers of its truth and organs of its activity. When we discern justice, when we discern truth, we do nothing of ourselves, but allow a passage to its beams.&lt;/p&gt;
&lt;p&gt;I must be myself. I cannot break myself any longer for you, or you. If you can love me for what I am, we shall be the happier. If you cannot, I will still seek to deserve that you should.&lt;/p&gt;
&lt;p&gt;Insist on yourself; never imitate. Your own gift you can present every moment with the cumulative force of a whole life&#39;s cultivation; but of the adopted talent of another you have only an extemporaneous half possession.&lt;/p&gt;
&lt;p&gt;The force of character is cumulative. &lt;a href=&quot;https://twitter.com/patrick_oshag/status/1763957254007423417&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrick_oshag&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Whenever possible when building a new product or doing a startup, you want to be doing something that would not have been technically possible even a couple year prior. AI is so exciting is because there are endless opportunities that could not have been done before. &lt;a href=&quot;https://twitter.com/levie/status/1763990141365084210&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do devs still create little tools or scripts that address dev pain points and/or make them and the rest of the team more productive? This has been super commonplace during my career, but I almost never see this anymore. Everyone is too busy working on user stories. 🫤 &lt;a href=&quot;https://twitter.com/anerdguynow/status/1764013413557301440&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anerdguynow&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A happy, calm, and peaceful person will make better decisions.&lt;/p&gt;
&lt;p&gt;So if you want to operate at peak performance, you have to learn how to tame your mind.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1764129570519683166&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;John Fowles explains in &amp;quot;The Aristos&amp;quot; (1964) how high IQ can subvert your will to act: &amp;quot;High intelligence leads to multiplicity of interest and a sharpened capacity to foresee the consequences of any action. Will is lost in a labyrinth of hypothesis.&amp;quot; Rule 1: Do not lose the will &lt;a href=&quot;https://t.co/fdGCmyj2cX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fdGCmyj2cX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/oldbooksguy/status/1764294385934414056&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;oldbooksguy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hooks, Towel Bars, and Software&lt;/p&gt;
&lt;p&gt;Strangely, a recent bathroom renovation crystalized my perspective on product development.&lt;/p&gt;
&lt;p&gt;When being asked to choose between towel hooks or a towel bar, the choice was obvious: Hooks, of course.&lt;/p&gt;
&lt;p&gt;Hooks take up no space. Towel bars suck up space.&lt;/p&gt;
&lt;p&gt;Hooks hold towels no matter how you place them. Towel bars require towels to be balanced lest they slide off.&lt;/p&gt;
&lt;p&gt;Towels naturally look good and drape well on hooks. Towels on bars require effort to display well.&lt;/p&gt;
&lt;p&gt;Hooks can hold anything with a loop or a bend or a catch — loofas, shower caps, etc. Towel bars can’t hold nearly as much, even though they take up much more space.&lt;/p&gt;
&lt;p&gt;Hooks can hold multiple towels at once, with enough air getting to multiple layers because of the uneven ridges that single point hanging creates. Towel bars layer wet towels, leaving ones at the bottom or middle struggling to dry.&lt;/p&gt;
&lt;p&gt;You can’t mount a hook crookedly. You can absolutely mount a towel bar unevenly.&lt;/p&gt;
&lt;p&gt;Reasons go on.&lt;/p&gt;
&lt;p&gt;But what do towel hooks have to do with product development? For me, just about everything. They’re a frame, they’re a lens, they’re aspirational. A hook holds more than towels — it holds lessons in how to build.&lt;/p&gt;
&lt;p&gt;We aim to make hooks. I want our products full of hooks. Simple, flexible, you-can’t-do-it-wrong hooks. Hooks that just work, no fuss.&lt;/p&gt;
&lt;p&gt;When working on new products, new features, and improving existing stuff, I’m visualizing the “hook-ness” of what we&#39;re building. Making small, flexible features with minimal surface area that can be used intuitively in obvious ways without the possibility of doing it wrong. That’s the magic formula, that’s our model.&lt;/p&gt;
&lt;p&gt;The unassuming, humble hook is a brilliant thing. The hook is a high bar. &lt;a href=&quot;https://twitter.com/jasonfried/status/1764395676832825409&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Picking the right direction to go in is way more important than how hard you work.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1764432315378495588&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;They stopped using it.&lt;br /&gt;
Find out why before they churn.&lt;br /&gt;
Retention is growth.&lt;/p&gt;
&lt;p&gt;—PMF haiku &lt;a href=&quot;https://twitter.com/asmartbear/status/1765045107600851178&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Improve the quality of your information, improve the quality of your thinking. &lt;a href=&quot;https://t.co/qStrVJPICB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qStrVJPICB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/farnamstreet/status/1765139027215151377&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;farnamstreet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If they spend 10 minutes in your app and accomplished a lot, that’s the best.&lt;/p&gt;
&lt;p&gt;If they spend 10 minutes because they can’t figure out how to do something, then abandon, they might cancel soon.&lt;/p&gt;
&lt;p&gt;So, “time in app” is not a good metric, by itself.&lt;/p&gt;
&lt;p&gt;“Valuable actions” is best. &lt;a href=&quot;https://twitter.com/asmartbear/status/1765316648427302987&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why brand matters in B2B.&lt;/p&gt;
&lt;p&gt;This one simple little graphic says it all.&lt;/p&gt;
&lt;p&gt;Brand will help you win deals.&lt;/p&gt;
&lt;p&gt;Brand gets you out of the feature wars.&lt;/p&gt;
&lt;p&gt;Brand means you&#39;re not battling over a 4.6 vs. 4.7 rating on G2.&lt;/p&gt;
&lt;p&gt;Brands means the sales team isnt grasping at straws to articulate how you&#39;re different.&lt;/p&gt;
&lt;p&gt;Without a brand, people will buy:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;The product they&#39;ve bought before (it&#39;s safer, they&#39;ve used it before)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The product that&#39;s cheaper (it&#39;s safer, it doesn&#39;t break the bank) &lt;a href=&quot;https://twitter.com/davegerhardt/status/1765360329360326693&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;davegerhardt&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the future, with AI, the best software interface will be the absent one.&lt;/p&gt;
&lt;p&gt;The one that doesn&#39;t make you click, touch, swipe...and curse. &lt;a href=&quot;https://twitter.com/dharmesh/status/1765429949865824628&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do not use your energy to worry. Use your energy to believe, to create, to learn, to think and to grow. &lt;a href=&quot;https://twitter.com/ProfFeynman/status/1765692641855881470&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ProfFeynman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Don’t spend your time making other people happy. Other people being happy is their problem. It’s not your problem. If you are happy, it makes other people happy.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1765704699653804342&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Value your time. It is all you have.&lt;/p&gt;
&lt;p&gt;It’s more important than your money.&lt;br /&gt;
It’s more important than your friends.&lt;br /&gt;
It is more important than anything.&lt;/p&gt;
&lt;p&gt;Your time is all you have.&lt;br /&gt;
Do not waste your time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1765795296574083102&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One important commonality between generational CEOs like Mark Zuckerberg, Bill Gates, Steve Jobs, and Jeff Bezos is their ability to leverage product reviews to grill product owners in an effort to establish a consistently high Standard of Performance across the organization.&lt;/p&gt;
&lt;p&gt;Bill Walsh, legendary Silicon Valley exec coach, talks a lot about the importance of doing exactly that. &lt;a href=&quot;https://t.co/93lCNkcPAc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/93lCNkcPAc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/sachinrekhi/status/1765800093599572420&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sachinrekhi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The source of wisdom is pain.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1765856198031749390&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Peter Thiel: &amp;quot;To make money you have to do two things: (1) create something of value to the world, and (2) capture some fraction of the value you create.&amp;quot; &lt;a href=&quot;https://t.co/KFRqCKXfV1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KFRqCKXfV1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zfellows/status/1766057314694434982&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zfellows&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If I had to pick one magic pill for marketing success it would be this:&lt;/p&gt;
&lt;p&gt;Differentiation.&lt;/p&gt;
&lt;p&gt;What makes your product or service stand out.&lt;/p&gt;
&lt;p&gt;If you cut all my budget and I needed to figure out how to grow the business, I would spend all of my efforts here. &lt;a href=&quot;https://twitter.com/davegerhardt/status/1766139574651150392&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;davegerhardt&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Product Discovery activities by risk.&lt;/p&gt;
&lt;p&gt;This isn&#39;t supposed to be an &#39;ultimate list&#39; or &#39;must do&#39;&lt;/p&gt;
&lt;p&gt;I created it as a guide to help give you an idea of some of the discovery activities that you might do depending on what you need to test - you still need to work out what to test! &lt;a href=&quot;https://t.co/QiO1oYq7TD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/QiO1oYq7TD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ant_murphy/status/1766238463735615847&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ant_murphy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Time is the ultimate currency and I should have been more tight fisted with it.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1766424442006102501&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Creativity is usually observed when constraints meet someone with ability to bend rules with insane force and will. &lt;a href=&quot;https://twitter.com/kunalb11/status/1767104029291925557&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is a dangerous mindset that founders need to avoid:&lt;/p&gt;
&lt;p&gt;All you need is a good product and it will sell itself.&lt;/p&gt;
&lt;p&gt;At the beginning, one of my biggest misconceptions as an engineer turned founder was thinking that your product is your only competitive advantage. I never stopped to think that sales could be a competitive advantage.&lt;/p&gt;
&lt;p&gt;In the early days at AppDynamics, we managed to grow to several million dollars in annual revenue, primarily by landing a few big accounts like Netflix. But a fellow CEO pointed out the obvious: If we ever hoped to cross the $100 million threshold someday, we needed to get scientific about sales.&lt;/p&gt;
&lt;p&gt;For other founders who want to embark on a sales education, here are some steps I took:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Accept that sales actually matter. Once a company starts growing, sales, marketing and distribution are as important as the product itself.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Commit to learning — If a software engineer can learn programming, they can learn sales. That said, I won&#39;t sugarcoat it — learning sales is a years-long process and isn&#39;t something you figure out in a day.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Study the competition — I studied companies similar to mine that were 3-5 years ahead: How did that company run its sales process, and what kind of salespeople did it recruit?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lean on experts — We were fortunate to have hired John McMahon, a top authority on enterprise software sales, for weekly whiteboard sessions. Eventually, I also hired a VP of Sales which was one of the best decisions I made as a founder.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Sales should never be an afterthought and while this education requires significant time investment, it&#39;s well worth it. &lt;a href=&quot;https://twitter.com/jyotibansalsf/status/1767193751544312166&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jyotibansalsf&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’ve always wondered how CEOs run billion-dollar companies and thought &amp;quot;Could I do that?&amp;quot;&lt;/p&gt;
&lt;p&gt;Then I learned from a friend at Salesforce how Marc Benioff does it with his executive team, and it blew my mind how simple it was.&lt;/p&gt;
&lt;p&gt;Here’s how he does it:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Each team leader submits a plan (grow 20% is Benioff’s metric)&lt;/li&gt;
&lt;li&gt;If you’re hitting the plan, meet once a quarter.&lt;/li&gt;
&lt;li&gt;If you’re missing the plan, meet once a week (until you hit the plan)&lt;/li&gt;
&lt;li&gt;Ask: What got done? What worked? What didn’t work? How do we know it worked?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;A BILLION DOLLAR company running a playbook so simple you can run it with a small team. &lt;a href=&quot;https://twitter.com/jspujji/status/1767517948359430638&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;startups looking to sell into the enterprise&lt;br /&gt;
please read this . . .&lt;/p&gt;
&lt;p&gt;enterprise sales have a grueling,&lt;br /&gt;
long buying process&lt;br /&gt;
for a VERY specific reason.&lt;/p&gt;
&lt;p&gt;larger companies create (by design)&lt;br /&gt;
internal buying friction to filter out anything&lt;br /&gt;
that doesn&#39;t have strong motivation behind it&lt;/p&gt;
&lt;p&gt;you must unlock and align&lt;br /&gt;
with an exec(s) top priority otherwise, it&#39;s not worth&lt;br /&gt;
their time and energy&lt;/p&gt;
&lt;p&gt;remember, most deals die before OR in procurement&lt;/p&gt;
&lt;p&gt;project manage the sh*t out of the deal with&lt;br /&gt;
weekly check-ins &lt;a href=&quot;https://twitter.com/jjen_abel/status/1767560861248364571&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jjen_abel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Forward head posture &amp;amp; rounded shoulders are widespread in modern society.&lt;/p&gt;
&lt;p&gt;This can be associated with stiff shoulders and necks.&lt;/p&gt;
&lt;p&gt;But 99% of people try to fix this with exercises that address the surface-level problem (muscles) rather than the root cause.&lt;/p&gt;
&lt;p&gt;Here’s what to do: &lt;a href=&quot;https://twitter.com/Conor_Harris_/status/1767648282959044814&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Conor_Harris_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;So @Atlassian  has rocketed to $3B+ ARR (wow!), growing 31%+ (wow!) -- and is profitable.&lt;/p&gt;
&lt;p&gt;That&#39;s about as good as it gets in SaaS!!&lt;/p&gt;
&lt;p&gt;But &amp;gt;how&amp;lt; did it scale?&lt;/p&gt;
&lt;p&gt;The secrets here from CRO Cameron Deatsch: &lt;a href=&quot;https://t.co/abNFeGItqE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/abNFeGItqE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1767683739860050374&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Some of the most creative and productive people I have ever met work in multi-week bursts and then have weeks where they just idle with little done. It’s the nature of the human animal.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1767818376909344774&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The measure of wealth is freedom.&lt;br /&gt;
The measure of health is lightness.&lt;br /&gt;
The measure of intellect is judgment.&lt;br /&gt;
The measure of wisdom is silence.&lt;br /&gt;
The measure of love is peace.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1767848827875147991&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founder 1: builds an okay product but focuses on sales and talking to customers thus finding product market fit faster&lt;/p&gt;
&lt;p&gt;Founder 2: builds the best product in the entire market for years in stealth mode and hopes customers will randomly find them&lt;/p&gt;
&lt;p&gt;Be the first startup founder. &lt;a href=&quot;https://twitter.com/agazdecki/status/1767888380686409990&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I finally figured out how to skip daily stand-ups&lt;/p&gt;
&lt;p&gt;I made an AI clone that knows what I&#39;m doing all day, listens to audio with whisper, and responds with a language model.&lt;/p&gt;
&lt;p&gt;Here is a sneak peek of Jarley in a real life meeting: &lt;a href=&quot;https://t.co/q0yFKZYfhc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/q0yFKZYfhc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/charlieholtz/status/1767942817337512339&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;charlieholtz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nothing kills good copywriting quite like an exclamation point. &lt;a href=&quot;https://twitter.com/davegerhardt/status/1767972109102272749&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;davegerhardt&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to clarify a concept you can&#39;t articulate:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Change mediums. Draw it. Photograph it. Sing it.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Change levels. Explain what is one level up (bigger picture) or one level down (finer details).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Change fields. What would this concept look like in different fields? &lt;a href=&quot;https://twitter.com/JamesClear/status/1768326067062723064&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I was talking to a founder yesterday and we both agreed that their initial product should be cheap, hackable, and slightly ugly. How different these are from the goals a big company would have. And yet this is the seed big companies grow from. &lt;a href=&quot;https://twitter.com/paulg/status/1768344326638014686&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What if you weren’t allowed to offer tech support.&lt;/p&gt;
&lt;p&gt;How would this force your product to be self-explanatory?&lt;/p&gt;
&lt;p&gt;Extremes can lead to improvements that benefit customers and improve the product.&lt;/p&gt;
&lt;p&gt;More ideas:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/359FvqphPb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/359FvqphPb&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1768996399423578316&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Supplements every man should be taking:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Fish oil&lt;/li&gt;
&lt;li&gt;Vitamin D&lt;/li&gt;
&lt;li&gt;B12 if vegetarian&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For everything else, analyze your diet first and see if you need it. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1769204557316251738&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What do people die from at different ages?&lt;/p&gt;
&lt;p&gt;I hadn’t seen a satisfying chart that showed causes of death in different age groups all at once, so I just made it myself.&lt;/p&gt;
&lt;p&gt;Turns out, in the US, “external causes” are a majority of deaths until ~age 40&lt;br /&gt;
&lt;a href=&quot;https://t.co/BXoNQ4mut7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BXoNQ4mut7&lt;/a&gt; &lt;a href=&quot;https://t.co/xdKR52huTk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xdKR52huTk&lt;/a&gt; &lt;a href=&quot;https://twitter.com/salonium/status/1769305920561897663&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;salonium&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to tie a tie&lt;/p&gt;
&lt;p&gt;[📹 leone.cuordileone]&lt;br /&gt;
&lt;a href=&quot;https://t.co/5h0l3uFc0a&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5h0l3uFc0a&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1769356831921471897&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Devote the rest of your life to making progress.&amp;quot; — Epictetus &lt;a href=&quot;https://twitter.com/dailystoic/status/1769363073830449390&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some people are focused on daily tasks while others are focused on their goals and how to achieve them. I&#39;ve found these differences to be quite similar to the differences between people who are intuitive vs. sensing. Those who tend to focus on goals and &amp;quot;visualize&amp;quot; best can see the big pictures over time and are also more likely to make meaningful changes and anticipate future events. These goal-oriented people can step back from the day-to-day and reflect on what and how they&#39;re doing. They are the most suitable for creating new things (organizations, projects, etc.) and managing organizations that have lots of change. They typically make the most visionary leaders because of their ability to take a broad view and see the whole picture.&lt;/p&gt;
&lt;p&gt;In contrast, those who tend to focus on daily tasks are better at managing things that don&#39;t change much or that require processes to be completed reliably. Task-oriented people tend to make incremental changes that reference what already exists. They are slower to depart from the status quo and more likely to be blindsided by sudden events. On the other hand, they&#39;re typically more reliable. Although it may seem that their focus is narrower than higher-level thinkers, the roles they play are no less critical. I would never have gotten Principles: Life &amp;amp; Work out or accomplished hardly anything else worthwhile if I didn&#39;t work with people who are wonderful at taking care of details. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1769389213898682586&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Instead of “Now / Next / Later”&lt;/p&gt;
&lt;p&gt;what about “Now / Probable / Possible.”&lt;/p&gt;
&lt;p&gt;You’re still communicating roughly the same thing, but with correct level of commitment. &lt;a href=&quot;https://twitter.com/asmartbear/status/1769442081230004261&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why is SF so compelling for tech founders? The energy matters — good energy begets good energy.&lt;/p&gt;
&lt;p&gt;@harjtaggar describes sharing an office with @ev when Odio became Twitter, and bumping into @RonConway and getting instant introductions to everyone they needed to talk to &lt;a href=&quot;https://t.co/zuOdc4NKVO&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zuOdc4NKVO&lt;/a&gt; &lt;a href=&quot;https://twitter.com/garrytan/status/1769449373019316448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;garrytan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s very useful to have these unaligned models to resume pre-training on / align yourself. &lt;a href=&quot;https://twitter.com/Suhail/status/1769472892667109384&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your kid’s device is NOT the problem.&lt;/p&gt;
&lt;p&gt;My daughter was 5 years old when she started building a healthy relationship with her devices.&lt;/p&gt;
&lt;p&gt;She did that WITHOUT parent-imposed screen time restrictions. Here’s how:&lt;/p&gt;
&lt;p&gt;👇 &lt;a href=&quot;https://twitter.com/nireyal/status/1769704060393803931&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nireyal&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We explained as simply as we could that screen time comes at the expense of other things like time with Mom and Dad or playing at the park.&lt;/p&gt;
&lt;p&gt;We also shared that smart people designed her favorite apps to keep her hooked. You may think all of this was too much for a 5-year-old, but she understood.&lt;/p&gt;
&lt;p&gt;This laid the foundation for fixing her relationship with her device.&lt;/p&gt;
&lt;p&gt;Equipped with this information, she was now able to make informed decisions about her screen usage and enforce her OWN rules.&lt;/p&gt;
&lt;p&gt;This is the critical piece. It is your kid’s job to know when to stop. You need to give them enough information to empower them to make those decisions.&lt;/p&gt;
&lt;p&gt;Then, you take a risk…&lt;/p&gt;
&lt;p&gt;👇 &lt;a href=&quot;https://twitter.com/nireyal/status/1769704063191433635&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nireyal&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Probably the most important book to read in your 30s. &lt;a href=&quot;https://t.co/WBmtf6leSX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WBmtf6leSX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/prateek1793/status/1769791169930637602&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;prateek1793&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Making a big spreadsheet of weights and values is not a good way of making a decision.&lt;/p&gt;
&lt;p&gt;With Binstack, you convert complex decisions into a stack-ranked, and then binary choice, which you can then explain.&lt;/p&gt;
&lt;p&gt;Here’s how:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/BJKzC69kpe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BJKzC69kpe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1769796418212884671&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When we got the idea for Box in 2004, we researched all the ways you could store and share files online and found literally none had a modern approach. It was like discovering a secret hiding in plain sight. When you find one of these, throw everything you’ve got at it. &lt;a href=&quot;https://twitter.com/levie/status/1769930552352940489&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I practice Transcendental Meditation and believe that it has enhanced my open-mindedness, higher-level perspective, equanimity, and creativity. &lt;a href=&quot;https://t.co/OMmcKRbWGg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OMmcKRbWGg&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It helps slow things down so that I can act calmly even in the face of chaos, just like a ninja in a street fight. I&#39;m not saying that you have to meditate in order to develop this perspective; I&#39;m just passing along that it has helped me and many other people and I recommend that you seriously consider exploring it. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1770178287211630938&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Btw, you don&#39;t need a Flipper Zero to &amp;quot;hack&amp;quot; dumb radio protocols. The piece of wire is enough.&lt;/p&gt;
&lt;p&gt;Check out how to receive and decode 433MHz radio signal just with a PC sound card. &lt;a href=&quot;https://t.co/9zLN2pMnoY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9zLN2pMnoY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/flipper_net/status/1770459769452589468&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;flipper_net&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You time is the ultimate zero-sum game.&lt;/p&gt;
&lt;p&gt;If you work on P for an hour, you&#39;re not working on Q.&lt;/p&gt;
&lt;p&gt;So, prioritization is of paramount importance, and whiling away a useless hour is prohibitively expensive.&lt;/p&gt;
&lt;p&gt;Except, rest and creativity and daydreaming generates ideas and well-being. &lt;a href=&quot;https://twitter.com/asmartbear/status/1771082639820136788&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@asmartbear Guard your time.&lt;/p&gt;
&lt;p&gt;Every day get done the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; most important task then make room for the rest. &lt;a href=&quot;https://twitter.com/OranAITech/status/1771108941243506850&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;OranAITech&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@asmartbear Agree, Jason. It makes ruthless prioritization a top skill to build because everything is a trade off. &lt;a href=&quot;https://twitter.com/Pam_Rubin1/status/1771156633751605531&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Pam_Rubin1&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Based on everything I’ve seen, a simple recipe can work: focus on what’s in front of you, design great days to create a great life, and try not to make the same mistake twice. That’s it. If you really want extra credit, try not to be a dick, and you’ll be a Voltron-level superstar.&lt;/p&gt;
&lt;p&gt;The secret to winning any game lies in not trying too hard.&lt;/p&gt;
&lt;p&gt;Feeling as though you are trying too hard indicates that your priorities, technique, focus, or mindfulness is off. Take it as a cue to reset, not to double down. And take comfort in the fact that, whenever in doubt, the answer is probably hidden in plain sight.&lt;/p&gt;
&lt;p&gt;What would this look like if it were easy?&lt;/p&gt;
&lt;p&gt;In a world where nobody really knows anything, you have the incredible freedom to continually reinvent yourself and forge new paths, no matter how strange.&lt;/p&gt;
&lt;p&gt;Embrace your weird self.&lt;/p&gt;
&lt;p&gt;There is no one right answer . . . only better questions. &lt;a href=&quot;https://twitter.com/tferriss/status/1771268255455347164&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If an organization wants to shift to product teams (empowered to drive outcomes) they need to structure them so each team includes the necessary skills and abilities required to build and deliver customer value.&amp;quot; - @‌trixiemaru&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/TUFisoa8BU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TUFisoa8BU&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ux&quot;&gt;#ux&lt;/a&gt; (via @‌ttorres) &lt;a href=&quot;https://t.co/thrN5IrJZ4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/thrN5IrJZ4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ttorres/status/1771282459641938252&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ttorres&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The main lesson in software is to go after markets that are artificially constrained by bad tech. When you build something far simpler or more integrated than was offered before, you will invariably expand the market size by an order of magnitude. &lt;a href=&quot;https://twitter.com/levie/status/1771393443216142482&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way”&lt;/p&gt;
&lt;p&gt;The smartest people talk simply&lt;/p&gt;
&lt;p&gt;This is why online writers are becoming so stupidly wealthy.&lt;/p&gt;
&lt;p&gt;Cheat code to the universe: simplicity&lt;/p&gt;
&lt;p&gt;Take complexity. Make it simple. &lt;a href=&quot;https://twitter.com/Tim_Denning/status/1771479508949815313&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tim_Denning&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My 3 management non-negotiables:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Clear expectations&lt;/li&gt;
&lt;li&gt;Weekly 1:1 meetings&lt;/li&gt;
&lt;li&gt;Consistent feedback&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Looking back on 20 years of leading teams, I can track 90% of issues back to skipping one of these.&lt;/p&gt;
&lt;p&gt;💡Clear Expectations&lt;/p&gt;
&lt;p&gt;Everyone wants to win. They need to know:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;How you&#39;re keeping score (the What)&lt;/li&gt;
&lt;li&gt;What rules they&#39;re expected to follow (the How)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;No one can meet your secret expectations.&lt;/p&gt;
&lt;p&gt;💡One-on-Meetings&lt;/p&gt;
&lt;p&gt;Highly engaged stars need three things:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Impact (Does my work matter?)&lt;/li&gt;
&lt;li&gt;Development (How can I get better?)&lt;/li&gt;
&lt;li&gt;Support (Can you get me unstuck?)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Done well, you can hit all three in 30 minutes a week.&lt;/p&gt;
&lt;p&gt;💡Consistent Feedback&lt;/p&gt;
&lt;p&gt;We all have distorted self-images.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You need to help the self-critic catch themselves winning&lt;/li&gt;
&lt;li&gt;You need to help the over-confident uncover their blind spots&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Minor corrections compound into major improvements. Withheld feedback grows into mistrust like cancer.&lt;/p&gt;
&lt;p&gt;The harsh truth is that you pay the same price whether you do these or not.&lt;/p&gt;
&lt;p&gt;Skip them, and you pay the cost of cleaning up messes at the end.&lt;/p&gt;
&lt;p&gt;Do them, and you invest upfront in high performance.&lt;/p&gt;
&lt;p&gt;If you found this helpful, please repost and follow @dklineii for more like it. &lt;a href=&quot;https://twitter.com/dklineii/status/1771494524885336133&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As a Director on dozens of boards, I’ve seen:&lt;/p&gt;
&lt;p&gt;Operational excellence adds millions in profits.&lt;/p&gt;
&lt;p&gt;My 19 traits of top 1% performing businesses 🧵… &lt;a href=&quot;https://twitter.com/girdley/status/1771510965223538754&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;girdley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Leaders set deadlines, and they’re mostly met.&lt;/p&gt;
&lt;p&gt;If the company meets all deadlines, I worry we’re sandbagging.&lt;/p&gt;
&lt;p&gt;If we never meet deadlines, something is wrong. &lt;a href=&quot;https://twitter.com/girdley/status/1771510986392166819&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;girdley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;🎭 From Darwin to Nietzsche, great minds have long recognized the link between movement and creativity. Now, science backs it up: brief bouts of aerobic exercise can spark novel ideas and connections. 🧗🌈&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/nKoZvURzaf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nKoZvURzaf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1771522355480637556&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Former Google CEO Eric Schmidt: The greatest products have almost always been designed for the benefit of the people actually building them &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1771549948078612720&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The only way to win a power struggle in a relationship is to refuse to compete. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1771884696814690776&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;After watching Dune Pt. 1 and 2 I am convinced I need to start reading Science Fiction.&lt;/p&gt;
&lt;p&gt;Sci-Fi Twitter, I need your help.&lt;/p&gt;
&lt;p&gt;What are some great Sci-Fi series for beginners like myself? &lt;a href=&quot;https://twitter.com/marketplunger1/status/1771913332015964422&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;marketplunger1&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The anti-smartphone movement will be one of the biggest movements of our time. It&#39;s just getting started... &lt;a href=&quot;https://t.co/1zrgwp0PPt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/1zrgwp0PPt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/gregisenberg/status/1771920534940401822&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10-15% bodyfat is the golden range. This is where you will feel high energy, great mood, look cut, high testosterone, and live long. &lt;a href=&quot;https://twitter.com/TheJackBly/status/1771975526187463148&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJackBly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Different surfaces, different acoustics&lt;/p&gt;
&lt;p&gt;[📹 noisy_sauce]&lt;br /&gt;
&lt;a href=&quot;https://t.co/uNemAEbBSm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/uNemAEbBSm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1771975602389815374&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In January, I turned 38.&lt;/p&gt;
&lt;p&gt;I&#39;ll probably die in about 17,824 days (ChatGPT&#39;s best guess).&lt;/p&gt;
&lt;p&gt;Here&#39;s a list of 38 things I&#39;ve learned over the last 13,952 days of my life so far:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re nice to someone, they&#39;ll probably be nice back.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Criticizing someone&#39;s ideas will only cause them to double down.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Find out what someone loves to talk about, then ask them questions about it. They will light up.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People generally do what they&#39;re incentivized to do.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If someone seems upset, repeat back what they just said. They will usually calm down.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t let people you dislike give you gifts or do favors for you. You&#39;ll feel like you owe them something and end up inadvertently helping them.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone is too busy thinking about themselves to notice the pimple on your nose.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every time you say something out loud, your brain pounds it in a little further. Be careful what you say.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If someone gossips with you, they&#39;re probably gossiping about you with others.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone other than your closest friends and family subconsciously want to see you fall in the mud. It&#39;s not intentional, it&#39;s human nature: the nail that sticks up gets hammered down.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t tell, storytell.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You will want the things your ten closest friends want. Choose friends accordingly.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The things with the greatest mental payoff are generally the same things that would have made a hunter gatherer happy: exercise, being in nature, laughing with friends, sex and companionship, eating delicious food, focusing on a task, watching your kids play.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Humility always wins over extravagance. Don&#39;t count your poker chips at the table.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nobody wants to hear about how bad your day is going.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Be nice to people on your way up. You might meet them again on your way down.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Half of having friends is just being reliable. Say &amp;quot;yes&amp;quot; at least 70% of the time. Be on time. Respond to texts and calls.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Leave some money on the table. You don&#39;t need the last dollar.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want to get invited to cool parties and dinners? Host them.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Beware of people who are rude to waiters and service staff.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Email people you admire. Sometimes they&#39;ll respond and good things will happen.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best way to avoid mistakes is to read about the mistakes of others.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Planning is usually just guessing.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bad sleep, bad life.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Never expect people to change. They rarely do.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Alcohol and drugs are like an elastic band. The harder you pull it up, the harder it will whip back down the other way and hurt you.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Think of psychopaths and narcissists like poisonous spiders. You don&#39;t want them anywhere near you, especially not in your bedroom.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Take off your sunglasses when you meet people.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Always default to picking up the bill, especially if you can afford it.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Whales only get harpooned when they surface. If you don&#39;t want to get harpooned, stay quiet.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ideas are like tiny embers. They require immediate oxygen to turn into a fire. Take action.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t judge old people for having views you disagree with. In a few decades, your liberal views will seem conservative, and that will be you.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Going back thousands of years, every generation thinks the next generation is weak and the world is doomed. Keep that in mind when you read the news.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When a child is upset, get down to their level, validate their feelings, and touch their face with the palm of your hand. Works with adults too.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When writing emails, less is always more. Most people don&#39;t read past the first sentence. If worried about appearing too brusque, use a smiley face :-)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every personal strength is shadowed by a corresponding weakness. In yourself and others. Accept and work with this.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There&#39;s no such thing as problems, only people problems.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The days are long, but the years are short. Especially with kids. &lt;a href=&quot;https://twitter.com/awilkinson/status/1772309667500408938&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Avoid the trap of thinking you have something to lose.&amp;quot;&lt;br /&gt;
~ Steve Jobs&lt;/p&gt;
&lt;p&gt;Today&#39;s doodles &lt;a href=&quot;https://t.co/2U2BotzPVl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2U2BotzPVl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/rmnth/status/1772358748725469528&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rmnth&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Companies kill their own messaging over time.&lt;/p&gt;
&lt;p&gt;4 bad habits seep in as they grow.&lt;/p&gt;
&lt;p&gt;Here&#39;s the breakdown: &lt;a href=&quot;https://t.co/1NKobq6Z3g&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/1NKobq6Z3g&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aakashg0/status/1772370582715425070&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aakashg0&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Real progress starts when customers actually use the product, not you’re building it alone.&lt;/p&gt;
&lt;p&gt;If it takes longer than 4 months, you’re not serious about shipping.&lt;/p&gt;
&lt;p&gt;Here’s a full roadmap from “idea” to “PMF”:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/v0MPmVHHFB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/v0MPmVHHFB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1772942905658708189&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to appear more confident by eliminating “insecure vibes”:&lt;/p&gt;
&lt;p&gt;I&#39;ve accidentally given off insecure vibes when I really wanted something to work out, but wasn&#39;t sure if it would.&lt;/p&gt;
&lt;p&gt;First, what are insecure vibes?&lt;/p&gt;
&lt;p&gt;Insecure vibes are subconscious clues and signals you might be giving off when you&#39;re feeling anxious, nervous, or uncertain.&lt;/p&gt;
&lt;p&gt;The worst part is your worries might become a self-fulfilling prophecy because...&lt;/p&gt;
&lt;p&gt;-&amp;gt; You appear nervous&lt;br /&gt;
-&amp;gt; The other person picks up on it&lt;br /&gt;
-&amp;gt; You get more nervous&lt;br /&gt;
-&amp;gt; They start doubting you&lt;br /&gt;
-&amp;gt; Which makes you more nervous&lt;/p&gt;
&lt;p&gt;Insecure vibes often look like overcompensating. For example:&lt;/p&gt;
&lt;p&gt;A long diatribe, when a short and warm response giving the benefit of the doubt would have been more effective.&lt;/p&gt;
&lt;p&gt;Assuming the person will say no before you even start. You load up on caveats instead of focusing on persuading your recipient. You talk fast because you want to get everything out.&lt;/p&gt;
&lt;p&gt;Insisting on email or Slack when you know a phone call is better. Deep down, you know when you should just hop on a call. But you’re nervous about messing it up, and you’d rather avoid confrontation.&lt;/p&gt;
&lt;p&gt;Over-explaining because you expect the other person to be skeptical. You bring up counterpoints to arguments no one has mentioned.&lt;/p&gt;
&lt;p&gt;To get rid of insecure vibes, ask yourself:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Could this be interpreted as sounding defensive?&lt;/li&gt;
&lt;li&gt;Am I overcompensating or overexplaining?&lt;/li&gt;
&lt;li&gt;How would I respond on my best day?&lt;/li&gt;
&lt;li&gt;Would I say this if I felt secure?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Get rid of insecure vibes—and your writing, meetings, presentations, negotiations, and pitches will become stronger. &lt;a href=&quot;https://twitter.com/wes_kao/status/1773008277074293017&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wes_kao&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You know what would be great for America?  Rebuilding it in 6 months. Hard, but good for moral. And cost $50M and not $2B. Prove we can still make things.&lt;/p&gt;
&lt;p&gt;We won’t, of course, but I wandered to say it out loud. &lt;a href=&quot;https://t.co/MrADdjHGKt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MrADdjHGKt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1773095949197328406&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To succeed, you don&#39;t have to get everything right.&lt;/p&gt;
&lt;p&gt;You can get a lot of things wrong.&lt;/p&gt;
&lt;p&gt;You just have to get a few of the right things right. &lt;a href=&quot;https://twitter.com/dharmesh/status/1773169265819971799&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Success is when you no longer have to play the game.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1773255453302030585&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We started having a &amp;quot;Family Meeting&amp;quot; two years ago.&lt;/p&gt;
&lt;p&gt;It runs like an EOS meeting:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Good news share from each&lt;/li&gt;
&lt;li&gt;Process issues&lt;/li&gt;
&lt;li&gt;Review week&#39;s calendar&lt;/li&gt;
&lt;li&gt;Adjourn&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Best 30 minutes of the week.&lt;/p&gt;
&lt;p&gt;What do you want to know? &lt;a href=&quot;https://twitter.com/girdley/status/1773341641618677904&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;girdley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“The responsibility of a society is to reduce misery, not to increase happiness.”&lt;/p&gt;
&lt;p&gt;RIP Danny Kahneman—a paragon of intellectual integrity, humility, and curiosity&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/aiLWAmK3mZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/aiLWAmK3mZ&lt;/a&gt; &lt;a href=&quot;https://t.co/sJlkxIAGFc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sJlkxIAGFc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AdamMGrant/status/1773363502201127051&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AdamMGrant&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Whenever I make an investment decision, I observe myself making it and think about the criteria I used. I ask myself how I would handle another one of those situations and write down my principles for doing so. Then I turn them into algorithms. I have gotten in the habit of doing it for all my decisions.&lt;/p&gt;
&lt;p&gt;Algorithms are principles in action on a continuous basis. I believe that systemized, evidence-based decision making will radically improve the quality of management. Human managers process information spontaneously using poorly thought-out criteria and are unproductively affected by their emotional biases. These all lead to suboptimal decisions. Imagine what it would be like to have a machine that processes high-quality data using high-quality decision-making principles/criteria. Like the GPS in your car, it would be invaluable, whether you follow all of its suggestions or not. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1773385773359730958&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tons of distribution before product/market fit can create false hope for a team. Founders who do this don’t understand how important product/market fit is but tend to think that distribution is a path to fit. It isn’t. &lt;a href=&quot;https://twitter.com/hnshah/status/1773737692364456075&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Someone leaked the cold email strategy of a $83,333/mo SAAS on Reddit.&lt;/p&gt;
&lt;p&gt;And it’s actually genius…&lt;/p&gt;
&lt;p&gt;You need to see this: &lt;a href=&quot;https://twitter.com/yassin_baum/status/1774553668202779025&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;yassin_baum&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Invert, always invert” said Charlie Munger for many decades.&lt;/p&gt;
&lt;p&gt;Meaning:&lt;/p&gt;
&lt;p&gt;What would be a terrible investment? A terrible strategy?  Now: Do the opposite of that.&lt;/p&gt;
&lt;p&gt;Something like that might actually work for startups:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/bzuQWIEQVr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/bzuQWIEQVr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1775205306504552532&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My mother would have been 90 today. She was an interesting person and an extraordinarily good mother. The most useful bit of parenting advice I&#39;ve heard is something she told me. &amp;quot;All you have to do is love them and show them the world.&amp;quot; &lt;a href=&quot;https://t.co/PSvfM0gb4W&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PSvfM0gb4W&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1775527078915400146&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most meaningful relationships are achieved when you and others can speak openly to each other about everything that&#39;s important, learn together, and understand the need to hold each other accountable to be as excellent as you can be. When you have such relationships with those you work with, you pull each other through challenging times; at the same time, sharing challenging work draws you closer and strengthens your relationships. This self-reinforcing cycle creates the success that allows you to pursue more and more ambitious goals. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1775906106302214497&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I always prefer ordinary voice calls to Zoom calls. Zoom calls are much more work, because you have to think about what your body is doing and not just what your voice is doing. And you have to stay put; you can&#39;t pace like you can on a voice call. &lt;a href=&quot;https://twitter.com/paulg/status/1776118665869492698&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The more you’re attached to your idea (the product, the UX, the feature, the target customer, the market, the competitor, the differentiation, the price, the tech stack, the name, the colors), the less you can notice when it’s wrong.&lt;/p&gt;
&lt;p&gt;Hold everything lightly. &lt;a href=&quot;https://twitter.com/asmartbear/status/1776154057297567997&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you have constructive feedback, it’s not rude to speak up. It&#39;s unkind to stay silent.&lt;/p&gt;
&lt;p&gt;Honesty is the highest form of flattery. It signals that you respect their ability to handle the truth.&lt;/p&gt;
&lt;p&gt;Don&#39;t deprive people of the opportunity to learn. Offering ideas is an act of care. &lt;a href=&quot;https://twitter.com/AdamMGrant/status/1776276807035088910&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AdamMGrant&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s essentially impossible for your 10x employees to work with your 1x employees&lt;/p&gt;
&lt;p&gt;They get 100x more done by Friday, and they don&#39;t the time or patience to wait for the 1x to catch up&lt;/p&gt;
&lt;p&gt;If you are going to have both, you almost have to keep them separate &lt;a href=&quot;https://twitter.com/jasonlk/status/1776317343888712030&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Guard your time. Forget the money.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1776363180954202301&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;New study ranks the habits that could add decades to your lifespan:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Exercise&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stay connected&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sleep more&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stress less&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Avoid smoking, opioids, binge drinking&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Eat plants&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/RxqfE4FFM2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/RxqfE4FFM2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1776459909191581800&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can tell a great story in three simple steps:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Setup - set context, show the backstory&lt;/li&gt;
&lt;li&gt;Conflict - something happens and things change&lt;/li&gt;
&lt;li&gt;Resolution - closure after the conflict &lt;a href=&quot;https://twitter.com/davegerhardt/status/1776960720279588957&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;davegerhardt&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#MondayMotivation&quot;&gt;#MondayMotivation&lt;/a&gt; &lt;a href=&quot;https://t.co/UlGUIgUW5N&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/UlGUIgUW5N&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kunalb11/status/1777247795952615785&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The difference between successful people and very successful people is that very successful people say no to almost everything.&lt;/p&gt;
&lt;p&gt;—Warren Buffett &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1777298294948991299&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When I&#39;m living a good day, what am I spending my time on? Do the sources of information I am exposed to each day support that type of lifestyle or distract from it? &lt;a href=&quot;https://twitter.com/JamesClear/status/1777313715357995498&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What goes around, comes around.&lt;/p&gt;
&lt;p&gt;Same sales message as I had at Smart Bear, 20 years later.   😆&lt;/p&gt;
&lt;p&gt;(This time with AI) &lt;a href=&quot;https://t.co/suRfI7gcCr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/suRfI7gcCr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1777361611080053192&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;what is charisma? &lt;a href=&quot;https://t.co/uOVLn2Gky9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/uOVLn2Gky9&lt;/a&gt; &lt;a href=&quot;https://twitter.com/anuatluru/status/1777371743797047785&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anuatluru&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’ll look at the contract again only if things go badly, not when it goes well.&lt;/p&gt;
&lt;p&gt;That’s why it’s important to have pre-decided everything while y’all were sober and friendly, using lawyers to run down all the corner cases.&lt;/p&gt;
&lt;p&gt;DO NOT operate with someone else without one! &lt;a href=&quot;https://twitter.com/asmartbear/status/1777374096017256484&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most of your problems are not actually problems. They are discomforts.&lt;/p&gt;
&lt;p&gt;Discomfort is not the problem—on the contrary, it’s usually the cost of the solution. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1777408821322801304&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Humans aren’t evolved to worry about everything happening outside of their immediate environment.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1777410079152619546&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life is not to be measured in time,&lt;br /&gt;
but moments. &lt;a href=&quot;https://t.co/AhkeYiqRHB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AhkeYiqRHB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BRannegger/status/1777410761834315796&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BRannegger&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I split problems into two groups: muddy puddles and leaky ceilings.&lt;/p&gt;
&lt;p&gt;Some problems are like muddy puddles. The way to clear a muddy puddle is to leave it alone. The more you mess with it, the muddier it becomes. Many of the problems I dream up when I&#39;m overthinking or worrying or ruminating fall into this category. Is life really falling apart or am I just in a sour mood? Is this as hard as I&#39;m making it or do I just need to go workout? Drink some water. Go for a walk. Get some sleep. Go do something else and give the puddle time to turn clear.&lt;/p&gt;
&lt;p&gt;Other problems are like a leaky ceiling. Ignore a small leak and it will always widen. Relationship tension that goes unaddressed. Overspending that becomes a habit. One missed workout drifting into months of inactivity. Some problems multiply when left unattended. You need to intervene now.&lt;/p&gt;
&lt;p&gt;Are you dealing with a leak or a puddle?&amp;quot;&lt;/p&gt;
&lt;p&gt;--@JamesClear &lt;a href=&quot;https://twitter.com/asmartbear/status/1777419889998766168&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You have to earn trust over time.&lt;/p&gt;
&lt;p&gt;By definition: Seeing that I do what I say I will do, or that I tell the truth.&lt;/p&gt;
&lt;p&gt;What you can give instantly is “benefit of the doubt.”&lt;/p&gt;
&lt;p&gt;“Trust, but verify.” &lt;a href=&quot;https://twitter.com/asmartbear/status/1777790085351555468&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I’m not going to be the most successful person on the planet, nor do I want to be. I just want to be the most successful version of myself while working the least hard possible.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1778682211543183404&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Something I taught 15 yo: In everyday life, big decisions often occur mixed together with small ones. If you&#39;re not careful you&#39;ll tend to give them equal weight. So separate decisions as much as you can. There are many techniques for doing this. &lt;a href=&quot;https://twitter.com/paulg/status/1778761443111821810&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg Personal approach is just asking a series of questions:&lt;/p&gt;
&lt;p&gt;Is this decision going to matter a week from now? A month from now? A year from now? 10 years from now?&lt;/p&gt;
&lt;p&gt;But the little decisions do add up, can’t use this as an excuse to let the small things slide &lt;a href=&quot;https://twitter.com/anufella/status/1778780506064122273&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anufella&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;So @samdblond has one of the most stellar track records in sales.&lt;/p&gt;
&lt;p&gt;💳 $0 ➡️ $400M+ ARR at Brex&lt;/p&gt;
&lt;p&gt;👥 $0 ➡️ $70M+ ARR at Zenefits&lt;/p&gt;
&lt;p&gt;🖊️ $12M ARR (&amp;amp; Profitable) at EchoSign&lt;/p&gt;
&lt;p&gt;My 6 key takeaways 👇 &lt;a href=&quot;https://t.co/OBRtjTQAh5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OBRtjTQAh5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/HarryStebbings/status/1778786686392013283&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;HarryStebbings&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I made a prompt to write ads in the same style as Apple.&lt;/p&gt;
&lt;p&gt;Prompt is too long, copy-paste it below: &lt;a href=&quot;https://t.co/F35AIVPiIj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/F35AIVPiIj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RubenHssd/status/1778793509257892207&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RubenHssd&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;First timer&#39;s guide to working directly with a CEO:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Meet your deadlines.&lt;/li&gt;
&lt;li&gt;Be positive.&lt;/li&gt;
&lt;li&gt;Raise your hand for help.&lt;/li&gt;
&lt;li&gt;Be transparent and don&#39;t hide stuff.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;That is it. &lt;a href=&quot;https://twitter.com/jasonlk/status/1778794351851614309&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Like everything in life, if you are willing to make the short-term sacrifice, you’ll have the long-term benefit. &#39;Easy choices, hard life. Hard choices, easy life.&#39;”&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1778833709803725245&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’m only 53 but 3 things come to mind:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;“It never gets easier, you only go faster”—Things never slow down, they only change so don’t wait for “someday” to build a great, sustainable life. This is one thing my wife &amp;amp; I got right.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s critical to maintain what I call “The 3 Lives”: Your life as an individual, your life as a couple, and your life as a family. Too many people sacrifice one or more after having kids and it’s a recipe for trouble. Boundaries are everything!&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Take occasional extended breaks / sabbaticals—This is one of my few regrets and it’s a huge flaw in America’s workaholic culture. There’s never a good time to do it—you have to make it happen. &lt;a href=&quot;https://twitter.com/Camp4/status/1778839509515301017&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Camp4&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The ability to identify and ignore bullshit is one of the most underrated and important skills of our era. &lt;a href=&quot;https://twitter.com/jayvanbavel/status/1778977490721034561&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jayvanbavel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is Richard Morgan.&lt;/p&gt;
&lt;p&gt;He&#39;s a 93-year-old four time world rowing champion who has the fitness levels of a 40 year old.&lt;/p&gt;
&lt;p&gt;Scientists studied him to find out his secrets to delaying the aging process.&lt;/p&gt;
&lt;p&gt;Here&#39;s what they found: &lt;a href=&quot;https://t.co/RGhP9LQg9A&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/RGhP9LQg9A&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FitFounder/status/1779165010687594837&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lesson &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#2&quot;&gt;#2&lt;/a&gt; - Healthy body fat levels&lt;/p&gt;
&lt;p&gt;Richard is 5&#39;3, 131 lbs, which puts him in the normal range for BMI.&lt;/p&gt;
&lt;p&gt;His body fat was recorded at 15.4% through a bioimpedance scan.&lt;/p&gt;
&lt;p&gt;While the body fat may not be accurate it&#39;s still impressive for someone his age. &lt;a href=&quot;https://t.co/4bGAzVBiqV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4bGAzVBiqV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FitFounder/status/1779165026080653455&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FitFounder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Value your time. It is all you have. It’s more important than your money. It’s more important than your friends. It is more important than anything. Your time is all you have. Do not waste your time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1779479213155749899&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Of course you procrastinate or even justify never doing the things you don’t like to do.&lt;/p&gt;
&lt;p&gt;So, whenever you’re doing that with, say, marketing and sales, ask yourself:&lt;/p&gt;
&lt;p&gt;Is this 𝘳𝘦𝘢𝘭𝘭𝘺 not a good use of my time, or am I just avoiding? &lt;a href=&quot;https://twitter.com/asmartbear/status/1779776930444607885&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;UI/UX Tip ⚡️&lt;/p&gt;
&lt;p&gt;Avoid using general links such as &amp;quot;Lear more&amp;quot;, &amp;quot;Click here&amp;quot; and so on.&lt;/p&gt;
&lt;p&gt;Use descriptive links, since it&#39;s better in many aspects, starting from accessibility ending with SEO and overall user experience. &lt;a href=&quot;https://t.co/e900CO7vhw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/e900CO7vhw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/vponamariov/status/1780564029565460958&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;vponamariov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;m convinced everyone aged 30+ needs to watch this exchange between longevity experts Peter Attia &amp;amp; Andrew Huberman.&lt;/p&gt;
&lt;p&gt;Understanding this may extend your lifespan by 10 years.&lt;/p&gt;
&lt;p&gt;Let me explain in simple language 👇: &lt;a href=&quot;https://t.co/R8i47DyAjf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/R8i47DyAjf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/seanpk/status/1780597469195489448&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;seanpk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you feel overwhelmed—good. It means you’re pushing your limits.&lt;/p&gt;
&lt;p&gt;If you feel emotional—good. It means you’ve found something deeply important.&lt;/p&gt;
&lt;p&gt;If you feel uncertain—good. It means you’re learning. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1780598844763304385&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Wow, they turned my 293 page book into a 7 minute video! This is a really compelling telling of how the phone-based childhood replaced the play-based childhood, and what we must do now. Thanks @kiteandkeymedia!&lt;br /&gt;
@LetGrowOrg &lt;a href=&quot;https://twitter.com/JonHaidt/status/1780762722440733025&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JonHaidt&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My speaking skills have definitely improved since I started getting on AirChat and then starting my podcast.&lt;/p&gt;
&lt;p&gt;I&#39;ve gotten a lot more confident in my speaking and capable of streaming long chains of thought together.&lt;/p&gt;
&lt;p&gt;More: &lt;a href=&quot;https://t.co/g7gIf5G8xH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/g7gIf5G8xH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nivi/status/1781040792909549888&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nivi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Peter Thiel: &amp;quot;What I think people like Zuckerburg or Musk or Jeff Bezos at Amazon have in common is that they’re relentless. They don’t stop. Every day, they start over, do more, get better at it. People often ask whether Facebook was just a fluke, in the right place at the right time.&lt;/p&gt;
&lt;p&gt;But I think the more you get to know Mark or founders like him, the less plausible it becomes. And that’s, in part, because you can see how hard he works, how much planning it was, how much of a vision there was from the very beginning.&amp;quot; &lt;a href=&quot;https://twitter.com/BUILD_OR_DIE/status/1781193495761322221&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BUILD_OR_DIE&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Over-complicating everything is a sure sign that you’re stuck in your head. The mind wants to grand schemes and elaborate systems. It loves tedious itty-bitty details that end up being a distraction from the main point. But true wisdom is almost always simple &amp;amp; straightforward. &lt;a href=&quot;https://twitter.com/david_perell/status/1781311562520695173&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;‘People are frugal in guarding their personal property; but as soon as it comes to squandering time they are most wasteful of the one thing in which it is right to be stingy.” | Seneca &lt;a href=&quot;https://twitter.com/dailystoic/status/1781321864524255507&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There&#39;s an old Chinese proverb that sums it up:&lt;/p&gt;
&lt;p&gt;&amp;quot;Eat until you are eight parts (out of ten) full, and you will live long.&lt;/p&gt;
&lt;p&gt;Eat until you are nine parts full, and you invite disease.&amp;quot;&lt;/p&gt;
&lt;p&gt;In other words, the first 80% of your meal sustains you. The last 20% sustains your doctor. &lt;a href=&quot;https://t.co/GiwwJWtm62&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GiwwJWtm62&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timrevenueflow/status/1781329510165881244&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timrevenueflow&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Daniel Dennett (28th March 1942 - 19th April 2024)&lt;/p&gt;
&lt;p&gt;RIP&lt;/p&gt;
&lt;p&gt;Dennett on how to criticise wisely &lt;a href=&quot;https://t.co/wdOtG2o9l0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wdOtG2o9l0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/rmnth/status/1781456043136139619&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rmnth&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your life can either be a German weather report or a Greek weather report.&lt;/p&gt;
&lt;p&gt;Be the Greeks.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/dp5lyzOWBv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/dp5lyzOWBv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/girdley/status/1781597436999254181&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;girdley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2/ Focus on ONE goal&lt;/p&gt;
&lt;p&gt;One of the biggest lessons I learned from working directly under Mark Zuckerberg was this:&lt;/p&gt;
&lt;p&gt;Pick ONE goal… then focus relentlessly on reaching it.&lt;/p&gt;
&lt;p&gt;Mark’s goal was 1 billion users on Facebook. &lt;a href=&quot;https://twitter.com/noahkagan/status/1781682081648594990&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;noahkagan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;According to American psychiatrist Dr. David R. Hawkins, at the root of all fear is the fear of death, once that fear is overcome all other fear vanishes (Hawkins, 2005).&lt;/p&gt;
&lt;p&gt;&amp;quot;Near-death experiences, characteristically transformative in their effect, have frequently allowed people to experience the energy level between 540 and 600.&amp;quot;&lt;/p&gt;
&lt;p&gt;— Dr. David R. Hawkins, 𝘛𝘩𝘦 𝘔𝘢𝘱 𝘰𝘧 𝘊𝘰𝘯𝘴𝘤𝘪𝘰𝘶𝘴𝘯𝘦𝘴𝘴 𝘌𝘹𝘱𝘭𝘢𝘪𝘯𝘦𝘥, &lt;a href=&quot;https://t.co/r1CxcjjvPc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/r1CxcjjvPc&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;☆ &lt;a href=&quot;https://twitter.com/covertress/status/1781706567433252936&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;covertress&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;ScreenAI is a Vision-Language Model (VLM) developed by Google AI that can comprehend both user interfaces (UIs) and infographics.&lt;/p&gt;
&lt;p&gt;It&#39;s wild — capable of tasks like graphical question-answering, element annotation, summarization, navigation, and UI-specific QA. &lt;a href=&quot;https://t.co/vZgR9cgweV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vZgR9cgweV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/hey_madni/status/1781718275656925600&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hey_madni&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop thinking of your failures as failures and start thinking of them as learning opportunities.&lt;/p&gt;
&lt;p&gt;See the difference it&#39;ll make over the long term. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1781888132448665676&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The happy warrior. Don&#39;t mistake that smile for weakness. &lt;a href=&quot;https://t.co/9xxQC9EPJh&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9xxQC9EPJh&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1782728338361962867&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;5 questions every manager should ask their direct reports:&lt;/p&gt;
&lt;p&gt;Link: &lt;a href=&quot;https://t.co/Z9keFmUNSE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Z9keFmUNSE&lt;/a&gt; &lt;a href=&quot;https://t.co/qERaLD9vj2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qERaLD9vj2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1782758150375915783&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to make an impact in your first 90 days&lt;/p&gt;
&lt;p&gt;25 quick wins ideas from some of my favorite product/growth leaders in tech including @ElenaVerna @geoffintech @julesdwalt @MadhavanSF @clairevo @jiaonazhang and more&lt;/p&gt;
&lt;p&gt;Link to post by @poyark in thread 👇 &lt;a href=&quot;https://t.co/HDq8erl5EK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HDq8erl5EK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lennysan/status/1782805644799836590&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I got 25/36 on this facial expression reading test. I was curious how Jessica would do, so I sent it to her. She got 36/36. She really is the social radar. (via @markessien)&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/7QQaR9xupB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7QQaR9xupB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1782875262855663691&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Aristotle was a big believer in walking.&lt;/p&gt;
&lt;p&gt;Not just Aristotle — Steve Jobs, Virginia Woolf, Nikola Tesla too.&lt;/p&gt;
&lt;p&gt;If you walk less than 60 minutes per day, open this: &lt;a href=&quot;https://t.co/RsIFdxDQVa&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/RsIFdxDQVa&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timrevenueflow/status/1783141365905490403&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timrevenueflow&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A big fan of Work at Startup by @ycombinator (hats off to the @rchoi !!) We posted a new job two days ago and got hundreds of applicants pretty fast. Quan is great but also it&#39;s the best vetting layer to make sure incoming talents love startups. &lt;a href=&quot;https://t.co/spFWR9dsu3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/spFWR9dsu3&lt;/a&gt; &lt;a href=&quot;https://twitter.com/chunonline/status/1783607826612662679&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;chunonline&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Product/market fit is not just the prerequisite for growth, it is the fuel that powers all sustainable growth efforts.” — @SeanEllis &lt;a href=&quot;https://t.co/9CDvYgi4Xu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9CDvYgi4Xu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SeanEllis/status/1783618741668049400&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SeanEllis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start Small and Monopolize&lt;/p&gt;
&lt;p&gt;Forget jumping into a sea of competition.&lt;/p&gt;
&lt;p&gt;Thiel advises starting in a small, manageable market you can dominate and expand from there. &lt;a href=&quot;https://t.co/RKLm3TmPFV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/RKLm3TmPFV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timothyluong/status/1783873856840835105&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timothyluong&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the worst kinds of businesses is one that sells something to a price sensitive consumer.&lt;/p&gt;
&lt;p&gt;My nightmare business is a software company that creates software for school teachers to help them manage their class schedule.&lt;/p&gt;
&lt;p&gt;Why? Because the ultimate customer is a teacher. Teachers don’t make much money, and are often price conscious. They also have to pay for it out of pocket.&lt;/p&gt;
&lt;p&gt;A big ticket software purchase for a teacher might be $9.99 per month.&lt;/p&gt;
&lt;p&gt;Software of the same complexity, in a different niche, for somebody who uses it to make a lot of money, could cost 100x the price. And usually they just throw it on a corporate credit card. They rarely pay for it themselves. Total price insensitivity.&lt;/p&gt;
&lt;p&gt;Example:&lt;/p&gt;
&lt;p&gt;Imagine if you instead made a simple software tool that helped hedge fund employees analyze a certain type of trade.&lt;/p&gt;
&lt;p&gt;Or a niche tool that helped companies file some annoying government form that would deliver a $25,000 tax benefit.&lt;/p&gt;
&lt;p&gt;Nobody wakes up and thinks “I want to start that.” It’s freaking boring. And that’s why it’s a good business. You have a customer who will pay a large amount of money for you to solve their problem because it enables them to make far more, plus you have no competition.&lt;/p&gt;
&lt;p&gt;Business on easy mode vs. hard mode. &lt;a href=&quot;https://twitter.com/awilkinson/status/1783977367544967435&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In large organizations compliance is often rewarded more than success.  Founders should avoid the challenges of large organizations for as long as possible. &lt;a href=&quot;https://twitter.com/mwseibel/status/1784394378372579572&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mwseibel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ul&gt;
&lt;li&gt;Read 1 hour a day&lt;/li&gt;
&lt;li&gt;Write 1 hour a day&lt;/li&gt;
&lt;li&gt;Train 1 hour a day&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This will change your life for the better. &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1785043932587458769&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@mwseibel agree. this is from a memo we wrote when we were just getting started &lt;a href=&quot;https://t.co/iptix3PwkZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iptix3PwkZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/awwstn/status/1785283118041354540&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awwstn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Love is what remains when all other emotions are gone.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1785648615215485423&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to design almost any UI element.&lt;/p&gt;
&lt;p&gt;A curated list of 61 articles 👇 &lt;a href=&quot;https://twitter.com/vponamariov/status/1785696999800467595&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;vponamariov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the beginning, start out small— find the one narrow thing that you can do well, and carve out something that&#39;s great. &lt;a href=&quot;https://t.co/AISn8csejs&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AISn8csejs&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ycombinator/status/1785752681937768593&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ycombinator&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Today&#39;s @stratechery interview with @alighodsi was super interesting. Definitely worth the read. Here&#39;s his answer to what he&#39;s learned becoming an accidental CEO. Like 25 years of blog posts in 3 paragraphs. &lt;a href=&quot;https://t.co/KwfszbATPt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KwfszbATPt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/modestproposal1/status/1786073952684532063&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;modestproposal1&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What&#39;s a book that changed your life?&lt;/p&gt;
&lt;p&gt;Not subtly, I&#39;m talking about the lightning strikes &lt;a href=&quot;https://twitter.com/the_wilderless/status/1786105476981182753&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;the_wilderless&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Funny, true, and @jjen_abel would probably enjoy it also. &lt;a href=&quot;https://twitter.com/asmartbear/status/1786374951366185283&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’re better off owning an average business in a growing market than a well run business in a shrinking market. &lt;a href=&quot;https://twitter.com/girdley/status/1786395033127530734&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;girdley&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’re never going to be perfect—there is no such thing. You’re human. So instead, aim for progress, even the smallest amount. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1786425572761174459&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The enemy for most &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#startups&quot;&gt;#startups&lt;/a&gt; isn&#39;t competition, it&#39;s confusion. The easiest thing for a prospect to do is nothing. If you talk and they leave confused, they will just write off the wasted half-hour and move one.&amp;quot;&lt;/p&gt;
&lt;p&gt;Dave Kellog (@Kellblog) in &lt;a href=&quot;https://t.co/40TOCQHKnW&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/40TOCQHKnW&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#positioning&quot;&gt;#positioning&lt;/a&gt; &lt;a href=&quot;https://twitter.com/skmurphy/status/1786490724667584884&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;skmurphy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Instead of just “hiring the smartest people” for your startup, focus on building a team that avoids drama, trusts each other, communicates frequently, and truly makes each other better at their roles. &lt;a href=&quot;https://twitter.com/agazdecki/status/1786507299458293903&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The clear thinking comes from having time to reflect and to pursue your genuine intellectual curiosity.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1786861859322347705&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I consistently close sales in 30-minute Zoom meetings&lt;/p&gt;
&lt;p&gt;Steal my format:&lt;/p&gt;
&lt;p&gt;2 Min: Small talk&lt;br /&gt;
↳ &amp;quot;Where are you today?&amp;quot; etc&lt;/p&gt;
&lt;p&gt;2 Min: Magic question&lt;br /&gt;
↳ &amp;quot;What led you to take this meeting?&amp;quot; It&#39;s magic because they tell you why they need you.&lt;/p&gt;
&lt;p&gt;5 Mins: Your story&lt;br /&gt;
↳ People love stories, esp founder stories. Tell them why your product/company/service exits.&lt;/p&gt;
&lt;p&gt;5 Min: Show, don&#39;t tell&lt;br /&gt;
↳ Share your screen and do a demo.&lt;/p&gt;
&lt;p&gt;5 Min: Their questions&lt;br /&gt;
↳ Their questions are a critical signal of interest.&lt;/p&gt;
&lt;p&gt;5 Min: Your discovery&lt;br /&gt;
↳ You&#39;re asking about their issues, decision process, etc.&lt;/p&gt;
&lt;p&gt;5 Min: Next steps&lt;br /&gt;
↳ Lock in what happens next, even book the next meeting. &lt;a href=&quot;https://twitter.com/jspujji/status/1787135668184871140&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jspujji&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;CSS is overcomplicated for the same reason that medieval philosophy is: it starts from a lie. Medieval philosophers were trying to reconcile observation with scripture. CSS is trying to separate content from  presentation. &lt;a href=&quot;https://twitter.com/paulg/status/1787145833802060089&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start in a small TAM to build a strong foundation and reputation.&lt;/p&gt;
&lt;p&gt;To expand from there, leverage your existing strengths and customer insights, ensuring that each new segment aligns with your overarching business strategy.&lt;/p&gt;
&lt;p&gt;How:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/PaddbfaVoA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PaddbfaVoA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1787471132569780332&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;when people ask me why i am the way i am i should really just show them the notes my dad wrote me growing up &lt;a href=&quot;https://t.co/oeln2K9JRV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oeln2K9JRV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/isabelunraveled/status/1787471757873394162&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;isabelunraveled&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tuesday wisdom from @morganhousel &lt;a href=&quot;https://t.co/chXaakbH2z&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/chXaakbH2z&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1787815126151622919&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I&#39;m about 2x more productive when I avoid wheat, alcohol, and meetings.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1787830995862888467&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why do startups raise so much darn money?&lt;/p&gt;
&lt;p&gt;⏩Many reasons, but &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; is competition&lt;/p&gt;
&lt;p&gt;The more competitive the space, the less organic growth alone gets you there, and the more overwhelming a space with sales and marketing helps you pull ahead &lt;a href=&quot;https://twitter.com/jasonlk/status/1787903472743907485&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A related post here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/6vhwgKnZUZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6vhwgKnZUZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1787910222100709849&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Yes, bad, really.&lt;br /&gt;
&lt;a href=&quot;https://t.co/rvicpONNIV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/rvicpONNIV&lt;/a&gt;. by @alicegcallahan&lt;br /&gt;
More on this later today &lt;a href=&quot;https://t.co/SNzVNuFiZo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SNzVNuFiZo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/EricTopol/status/1788326098679603417&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;EricTopol&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Customers do not care about:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;how awesome your startups features are&lt;/li&gt;
&lt;li&gt;what tech stack you use&lt;/li&gt;
&lt;li&gt;buzzwords they don’t even understand&lt;/li&gt;
&lt;li&gt;how scalable your servers are&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;They just care about how you will solve their painful problems. &lt;a href=&quot;https://twitter.com/agazdecki/status/1788913117264830859&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@IAmMarkManson @morganhousel People prefer unhappiness over uncertainty. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1788959031517745246&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;you get rewarded in proportion to the size of the problems that you are able to solve - but how do you get better at solving problems? &lt;a href=&quot;https://t.co/vzvOTx0DYc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vzvOTx0DYc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/prakhesar/status/1789015747366396268&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;prakhesar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;John Fowles explains in &amp;quot;The Aristos&amp;quot; (1964) how high IQ can subvert your will to act: &amp;quot;High intelligence leads to multiplicity of interest and a sharpened capacity to foresee the consequences of any action. Will is lost in a labyrinth of hypothesis.&amp;quot; Rule 1: Do not lose the will &lt;a href=&quot;https://t.co/HFyTLXm4Bh&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HFyTLXm4Bh&lt;/a&gt; &lt;a href=&quot;https://twitter.com/oldbooksguy/status/1789030775712600171&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;oldbooksguy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/Eez4LThjYr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Eez4LThjYr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1789083033833775476&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everything complicates over time if you don’t fight for simplicity. &lt;a href=&quot;https://twitter.com/TheStoicEmperor/status/1789355101100114405&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmperor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The number of people living in extreme poverty fell by ~100,000 yesterday.&lt;/p&gt;
&lt;p&gt;(This has been true every day since 1990, on average.) &lt;a href=&quot;https://twitter.com/pronounced_kyle/status/1789381423633453505&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;pronounced_kyle&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;My definition of wisdom is knowing the long-term consequences of your actions.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1789421475256000670&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is a &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#book&quot;&gt;#book&lt;/a&gt; worth re-reading several times. Highly, highly recommend.&lt;/p&gt;
&lt;p&gt;The author is a professor and professional poker player, so she understands the inherent randomness in the world and how to grapple with it while making important decisions in life. &lt;a href=&quot;https://t.co/pVY3Jpi065&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pVY3Jpi065&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paraschopra/status/1789558229506371848&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paraschopra&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Use money to reward the best, not to motivate the rest. &lt;a href=&quot;https://twitter.com/naval/status/1789594805594448040&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;We&#39;re not selling in SaaS so much as solving problems.  And that&#39;s why so many are struggling these days&amp;quot; @lennysan + @jasonlk&lt;/p&gt;
&lt;p&gt;More here -&amp;gt; &lt;a href=&quot;https://t.co/XTFG4gpKaX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XTFG4gpKaX&lt;/a&gt; &lt;a href=&quot;https://t.co/Rrrg8ZfdGL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Rrrg8ZfdGL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/1789604431048151182&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/PfTTKG1qIY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PfTTKG1qIY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1789807808700969388&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Radical transparency forces issues to the surface—most importantly (and most uncomfortably) the problems that people are dealing with and how they’re dealing with them—and it allows the organization to draw on the talents and insights of all its members to solve them.&lt;/p&gt;
&lt;p&gt;Eventually, for people who get used to it, living in a culture of radical transparency is more comfortable than living in the fog of not knowing what’s going on and not knowing what people really think. And it is incredibly effective. But, to be clear, like most great things it also has drawbacks. Its biggest drawback is that it is initially very difficult for most people to deal with uncomfortable realities. If unmanaged, it can lead to people getting involved with more things than they should, and can lead people who aren’t able to weigh all the information to draw the wrong conclusions.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1790118169899593805&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The simplest way to clarify your thinking is to write a full page about whatever you are dealing with and then delete everything except the 1-2 sentences that explain it best. &lt;a href=&quot;https://twitter.com/JamesClear/status/1790407225170690090&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Product managers should talk to customers all the time.&lt;/p&gt;
&lt;p&gt;Customer service actually does talk to customers all the time.&lt;/p&gt;
&lt;p&gt;How do they treat customers?&lt;/p&gt;
&lt;p&gt;Is this the main way that customers ever talk to you?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/TEcssumRwX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TEcssumRwX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1790425344920469921&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7 short rules for a better life&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Say no (a lot)&lt;/li&gt;
&lt;li&gt;Focus on effort, not results&lt;/li&gt;
&lt;li&gt;Wake up early&lt;/li&gt;
&lt;li&gt;Go the f to sleep&lt;/li&gt;
&lt;li&gt;Relax. Whatever it is, you’re probably taking it&lt;/li&gt;
&lt;li&gt;Give up on the idea of revenge&lt;/li&gt;
&lt;li&gt;Do your job well (how you do anything is how you do everything) &lt;a href=&quot;https://twitter.com/dailystoic/status/1790426877586469112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of my biggest surprises from researching pivot stories was finding that the single most common source of pivot ideas came from noticing pull for an internal tool or piece of technology the founders built as a side-effect of their original ideal.&lt;/p&gt;
&lt;p&gt;Some of my favorite examples in thread below 🧵 &lt;a href=&quot;https://twitter.com/lennysan/status/1790796535942566178&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;$40K MRR solo ￼🫨&lt;/p&gt;
&lt;p&gt;Dec 20th: Idea formed.&lt;br /&gt;
Feb 1st: First subscriber.&lt;br /&gt;
Feb 28th: 1K MRR.&lt;br /&gt;
March 16th: 2K MRR.&lt;br /&gt;
…&lt;br /&gt;
May 5th: 30K MRR.&lt;br /&gt;
May 13th: 40K MRR.&lt;/p&gt;
&lt;p&gt;I had no idea Autoshorts would be this popular during the first ~$1k MRR… then it snowballed all of a sudden. Keep grinding 🤷‍♂️ &lt;a href=&quot;https://t.co/WDizi5GRJc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WDizi5GRJc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ericsmith1302/status/1790904050118008884&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ericsmith1302&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Referral strategy works! After our new launch today, revenue already tripled 😆 &lt;a href=&quot;https://t.co/VlxQsS4lSf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VlxQsS4lSf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/VyvyenYue/status/1790962634197713298&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;VyvyenYue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I found a guy on YouTube who asks 60, 70, 80, and 90-year-olds:&lt;/p&gt;
&lt;p&gt;• Their biggest mistakes&lt;br /&gt;
• What they used to worry about&lt;br /&gt;
• One piece of advice for their younger self&lt;/p&gt;
&lt;p&gt;Wildly enough, they all pretty much mention the same things.&lt;/p&gt;
&lt;p&gt;Here are my top 7: &lt;a href=&quot;https://t.co/EsxmQRVoDC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/EsxmQRVoDC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/brianbeers/status/1791129012678594987&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;brianbeers&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/Yp5eFR4BVE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Yp5eFR4BVE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/brianbeers/status/1791129102034124945&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;brianbeers&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Thursday wisdom: &lt;a href=&quot;https://t.co/r3c2qBnBY6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/r3c2qBnBY6&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1791227302455419257&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you don&#39;t let up on yourself and instead become comfortable always operating with some level of pain, you will evolve at a faster pace. That&#39;s just the way it is.&lt;/p&gt;
&lt;p&gt;Every time you confront something painful, you are at a potentially important juncture in your life--you have the opportunity to choose healthy and painful truth or unhealthy but comfortable delusion. The irony is that if you choose the healthy route, the pain will soon turn into pleasure. The pain is the signal! Like switching from not exercising to exercising, developing the habit of embracing the pain and learning from it will &amp;quot;get you to the other side.&amp;quot;&lt;/p&gt;
&lt;p&gt;By &amp;quot;getting to the other side,&amp;quot; I mean that you will become hooked on:&lt;/p&gt;
&lt;p&gt;-Identifying, accepting, and learning how to deal with your weaknesses,&lt;br /&gt;
-Preferring that the people around you be honest with you rather than keep their negative thoughts about you to themselves, and&lt;br /&gt;
-Being yourself rather than having to pretend to be strong where you are weak.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1791477754312962472&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“These things I can’t delegate, because only I can do it.”&lt;/p&gt;
&lt;p&gt;^^^ Could be because truly you&#39;re the only human who ever 𝘤𝘰𝘶𝘭𝘥 do it.&lt;/p&gt;
&lt;p&gt;Or it&#39;s because you&#39;re hoarding information and not communicating.&lt;/p&gt;
&lt;p&gt;The latter is a bad reason to be a bottleneck. &lt;a href=&quot;https://twitter.com/asmartbear/status/1791568376457818129&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Carl Jung once said:&lt;/p&gt;
&lt;p&gt;&amp;quot;Thinking is difficult, that’s why most people judge.&amp;quot;&lt;/p&gt;
&lt;p&gt;Here are 11 things I learned from him: &lt;a href=&quot;https://t.co/1MSHAuTRGA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/1MSHAuTRGA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Tim_Denning/status/1791787331101274227&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tim_Denning&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An easy founder mistake is to treat your high quality employees as children. It&#39;s easier to tell people what to do and how to think but the best people will not thrive in this sort of environment.  A second easy mistake is to employ low quality employees.  They must be told what to do and how to think and they still underperform. &lt;a href=&quot;https://twitter.com/mwseibel/status/1792262389200773196&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mwseibel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If your startup builds the best product in the world people won’t just randomly find you. So please learn sales and marketing.&lt;/p&gt;
&lt;p&gt;Even the very best products need visibility. Without sales, marketing, distribution your product will go unnoticed and fail. Plain and simple.&lt;/p&gt;
&lt;p&gt;You need to know your target audience and where they hang out. You need to have a message that speaks to their pain points.&lt;/p&gt;
&lt;p&gt;You need to create awareness and interest. You need to engage with your audience, build relationships, and gain their trust.&lt;/p&gt;
&lt;p&gt;So don’t wait for customers to find you. You need to go out and show them why your product is the best solution for them.&lt;/p&gt;
&lt;p&gt;Building distribution through sales and marketing is just as important as building your product - if not more today. &lt;a href=&quot;https://twitter.com/agazdecki/status/1792534694908870964&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just because you can’t measure something doesn’t make it less real. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1792647734408753280&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t Take Yourself So Seriously&lt;/p&gt;
&lt;p&gt;Life is a game.&lt;/p&gt;
&lt;p&gt;If you take it too seriously, you&#39;ll suffer.&lt;/p&gt;
&lt;p&gt;Instead, embrace its inherent unpredictability and find joy in the flow of experience.&lt;/p&gt;
&lt;p&gt;Ultimately, you&#39;re just a monkey with a brain on a floating rock. &lt;a href=&quot;https://t.co/iILxVNlkCD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iILxVNlkCD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lex_investing/status/1792863725658968424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lex_investing&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If everything is a priority then nothing is a priority.&lt;/p&gt;
&lt;p&gt;How I plan my week (as the CEO of a $100M/year company): &lt;a href=&quot;https://twitter.com/noahkagan/status/1792885760485478847&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;noahkagan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol&gt;
&lt;li&gt;Clarify your Top Priorities&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If I asked you, “What are your top 3 priorities in life?” How would you answer?&lt;/p&gt;
&lt;p&gt;Mine are:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;My relationships&lt;/li&gt;
&lt;li&gt;@AppSumo&lt;/li&gt;
&lt;li&gt;And Million Dollar Weekend&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If you don’t know what your priorities are, everything seems urgent. &lt;a href=&quot;https://twitter.com/noahkagan/status/1792885762033061937&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;noahkagan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;Work with Accountability Partners&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Every single week, I email my priorities to my accountability partner Adam Gilbert.&lt;/p&gt;
&lt;p&gt;I’ve done this for 15 years! Here’s an example: &lt;a href=&quot;https://twitter.com/noahkagan/status/1792885773378740701&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;noahkagan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tuesday wisdom: &lt;a href=&quot;https://t.co/Kh2d4zQ2Ry&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Kh2d4zQ2Ry&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1792888314153910280&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve studied 100s of mental models to make better decisions.&lt;/p&gt;
&lt;p&gt;The top 10 I use daily (that make me $45M/year): &lt;a href=&quot;https://t.co/lG9Ay9P6H2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lG9Ay9P6H2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/brianbeers/status/1792933514037371013&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;brianbeers&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s conventional wisdom that focusing too much on work / ambition / wealth isn&#39;t the optimal way to live a happy life. Turns out there&#39;s an actual chemical explanation for why:&lt;br /&gt;
@maxjoseph&lt;br /&gt;
&lt;a href=&quot;https://t.co/FHS2EeSzhQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/FHS2EeSzhQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/waitbutwhy/status/1792987924260061194&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;waitbutwhy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@dickiebush “Why you should define your fears instead of your goals.”&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Ted Talk by @tferriss&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/GeQXyLCsp3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GeQXyLCsp3&lt;/a&gt; &lt;a href=&quot;https://twitter.com/WriteSchrute/status/1793079793728278913&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;WriteSchrute&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You could argue that the point of programming is to produce bugs. Bugs show you where your model of a problem doesn&#39;t match the problem, and in a highly motivating form. &lt;a href=&quot;https://twitter.com/paulg/status/1793271429711929839&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Wednesday wisdom from Peter Drucker: &lt;a href=&quot;https://t.co/XNvMxJvvsg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XNvMxJvvsg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1793347399974359051&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;90% of meetings are mutually agreeable procrastination. &lt;a href=&quot;https://twitter.com/dklineii/status/1793722481234116955&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Confidence is not a belief in success. It&#39;s a comfort with failure. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1793992092823310641&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“What an astonishing thing a book is.&lt;/p&gt;
&lt;p&gt;It&#39;s a flat object made from a tree with flexible parts on which are imprinted lots of funny dark squiggles.&lt;/p&gt;
&lt;p&gt;But one glance at it and you&#39;re inside the mind of another person, maybe somebody dead for thousands of years.&lt;/p&gt;
&lt;p&gt;Across the millennia, an author is speaking clearly and silently inside your head, directly to you.&lt;/p&gt;
&lt;p&gt;Writing is perhaps the greatest of human inventions, binding together people who never knew each other, citizens of distant epochs.&lt;/p&gt;
&lt;p&gt;Books break the shackles of time.&lt;/p&gt;
&lt;p&gt;A book is proof that humans are capable of working magic.&amp;quot;&lt;/p&gt;
&lt;p&gt;—Carl Sagan &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1794052169022230662&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the biggest mistakes I made starting out was not collecting social proof from clients.&lt;/p&gt;
&lt;p&gt;Was getting client results but never thought to document it.&lt;/p&gt;
&lt;p&gt;Social proof is the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; thing that makes sales easier.&lt;/p&gt;
&lt;p&gt;Start collecting it now. &lt;a href=&quot;https://twitter.com/TheJackBly/status/1794081117659635944&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJackBly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;i love that this was steve jobs&#39; favorite piece of art&lt;/p&gt;
&lt;p&gt;perfectly encapsulates what made him brilliant and one of the most important skills for founders - being able to simplify things down into their most essential form &lt;a href=&quot;https://t.co/bELBp2TN9L&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/bELBp2TN9L&lt;/a&gt; &lt;a href=&quot;https://twitter.com/thatguybg/status/1794398051421073733&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thatguybg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Silicon Valley (the series) is so back &lt;a href=&quot;https://t.co/d44t2btxk1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/d44t2btxk1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/growing_daniel/status/1794550606327328916&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;growing_daniel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tolerating a problem has the same consequences as failing to identify it. Whether you tolerate it because you believe it cannot be solved, because you don&#39;t care enough to solve it, or because you can&#39;t muster enough of whatever it takes to solve it, if you don&#39;t have the will to succeed, then your situation is hopeless. You need to develop a fierce intolerance of badness of any kind, regardless of its severity.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1794764284112568578&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’m a bubbling pot of stress today and, as I think about it, I’ve realized that it’s entirely because of my calendar.&lt;/p&gt;
&lt;p&gt;Nothing stresses me out like tetris game of a calendar.&lt;/p&gt;
&lt;p&gt;It’s my white whale. The thing that I have never been able to tame or conquer.&lt;/p&gt;
&lt;p&gt;I’ve tried a bunch of different strategies:&lt;/p&gt;
&lt;p&gt;• A 2-3 hour booking window (results: booked 4+ months out, plus important company issues or CEO calls getting jammed in last minute = 4-6 hours a day of meetings and activity and no deep work)&lt;/p&gt;
&lt;p&gt;• Having no calendar at all, just calling people (result: a massive call list that I can never get on top of, as well as a lot of people being offended when I won’t book with them)&lt;/p&gt;
&lt;p&gt;• Calendly (results: a lot of meetings I don’t want to do booked into eternity)&lt;/p&gt;
&lt;p&gt;I’m at the point where I’m ready to declare calendar bankruptcy and I want to tap your collective intelligence.&lt;/p&gt;
&lt;p&gt;The core issue is that I am an inch deep and a mile wide.&lt;/p&gt;
&lt;p&gt;I oversee over 40 companies, I have hobby businesses, I’ve got 150+ minority investments, I’m trying to do a podcast and this newsletter, I have a broad ranging, highly extroverted social life, and I’m a father of two who often has to travel for work.&lt;/p&gt;
&lt;p&gt;TLDR: My ambition exceeds my time.&lt;/p&gt;
&lt;p&gt;I’m curious to hear from other people who nod along with this and have significant work and personal responsibilities.&lt;/p&gt;
&lt;p&gt;How do you handle this? How have you prioritized? How do you delegate some of this? Please respond to this thread on if you have any ideas (systems, delegation workflows, heuristics, etc), I’m all ears! &lt;a href=&quot;https://twitter.com/awilkinson/status/1794796082825937404&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An Apple investor from 1981 says Jobs almost destroyed Apple &lt;a href=&quot;https://t.co/nRfIKSlInM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nRfIKSlInM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/historyinmemes/status/1794976830996586558&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;historyinmemes&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t be 𝘯𝘪𝘤𝘦; be 𝘬𝘪𝘯𝘥.&lt;/p&gt;
&lt;p&gt;Being nice often means lying to save someone’s feelings. (There are times where this is a good thing.)&lt;/p&gt;
&lt;p&gt;Being kind means telling the truth, so that the person is not mislead or mistaken, but also being thoughtful of their feelings. &lt;a href=&quot;https://twitter.com/asmartbear/status/1794997473326338271&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the early years of a startup, there is no work/life balance.&lt;/p&gt;
&lt;p&gt;4-6 years in, with even a small team, if you don&#39;t have balance by then, you haven&#39;t built a strong-enough team.&lt;/p&gt;
&lt;p&gt;That’s how you get there. &lt;a href=&quot;https://twitter.com/asmartbear/status/1795132613692149831&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Complicated pricing is usually a sign of a company that has run out of ideas &lt;a href=&quot;https://twitter.com/jasonlk/status/1795271700000735527&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bragging about how busy you are?&lt;/p&gt;
&lt;p&gt;Watch out. It  doesn&#39;t impress people. It makes them think you&#39;re incompetent and unlikeable -- and &lt;em&gt;decreases&lt;/em&gt; the likelihood they&#39;ll help you.&lt;/p&gt;
&lt;p&gt;Kill the stress bragging -- and just do your work! &lt;a href=&quot;https://t.co/1QZYH3QOjh&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/1QZYH3QOjh&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1795501618080649653&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You want your startup to be great at a few things not just okay at 100. That&#39;s why one audience, one channel, one offer is such good advice to keep you focused.&lt;/p&gt;
&lt;p&gt;Too many startups fail because they try to do way too much in the beginning rather than being laser focused on being the best at a few things.&lt;/p&gt;
&lt;p&gt;Less is sometimes more especially when building a company. For example, you probably don&#39;t need every feature in the world for your customers you just need to solve one painful problem to start.&lt;/p&gt;
&lt;p&gt;Also you probably don&#39;t have time to be great at executing a marketing strategy across every platform so it&#39;s probably best you focus on acquiring customers through one channel to start otherwise you&#39;re probably going to spread yourself too thing.&lt;/p&gt;
&lt;p&gt;Then when it comes to the audience or customer, you want to narrow your focus immensely to really be able to message and speak to this type of persona.&lt;/p&gt;
&lt;p&gt;If you go too broad here it&#39;ll feel like your product or service is for everyone and when you speak to everyone you end up selling to no one.&lt;/p&gt;
&lt;p&gt;So remember, less is more, especially when you&#39;re building a startup. You can always expand down the line as you grow but in the beginning keep things simple and focused.&lt;/p&gt;
&lt;p&gt;Then just keep going and keep build. &lt;a href=&quot;https://twitter.com/agazdecki/status/1795801617796862274&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;9 years in with 200M MAU, instead of expanding, Discord chooses to &lt;em&gt;narrow&lt;/em&gt; its focus.&lt;/p&gt;
&lt;p&gt;There&#39;s great power in being great at one thing. &lt;a href=&quot;https://t.co/qaHK7xNxfX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qaHK7xNxfX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Suhail/status/1795858471742587202&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you don’t have leverage, you’re never going to make real wealth.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1795887330533761029&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are different types of hard work:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Outthinking (a better strategy, a shortcut)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pure Effort (working longer, intensity)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Opportunistic (positioning yourself to take advantage of change)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Consistency (doing average things for longer)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus (saying no to distractions)&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Each of these requires a different type of hard work. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1795895943956459907&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Someone leaked the cold email strategy of a $83,333/mo SAAS on Reddit.&lt;/p&gt;
&lt;p&gt;And it’s actually genius…&lt;/p&gt;
&lt;p&gt;You need to see this: &lt;a href=&quot;https://twitter.com/yassin_baum/status/1795910240195543326&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;yassin_baum&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A simple rule that makes life easier:&lt;/p&gt;
&lt;p&gt;Always strive to give value before you ask for value. &lt;a href=&quot;https://twitter.com/JamesClear/status/1796247323191951424&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tymczasem opublikowaliśmy najnowsze wyniki Brand24. Powtarzalne przychody (MRR) wyniosły w tym okresie ponad 620 tys. USD (+30% r/r). Z kolei całkowite ARPU (średni przychód na klienta) osiągnęło kwotę 159 USD (633 zł), a ARPU na nowych klientach wzrosło o 32 proc. rok do roku do 192 USD (768 zł). To już 9 kwartał tak mocnych wzrostów 🤟🔥&lt;/p&gt;
&lt;p&gt;Ogromne brawa dla całej Załogi! 💪 &lt;a href=&quot;https://twitter.com/sadek/status/1796445911930875970&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;“When you want to help people, you tell them the truth.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;When you want to help yourself, you tell them what they want to hear.”&lt;/p&gt;
&lt;p&gt;• Modern-day politics is full of people repeating what we want to hear while doing nothing&lt;/p&gt;
&lt;p&gt;• Truth: we need action, not nice words. &lt;a href=&quot;https://t.co/OYGuApRm0j&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OYGuApRm0j&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Tim_Denning/status/1796498470599012692&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tim_Denning&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;&amp;quot;The truth is often not complicated.&lt;br /&gt;
What gets complex is evading the truth.”&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• Don’t let people lie to you with made-up complexity.&lt;/p&gt;
&lt;p&gt;• If it&#39;s complex, it&#39;s bullsh*t.&lt;/p&gt;
&lt;p&gt;Life is simple. We’re born, pay taxes, then die. &lt;a href=&quot;https://twitter.com/Tim_Denning/status/1796498871444443531&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tim_Denning&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;8&quot;&gt;
&lt;li&gt;“There are no solutions, only trade-offs.”&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Human progress slows cause we get fixated on perfect solutions. There are none.&lt;/p&gt;
&lt;p&gt;Perfect solution:&lt;/p&gt;
&lt;p&gt;• Solves a problem&lt;br /&gt;
• Actually gets put into action&lt;/p&gt;
&lt;p&gt;Action will tell you more than a perfect solution that goes nowhere. &lt;a href=&quot;https://twitter.com/Tim_Denning/status/1796501893998387679&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tim_Denning&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why early startups shouldn&#39;t hire product managers, a conversation from the Turpentine network: &lt;a href=&quot;https://t.co/HzlxvqtCLn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HzlxvqtCLn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/eriktorenberg/status/1796584493371077001&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eriktorenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One way to be unique, is to be different.&lt;/p&gt;
&lt;p&gt;Another way is to be “better,” but it has to be 10x better, not 30% better, otherwise it’s not unique enough.&lt;/p&gt;
&lt;p&gt;So e.g. if a product is 30% cheaper than a competitor, that’s interesting, but 90% cheaper is a game-changer. &lt;a href=&quot;https://twitter.com/asmartbear/status/1796641052108992697&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For example, most people will operate in a way that maximizes the amount of money they will get and that minimizes the amount of work they have to do to get it.&lt;/p&gt;
&lt;p&gt;To see this, just leave someone unsupervised and allow them to bill you for what they have done. Be especially wary of this conflict of interest when people are advising you on matters that will affect how much money they earn--such as the lawyer who spends a lot of billable hours giving you advice, or the salesperson who advises you on what to purchase while receiving a commission on the amount that you spend. You can&#39;t imagine how many people I meet who are eager to &amp;quot;help&amp;quot; me.&lt;/p&gt;
&lt;p&gt;Don&#39;t be naive. Strive for the highest possible percentage of your population having meaningful work and meaningful relationships while recognizing that there will always be some percentage of the population who won&#39;t care for the community and/or will do it harm.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1796876682361503974&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Paul Graham on the shortness of life &lt;a href=&quot;https://t.co/xhUqLmKSnP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xhUqLmKSnP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tylerbruno05/status/1797374033530597860&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tylerbruno05&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The secret to a great life is to nail the basics.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1797667812703428870&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you are ever uncertain about your current startup trajectory, talking to users will always change the course of that. You either are building nothing people want (you&#39;ll abandon the current path) or you&#39;re building something people want (it&#39;s just a matter of time). &lt;a href=&quot;https://twitter.com/Suhail/status/1797691171512422540&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“I’ve never seen a great leader who is conflict averse. In the NBA, there’s a shorthand for someone that won’t back down from conflict. It’s called “wanting the smoke.” Great leaders don’t just want the smoke. They climb down the chimney” &lt;a href=&quot;https://twitter.com/patrick_oshag/status/1797695835599507611&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrick_oshag&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What is the revenue impact of a feature that helps the sales team close deals, but isn’t used much by customers?&lt;/p&gt;
&lt;p&gt;Should you kill it, because customers don’t actually care?&lt;/p&gt;
&lt;p&gt;Or keep it, because they 𝘵𝘩𝘪𝘯𝘬 they will care?&lt;/p&gt;
&lt;p&gt;Other unmeasurable things:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/YdiZEhCpT2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YdiZEhCpT2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1797703048518582587&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Product Management is, at its heart, about managing risk.&lt;/p&gt;
&lt;p&gt;But the risks at play are not obvious.&lt;/p&gt;
&lt;p&gt;The extended classification beyond the famous &amp;quot;Value, Usability, Viability, and Feasibility:&amp;quot;&lt;/p&gt;
&lt;p&gt;(1/9) &lt;a href=&quot;https://t.co/3sCTl0Liuo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3sCTl0Liuo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PawelHuryn/status/1797853450610655622&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PawelHuryn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You&#39;ll do better work if you&#39;re bored rather than busy.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1797880715259879889&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As the founder of a $100M/yr business, I’ve read thousands of books.&lt;/p&gt;
&lt;p&gt;A tiny fraction of them are worth your time.&lt;/p&gt;
&lt;p&gt;Here are 9 that changed my life and business: &lt;a href=&quot;https://twitter.com/noahkagan/status/1797973543621468371&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;noahkagan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Practice higher-level thinking by looking down on your machine and thinking about how it can be changed to produce better outcomes.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/TkYilRkXr3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TkYilRkXr3&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1798009899550736444&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you’re whole-heartedly, genuinely, completely, obsessively, excitedly consumed by something:&lt;/p&gt;
&lt;p&gt;It’s infectious.&lt;/p&gt;
&lt;p&gt;People want to be around you, even if they don’t share your obsession.&lt;/p&gt;
&lt;p&gt;People root for you, because we love seeing that thrive.&lt;/p&gt;
&lt;p&gt;Fly that freak flag. &lt;a href=&quot;https://twitter.com/asmartbear/status/1798624368299569452&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Excellent breakdown of cognitive biases. &lt;a href=&quot;https://t.co/NMk5eICZXb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NMk5eICZXb&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PeterMallouk/status/1798727760183263250&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PeterMallouk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Product Management 101.&lt;/p&gt;
&lt;p&gt;Today: Outcome vs. Output &lt;a href=&quot;https://t.co/vzypQlzPLE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vzypQlzPLE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/KiwiDenny/status/1798744329738944962&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KiwiDenny&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;nietzsche destroying my people pleasing tendencies with this passage &lt;a href=&quot;https://t.co/2KYaYWp8Wy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2KYaYWp8Wy&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Ashwinreads/status/1798768709873619042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Ashwinreads&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Entrepreneurship is about risk-taking.&lt;/p&gt;
&lt;p&gt;It’s about doing things without knowing in advance how they will turn out.&lt;/p&gt;
&lt;p&gt;It’s about “getting it wrong” time after time since you know in your heart that each failed experiment is getting you closer to solving the real problem. &lt;a href=&quot;https://twitter.com/mbrandolph/status/1798881503146844391&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mbrandolph&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When someone copies your product/design/pricing/website/feature, it’s OK to be mad.&lt;/p&gt;
&lt;p&gt;Also remember: It means they have no ideas, no insight, and they don’t know how to get it.&lt;/p&gt;
&lt;p&gt;Which means you’ll always be ahead, just by doing what you’re already doing.&lt;/p&gt;
&lt;p&gt;So do that. &lt;a href=&quot;https://twitter.com/asmartbear/status/1798991539135512928&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to spot an A-Player:&lt;/p&gt;
&lt;p&gt;-&amp;gt; Independent Thinker&lt;br /&gt;
-&amp;gt; Curious &amp;amp; Humble&lt;br /&gt;
-&amp;gt; High Standards&lt;br /&gt;
-&amp;gt; Energy Raiser&lt;br /&gt;
-&amp;gt; Disciplined&lt;/p&gt;
&lt;p&gt;It&#39;s character, not credentials. &lt;a href=&quot;https://twitter.com/dklineii/status/1799172491274764340&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ydivuFfYvG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ydivuFfYvG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PsycheWizard/status/1799567832243408914&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PsycheWizard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Never, ever tell anyone about your problems, 90% of the people really don&#39;t care. The other 10% are glad you have them.”&lt;/p&gt;
&lt;p&gt;— Charlie Munger &lt;a href=&quot;https://t.co/mviT3ojVUH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mviT3ojVUH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1799602601937530973&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Frame your strategy as a hypothesis to be tested, rather than as a set of decisions already made. &lt;a href=&quot;https://twitter.com/Kpaxs/status/1799698626475864432&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The distribution of house sizes in France looks a lot like the distribution of business sizes, and for the same reason: a regulation that kicks in at a certain size. &lt;a href=&quot;https://t.co/XmDbLrkmUh&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XmDbLrkmUh&lt;/a&gt; &lt;a href=&quot;https://twitter.com/paulg/status/1799754978707575269&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Beware: The constant desire to improve yourself can itself become a subtle form of addiction. &lt;a href=&quot;https://twitter.com/IAmMarkManson/status/1799790301982114180&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IAmMarkManson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Peter [Drucker] said to me, ‘You spend too much time thinking about if you’ll be successful. It’s the wrong question. The question is how to be useful.’”&lt;br /&gt;
— Jim Collins&lt;/p&gt;
&lt;p&gt;Listen to my interview with Jim Collins: &lt;a href=&quot;https://t.co/5Gn635HYMm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5Gn635HYMm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tferriss/status/1799800708272918785&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most important thing you&#39;ll read this Sunday...&lt;/p&gt;
&lt;p&gt;Nietzsche&#39;s brutal takedown of the modern cult of busyness &lt;a href=&quot;https://t.co/lpu0T5JQ1R&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lpu0T5JQ1R&lt;/a&gt; &lt;a href=&quot;https://twitter.com/oldbooksguy/status/1799809449676468695&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;oldbooksguy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nietzsche asking the hard questions &lt;a href=&quot;https://t.co/gM9wiCV4bn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gM9wiCV4bn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/oldbooksguy/status/1799841719242092599&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;oldbooksguy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Notes from @BillAckman&#39;s fireside chat in Omaha:&lt;/p&gt;
&lt;p&gt;People Underestimate the Power of Checklists&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Pershing Square had the best 6 years of its history since they inscribed their checklist into a piece of &amp;quot;stone&amp;quot;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If I ever veer [off this checklist] just hit me over the head with this thing&amp;quot;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The checklist: &lt;a href=&quot;https://twitter.com/investingdpark/status/1799879399707213832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;investingdpark&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;OpenAI&#39;s ChatGPT daily visits. $NVDA $MSFT &lt;a href=&quot;https://t.co/GXGpWuhzUK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GXGpWuhzUK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/The_AI_Investor/status/1799974244941791260&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;The_AI_Investor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As a rule of thumb, I never consider tech to be a moat. The market always catches up. Sooner or later.&lt;/p&gt;
&lt;p&gt;There are already players like Applied Intuition that license FSD tech and they already have many top car makers as clients.&lt;/p&gt;
&lt;p&gt;Distribution and brand is the real moat and will continue to do so even with cars with FSD. &lt;a href=&quot;https://twitter.com/kayshreyas/status/1799977391583879480&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kayshreyas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A startup is a treasure hunt for a true but untapped behavior.&lt;/p&gt;
&lt;p&gt;The quality of the product is the quality of the search.&lt;/p&gt;
&lt;p&gt;Sometimes you didn’t look in the right place; sometimes you’re chasing a mirage.&lt;/p&gt;
&lt;p&gt;Almost all startups fail.&lt;/p&gt;
&lt;p&gt;But who comes out on the other side does not. &lt;a href=&quot;https://twitter.com/naval/status/1799988029643464854&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Are you a &amp;quot;0-1&amp;quot; person or a &amp;quot;2-50&amp;quot; person or a &amp;quot;100-5000&amp;quot; person?&lt;/p&gt;
&lt;p&gt;Often we don’t know until we’re already in the thick of it. You think you know, only because there’s comfort in the familiar.&lt;/p&gt;
&lt;p&gt;But maybe you really are just one, in which case you’ll need an exit plan someday. &lt;a href=&quot;https://twitter.com/asmartbear/status/1800122240396062731&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Time spent has nothing to do with job done.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1800145891354902758&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Monday wisdom: &lt;a href=&quot;https://t.co/slstaxO2qh&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/slstaxO2qh&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1800151169626464522&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best performing stocks in the S&amp;amp;P 500 over the last 5, 10, 15, and 20 years...&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/l5IYmkf6Ih&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/l5IYmkf6Ih&lt;/a&gt; &lt;a href=&quot;https://t.co/fLHisaMb3K&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fLHisaMb3K&lt;/a&gt; &lt;a href=&quot;https://twitter.com/charliebilello/status/1800155357463146838&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;charliebilello&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;6 luxuries in life: &lt;a href=&quot;https://t.co/sNCQWCj2Ef&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sNCQWCj2Ef&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1800405707314864298&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“In the short term, you are as good as your intensity.&lt;/p&gt;
&lt;p&gt;In the long term, you are only as good as your consistency.”&lt;/p&gt;
&lt;p&gt;— Shane Parrish &lt;a href=&quot;https://twitter.com/readswithravi/status/1801209968735015064&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every founder should do customer support. You talk to so many customers which helps find product market fit faster. Plain and simple.&lt;/p&gt;
&lt;p&gt;When you handle customer support, you get direct insights. You hear firsthand about their pain points, preferences, and frustrations. This feedback is gold for refining your product.&lt;/p&gt;
&lt;p&gt;Doing customer support lets you see how customers use your product, what they love, and where they struggle. You’ll spot unexpected issues and find areas for improvement, letting you iterate and improve quickly.&lt;/p&gt;
&lt;p&gt;Plus when customers know the founder cares it builds loyalty and sparks word of mouth referrals and creates brand awareness. That’s crucial for growth.&lt;/p&gt;
&lt;p&gt;Handling support also gives you a competitive edge. You’ll make smarter decisions about product development and marketing because you understand your customers’ needs firsthand. &lt;a href=&quot;https://twitter.com/agazdecki/status/1801608169870999782&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’m obsessed with the startup ideation process. Eg. How do we create more hyper-growth companies &amp;amp; what were the top companies really like at the earliest days? This book might be the closest thing to a repeatable framework. &lt;a href=&quot;https://t.co/6hgX5AybZf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6hgX5AybZf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/abarrallen/status/1801806187702456365&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;abarrallen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Never be overheard complaining… Not even to yourself. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1802008167150428563&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remember that you cannot judge whether the decision-process was good, based on the outcome.&lt;/p&gt;
&lt;p&gt;You can make exactly the right decision in poker, and then lose.&lt;/p&gt;
&lt;p&gt;Most things in life are like that. &lt;a href=&quot;https://twitter.com/asmartbear/status/1802655431539515785&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs sent an email to himself 13 months before he died &lt;a href=&quot;https://t.co/OTaOxDZv7H&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OTaOxDZv7H&lt;/a&gt; &lt;a href=&quot;https://twitter.com/eyishazyer/status/1802660442789023750&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eyishazyer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop designing with primary buttons &lt;a href=&quot;https://t.co/xXehiTBaIY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xXehiTBaIY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zander_supafast/status/1802684455670136954&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zander_supafast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Changing how visitors interact with a site is difficult but possible. The full reports are: &lt;a href=&quot;https://t.co/GnP0bJNPtC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GnP0bJNPtC&lt;/a&gt; and &lt;a href=&quot;https://t.co/DEuZ4g9V1u&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DEuZ4g9V1u&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I would read the user experience/site metric portions.&lt;/p&gt;
&lt;p&gt;Ultimately, it means having longer, more frequent Chrome sessions from users. (And if you can get them to return to the site again, that&#39;s even better). &lt;a href=&quot;https://twitter.com/ericlancheres/status/1802691922319868153&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ericlancheres&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The cold email script that never stops working&lt;/p&gt;
&lt;p&gt;(adjust as needed) &lt;a href=&quot;https://t.co/3Id4odD4yi&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3Id4odD4yi&lt;/a&gt; &lt;a href=&quot;https://twitter.com/yassin_baum/status/1802717908960788651&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;yassin_baum&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Recently interviewed a PM who shared a killer template for synthesizing user research!  This is the knowledge sharing we need in product teams - low effort, high impact learnings to elevate everyone.&lt;/p&gt;
&lt;p&gt;(filled out with a made up example for a note taking app)&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#productmanagement&quot;&gt;#productmanagement&lt;/a&gt; &lt;a href=&quot;https://t.co/Ub5nTr55LD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Ub5nTr55LD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ibscribe/status/1802816248784511312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ibscribe&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You need 3 daily wins: &lt;a href=&quot;https://t.co/mh3ue8h0f5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mh3ue8h0f5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FluentInFinance/status/1802866350462730681&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FluentInFinance&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What’s the best tutorial on using AI you’ve read? &lt;a href=&quot;https://twitter.com/shl/status/1803045795249193145&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All the successful businesses I know started with some idea — an incredible feature, an annoying problem solved, an entertaining thing.&lt;/p&gt;
&lt;p&gt;But never: I wanted a business, so just I made something random.&lt;/p&gt;
&lt;p&gt;(Although, it can pivot.) &lt;a href=&quot;https://twitter.com/asmartbear/status/1803086527007768892&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remember this: The pain is all in your head. If you want to evolve, you need to go where the problems and the pain are. By confronting the pain, you will see more clearly the paradoxes and problems you face. Reflecting on them and resolving them will give you wisdom. The harder the pain and the challenge, the better.  Because these moments of pain are so important, you shouldn&#39;t rush through them. Stay in them and explore them so you can build a foundation for improvement. Embracing your failures--and confronting the pain they cause you and others--is the first step toward genuine improvement; it is why confession precedes forgiveness in many societies. Psychologists call this &amp;quot;hitting bottom.&amp;quot; If you keep doing this you will convert the pain of facing your mistakes and weaknesses into pleasure and &amp;quot;get to the other side&amp;quot; as I explained in Embrace Reality and Deal with It.  &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1803091193401586070&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/Y3b08AKndX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Y3b08AKndX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1803099159966228810&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How do you become the type of person who makes great decisions?&lt;/p&gt;
&lt;p&gt;I fill this out everytime I make a major decision (eg. big investment, start/sell a company, etc.)&lt;/p&gt;
&lt;p&gt;Then I re-visit it ~1 year later and look at my line of thinking.  Without writing it down, I lie to myself later &lt;a href=&quot;https://t.co/xDxGW02HRF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xDxGW02HRF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ShaanVP/status/1803131731400335382&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ShaanVP&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It took me way too many years to figure out:&lt;/p&gt;
&lt;p&gt;You have to be OK with being “just ok” or even “crappy” at most things, so that you have the energy, attention, time, space, to be 𝘨𝘳𝘦𝘢𝘵 at a few things.&lt;/p&gt;
&lt;p&gt;How I’ve navigated this:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/hKPflFhITT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hKPflFhITT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1803156231495766506&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your startup has a 1000% higher chance of success if you stop overthinking everything and just ship it.&lt;/p&gt;
&lt;p&gt;Overthinking kills startups. Planning and perfecting forever means you never launch. Speed is key. Get your product out quickly, get feedback, and improve fast.&lt;/p&gt;
&lt;p&gt;Perfection does not exist with startups. Waiting for perfect means missed chances and falling behind. Real user feedback is gold. It shows what works, what doesn’t, and what your customers need.&lt;/p&gt;
&lt;p&gt;Shipping fast builds momentum. Every release, even small ones, creates momentum that keeps your team fired up. Progress boosts morale and drives your startup forward.&lt;/p&gt;
&lt;p&gt;Early launches test your ideas. You might think you know what customers want but real user data is better. Launching early helps you make decisions based on actual feedback.&lt;/p&gt;
&lt;p&gt;Don’t worry about failure. Every successful startup has made mistakes. The key is learning and moving forward. Your first product won’t be perfect, and that’s okay. Progress and learning matter more.&lt;/p&gt;
&lt;p&gt;So stop overthinking and just ship it. &lt;a href=&quot;https://twitter.com/agazdecki/status/1803412158811873438&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;agazdecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dostoevsky understood people so well, it&#39;s ridiculous: &lt;a href=&quot;https://t.co/YstUnIcK5U&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YstUnIcK5U&lt;/a&gt; &lt;a href=&quot;https://twitter.com/CoffeewClassics/status/1803477508580356351&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;CoffeewClassics&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/9AFHLDXH07&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9AFHLDXH07&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1803684374409351551&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most important &amp;quot;WHAT IF&amp;quot; question in philosophy&lt;/p&gt;
&lt;p&gt;(Nietzsche, 1882) &lt;a href=&quot;https://t.co/clzD6ODZ33&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/clzD6ODZ33&lt;/a&gt; &lt;a href=&quot;https://twitter.com/oldbooksguy/status/1803801912455975007&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;oldbooksguy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/eEYds8egnA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/eEYds8egnA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Dostoevskyquot/status/1804005155848810948&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Dostoevskyquot&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mystics search for truth - the truth of what is.&lt;/p&gt;
&lt;p&gt;Scientists search for truth - the truth of how it works.&lt;/p&gt;
&lt;p&gt;Entrepreneurs search for truth - the truth of what people want. &lt;a href=&quot;https://twitter.com/naval/status/1804011511838577098&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you bring up that objection, is it because you’re trying to kill the idea, or trying to strengthen it?&lt;/p&gt;
&lt;p&gt;Might be useful to declare which it is, right from the start. &lt;a href=&quot;https://twitter.com/asmartbear/status/1804212947591262695&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Value your time. It is all you have.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1804361669935796512&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/De7cIfTPB3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/De7cIfTPB3&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1804397710004392058&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Scary 🥶 &lt;a href=&quot;https://twitter.com/sadek/status/1804746850269892715&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sadek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most AI writing tools suck&lt;/p&gt;
&lt;p&gt;But, AI is an incredible writing assistant.&lt;/p&gt;
&lt;p&gt;The best results come from custom prompts + your data.&lt;/p&gt;
&lt;p&gt;Here&#39;s results from an AI prompt that turns a podcast script into list of talking points e.g. educational, spicy take, shareable and more &lt;a href=&quot;https://t.co/2t57VcOFHY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2t57VcOFHY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/searchbrat/status/1804924569796366769&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;searchbrat&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Claude 3.5 Sonnet + Artifacts is an insane upgrade&lt;/p&gt;
&lt;p&gt;Now anyone employ their own personal business intelligence intern.&lt;/p&gt;
&lt;p&gt;PROMPT: Create an interactive Business intelligence infographics report of this Tesla Q1 2024 Update &lt;a href=&quot;https://t.co/XBeOD7pUJI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XBeOD7pUJI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/minchoi/status/1804928914478993816&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;minchoi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The more tasks are broken down, the more dependency arrows, the more intricate the analysis, the less I believe the final estimate for the project.&lt;/p&gt;
&lt;p&gt;Complexity breeds unpredictability. &lt;a href=&quot;https://twitter.com/asmartbear/status/1805109100222501326&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;5 bad habits that are killing your productivity:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You don’t wake up early (Marcus Aurelius)&lt;/li&gt;
&lt;li&gt;You focus on what’s outside your control (Epictetus)&lt;/li&gt;
&lt;li&gt;You’re in the wrong crowd (MA) 4. You don’t know how to say “no” (Seneca)&lt;/li&gt;
&lt;li&gt;You think you’ll live forever (Seneca) &lt;a href=&quot;https://twitter.com/dailystoic/status/1805284769724612975&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/pZty0HK7ml&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pZty0HK7ml&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PsycheWizard/status/1805681114951954545&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PsycheWizard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Strongest personality traits that go with high life satisfaction:&lt;/p&gt;
&lt;p&gt;-Am good at many things&lt;br /&gt;
-Believe that by working hard a person can achieve anything&lt;br /&gt;
-Take risks&lt;br /&gt;
-Easily apologize when I have been wrong&lt;br /&gt;
-Believe one has special duties to ones family&lt;br /&gt;
-Like to visit new places&lt;br /&gt;
-Am an extremely loyal person&lt;br /&gt;
-Respect authority&lt;br /&gt;
-Work on improving myself&lt;/p&gt;
&lt;p&gt;Strongest personally traits that go with low life satisfaction:&lt;/p&gt;
&lt;p&gt;-Often feel that others misunderstand me&lt;br /&gt;
-Find that nothing excites me&lt;br /&gt;
-Postpone decisions&lt;br /&gt;
-Hate to hear about the successes of others&lt;br /&gt;
-Am often bored&lt;br /&gt;
-Let others take advantage of me&lt;br /&gt;
-Make enemies&lt;br /&gt;
-Often tell lies&lt;br /&gt;
-Often forget things&lt;br /&gt;
-Cry easily&lt;/p&gt;
&lt;p&gt;(nicely summed by @sbkaufman) &lt;a href=&quot;https://twitter.com/jayvanbavel/status/1805682431288394027&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jayvanbavel&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;if you are tired&lt;/p&gt;
&lt;p&gt;then just do it tired &lt;a href=&quot;https://t.co/Lx7lHVn9mG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Lx7lHVn9mG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/sporadica/status/1805764527222407273&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sporadica&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you feel like all the good ideas are taken, remember that humans have felt that way for 250 years, and have always been wrong. &lt;a href=&quot;https://twitter.com/asmartbear/status/1805793862113206483&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/lCAmGbyc4O&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lCAmGbyc4O&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1805954897084350572&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;9 powerful systems to make 2024 your best year ever:&lt;/p&gt;
&lt;p&gt;h/t @SystemSunday&lt;br /&gt;
(Found it valuable? Repost ♻️ the hyper-visual to spread the word) &lt;a href=&quot;https://t.co/d98UlKV4D9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/d98UlKV4D9&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SachinRamje/status/1805955840895078732&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SachinRamje&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You learn faster by doing than reading.&lt;/p&gt;
&lt;p&gt;But also you’ll miss awesome things others already found.&lt;/p&gt;
&lt;p&gt;But if they’re handed to you, you don’t really know them.&lt;/p&gt;
&lt;p&gt;So, alternate.&lt;/p&gt;
&lt;p&gt;Explore on your own, then read with enhanced comprehension, then back to your own exploration. &lt;a href=&quot;https://twitter.com/asmartbear/status/1806014317164126708&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Big 5 personality traits strongly predict life satisfaction (r = .8 - one of the largest effects I’ve seen in a psychology paper). &lt;a href=&quot;https://t.co/K2OaLCSD0L&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/K2OaLCSD0L&lt;/a&gt; &lt;a href=&quot;https://t.co/TlZiLN3ibe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TlZiLN3ibe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SteveStuWill/status/1806087660139946432&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SteveStuWill&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to communicate your vision effectively? &lt;a href=&quot;https://t.co/m4JVqwXV4G&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/m4JVqwXV4G&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1806163849017500099&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Buried in 10 years of Jensen Huang&#39;s Stanford talks are the secrets to building the most valuable tech company in the world.&lt;/p&gt;
&lt;p&gt;I dug through hours of talks and mapped out how the 30 year veteran CEO of NVIDIA thinks about inventing the future. &lt;a href=&quot;https://t.co/lnMIrjZFBV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lnMIrjZFBV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/JasonShen/status/1806357605343691053&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JasonShen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Emotion regulation is like other skills: it takes practice.&lt;/p&gt;
&lt;p&gt;After 2 weeks of daily journaling to reframe unpleasant events, depression dropped, life satisfaction rose, and the benefits lasted at least a month.&lt;/p&gt;
&lt;p&gt;The best way to improve at managing emotions is to do it more often. &lt;a href=&quot;https://t.co/vt2JQ6aMWe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vt2JQ6aMWe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AdamMGrant/status/1806377596445237307&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AdamMGrant&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;4 Amazing Books That Will Challenge Your Thinking&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Determined by Robert M. Sapolsky &lt;a href=&quot;https://t.co/0LFmPHAfeT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0LFmPHAfeT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Powerofbooks3/status/1806538815580041267&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Powerofbooks3&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Work as hard as you can. Even though what you work on and who you work with are more important.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1806584064255619361&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;how to be satisfied: agency&lt;br /&gt;
“believe that by working hard a person can achieve anything” &lt;a href=&quot;https://t.co/xt1vEBI1dI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xt1vEBI1dI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/saranormous/status/1806597142401663038&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;saranormous&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Failure is irrelevant unless it is catastrophic.” — @elonmusk&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/3LZXhqwXPo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3LZXhqwXPo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1806708265104912533&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If the product is zero-touch, high scale, then being fully metrics-driven makes sense.&lt;/p&gt;
&lt;p&gt;Otherwise be largely qualitative, because numbers are useful checks in the dashboard, not the view out the windshield. &lt;a href=&quot;https://twitter.com/asmartbear/status/1806739846456582566&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s easy to confuse being busy with being productive.&lt;/p&gt;
&lt;p&gt;Here are a couple of questions worth asking yourself:&lt;/p&gt;
&lt;p&gt;‣ Does what I am doing contribute to the goal?&lt;br /&gt;
‣ Do I need to create a system around this?&lt;br /&gt;
‣ Can someone else perform this task?&lt;br /&gt;
‣ Should I say “no” to this?&lt;br /&gt;
‣ Can I substitute this activity for something else on my schedule?&lt;br /&gt;
‣ Should I be increasing/decreasing time spent in this area? &lt;a href=&quot;https://twitter.com/Kpaxs/status/1806968034847768886&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to reclaim 40 hrs/week (I’m not kidding): &lt;a href=&quot;https://t.co/6AyEHqfMUf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6AyEHqfMUf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SystemSunday/status/1807026689471316189&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SystemSunday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;To me, the mind should be a servant and a tool, not a master. My monkey mind should not control and drive me 24/7.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1807493808348905581&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dear SaaStr: How Can I Make Sure My Board Doesn’t Fire Me?&lt;/p&gt;
&lt;p&gt;Founders are often guarded toward most VCs.  Perhaps they should be.  That’s a different, and longer conversation.  And one thing founders tend to worry about is — can I be fired by my investors?&lt;/p&gt;
&lt;p&gt;🤷‍♀️First, it’s tough to be truly fired if you control the majority of the board, voting shares, etc.&lt;/p&gt;
&lt;p&gt;So the more rounds you raise, the less it’s really up to you who the CEO is.  With more rounds of venture capital come more board seats, and after a few rounds, the founders often don’t control the board.  And the board decides who the CEO is.&lt;/p&gt;
&lt;p&gt;Even if you control the board, contractual terms alone don’t eliminate all drama and stress in high-stakes situations.  We saw this live with Uber.  Even with Travis Kalanick controlling the board, in the end, he was still pushed out.  It wasn’t easy, but the investors did push him out.  We also saw it live in a crazy way with WeWork. The investors paid a crazy amount to push the CEO out.&lt;/p&gt;
&lt;p&gt;👉The thing is, the last thing 98% of boards want to do is fire a CEO, and most especially in an earlier-stage startup.&lt;/p&gt;
&lt;p&gt;It’s simply way too much work, and way too risky, to try to find someone new to come in. That won’t know the business, the customers, the codebase, etc.&lt;/p&gt;
&lt;p&gt;And everyone knows startups are tough, and have ups-and-down.  Especially seasoned VCs.&lt;/p&gt;
&lt;p&gt;🙍‍♀️But this concern weighs on a lot of founders nevertheless.  What’s the answer?&lt;/p&gt;
&lt;p&gt;Some simple advice: transparency + not running out of money mean you shouldn’t have to worry, not 99% of the time.&lt;/p&gt;
&lt;p&gt;Where boards get so nervous as to want a fire a CEO is when the bad news is a big surprise.  After another big surprise.  Really, the Third Big Surprise. Missing a quarter is tough. It happens all the time, though. But when a CEO tells you everything is Daisies and Unicorns, going great, and then you get an email later saying the quarter was missed hard … that creates some panic.&lt;/p&gt;
&lt;p&gt;Hiding bad news repeatedly also freaks investors out.  Many founders hide from bad news. They stop sending out investor updates for a while. They hunker down. That’s natural. And a terrible idea. Investors are prepared for bad news. Share it as soon as you have it. Actually, share it as soon as you sense it.&lt;/p&gt;
&lt;p&gt;Finally, the worst bad news to hide is that you are running out of money at a much faster rate than anticipated. Don’t hide the burn rate. Share your “Zero Cash Date” every month. More on that here: Knowing — and Sharing — Your Zero Cash Date – SaaStr Don’t run out of cash a lot faster than you’ve led your investors to believe. That freaks everyone out. Then, they feel like they have to make a change. Even if that’s a bad choice — there’s no better choice.  And here’s the key:  almost all VCs save some extra money for a second check.  As long as they know when you’re out of money, and you’ve shared that well ahead of time, they can prepare themselves to decide whether or not to write that second check.&lt;/p&gt;
&lt;p&gt;So my quick tips:&lt;/p&gt;
&lt;p&gt;1⃣Send out a monthly investor update, every month, ideally the first week of each month. It’s OK to send a “Flash” update that is draft, and then follow with the final numbers later. Better to send a 95% complete update on Jan 1 on the the last year, than a 100% accurate update on March 31.&lt;/p&gt;
&lt;p&gt;2⃣Share your top 2-3 concerns in each board meeting, along with the top 3 highlights. Just put them out there, so everyone’s tracking them.&lt;/p&gt;
&lt;p&gt;3⃣Share bad news quickly, and really, before it happens. As a founder, you know. You know when you’re over your skis. You know when the burn is too high. You know when that fancy VP of Sales you hired isn’t going to work out. You know. So share it early, before anyone else can even see it. That builds more trust than you can imagine.&lt;/p&gt;
&lt;p&gt;4⃣You can re-forecast once a year, max.  After that, it’s just a miss, and accept it.  That’s your job.  Some founders endlessly reforecast when things get tough.  That helps no one.  It just undermines confidence.&lt;br /&gt;
Don’t cancel board meetings when times are tougher.  I see this way too often these days.&lt;/p&gt;
&lt;p&gt;👉 No surprises to your board and investors.   This basically ensures no one thinks about making a CEO change.  Try to live by this creed, if you can.  Share the important surprises when they happen, and ideally really, before they happen.  Even when every day and week brings a new one.&lt;/p&gt;
&lt;p&gt;Most importantly, remember how VCs work.  Most VCs can afford to lose the first check they invest in you. The second, the stress level starts to go up (unless you are a true rocketship).  But “forcing” a VC to write a third check, when they don’t want to?  That’s when even the best VCs start to freak out.  That’s when you cross the line of losing too much money, over too many rounds, too many times. &lt;a href=&quot;https://twitter.com/jasonlk/status/1807497262635028744&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some audiobook recommendations:&lt;/p&gt;
&lt;p&gt;The Story of Civilization by Durant&lt;br /&gt;
Iliad (Penguin Edition)&lt;br /&gt;
The Road to Serfdom by Hayek&lt;br /&gt;
American Caesar by Manchester&lt;br /&gt;
Masters of Doom by Kushner&lt;br /&gt;
The Wages of Destruction by Tooze&lt;br /&gt;
The Storm of Steel by Junger&lt;br /&gt;
The Guns of August by Tuchman&lt;br /&gt;
The Gallic Wars by Caesar&lt;br /&gt;
Twelve Against the Gods by Bolitho&lt;br /&gt;
Genghis Khan by Weatherford&lt;/p&gt;
&lt;p&gt;The first one on the list will take a while to get through, but is very much worthwhile.&lt;/p&gt;
&lt;p&gt;Admittedly, this is a list that appeals to those who think about Rome every day.&lt;/p&gt;
&lt;p&gt;I hope someone makes an audiobook of The Encyclopedia of Military History by Dupuy and The Fifteen Decisive Battles of the World by Creasy. &lt;a href=&quot;https://twitter.com/elonmusk/status/1807611879499747768&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AMEN &lt;a href=&quot;https://twitter.com/awilkinson/status/1810743099423084679&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rafael Nadal on the importance of doing the work, even when it&#39;s hard &lt;a href=&quot;https://t.co/Kjz0UI3KCh&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Kjz0UI3KCh&lt;/a&gt; &lt;a href=&quot;https://twitter.com/farnamstreet/status/1811098116822618151&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;farnamstreet&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Such a beautiful poem on personal growth! &lt;a href=&quot;https://t.co/midjWehiLd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/midjWehiLd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1812920903975772562&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: One of the simplest things you can do to enhance your sales tempo is just create a goal for customer facing meetings in a week.&lt;/p&gt;
&lt;p&gt;That&#39;s it. You probably don&#39;t have a target (let alone a floor) for that. Do that, and you&#39;ll already be ahead of the game.&lt;/p&gt;
&lt;p&gt;If you&#39;re not having 10 customer facing meetings a week, there&#39;s probably something wrong. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1813039801463153042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most coworkers default to being polite--not telling you the raw truth.&lt;/p&gt;
&lt;p&gt;If you really want direct feedback, I believe you have to persuade people to give it to you.&lt;/p&gt;
&lt;p&gt;You can do this by saying, &amp;quot;I would love to get super direct feedback from you. Don&#39;t hold back. Don&#39;t worry about being too harsh because I know you have good intent.&amp;quot;&lt;/p&gt;
&lt;p&gt;Once they give you feedback, react positively. This celebrates their behavior and reinforces that they should continue being honest next time too.&lt;/p&gt;
&lt;p&gt;It was exciting to get a bunch of comments and edits poking holes to improve my work. Other times, it felt like I had a long way to go before I reached the quality I knew I was capable of.&lt;/p&gt;
&lt;p&gt;At the end of the day though, the question is:&lt;/p&gt;
&lt;p&gt;Would you rather know, or not know?&lt;/p&gt;
&lt;p&gt;I&#39;m thankful for the colleagues I&#39;ve had over the years who cared enough to be direct with me. &lt;a href=&quot;https://twitter.com/wes_kao/status/1813219574482874493&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;wes_kao&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: in your demos you want to be going for “oh wow” moments.&lt;/p&gt;
&lt;p&gt;Because the status quo is your enemy, you need strong emotional responses to your product to catalyze a desire to change.&lt;/p&gt;
&lt;p&gt;If you’re not hearing “oh wow” in your demo, you should be worried.&lt;/p&gt;
&lt;p&gt;Wrong script. Product isn’t there yet. Wrong target prospect. Something else.&lt;/p&gt;
&lt;p&gt;You need “wows.” &lt;a href=&quot;https://twitter.com/Kazanjy/status/1813219870793994696&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Going upmarket doesn’t mean you have to piss off your smaller (SMB) customers. But it is inevitably what most teams end up doing. Why? Because someone with enough authority decides to be data-driven instead of data-informed. Usually because of short-term reactive thinking. &lt;a href=&quot;https://twitter.com/hnshah/status/1813242208302297395&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“It’s not what happens to you, but how you react to it that matters.” — Epictetus &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1814404850345824622&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Henry Ford: What’s your mood got to do with it? &lt;a href=&quot;https://t.co/OyDvDk0dbq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OyDvDk0dbq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1816473130556330292&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There will come a day when your anger leaves you.&lt;/p&gt;
&lt;p&gt;It may be on your last day.&lt;/p&gt;
&lt;p&gt;Then you can see the world as it is.&lt;/p&gt;
&lt;p&gt;And live again. &lt;a href=&quot;https://twitter.com/naval/status/1816745052347204045&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Be so expert in your market that your prospects reach out to you for professional advice. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1816838188591382755&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Churchill: &lt;a href=&quot;https://t.co/dbk1CZQPVU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/dbk1CZQPVU&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1819737439818150273&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What are 1-2 time management techniques you&#39;ve implemented that genuinely help you get more/better work done day-to-day? &lt;a href=&quot;https://twitter.com/lennysan/status/1821250775601074195&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;James Cameron:&lt;/p&gt;
&lt;p&gt;Run toward difficult. There’s less competition. &lt;a href=&quot;https://t.co/WArZGy83FL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WArZGy83FL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1822358074071335260&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/i4s2TEICqD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/i4s2TEICqD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1822532187243057334&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you think customers ought to love the feature, but they don’t use it, either…&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You’re wrong&lt;/li&gt;
&lt;li&gt;You haven’t made it intuitive&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It’s usually (1).&lt;/p&gt;
&lt;p&gt;If so, don’t just remove the feature; figure out what your incorrect assumptions are, so you don’t repeat the error. &lt;a href=&quot;https://twitter.com/asmartbear/status/1822549770096799786&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;🚙 Driving long distances in a car is very tiring.&lt;/p&gt;
&lt;p&gt;🥱 I felt sleepy and I constantly want some coffee/Red Bull.&lt;/p&gt;
&lt;p&gt;🤢 I discovered that CO2 level was 9,100 ppm (fresh air is ~420 ppm).&lt;/p&gt;
&lt;p&gt;👨‍👩‍👧‍👦 4 people in the car = 4x higher CO2.&lt;/p&gt;
&lt;p&gt;😫 Using AC with closed window didn&#39;t help.&lt;/p&gt;
&lt;p&gt;💨 So, I opened each car window slightly to allow airflow, which reduced the CO2 level to 680 ppm.&lt;/p&gt;
&lt;p&gt;❄️ Also, I&#39;m using AC to keep the temperature cooler than the outside temperature of 36°C.&lt;/p&gt;
&lt;p&gt;✅ Now, I can drive for 5 hours straight without needing coffee or Red Bull. &lt;a href=&quot;https://twitter.com/AndreyAzimov/status/1822629355778154832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AndreyAzimov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Uncertainty, not outcome, is the root of stress.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1822653449273479481&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Rather than chase what makes you happy, design a life where you avoid the things that make you unhappy.”&lt;/p&gt;
&lt;p&gt;This is wise because often we don’t know what will make us happy, or it changes over time.&lt;/p&gt;
&lt;p&gt;Whereas, you do know what makes you unhappy.&lt;/p&gt;
&lt;p&gt;It’s easier to execute. &lt;a href=&quot;https://twitter.com/asmartbear/status/1825125496687866271&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Don&#39;t procrastinate. Don&#39;t confuse. Don&#39;t wander. Don&#39;t be passive or aggressive. Don&#39;t be all about business.” ― Marcus Aurelius &lt;a href=&quot;https://twitter.com/dailystoic/status/1825170791522275451&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The two-minute rule specifies that you have to give someone an uninterrupted two minutes to explain their thinking before jumping in with your own. This ensures that everyone has time to fully crystallize and communicate their thoughts without worrying they will be misunderstood or drowned out by a louder voice.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1825199320108327270&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Andy Jassy, CEO of Amazon: &lt;a href=&quot;https://t.co/MpqEEkQKcY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MpqEEkQKcY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/saranormous/status/1827158480886886676&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;saranormous&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;South Park creators gave the greatest lesson on storytelling ever &lt;a href=&quot;https://t.co/I0P7aNk0NG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/I0P7aNk0NG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/historyinmemes/status/1827501142185808328&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;historyinmemes&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the most powerful things you can do as a founder is to jump into a job and demonstrate the “art of the possible“.&lt;/p&gt;
&lt;p&gt;Have an opportunity creation issues in your SDR team? Demonstrate that you can put five meetings on the calendar per week.&lt;/p&gt;
&lt;p&gt;Have a meeting activity problem in your account management team? Block a couple weeks of your own time and demonstrate how you can do three customer facing meetings today without breaking a sweat.&lt;/p&gt;
&lt;p&gt;It’s amazing what happens when you erase excuses from parts of your organization. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1827799658942619998&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Advice from a mentor that changed my life:&lt;/p&gt;
&lt;p&gt;There’s no such thing as a perfect moment. There are just moments—and you decide what you make of them.&lt;/p&gt;
&lt;p&gt;Go make some imperfect moments perfect through action. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1829868486115348849&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A tiered design lawn in Shanghai, with shady trees overhead, a favorite for office workers to take lunch breaks. &lt;a href=&quot;https://t.co/a5uj0ZhbS5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/a5uj0ZhbS5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/historyinmemes/status/1829886862229413999&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;historyinmemes&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Honestly when trying to find outlier founders, a large part of it is finding the autist nerds who will go infinitely deep on a particular topic that happens to be extremely valuable for making something people want&lt;/p&gt;
&lt;p&gt;Then once you’ve found the market seam you have to be generalist enough to fully realize it, build a team and capture the market fully &lt;a href=&quot;https://twitter.com/garrytan/status/1830010937270771839&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;garrytan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A piece of brutally honest advice to my younger self: &lt;a href=&quot;https://t.co/SMYZhLyJAr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SMYZhLyJAr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SahilBloom/status/1830219233369960881&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Too often groups will make a decision to do something without assigning personal responsibilities, so it is not clear who is supposed to follow up by doing what. Be clear in assigning personal responsibilities.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/HSgQMlZ1Fw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HSgQMlZ1Fw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1830246750608609690&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best thing about @elonmusk is that he makes me question if I’m thinking big enough with my life.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1830277687593877522&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founder Mode Take&lt;/p&gt;
&lt;p&gt;Founders shouldn’t be afraid to exercise more control &amp;amp; make more decisions just because they are the founders. &lt;em&gt;Sometimes you just know.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;But: sometimes you will be wrong, and sometimes you will be &lt;em&gt;catastrophically&lt;/em&gt; wrong. Founders taking more control creates a wider distribution of outcomes, on both the left &amp;amp; right side of the curve.&lt;/p&gt;
&lt;p&gt;Feels similar to how having a good King can create an amazing country, but a bad king can self-destruct an entire empire.&lt;/p&gt;
&lt;p&gt;For countries you &lt;em&gt;do&lt;/em&gt; want a narrower distribution of outcomes.&lt;/p&gt;
&lt;p&gt;But for venture-backed startups you want a wider distribution of outcomes. &lt;a href=&quot;https://twitter.com/TrevMcKendrick/status/1832156325528395964&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TrevMcKendrick&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For a long time, dementia was seen as an inevitable part of aging or the result of poor genetics.&lt;/p&gt;
&lt;p&gt;But according to new research:&lt;/p&gt;
&lt;p&gt;More than 40% of dementia cases are easily preventable.&lt;/p&gt;
&lt;p&gt;Here&#39;s what you can do to slow your cognitive decline: &lt;a href=&quot;https://t.co/LM3XAOA3gc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LM3XAOA3gc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/seanpk/status/1834217867916775633&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;seanpk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In @levelsio style, I have an 8% success rate. &lt;a href=&quot;https://t.co/pRWw1m6EWz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pRWw1m6EWz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/thepatwalls/status/1834217876615819566&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thepatwalls&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;my hypothesis on the future of software&lt;/p&gt;
&lt;p&gt;billion dollar saas companies are cooked&lt;/p&gt;
&lt;p&gt;marginal cost of building software products is going to 0&lt;/p&gt;
&lt;p&gt;in the next 2 years I&#39;ll be able to build any saas tool I need&lt;/p&gt;
&lt;p&gt;need a CRM ?&lt;/p&gt;
&lt;p&gt;prompt, 1..2..3.. and its made&lt;/p&gt;
&lt;p&gt;just for me + with every feature you need&lt;/p&gt;
&lt;p&gt;and its free&lt;/p&gt;
&lt;p&gt;many startups/giants today will crumble&lt;/p&gt;
&lt;p&gt;the only software products that will remain will have the following criteria&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;network effects ( social products )&lt;/li&gt;
&lt;li&gt;superior design ( products that feel better )&lt;/li&gt;
&lt;li&gt;distribution ( can reach more people )&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;tbh the real winners are gonna be the content creators&lt;/p&gt;
&lt;p&gt;as # of products increase -&amp;gt; # of companies competing for the same markets/creators increase -&amp;gt; increasing the value of creators&lt;/p&gt;
&lt;p&gt;the oil of today is attention&lt;/p&gt;
&lt;p&gt;but it will be the diamonds of tomorrow&lt;/p&gt;
&lt;p&gt;having a personal brand will be a superpower &lt;a href=&quot;https://twitter.com/aribk24/status/1834402184253038636&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aribk24&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Finished reading this masterpiece on probabilistic thinking and effective decision making. &lt;a href=&quot;https://t.co/JlNwBjEXZd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/JlNwBjEXZd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Gautam__Baid/status/1834615129293369363&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Gautam__Baid&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1/ Every white collar role will have a co-pilot.  Then an agent.   Which roles might change most? @dacostajam   &amp;amp; I took at look at the Bureau of Labor statistics to inspire some ideas 👇 &lt;a href=&quot;https://t.co/TSJTK1dDto&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TSJTK1dDto&lt;/a&gt; &lt;a href=&quot;https://twitter.com/astrange/status/1834640175047360979&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;astrange&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Opportunities unfold as you execute and learn, not as you whiteboard and ideate. &lt;a href=&quot;https://twitter.com/hnshah/status/1834741206607446128&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Underrated signs of a high performer:&lt;/p&gt;
&lt;p&gt;• They hate small talk.&lt;br /&gt;
• Are not okay with wasting your time.&lt;br /&gt;
• Do what they say they’re going to do.&lt;br /&gt;
• Do it with urgency.&lt;br /&gt;
• Are obsessed, not just interested.&lt;/p&gt;
&lt;p&gt;What am I missing? &lt;a href=&quot;https://t.co/vgOA5RRoAx&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vgOA5RRoAx&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1835673576436879471&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The smarter you are, the faster you see through any given game. &lt;a href=&quot;https://twitter.com/naval/status/1835816071837909427&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s not &amp;quot;Don’t compete on price.&amp;quot;&lt;/p&gt;
&lt;p&gt;It’s &amp;quot;Don’t compete ONLY on price.&amp;quot;&lt;/p&gt;
&lt;p&gt;Price is part of what the product is. &lt;a href=&quot;https://twitter.com/asmartbear/status/1835974226521579675&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I have found triangulating with highly believable people who are willing to have thoughtful disagreements has never failed to enhance my learning and sharpen the quality of my decision making.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Principleoftheday&quot;&gt;#Principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/TdwkE96yu6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TdwkE96yu6&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1837139189038497843&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Time” is a zero-sum game:&lt;/p&gt;
&lt;p&gt;More spent in one area means less in others.&lt;/p&gt;
&lt;p&gt;To be exceptional in any area requires a lot of time, even if you also have talent.&lt;/p&gt;
&lt;p&gt;Therefore, you should spend little time in most areas.&lt;/p&gt;
&lt;p&gt;Rid yourself of perfectionism; embrace prioritization. &lt;a href=&quot;https://twitter.com/asmartbear/status/1837687516331114715&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Retirement starts when you stop sacrificing today for some imaginary tomorrow.&lt;/p&gt;
&lt;p&gt;You retire by saving up enough money, becoming a monk, or by finding work that feels like play to you.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1837938164498886681&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Finding customers is hard.&lt;br /&gt;
Getting them to talk to you is hard.&lt;br /&gt;
Getting them to pay you for product is hard.&lt;br /&gt;
Standing out in the noise is hard.&lt;/p&gt;
&lt;p&gt;That’s why you’re still coding, even though that’s not solving any of those problems.&lt;/p&gt;
&lt;p&gt;Stop it.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/7OQWDagW1o&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7OQWDagW1o&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1839049744242409712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;first time founders care about product&lt;br /&gt;
second time founders care about distribution&lt;br /&gt;
third time founders care about retention &lt;a href=&quot;https://twitter.com/Suhail/status/1840066808621216008&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Suhail&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You could write code for the next six months without stopping, and you wouldn’t be one centimeter closer to understanding what customers actually want, or how the market works, or what to charge, or how to get attention.&lt;/p&gt;
&lt;p&gt;Put the compiler down.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/7OQWDagW1o&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7OQWDagW1o&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1840084311057301789&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone says &amp;quot;have passion to succeed,&amp;quot; but you also need competence. And luck. And something that other people actually value.&lt;/p&gt;
&lt;p&gt;Passion is not sufficient, sorry. &lt;a href=&quot;https://twitter.com/asmartbear/status/1841025265532576017&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The single most important trait for life: &lt;a href=&quot;https://t.co/7noC5yR4xV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7noC5yR4xV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SahilBloom/status/1841089932435018212&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ETVVBzNSxM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ETVVBzNSxM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1841149885568991666&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;5 Essential Exercises to Strengthen Your Back Muscles:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/4ir4GsBhDz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4ir4GsBhDz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/MoralFitnezz/status/1842586140790169639&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MoralFitnezz&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;🤣🤣 &lt;a href=&quot;https://twitter.com/elonmusk/status/1842980353751031889&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Complex decisions and processes are almost always about selecting between entire sets of trade-offs, and not about hard constraints or exceptionless rules.&lt;/p&gt;
&lt;p&gt;Which means accepting the negative side of the trade-off. &lt;a href=&quot;https://twitter.com/asmartbear/status/1843030475851362550&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s rare for intelligence and drive to intersect in one person.&lt;/p&gt;
&lt;p&gt;When they do, look out. &lt;a href=&quot;https://twitter.com/naval/status/1845663948823314437&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jeff Bezos on decision making with intuition vs data. &lt;a href=&quot;https://t.co/DWjTj2FlFQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DWjTj2FlFQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/hnshah/status/1845935981243126082&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/XqTSjUQH5w&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XqTSjUQH5w&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1849749021633511669&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Perfectionists spend too much time on little differences at the margins at the expense of the important things.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Principleoftheday&quot;&gt;#Principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/MUy6aji99I&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MUy6aji99I&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1849812509810733327&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The basis for friendship, relationship, partnership - isn’t proximity or time spent together - it’s values. &lt;a href=&quot;https://twitter.com/naval/status/1851943357527753135&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Service as Software&amp;quot; is Silicon Valley&#39;s hottest buzzword right now.&lt;/p&gt;
&lt;p&gt;Everyone&#39;s talking about SaaS becoming service providers, but no one&#39;s explaining HOW. The answer? After 6 months of research and 100s of startup conversations, we have the answer: Systems of Agents.&lt;/p&gt;
&lt;p&gt;We&#39;re looking at a $4.6T opportunity. &lt;a href=&quot;https://twitter.com/JayaGup10/status/1852148821389934921&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JayaGup10&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;true &lt;a href=&quot;https://t.co/MSfEOi1p7c&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MSfEOi1p7c&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1852223344201842745&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;no one is waiting for you &lt;a href=&quot;https://t.co/LTgrgNmTtj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LTgrgNmTtj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/IterIntellectus/status/1852324805607141562&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IterIntellectus&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the deeper i go into programming the more i realize that almost everything is just data flow: if you can figure out how the data should flow, you nail 80% of it. &lt;a href=&quot;https://twitter.com/maharshii/status/1852529516385841373&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maharshii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nikola Tesla on solitude. ✍️ &lt;a href=&quot;https://t.co/8DU6lSMlf0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8DU6lSMlf0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PhysInHistory/status/1852597723003806200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PhysInHistory&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Two products, identical in features.&lt;/p&gt;
&lt;p&gt;One is cheaper.&lt;/p&gt;
&lt;p&gt;The other is delightful to use.&lt;/p&gt;
&lt;p&gt;Which makes more money?  More profit?  More word of mouth?  More fun to build?&lt;/p&gt;
&lt;p&gt;Compete on the right stuff. &lt;a href=&quot;https://twitter.com/asmartbear/status/1852622930506666124&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Neuronal firing in the brain. Feels like the universe &lt;a href=&quot;https://t.co/ggKjipDcc1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ggKjipDcc1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aether_coin/status/1852668079261601971&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aether_coin&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Restricting sugar exposure in the first two years of life can meaningfully reduce the risk of chronic diseases in adulthood.&lt;/p&gt;
&lt;p&gt;We need to rethink many cereals, snacks, and treats for children.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/P0cTOtpLNV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/P0cTOtpLNV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ChrisPalmerMD/status/1852771344510853584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ChrisPalmerMD&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;— William Shakespeare &lt;a href=&quot;https://t.co/8PKNUKrjJf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8PKNUKrjJf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Lovandfear/status/1853023668210638964&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Lovandfear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/f6IYY460KL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/f6IYY460KL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/shantanukmr/status/1853109348995674608&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shantanukmr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Single people vote for themselves. Married people vote for their kids. &lt;a href=&quot;https://twitter.com/naval/status/1853249900873765116&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good teams fail faster so they can succeed faster. &lt;a href=&quot;https://twitter.com/naval/status/1853329309169021394&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The singular trait of a leader is courage. &lt;a href=&quot;https://twitter.com/naval/status/1853348793741381957&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I used to think the most influential thinkers were:&lt;/p&gt;
&lt;p&gt;Einstein, Nietzsche, or Freud.&lt;/p&gt;
&lt;p&gt;Then I found the father of analytical psychology, who said: “Until you make the unconscious conscious, it will direct your life, and you will call it fate.”&lt;/p&gt;
&lt;p&gt;5 ideas from one of the greatest thinkers of the 20th century: 🧵 &lt;a href=&quot;https://twitter.com/GeniusGTX/status/1853438777295048818&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GeniusGTX&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;And maybe because they&#39;re working another 2hr/day.&lt;/p&gt;
&lt;p&gt;Or maybe because they&#39;re spending their time on the right tasks.&lt;/p&gt;
&lt;p&gt;Or maybe because they&#39;re doing stuff instead of reading more than necessary. &lt;a href=&quot;https://twitter.com/asmartbear/status/1854233111845802092&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why is top-line growth the holy grail for SaaS success? Because it implies everything else is functioning well: product/market fit, retention, customer acquisition. Plus, it drives the highest equity value.&lt;/p&gt;
&lt;p&gt;And yet, it’s not the only important metric:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/IwJzk6iCpu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IwJzk6iCpu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1854373717620432962&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to stay calm (with simple questions): &lt;a href=&quot;https://t.co/4RSEZmmtSD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4RSEZmmtSD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/_alexbrogan/status/1855037935596585235&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;_alexbrogan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Deep talk with your partner &lt;a href=&quot;https://t.co/eAqtNgfMYi&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/eAqtNgfMYi&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Liminal1988/status/1855169560783016364&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Liminal1988&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How To Write - by David Ogilvy, 1982 &lt;a href=&quot;https://t.co/hkLnenvjje&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hkLnenvjje&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tlghost_co/status/1855172637674045479&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tlghost_co&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs on the most important job of a CEO&lt;/p&gt;
&lt;p&gt;“The greatest people are self-managing. They don’t need to be managed. Once they know what to do, they’ll go figure out how to do it… What they need is a common vision, and that’s what leadership is. Leadership is having a vision, being able to articulate that so the people around you can understand it, and getting consensus on a common vision.”&lt;/p&gt;
&lt;p&gt;Steve continues:&lt;/p&gt;
&lt;p&gt;“We wanted people who were insanely great at what they did… and the neatest thing that happens when you get a core group ten great people is that it becomes self-policing as to who they let into that group. So I consider the most important job of someone like myself is recruiting.” &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1855231680237474259&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;CSS-only magnetic link effect 🤯&lt;/p&gt;
&lt;p&gt;li:has(a:is(:hover, :focus-visible)) {anchor-name: --a; }&lt;br /&gt;
ul::before {&lt;br /&gt;
left: anchor(--a left);&lt;br /&gt;
width: anchor-size(--a width);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;using CSS anchor positioning, declare an anchor on hover for the indicator 🚀 &lt;a href=&quot;https://t.co/or4LLSzAVB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/or4LLSzAVB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jh3yy/status/1855346126700118495&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jh3yy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs&#39; emailed himself ~1 year before he died.&lt;/p&gt;
&lt;p&gt;My mind wouldn&#39;t shut up after I read it. &lt;a href=&quot;https://t.co/A6PPMiyC02&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/A6PPMiyC02&lt;/a&gt; &lt;a href=&quot;https://twitter.com/_alexbrogan/status/1855400252242829472&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;_alexbrogan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;INTIMACY IN A RELATIONSHIP &lt;a href=&quot;https://t.co/KqMgdEkzPN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KqMgdEkzPN&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Liminal1988/status/1855536833330864458&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Liminal1988&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Going all in on something for a month gets better results than dabbling in it for a decade.&lt;/p&gt;
&lt;p&gt;The dabbler spreads their energy over many things. The focused person concentrates effort on one.&lt;/p&gt;
&lt;p&gt;The most dangerous competitor is the one with a single goal. &lt;a href=&quot;https://twitter.com/shaneparrish/status/1855591176000213053&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shaneparrish&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you stop writing, you start allowing others to do the thinking for you.&lt;/p&gt;
&lt;p&gt;@JeffBezos on how writing improves your thinking &lt;a href=&quot;https://t.co/D4cOCgUMtY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/D4cOCgUMtY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ValaAfshar/status/1855619322686677118&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ValaAfshar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/m47Jteaj4X&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/m47Jteaj4X&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aphysicist/status/1855674559015395393&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aphysicist&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If there’s one quote to live by for the next 4 years - &lt;a href=&quot;https://t.co/KsqiEmK4TC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KsqiEmK4TC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/mrexits/status/1855780582644474296&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mrexits&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remember. &lt;a href=&quot;https://twitter.com/naval/status/1855810059034374528&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I feel like I constantly don’t have enough time.&lt;/p&gt;
&lt;p&gt;Not because I can’t get anything done, but because I’m never satisfied with how much is done.&lt;/p&gt;
&lt;p&gt;I’m always thinking about the next step.&lt;/p&gt;
&lt;p&gt;Bad for stress, good for productivity. &lt;a href=&quot;https://twitter.com/asmartbear/status/1855826289904787584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;ROMANTIC LOW-COST ACTIVITIES &lt;a href=&quot;https://t.co/9gTEhxymT8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9gTEhxymT8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Liminal1988/status/1855894819450593591&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Liminal1988&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Small markets are good if you can be &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Large markets contain niches that are too small for incumbents to target but perfect for startups; there&#39;s budget and people are searching for it.&lt;/p&gt;
&lt;p&gt;So, that&#39;s often better.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/8TZHTocjw0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8TZHTocjw0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1856179868771418411&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dear son, &lt;a href=&quot;https://t.co/TNmhHTNitp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TNmhHTNitp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DearS_o_n/status/1856382001441280274&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DearS_o_n&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I have never seen ordinary effort lead to extraordinary results.&amp;quot;&lt;/p&gt;
&lt;p&gt;— Alexandr Wang &lt;a href=&quot;https://twitter.com/paulg/status/1856747693688668642&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Truth-seekers take feedback from nature (planes have to fly), free markets (customers have to buy), or competition (militaries have to win).&lt;/p&gt;
&lt;p&gt;Consensus-seekers take feedback from people (actors want fans, academics want honors, politicians want votes, journalists want status). &lt;a href=&quot;https://twitter.com/naval/status/1856965245690081637&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mark Zuckerberg: “You can’t 80/20 everything”&lt;/p&gt;
&lt;p&gt;When Facebook first launched, a user’s profile included things like the dorm they lived in and the courses they were taking.&lt;/p&gt;
&lt;p&gt;Paul Graham asks Mark if he thinks Facebook would’ve worked without these features, to which Mark replies:&lt;/p&gt;
&lt;p&gt;“I remember this early debate that Dustin [Moskovitz] and I had where we had to do some manual work for every school that we released Facebook at. To do that, we went through and parsed the course catalogs at the schools to make sure that the data was clean.”&lt;/p&gt;
&lt;p&gt;Dustin argued that it would be easier to launch new schools if they didn’t parse these catalogs, while Mark thought this would be an unacceptable drop in quality.&lt;/p&gt;
&lt;p&gt;“We just had this really long debate about what quality meant for us and the community that we wanted to establish and the culture. In retrospect, maybe it wouldn’t have made a huge difference in how things played out. But it definitely set this tone where there’s a lot of clean data on Facebook, you can rely on it, it feels like a college-specific thing—which was valuable early on for setting the culture.”&lt;/p&gt;
&lt;p&gt;Mark then offers the following advice to the YC Startup School audience:&lt;/p&gt;
&lt;p&gt;“In the projects you work on, you will have a lot of similar questions. There’s the famous 80/20 rule where you get 80% of the benefit by doing 20% of the work, but you can’t just 80/20 everything. There have to be certain things that you are just the best at and that you go way further than anyone else on to establish this quality bar and have your product be the best thing that’s out there.”&lt;/p&gt;
&lt;p&gt;Video source: @ycombinator (2012) &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1857106336871264431&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just watched my 5-year-old son chat with ChatGPT advanced voice mode for over 45 minutes.&lt;/p&gt;
&lt;p&gt;It started with a question about how cars were made.&lt;/p&gt;
&lt;p&gt;It explained it in a way that he could understand.&lt;/p&gt;
&lt;p&gt;He started peppering it with questions.&lt;/p&gt;
&lt;p&gt;Then he told it about his teacher, and that he was learning to count.&lt;/p&gt;
&lt;p&gt;ChatGPT started quizzing him on counting, and egging him on, making it into a game.&lt;/p&gt;
&lt;p&gt;He was laughing and having a blast, and it (obviously) never lost patience with him.&lt;/p&gt;
&lt;p&gt;I think this is going to be revolutionary. The essentially free, infinitely patient, super genius teacher that calibrates itself perfectly to your kid&#39;s learning style and pace.&lt;/p&gt;
&lt;p&gt;Excited about the future. &lt;a href=&quot;https://twitter.com/awilkinson/status/1857477769489428874&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In 31 years of age I think I’ve finally discovered the cure to depression and it’s just leaving the house at every single possible opportunity no matter how badly you don’t want to. &lt;a href=&quot;https://twitter.com/jackcalifano/status/1857637478523363378&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jackcalifano&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I code 7-8 hours with AI every day.&lt;/p&gt;
&lt;p&gt;6 days of the week.&lt;/p&gt;
&lt;p&gt;I tested all prominent tools in AI tech.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;v0&lt;/li&gt;
&lt;li&gt;Cursor&lt;/li&gt;
&lt;li&gt;Bolt .new&lt;/li&gt;
&lt;li&gt;Replit Agent&lt;/li&gt;
&lt;li&gt;Gptengineer&lt;/li&gt;
&lt;li&gt;Windsurf IDE&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here&#39;s my latest Ranking:&lt;/p&gt;
&lt;p&gt;Most improved project in 14 days:&lt;/p&gt;
&lt;p&gt;Bolt. new - 8/10&lt;br /&gt;
I am impressed by the output quality of bolt.&lt;/p&gt;
&lt;p&gt;Just 2 weeks back it felt half baked. Now it is shaping into something good.&lt;/p&gt;
&lt;p&gt;Great for coding Landing pages and micro saas (4-5 pages)&lt;/p&gt;
&lt;p&gt;Most Versatile Project:&lt;/p&gt;
&lt;p&gt;Replit Agent - 7/10&lt;br /&gt;
After Replit introduced React + Vite. It is now building applications with cool UI.&lt;/p&gt;
&lt;p&gt;Still a bit slow. A bit over complicated&lt;/p&gt;
&lt;p&gt;BUT moving in right direction.&lt;/p&gt;
&lt;p&gt;I coded a modern landing page in 1 shot that i designed in v0.&lt;/p&gt;
&lt;p&gt;Best in their domain:&lt;br /&gt;
Cursor - For coding&lt;br /&gt;
V0 - For frontend design&lt;/p&gt;
&lt;p&gt;Half baked projects:&lt;/p&gt;
&lt;p&gt;Windsurf IDE - 4/10&lt;br /&gt;
Disappointed with the output. It was breaking after 5th step every time.&lt;/p&gt;
&lt;p&gt;Still need improvement:&lt;/p&gt;
&lt;p&gt;GPTengineer - 4/10&lt;br /&gt;
Cool idea but competition is now super tough.&lt;/p&gt;
&lt;p&gt;Bolt is moving at crazy pace. v0 improved context with context caching.&lt;/p&gt;
&lt;p&gt;GPTengineer is still implementing 1 edit in one message.&lt;/p&gt;
&lt;p&gt;Here&#39;s my tech stack as of today.&lt;/p&gt;
&lt;p&gt;I use ChatGPT search for research&lt;br /&gt;
I use o1 model for documentation&lt;br /&gt;
I use v0 for frontend design&lt;br /&gt;
I use claude AI for coding brain&lt;br /&gt;
I use cursor for code implementation&lt;br /&gt;
I use replit to deploy projects&lt;/p&gt;
&lt;p&gt;I feel like I can build any web app now with this stack in 5-7 days.&lt;/p&gt;
&lt;p&gt;I&#39;ll be sharing some cool experiments in coming days.&lt;/p&gt;
&lt;p&gt;Stay tuned. &lt;a href=&quot;https://twitter.com/cjzafir/status/1858172065423257612&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;cjzafir&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are so many challenges to a company succeeding.&lt;/p&gt;
&lt;p&gt;Only a few 𝘮𝘶𝘴𝘵 be completely solved (like an enormous, growing market, or an ingenious solution to a really valuable problem).&lt;/p&gt;
&lt;p&gt;If “everything” is a problem, that’s too many problems. &lt;a href=&quot;https://twitter.com/asmartbear/status/1859071171406213603&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An important truth: Preparation always beats planning. &lt;a href=&quot;https://t.co/hBIoIU1POG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hBIoIU1POG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SahilBloom/status/1859587568062410803&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;21 Leadership Lessons (I revisit once a week) &lt;a href=&quot;https://t.co/yFzoc9wpTY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/yFzoc9wpTY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dklineii/status/1859600085836878180&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Guide to starting a US company as an international founder.&lt;/p&gt;
&lt;p&gt;Here are ALL your options:&lt;br /&gt;
—O-1A /EB-1A visa&lt;br /&gt;
—International Entrepreneur Rule&lt;br /&gt;
—H-4, dependent on your spouse&lt;br /&gt;
—US citizen cofounder with transition timeline&lt;br /&gt;
—E-2 Treaty investor (not Indian / Chinese)&lt;br /&gt;
—EB-5 investor&lt;/p&gt;
&lt;p&gt;1/9 &lt;a href=&quot;https://twitter.com/deedydas/status/1860519891872416044&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;deedydas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want your kids to succeed? Praise effort and grit not talent.&lt;/p&gt;
&lt;p&gt;Fascinating study. &lt;a href=&quot;https://t.co/V0O2JczDr7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/V0O2JczDr7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1860532241404719451&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Modern luxury is the ability to think clearly, sleep deeply, move slowly, and live quietly in a world designed to prevent all four. &lt;a href=&quot;https://twitter.com/thejustinwelsh/status/1861393866022117521&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thejustinwelsh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best way to build products is to never get into the trap of imagining a user will do any work to figure out anything. The moment you start describing how a user will learn how something works you’ve designed the product wrong. &lt;a href=&quot;https://twitter.com/levie/status/1861485924569489531&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Stay small until you figured out what&#39;s working.” — @naval &lt;a href=&quot;https://t.co/8CEoaHR6Q2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8CEoaHR6Q2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1861773544109019455&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The truth?&lt;/p&gt;
&lt;p&gt;The gap between devs using AI right and those who aren&#39;t is about to explode.&lt;/p&gt;
&lt;p&gt;This isn&#39;t about code completion anymore.&lt;/p&gt;
&lt;p&gt;This is about code comprehension.&lt;/p&gt;
&lt;p&gt;Building different in 2024 🚀 &lt;a href=&quot;https://twitter.com/robj3d3/status/1861780830659453104&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;robj3d3&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Maybe the only documentary I regard as a &amp;quot;must watch&amp;quot;&lt;/p&gt;
&lt;p&gt;and it&#39;s free on youtube &lt;a href=&quot;https://t.co/ZtcZ8xOd6d&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZtcZ8xOd6d&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DylanoA4/status/1861814545540362679&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DylanoA4&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;True &lt;a href=&quot;https://twitter.com/elonmusk/status/1861827362482209058&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People waste years optimizing a life they don&#39;t want to live because they haven&#39;t taken the time to think about what they actually want to do. Obvious, but it bears repeating because so much online content is about little tips, tricks, and routines that miss the bigger picture. &lt;a href=&quot;https://twitter.com/david_perell/status/1861843012990452188&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Happiness (if you want it):*&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Meet basic needs&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Avoid cheap dopamine&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Leave the past alone&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Limit desires to ones achievable at the edge of your capability&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Find something beyond yourself (mission, children, God)&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;*Most people want something else. &lt;a href=&quot;https://twitter.com/naval/status/1861855719060091222&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The ability to stay calm during conflict is a superpower.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1861935790881902679&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Software engineers aren&#39;t lazy.&lt;/p&gt;
&lt;p&gt;They just have no incentive to be productive at bigCos.&lt;/p&gt;
&lt;p&gt;Here&#39;s why:&lt;br /&gt;
— No reward for simplicity / deleting things&lt;br /&gt;
— No prizes for doing it quickly (everyone assumes it was easy)&lt;br /&gt;
— Little interesting work. Business needs are often boring.&lt;/p&gt;
&lt;p&gt;1/5 &lt;a href=&quot;https://twitter.com/deedydas/status/1862138506774213061&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;deedydas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Time to finally read this one. My lead engineer recommended it to me. Being web devs, we often overlook what our memory does. This serves as a good introduction to how memory works. &lt;a href=&quot;https://t.co/bOb0GThOvP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/bOb0GThOvP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/0xmer_/status/1862289450765562272&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;0xmer_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life feels easier when we tell ourselves that everyone else is just as clueless as us. Winging it, like we are. Impostors, like us.&lt;/p&gt;
&lt;p&gt;Many are, but that doesn’t mean you should be.&lt;/p&gt;
&lt;p&gt;It also doesn’t mean you should feel bad about it, or beat yourself up about it, or that you don’t deserve to do whatever you’re doing.&lt;/p&gt;
&lt;p&gt;It does means you should strive to be better. Yes you’re “good enough” now, but also don’t let that be the end of the journey. &lt;a href=&quot;https://twitter.com/asmartbear/status/1862567210889228782&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/axhOklRtJw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/axhOklRtJw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1862842012439040093&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The price of growth is outgrowing people.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1862856357185224877&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Before you start searching for happiness, think about it — maybe you are already happy?&amp;quot; — Dusko Radovic&lt;/p&gt;
&lt;p&gt;I say: Try to be happy, but not complacent. Continue to strive. &lt;a href=&quot;https://twitter.com/asmartbear/status/1862980430195990576&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best investors have no use for spreadsheets. &lt;a href=&quot;https://twitter.com/naval/status/1863053899743338880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“It’s not personal, it’s not business.”&lt;/p&gt;
&lt;p&gt;Ha. Business is people. Business affects people. Business is personal.&lt;/p&gt;
&lt;p&gt;If you bring this insight into your brand, you differentiate and win people over.&lt;/p&gt;
&lt;p&gt;Some examples, and how to do it:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/WMsL8dje4p&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WMsL8dje4p&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1863065490576249124&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This passage from Schopenhauer is so brilliantly brutal &lt;a href=&quot;https://t.co/Cas53Ry8Zm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Cas53Ry8Zm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DylanoA4/status/1863243263487971814&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DylanoA4&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@DividendGrowth Lower your expectations. Take disappointment as a beautiful reminder that your hope may be misplaced. Appreciate the good life brings you.&lt;/p&gt;
&lt;p&gt;It&#39;s easier said than done and always a work in progress. &lt;a href=&quot;https://twitter.com/KrisRymer/status/1863270215909277822&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KrisRymer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@DividendGrowth - marry the right person&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;have kids&lt;/li&gt;
&lt;li&gt;don’t buy anything you can’t afford w/cash (other than primary home), avoid credit card debt at all costs&lt;/li&gt;
&lt;li&gt;invest ~/&amp;gt;25% of your post tax income every month in long term assets (ie SP500, QQQ) w/10+ year view&lt;/li&gt;
&lt;li&gt;visit parents regularly&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;🤞 &lt;a href=&quot;https://twitter.com/jrichlive/status/1863271784369566160&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jrichlive&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why does every project feel like it&#39;s never delivered on time based on initial estimates?&lt;/p&gt;
&lt;p&gt;Dave Stewart explains the hidden work within the work in an excellent visual.&lt;/p&gt;
&lt;p&gt;The entire post can be found at davestewart&#39;s blog  post &amp;quot;the work is never just the work&amp;quot; &lt;a href=&quot;https://t.co/0j6AI15ywa&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0j6AI15ywa&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ParvSondhi/status/1863297018275488175&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ParvSondhi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;So long as you bear the consequences of failure, you are the ultimate Responsible Party.&lt;br /&gt;
&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principlesoftheday&quot;&gt;#principlesoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/FSzwaLyX36&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/FSzwaLyX36&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1863966286692184326&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;just 2 dudes in 2003 not realizing they just made one of the best songs ever &lt;a href=&quot;https://t.co/p4Z4C9jjZt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/p4Z4C9jjZt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FearedBuck/status/1863980357067886646&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FearedBuck&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;if you&#39;re interested in AI Agents -- this podcast episode was great.&lt;/p&gt;
&lt;p&gt;I wrote my big takeaways / notes on this google doc:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/VI6qHFpZqb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VI6qHFpZqb&lt;/a&gt; &lt;a href=&quot;https://t.co/c0Fu2BTRV9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/c0Fu2BTRV9&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ShaanVP/status/1864019369900314629&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ShaanVP&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the next wave of startups won&#39;t launch with marketing teams&lt;/p&gt;
&lt;p&gt;they&#39;ll launch with AI agents running everything 24/7 - from content to acquisition to analytics.&lt;/p&gt;
&lt;p&gt;this isn&#39;t future talk. quietly there are founders who are printing with growth ai agents right now (but they won&#39;t tweet about it).&lt;/p&gt;
&lt;p&gt;imagine your acquisition agent runs 50 meme accounts simultaneously, testing hooks across different niches, generating 1000 posts daily until it finds what hits.&lt;/p&gt;
&lt;p&gt;your research agent analyzes 100k tweets per hour, finding unmet needs and feature requests that no one&#39;s building for.&lt;/p&gt;
&lt;p&gt;your content agent creates 200 unique hooks daily across X, linkedin, and tiktok, learning from each response, optimizing for what works.&lt;/p&gt;
&lt;p&gt;your community agent welcomes every new user personally, handles support tickets in seconds, and turns feedback into feature priorities.&lt;/p&gt;
&lt;p&gt;your SEO agent generates 500 pages of perfect content daily, while your ads agent tests 1000 creative variations across platforms, automatically killing what doesn&#39;t work. we already use this at @boringmarketer&lt;/p&gt;
&lt;p&gt;your email agent writes and tests 50 different sequences, personalizing every message based on user behavior. your analytics agent spots trends before humans could, adjusting strategy in real-time.&lt;/p&gt;
&lt;p&gt;the growth stack becomes fully automated, working 24/7.  you get the idea.&lt;/p&gt;
&lt;p&gt;you pay per result.&lt;/p&gt;
&lt;p&gt;what previously required 20 people and $2M in salary now happens automatically with $2k in agent costs. one founder becomes as powerful as a funded startup. customer acquisition becomes predictable.&lt;/p&gt;
&lt;p&gt;growth becomes systematic.&lt;/p&gt;
&lt;p&gt;winners will be whoever has access to the best agent stack first, whoever has the taste to listen to the right signals and whoever can find the right niche at the right time.&lt;/p&gt;
&lt;p&gt;fun to think about because you can see it already start to happen.&lt;/p&gt;
&lt;p&gt;game on. &lt;a href=&quot;https://twitter.com/gregisenberg/status/1864028647239073970&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;15 Hard Truths of Psychology and Life:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/46pyb0Upwr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/46pyb0Upwr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Wisdom_HQ/status/1864070199986819544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Wisdom_HQ&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Easier said than done but great advice from ⁦@naval⁩ . &lt;a href=&quot;https://t.co/yE1lHOpvDz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/yE1lHOpvDz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PeterMallouk/status/1864154842043650059&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PeterMallouk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many of you have asked me about finding a work-life balance, so I wanted to share some of the principles that have helped me to achieve this. I have found that I can squeeze a whole lot more life into life by knowing how to do a few of these very well. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/ZosXPwHdKc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZosXPwHdKc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1864322997768556777&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SAP, Oracle, Salesforce are about to become this generation&#39;s Kodak.&lt;/p&gt;
&lt;p&gt;Not from better features. Not from the cloud. But from the sudden realization that its core assumption - humans must translate their work for computers - just became obsolete. Every major enterprise company built empires worth hundreds of billions on structured data entry. That foundation isn&#39;t just crumbling. It&#39;s about to vanish entirely. Here&#39;s why... &lt;a href=&quot;https://twitter.com/JayaGup10/status/1864373556366463337&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JayaGup10&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Tracking&amp;quot;&lt;/p&gt;
&lt;p&gt;We&#39;re entering an age where everything becomes measurable.&lt;/p&gt;
&lt;p&gt;The Internet of Things will grow from $478B to $2.4T by 2029.&lt;/p&gt;
&lt;p&gt;Every object, every process, every movement will have a digital pulse. &lt;a href=&quot;https://t.co/wGQu075c2C&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wGQu075c2C&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GCcookeHQ/status/1865079934286467404&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GCcookeHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;v0 is officially cooked.&lt;/p&gt;
&lt;p&gt;Full stack apps? Forget about it.&lt;/p&gt;
&lt;p&gt;@lovable_dev absolutely blows v0 out of the water.&lt;/p&gt;
&lt;p&gt;It&#39;s not even close.&lt;/p&gt;
&lt;p&gt;This is the smoothest Supabase integration with an AI coding agent I&#39;ve ever seen. 👀 &lt;a href=&quot;https://t.co/yghnjmmV2t&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/yghnjmmV2t&lt;/a&gt; &lt;a href=&quot;https://twitter.com/weswinder/status/1865136721794347078&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;weswinder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you don&#39;t let up on yourself and instead become comfortable always operating with some level of pain, you will evolve at a faster pace. That&#39;s just the way it is.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/4OnkTES4Rj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4OnkTES4Rj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1865477680503623838&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;prediction: by 2026, AI will know your company better than your CEO&lt;/p&gt;
&lt;p&gt;current:&lt;br /&gt;
• humans forget after 7 days&lt;br /&gt;
• people switch jobs every 2y&lt;br /&gt;
• context dies in slack&lt;br /&gt;
• same mistakes repeat&lt;/p&gt;
&lt;p&gt;future AI:&lt;br /&gt;
&amp;quot;actually, we tried this in 2024. here&#39;s the exact meeting, context, and 3 alternatives we never explored&amp;quot;&lt;/p&gt;
&lt;p&gt;perfect memory wins 🧠 &lt;a href=&quot;https://twitter.com/louis030195/status/1865773379166281889&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;louis030195&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/dOQ71Zd75h&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/dOQ71Zd75h&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zarathustra5150/status/1866592861036397036&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zarathustra5150&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t ask customers: “Would you use this feature?”&lt;/p&gt;
&lt;p&gt;Even if they say “yes,” they often won’t, and you didn’t learn anything else.&lt;/p&gt;
&lt;p&gt;Instead say:&lt;/p&gt;
&lt;p&gt;“Walk me through your workflow, in which you would use this feature.”&lt;/p&gt;
&lt;p&gt;They’ll often get tripped up; then you’ve learned. &lt;a href=&quot;https://twitter.com/asmartbear/status/1867581244776632775&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;13 questions that will change your life: &lt;a href=&quot;https://twitter.com/ShaanVP/status/1867650338280616145&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ShaanVP&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In an idea meritocracy, there is bound to be more disagreement than in a typical organization, but when it&#39;s taken to an extreme, arguing and nitpicking can undermine the idea meritocracy&#39;s effectiveness.  &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/sZzuCoUbBq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sZzuCoUbBq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1867948745754612219&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’re not getting at least 10 new, paying customers per weekday, you should not be doing anything with the word “scale” in it.&lt;/p&gt;
&lt;p&gt;Rather, you should be seeking how to get to 10 new, paying customers per weekday.&lt;/p&gt;
&lt;p&gt;(Unless average MRR &amp;gt; $100) &lt;a href=&quot;https://twitter.com/asmartbear/status/1868200324156023235&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI startups seem to grow faster than previous startups. But this is just the latest stage in a consistent trend over the last 50 years. Each decade&#39;s startups grow faster than the previous decade&#39;s. &lt;a href=&quot;https://twitter.com/paulg/status/1869015469342257166&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Increasingly believe that the &amp;quot;good, cheap, fast—choose two&amp;quot; maxim is devious misinformation spread by the slow.&lt;/p&gt;
&lt;p&gt;In my experience, &amp;quot;slow&amp;quot; and &amp;quot;expensive&amp;quot; usually go together. I was in a meeting yesterday where lopping a year off a project schedule also ended up reducing the cost substantially. Fundamentally, it takes time to spend, and adding the temporal constraint tends to make things simpler and more efficient. &lt;a href=&quot;https://twitter.com/patrickc/status/1869422495985750459&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrickc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The holidays are the best time for working. Everyone who usually interrupts you isn&#39;t. &lt;a href=&quot;https://twitter.com/paulg/status/1870062313287627042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@jacobin Someone has to make final big decisions. Few people are capable of doing it reliably for years on end. Lots of businesses want people that capable; bidding for them gets high.&lt;/p&gt;
&lt;p&gt;Divide CEO $ by workers.&lt;br /&gt;
It’s worth ~$0.01 per worker per hour to ensure there’s a job. &lt;a href=&quot;https://twitter.com/ctdonath/status/1870497014980776137&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ctdonath&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Caught up with some AI startups recently. A two founder team that reached 1.5m ARR and has only hired one person. Another single founder at 1m ARR and will 3x within a few months. The trajectory of early startups is steepening just like the power of the models they’re built on. &lt;a href=&quot;https://twitter.com/harjtaggar/status/1870548868062179352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;harjtaggar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best automatic email I’ve ever received after a cancellation.&lt;/p&gt;
&lt;p&gt;Churn happens with every service, but what truly matters is how you respond to it.&lt;/p&gt;
&lt;p&gt;Great job, @cursor_ai  team! &lt;a href=&quot;https://t.co/x6T0Y43XHk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/x6T0Y43XHk&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AndreyNovikoov/status/1870620421084913834&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AndreyNovikoov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the best advice on reading by @naval: &lt;a href=&quot;https://t.co/AHDiBSZ0nn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AHDiBSZ0nn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1870718137353769087&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Unpopular hard truth... Best hires blow you away week one.&lt;/p&gt;
&lt;p&gt;Never seen a slow starter become a top performer. &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1871179554154574303&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Cursor Pro Tip:&lt;/p&gt;
&lt;p&gt;Create a &amp;quot;Project Status&amp;quot; file to track your progress.&lt;/p&gt;
&lt;p&gt;At the end of every coding session, ask Cursor to review the conversation and update this file with what has been implemented and what’s next.&lt;/p&gt;
&lt;p&gt;Next time, simply prompt Cursor to &amp;quot;read the project status,&amp;quot; and it’ll instantly know where you left off and what to do next.&lt;/p&gt;
&lt;p&gt;Try it out! &lt;a href=&quot;https://twitter.com/PrajwalTomar_/status/1872670176421773366&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PrajwalTomar_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;apps worth testing over the holiday season 2024-2025 &lt;a href=&quot;https://t.co/8yLbpBXTFf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8yLbpBXTFf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/gregisenberg/status/1872746849960116544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Understanding profit &lt;a href=&quot;https://t.co/9XbgSD0Wb0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9XbgSD0Wb0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TheDealTrader_/status/1872749297453679101&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheDealTrader_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Wise words from a true genius&lt;br /&gt;
&lt;a href=&quot;https://t.co/fm3jzQfPJZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fm3jzQfPJZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/elonmusk/status/1872855650394619946&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@elonmusk Milton Friedman explains why redistribution of wealth often does more harm than good. &lt;a href=&quot;https://t.co/e4wDStju5R&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/e4wDStju5R&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TheImmortal007/status/1872860054439010312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheImmortal007&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Transformer&#39;s encoder clearly explained 👇🏻 &lt;a href=&quot;https://t.co/nEvMkFlFsi&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nEvMkFlFsi&lt;/a&gt; &lt;a href=&quot;https://twitter.com/iamjosepferrer/status/1872960705751908826&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iamjosepferrer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most founders have an amazing product.&lt;/p&gt;
&lt;p&gt;But zero marketing strategy.&lt;/p&gt;
&lt;p&gt;I grew to $5k MRR with:&lt;/p&gt;
&lt;p&gt;• Reddit comments&lt;br /&gt;
• Quora answers&lt;br /&gt;
• X engagement&lt;br /&gt;
• Community building&lt;/p&gt;
&lt;p&gt;Stop obsessing over features.&lt;/p&gt;
&lt;p&gt;Start obsessing over distribution. &lt;a href=&quot;https://twitter.com/mayakyler/status/1872990539303547133&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mayakyler&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do yourself a favor and read this.&lt;/p&gt;
&lt;p&gt;Written in 1982, this remains as relevant as ever: &lt;a href=&quot;https://t.co/niKhUOOnSs&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/niKhUOOnSs&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BigBrainMkting/status/1873017021258244236&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BigBrainMkting&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Database design used to take me hours, until I discovered this workflow that saves time AND delivers scalable results.&lt;/p&gt;
&lt;p&gt;Here’s how I do it:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Input the PRD into ChatGPT (I use GPT-o1, but GPT-4o works just as well).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ask it to create a detailed, scalable database design:&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• Define tables.&lt;br /&gt;
• Outline their purposes.&lt;br /&gt;
• Specify relationships.&lt;/p&gt;
&lt;p&gt;Once I’m satisfied, I save the output to &lt;a href=&quot;https://t.co/QcbDiKrykg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/QcbDiKrykg&lt;/a&gt; file and store it in Cursor for easy reference throughout development.&lt;/p&gt;
&lt;p&gt;This workflow is a game changer. Quick, efficient, and incredibly effective. &lt;a href=&quot;https://twitter.com/PrajwalTomar_/status/1873029058243477726&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PrajwalTomar_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My favorite books, 2024&lt;br /&gt;
by @emollick @firstadopter @anilananth @harari_yuval @carlzimmer and other great authors not on  X &lt;a href=&quot;https://t.co/NTeQURx8Z8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NTeQURx8Z8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/EricTopol/status/1873078429400420760&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;EricTopol&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;20 Books To Read In 2025 &lt;a href=&quot;https://t.co/T0HrT4hi0O&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/T0HrT4hi0O&lt;/a&gt; &lt;a href=&quot;https://twitter.com/librarymindset/status/1873324109813448840&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;librarymindset&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Struggling with PRD? Here’s the simple format I use that works every time.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Introduction: Explain the problem you’re solving and the vision for the product. This sets the context for everyone involved.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Objectives &amp;amp; Goals: Highlight the main outcomes the product should achieve. What’s the core purpose?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Target Users &amp;amp; Roles: Identify who will use the product (e.g., clients, admins) and what actions they need to perform.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Core Features for MVP: List the must-have features to deliver value quickly and validate the product.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Future Scope: Outline features that can be added later. This helps clients think beyond the MVP without overloading the first phase.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;User Journey: Map out how users interact with the product step by step. Cover all roles for complete clarity.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tech Stack: Define the tools, frameworks, and APIs you’ll use to build the product.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;You don’t need to overcomplicate things. Just focus on Core Features for MVP and Future Scope to ensure the client has a clear roadmap. That’s all you need to get started! &lt;a href=&quot;https://twitter.com/PrajwalTomar_/status/1873356876663939432&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PrajwalTomar_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As Carl Jung put it, &amp;quot;Man needs difficulties. They are necessary for health.&amp;quot; Yet most people instinctually avoid pain. This is true whether we are talking about building the body (e.g., weight lifting) or the mind (e.g., frustration, mental struggle, embarrassment, shame)--and especially true when people confront the harsh reality of their own imperfections. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1873412307436314946&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Y Combinator on how to focus on the right problems: &lt;a href=&quot;https://t.co/ae4ny8B2gP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ae4ny8B2gP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/benln/status/1873459290562056566&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;benln&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A lot of startups begin because the founder was irked by some trivial thing, and decided to build an entire company rather than remain irked.&lt;/p&gt;
&lt;p&gt;Not &amp;quot;mission,&amp;quot; not &amp;quot;change the world.&amp;quot;&lt;/p&gt;
&lt;p&gt;Maybe “irked” is enough, but maybe that’s part of why so many fail?&lt;/p&gt;
&lt;p&gt;What do you think? &lt;a href=&quot;https://twitter.com/asmartbear/status/1873483635413668277&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Adding toothpaste to Coca-Cola&lt;br /&gt;
&lt;a href=&quot;https://t.co/jjO65GGHRE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jjO65GGHRE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1873599898714841577&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;He introduced Jobs to his three-pillar marketing philosophy:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Empathy&lt;/li&gt;
&lt;li&gt;Focus&lt;/li&gt;
&lt;li&gt;Imputing&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;These ideas shaped Apple’s products, branding, and connection with customers.&lt;/p&gt;
&lt;p&gt;Let’s go over each one. &lt;a href=&quot;https://t.co/M04DlTAaFC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/M04DlTAaFC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/penunurialex/status/1873662996167242172&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;penunurialex&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve never read faster than this.&lt;/p&gt;
&lt;p&gt;/explanation in thread &lt;a href=&quot;https://t.co/QCyO7wpkUH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/QCyO7wpkUH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BigBrainPsych/status/1873696757907161458&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BigBrainPsych&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why the parentified daughter ends up with the avoidant, passive son.&lt;/p&gt;
&lt;p&gt;This thread will help you understand your relationships: &lt;a href=&quot;https://twitter.com/Theholisticpsyc/status/1873807617409376318&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Theholisticpsyc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What tool that your company spends at least $1000/yr on do you hate the most? &lt;a href=&quot;https://twitter.com/adamwathan/status/1873827934911562047&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adamwathan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some of my favorite books from 2024 (in no particular order):  A Brief History of Intelligence by @maxsbennett&lt;br /&gt;
If you have an interest in evolution, the mind, and artificial intelligence, this one is for you. I would love to take a course based on this book &lt;a href=&quot;https://t.co/IU3m6jMleJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IU3m6jMleJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/mjmauboussin/status/1874082704414961997&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mjmauboussin&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stanford has launched an incredible research AI tool.&lt;/p&gt;
&lt;p&gt;It’s called STORM, and basically you enter a topic and it will search hundreds of websites to write an article about its major findings.&lt;/p&gt;
&lt;p&gt;Available to everyone for free! &lt;a href=&quot;https://t.co/lMge85hNpP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lMge85hNpP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dr_cintas/status/1874123834070360343&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dr_cintas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Discovered this new aesthetic today. Kinda neat.&lt;/p&gt;
&lt;p&gt;It’s called Japandi = the combination of Japanese + Scandinavian design. &lt;a href=&quot;https://t.co/oNCuDz2AGk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oNCuDz2AGk&lt;/a&gt; &lt;a href=&quot;https://twitter.com/andruyeung/status/1874137980438536583&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andruyeung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;15 Deep Psychology And Philosophy Quotes From &amp;quot;Buddha&amp;quot;&lt;/p&gt;
&lt;p&gt;| Thread &lt;a href=&quot;https://t.co/Y2VgeFDeGp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Y2VgeFDeGp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/MindMatterMoney/status/1874354804358865106&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MindMatterMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Self Discovery Questions: &lt;a href=&quot;https://t.co/mMpoIHFdDw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mMpoIHFdDw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/UpSkillYourLife/status/1874417788661764298&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;UpSkillYourLife&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good day to remember just how big that green tree is &lt;a href=&quot;https://t.co/KIow2bMB70&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KIow2bMB70&lt;/a&gt; &lt;a href=&quot;https://twitter.com/waitbutwhy/status/1874448490673352857&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;waitbutwhy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“I have the greatest opportunity I have ever had and I&#39;m in for everything.” &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1874507579008909587&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some restaurants serve exactly one thing for lunch. Obvious efficiency and good prices, but does only one thing.&lt;/p&gt;
&lt;p&gt;Some have a theme. Some serve an unbelievable variety, all mediocre. Some are great at P, terrible at Q.&lt;/p&gt;
&lt;p&gt;What kind of software company are you? &lt;a href=&quot;https://twitter.com/asmartbear/status/1874531040422715884&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;8 Rules to follow in life...&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/F0hqKHCdPf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/F0hqKHCdPf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SeekWiser_/status/1874707908455547027&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SeekWiser_&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/9fBaaxkPBA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9fBaaxkPBA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1874789922902868135&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;G. K. Chesterton on courage, beautiful &lt;a href=&quot;https://t.co/CDjimAFxaC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CDjimAFxaC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DylanoA4/status/1874830505130238409&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DylanoA4&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg Another one: For anything you want to achieve, ask &amp;quot;why have I not already achieved it yet&amp;quot;&lt;/p&gt;
&lt;p&gt;For example if you want to lose weight, why haven&#39;t you already lost it?&lt;/p&gt;
&lt;p&gt;Half the time it&#39;s about removing some blocks or mistakes, and not about adding something new &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1874886871593136587&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most important thing in communication is hearing what isn&#39;t said. &lt;a href=&quot;https://twitter.com/QuoteJung/status/1874951833795322067&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every human life contains a potential, if that potential is not fulfilled, then that life was wasted. &lt;a href=&quot;https://twitter.com/QuoteJung/status/1875129498607219165&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ec7Obh2rkJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ec7Obh2rkJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1875131269157122530&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;15&quot;&gt;
&lt;li&gt;Gaint golden - Crowded flying fox &lt;a href=&quot;https://t.co/45aZ2eZu4H&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/45aZ2eZu4H&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TAdventurousoul/status/1875185592272879847&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TAdventurousoul&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Design and details aren&#39;t unimportant, but most subtle marketing efforts get drowned out by the constant distractions of the internet and modern life.&lt;/p&gt;
&lt;p&gt;Focus on the big things before you fine-tune the little things.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/KUXMFIswTZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KUXMFIswTZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1875199944623034851&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI won’t replace programmers, but rather make it easier for programmers to replace everyone else. &lt;a href=&quot;https://twitter.com/naval/status/1875297712993964231&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Alright tell me a movie that made you stare blankly at a wall for 20 minutes after it finished. One that you couldn’t stop thinking about and made you question everything. &lt;a href=&quot;https://twitter.com/flynnslick/status/1875302844544512279&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;flynnslick&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Transformers made so simple your grandma can understand&lt;/p&gt;
&lt;p&gt;great comprehensive blog on how and why transformers works + implementing them in code &lt;a href=&quot;https://t.co/lYh8biSN3I&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lYh8biSN3I&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Hesamation/status/1875306553286471871&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Hesamation&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/MGkp2pDSWe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MGkp2pDSWe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SeffSaid/status/1875551257739313284&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SeffSaid&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This book is a mind-blowing read. &lt;a href=&quot;https://t.co/ohM1brl7jY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ohM1brl7jY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1875562627449209243&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We are so back.&lt;/p&gt;
&lt;p&gt;AI can only automate 24% of real world tasks autonomously, according to The Agent Company.&lt;/p&gt;
&lt;p&gt;This new AI benchmark tests AI on coding, planning, and even team chats, and reveals where it still falls short.&lt;/p&gt;
&lt;p&gt;A Thread 🧵👇 &lt;a href=&quot;https://t.co/u6hrTLnyY6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/u6hrTLnyY6&lt;/a&gt; &lt;a href=&quot;https://twitter.com/minchoi/status/1875584208380518642&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;minchoi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s not that we chase complexity -- it chases us.&lt;/p&gt;
&lt;p&gt;It doesn&#39;t do so loudly, but quietly and insidiously.&lt;/p&gt;
&lt;p&gt;There is no declaration that it&#39;s out to get us.&lt;/p&gt;
&lt;p&gt;It quietly creeps in to whatever we&#39;re doing and leverages the laws of the universe to increase chaos and disorder.&lt;/p&gt;
&lt;p&gt;You don&#39;t ever conquer complexity.&lt;/p&gt;
&lt;p&gt;The best you can do is keep it at bay.&lt;/p&gt;
&lt;p&gt;But if you do work hard for simplicity, you are rewarded with success.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#FightForSimplicity&quot;&gt;#FightForSimplicity&lt;/a&gt; (one of @HubSpot&#39;s core guiding principles). &lt;a href=&quot;https://twitter.com/dharmesh/status/1875597623463154052&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;2025 resolutions. My brutally honest takeaways from the early stages of building new companies (not just startups).&lt;/p&gt;
&lt;p&gt;Catch the Tornado launches a new company roughly every 6 months. Here’s what I’ve learned (usually the hard way). &lt;a href=&quot;https://t.co/fPpRR6cxhv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fPpRR6cxhv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tomik99/status/1875929029381116028&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Gemini Deep Research is mind-blowing.&lt;/p&gt;
&lt;p&gt;Asked it for the Best Software Engineering blogs and it compiled the best of the best from Netflix, Spotify, Meta, Airbnb, Pinterest, Stripe, Square, Github, LinkedIn, Dropbox, Google, Mozilla, Microsoft, Amazon and more!&lt;/p&gt;
&lt;p&gt;Here&#39;s a link: &lt;a href=&quot;https://t.co/vytwfcsdFI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vytwfcsdFI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/deedydas/status/1875937113742733642&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;deedydas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Flexibility is what allows you to accept what reality (or knowledgeable people) teaches you; self-accountability is essential because if you really believe that failing to achieve a goal is your personal failure, you will see your failing to achieve it as indicative that you haven&#39;t been creative or flexible or determined enough to do what it takes. And you will be that much more motivated to find the way.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1875938639232053387&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;it’s remarkable that some of my most-used apps, like chatgpt &amp;amp; claude, don’t yet send push notifications.&lt;/p&gt;
&lt;p&gt;the opportunity here isn’t just about notifications—it’s about rethinking how an ai communicates proactively. what does it mean for an ai to initiate contact? how does it decide when to speak up, what to say, &amp;amp; in what context? personalization becomes critical: what signals matter, how do you emulate the nuance of a friend checking in, &amp;amp; where does utility meet emotional intelligence?&lt;/p&gt;
&lt;p&gt;right now, ai systems are almost entirely pull-based—you have to engage them first. shifting to a push paradigm while keeping it helpful, non-intrusive, &amp;amp; even friendly is a probably the most fun design &amp;amp; product challenge today. getting that balance right will unlock a completely new level of interaction. we haven’t begun to scratch any of these surfaces—this is inning one. &lt;a href=&quot;https://twitter.com/signulll/status/1875947460973019243&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;signulll&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Marc Andreessen on how to hire the best people: &lt;a href=&quot;https://t.co/e7WOCuHRrd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/e7WOCuHRrd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/benln/status/1875959104004612108&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;benln&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;First reasoning model to have access to Internet&lt;br /&gt;
&lt;a href=&quot;https://t.co/HglzesuNCR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HglzesuNCR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/minchoi/status/1875982164946485471&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;minchoi&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;i have noticed that LLMs like claude and gpt-4o work really well with this prompt, it instructs them to &#39;contemplate&#39; for a bit before giving the final answer. &lt;a href=&quot;https://t.co/9o5Q9M2Atv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9o5Q9M2Atv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/maharshii/status/1876253176963493889&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;maharshii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Focus on only one thing!”&lt;/p&gt;
&lt;p&gt;(One ICP, one marketing channel, one pain-point, …)&lt;/p&gt;
&lt;p&gt;It’s true, this is how to achieve uniqueness and greatness.&lt;/p&gt;
&lt;p&gt;But very early on, you don’t know what those things are.&lt;/p&gt;
&lt;p&gt;So, (1) always have a theory (2) that you are testing and changing. &lt;a href=&quot;https://twitter.com/asmartbear/status/1876341971444240480&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I also agree.&lt;/p&gt;
&lt;p&gt;Every product I&#39;ve ever launched was awful in the beginning.&lt;/p&gt;
&lt;p&gt;One lesson learned: It&#39;s easy to take an awful product in which there is strong interest and make it better. It&#39;s really hard to take a great product in which there is little/no interest and increase interest.&lt;/p&gt;
&lt;p&gt;Best to figure out level of interest in the market early, and that can usually be done with an &amp;quot;early&amp;quot; product. &lt;a href=&quot;https://twitter.com/dharmesh/status/1876759316507582606&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dharmesh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Custom Styles for Claude are great, and more people should use them.&lt;/p&gt;
&lt;p&gt;Here&#39;s the one I use for coding, which beats all the rest and, I promise you, will make a difference. &lt;a href=&quot;https://t.co/1ecLrmuIKP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/1ecLrmuIKP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/skirano/status/1877075521474842941&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;skirano&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&#39;ve noticed the most successful men minimize the time between idea and action.&lt;/p&gt;
&lt;p&gt;Speed is king. &lt;a href=&quot;https://twitter.com/TheJackBly/status/1877082925532922216&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheJackBly&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Yes! My entire to do list every day is now created by my users&lt;/p&gt;
&lt;p&gt;They submit bugs and ideas for new features in the board below, and I work on them and then mark them as ✅ Complete&lt;/p&gt;
&lt;p&gt;I really like this setup, kinda like direct democracy for startups&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/cvTALxfwUN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/cvTALxfwUN&lt;/a&gt; &lt;a href=&quot;https://t.co/rIqcBMSvpP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/rIqcBMSvpP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/levelsio/status/1877084480910835783&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levelsio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some people think perfectionism is at odds with shipping fast. Wrong. Shipping fast is how you get closer to perfection. &lt;a href=&quot;https://twitter.com/rauchg/status/1877811058804764864&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rauchg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;no one remembers the ideas you launched that went nowhere&lt;/p&gt;
&lt;p&gt;just do things &lt;a href=&quot;https://t.co/gQ3wZ8RM6g&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gQ3wZ8RM6g&lt;/a&gt; &lt;a href=&quot;https://twitter.com/gregisenberg/status/1878458679965389306&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Deep talk with your partner &lt;a href=&quot;https://t.co/Gi1ziNpJXF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Gi1ziNpJXF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ScholarshipfPhd/status/1878768193713721830&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ScholarshipfPhd&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;THE HIGH ENERGY MANIFESTO&lt;/p&gt;
&lt;p&gt;It is not enough to be high iq.&lt;/p&gt;
&lt;p&gt;You must also be high energy. &lt;a href=&quot;https://t.co/bNgynte0xU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/bNgynte0xU&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GRITCULT/status/1878874536319578383&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GRITCULT&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people build systems to prevent problems. But the best systems make problems visible faster. Speed of detection beats quality of prevention. &lt;a href=&quot;https://twitter.com/hnshah/status/1878882457216499935&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The single most important book on parenting that I’ve read.&lt;/p&gt;
&lt;p&gt;It’s well written and argued, rests on strong philosophical foundations, and flies completely in the face of the entire current system.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/3JLrCSNSym&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3JLrCSNSym&lt;/a&gt; &lt;a href=&quot;https://twitter.com/naval/status/1878884784572903789&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@crostipunctus @naval Parenting isn’t about control&lt;br /&gt;
it’s about connection.&lt;/p&gt;
&lt;p&gt;Creativity over coercion.&lt;br /&gt;
Freedom over force.&lt;/p&gt;
&lt;p&gt;Future generations deserve this shift today. &lt;a href=&quot;https://twitter.com/VoxFern/status/1879057104432185526&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;VoxFern&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/YOFVg6LHKe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YOFVg6LHKe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Mind_Essentials/status/1879060887098556699&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Mind_Essentials&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mustafa Suleyman, CEO of Microsoft AI on the upcoming Agents. Amazing article in Times. &lt;a href=&quot;https://t.co/M2lQNRjoMR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/M2lQNRjoMR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kimmonismus/status/1879217613982892485&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kimmonismus&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Would you be happy, if the project you’re working on is the last one you’ll complete before you die?&lt;/p&gt;
&lt;p&gt;If not, is it directly helping your next step in life, e.g. more money, career, learning, experiences, joy?&lt;/p&gt;
&lt;p&gt;If not, maybe it’s not the right project. &lt;a href=&quot;https://twitter.com/asmartbear/status/1879238808245268722&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus starts with elimination, improves with concentration, and compounds with continuation. &lt;a href=&quot;https://twitter.com/JamesClear/status/1879247119749415040&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is wild!&lt;/p&gt;
&lt;p&gt;Hailuo AI just dropped MiniMax-01, an industry-first foundation models with Lightning Attention.&lt;/p&gt;
&lt;p&gt;And it supports mind blowing 4 MILLION token context size, that’s the entire Harry Potter series three times over!&lt;/p&gt;
&lt;p&gt;Why it’s a game-changer and how to try: &lt;a href=&quot;https://t.co/63z0bapTNL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/63z0bapTNL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/minchoi/status/1879262614314008748&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;minchoi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;🚨MARC ANDREESSEN: &amp;quot;There&#39;s a way to measure the pace of technology change in the economy: it&#39;s productivity growth. It&#39;s a metric for how quickly an economy year over year is able to produce more output with less input. It&#39;s also the metric that captures the downstream impact on unemployment.&lt;/p&gt;
&lt;p&gt;In the 50 years (between 1920-1970) productivity growth moved 2-3x higher and starting 1971 it took a permanent downshift and never recovered. It&#39;s been generationally low now for two generations.&amp;quot;&lt;/p&gt;
&lt;p&gt;ROBINSON: &amp;quot;When Ronald Reagan took office, Federal debt was about 32% of GDP. Today it&#39;s 126%. The whole game is going to be getting productivity up, correct?&amp;quot;&lt;/p&gt;
&lt;p&gt;ANDREESSEN: &amp;quot;You have to. That&#39;s where economic growth comes from. If productivity growth is high you will have lots of job transformations but you will have a growing economy and an economic hayday and there will be opportunity everywhere. Everyone will be really cheerful -- that&#39;s a consequence of productivity growth.&lt;/p&gt;
&lt;p&gt;If you care about the country and it&#39;s people what you want is GROWTH. Things are going to change, but people will see opportunities for themselves and their children. The enemy is not technological unemployment, the enemy is no growth. The enemy is to end up like the UK, or Germany, or Canada. They start ripping themselves apart with zero-sum politics because the only way to get something from nothing is to take it from someone else. It&#39;s the opposite in a productivity growth economy.&lt;/p&gt;
&lt;p&gt;Rapid technological change would be a booming economy.&lt;/p&gt;
&lt;p&gt;This is also the answer to stopping populism. You defang populism by growth.&amp;quot; &lt;a href=&quot;https://twitter.com/AutismCapital/status/1879392208731938905&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AutismCapital&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I had a feeling of deja vu waiting for an overloaded ChatGPT to answer me. It was just like waiting for web pages to load in 1996. This is what the future feels like, when the new thing can barely keep up with demand, but people want it so much they endure the delays. &lt;a href=&quot;https://twitter.com/paulg/status/1879473400433066121&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best execution metric isn&#39;t how fast you can build, it&#39;s how fast you can rebuild when you realize you were wrong. Optimize for change, not speed. &lt;a href=&quot;https://twitter.com/hnshah/status/1879607232981295150&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You don&#39;t have time to build anything except the thing that&#39;s special to you.&lt;/p&gt;
&lt;p&gt;Leverage everything else.&lt;/p&gt;
&lt;p&gt;It&#39;s OK if the &amp;quot;everything else&amp;quot; is &amp;quot;worse&amp;quot; than what you would do, because it&#39;s not important. It&#39;s not why the company will fail. &lt;a href=&quot;https://twitter.com/asmartbear/status/1879611261387710915&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to compare your eng team&#39;s velocity to industry benchmarks (and increase your velocity):&lt;/p&gt;
&lt;p&gt;Step 1: Send your eng team this 4-question survey to get a baseline on key metrics:&lt;br /&gt;
&lt;a href=&quot;https://t.co/ppB30rnqx9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ppB30rnqx9&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You can use any surveying tool to do this—Google Forms, Microsoft Forms, Typeform, etc.—just make sure you can view the responses in a spreadsheet in order to calculate averages. Important: responses must be anonymous to preserve trust, and this survey is designed for people who write code as part of their job.&lt;/p&gt;
&lt;p&gt;Step 2: Calculate your how you&#39;re doing.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;For Speed, Quality, and Impact, find the average value for each question’s responses.&lt;/li&gt;
&lt;li&gt;For Effectiveness, calculate the percent of favorable responses (also called a Top 2 Box score) across all Effectiveness responses. See the example in the template above.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Step 3: Track velocity improvements over time.&lt;br /&gt;
Once you’ve got a baseline, you can start to regularly re-run this survey to track your progress. Use a quarterly cadence to begin with.&lt;br /&gt;
Benchmarking data, both internal and external, will help contextualize your results. Remember, speed is only relative to your competition.&lt;/p&gt;
&lt;p&gt;Here are external benchmarks for the key metrics:&lt;/p&gt;
&lt;p&gt;You can also download full benchmarking data, including segments on company size, sector, and even benchmarks for mobile engineers here: &lt;a href=&quot;https://t.co/BN6hjVsBhy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BN6hjVsBhy&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Look at 75th percentile values for comparison initially. Being a top-quartile performer is a solid goal for any development team.&lt;/p&gt;
&lt;p&gt;Step 4: Decide which area to improve first.&lt;br /&gt;
Look at your data and using benchmarking data as a reference point, pick which metric you believe will make the biggest impact on velocity.&lt;/p&gt;
&lt;p&gt;To make this decision about what to work on to improve product velocity, drill down to the data on a team level, and also look at qualitative data from the engineers themselves.&lt;/p&gt;
&lt;p&gt;Step 5: Link efficiency improvements to core business impact metrics&lt;br /&gt;
Instead of presenting these CI and release improvement projects as “tech debt repayment” or “workflow improvements” without clear goals and outcomes, you can directly link efficiency projects back to core business impact metrics.&lt;/p&gt;
&lt;p&gt;Ongoing research (&lt;a href=&quot;https://t.co/acIycjiGeU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/acIycjiGeU&lt;/a&gt;) continues to show a correlation between developer experience and efficiency, looking at data from 40,000 developers across 800 organizations. Improving the Effectiveness score (DXI) by one point translates to saving 13 minutes per week per developer, equivalent to 10 hours annually. With this org’s 150 engineers, improving the score by one point results in about 33 hours saved per week.&lt;/p&gt;
&lt;p&gt;For much more, don&#39;t miss the full post: &lt;a href=&quot;https://t.co/OzrcJFTJMO&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OzrcJFTJMO&lt;/a&gt; &lt;a href=&quot;https://twitter.com/lennysan/status/1879618532000080274&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lennysan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Vitamin D supplementation was associated with a 40% lower risk of dementia over a decade, a relatively recent study shows.&lt;/p&gt;
&lt;p&gt;After five years, 84% of supplement users were dementia-free compared to just 68% of non-users in a study of over 12,000 people. Vitamin D reduced dementia risk by 33% in adults with mild cognitive impairment or APOE e4, a key genetic risk factor for neurodegenerative diseases.&lt;/p&gt;
&lt;p&gt;And while vitamin D reduced dementia risk across the board, some groups benefitted more.&lt;/p&gt;
&lt;p&gt;Women, adults with normal cognition, APOE e4 non-carriers, and those without depression saw the greatest brain-protective effects from vitamin D supplementation.&lt;/p&gt;
&lt;p&gt;Vitamin D’s brain-protective effects may stem from its unique role as a steroid hormone, structurally akin to estrogen and cortisol. It regulates thousands of genes, many of which govern critical brain processes—an effect consistent with findings from randomized controlled trials showing improvements in cognitive function and IQ scores in older adults.&lt;/p&gt;
&lt;p&gt;PMID: 36874594 &lt;a href=&quot;https://twitter.com/foundmyfitness/status/1879659930535522612&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;foundmyfitness&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is Jeff Bezos’s favorite book.&lt;/p&gt;
&lt;p&gt;He’s been rereading it for 25 years straight, and it inspired his most famous decision-making model.&lt;/p&gt;
&lt;p&gt;Here are the 7 lessons from &amp;quot;The Remains of the Day&amp;quot; that helped him build his $200B+ Amazon empire: 🧵 &lt;a href=&quot;https://t.co/n7CwOl3UuL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/n7CwOl3UuL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dickiebush/status/1879884267951739208&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dickiebush&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Here’s a simple, free productivity hack: Identify your MIT—Most Important Task—every day.&lt;/p&gt;
&lt;p&gt;Before tackling your to-do list, ask: What’s the one thing that matters most today? Write it down. Then do it first. No distractions, no excuses. You don’t need to attend MIT to benefit from this approach—just focus on your own. &lt;a href=&quot;https://twitter.com/DanielPink/status/1879889002410680344&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tolerating a problem has the same consequences as failing to identify it. Whether you tolerate it because you believe it cannot be solved, because you don&#39;t care enough to solve it, or because you can&#39;t muster enough of whatever it takes to solve it, if you don&#39;t have the will to succeed, then your situation is hopeless. You need to develop a fierce intolerance of badness of any kind, regardless of its severity. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1879890800080761240&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You want to work on that fun feature or learn Rust, but is that what your business needs?&lt;/p&gt;
&lt;p&gt;Coding in isolation is easy and familiar.&lt;/p&gt;
&lt;p&gt;Marketing and sales is an actual business.&lt;/p&gt;
&lt;p&gt;Here’s the roadmap:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/slGN2Hmjwb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/slGN2Hmjwb&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1879896644478513235&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people who attack or compete with you will be opportunists. So if the thing you&#39;re working on is your life&#39;s work, all you have to do is keep going, and eventually they&#39;ll drop away. Once several generations of them have dropped away you&#39;ll even stop caring about new ones. &lt;a href=&quot;https://twitter.com/paulg/status/1880231948129644912&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your product roadmap shouldn&#39;t be a wish list. It should be a list of hypotheses you&#39;re ready to be wrong about. If you&#39;re not ready to be wrong, you&#39;re not ready to prioritize. &lt;a href=&quot;https://twitter.com/hnshah/status/1880332008510914623&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rates, flows, CPI, the Fed, rebalancings, options, volatility, narratives… all these things are just temporary market distractions. In the end, it’s always all about earnings.&lt;/p&gt;
&lt;p&gt;“It’s the earnings, dumbass” - Wasteland proverb ⬇️ &lt;a href=&quot;https://twitter.com/ecommerceshares/status/1880357352844718461&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ecommerceshares&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Blame yourself for everything, and preserve your agency. &lt;a href=&quot;https://twitter.com/naval/status/1880400703455465572&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Many parents believe that shielding their children from uncertainty is a hallmark of good parenting. This approach can unintentionally inhibit their children’s growth as development often arises from grappling with life’s uncertainties. &lt;a href=&quot;https://twitter.com/kunalb11/status/1880526168748880291&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dylan Field at Figma frames the impact of AI in one of the best ways: AI lowers the floor of access to a domain and raises the ceiling of productivity. The gains come from more people solving their own problems, and experts getting far more done than they could’ve before. &lt;a href=&quot;https://t.co/rEYZxJ6PJ9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/rEYZxJ6PJ9&lt;/a&gt; &lt;a href=&quot;https://twitter.com/levie/status/1880822344295612457&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI is eating UI. &lt;a href=&quot;https://twitter.com/naval/status/1880836046059098171&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Search is UI on the web, and since AI is eating UI, AI will eat search. &lt;a href=&quot;https://twitter.com/naval/status/1880837571405816159&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The smartest people are all self-taught, even if they went to school. &lt;a href=&quot;https://twitter.com/naval/status/1880853934883197275&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;AI content doesn&#39;t sound human&amp;quot;&lt;/p&gt;
&lt;p&gt;It does you&#39;re just using the wrong prompts&lt;/p&gt;
&lt;p&gt;Full prompt and guide below 🧵 &lt;a href=&quot;https://t.co/yH4txMSf8y&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/yH4txMSf8y&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ondrejbuilds/status/1880947226631098854&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ondrejbuilds&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the $273B SaaS market is about to implode. basically, we&#39;ll stop paying thousands for generic software and start generating our perfect tools for like $99/month&lt;/p&gt;
&lt;p&gt;we&#39;re about to go from &amp;quot;there&#39;s an app for that&amp;quot; to &amp;quot;there&#39;s your app for that.&amp;quot;&lt;/p&gt;
&lt;p&gt;today, we&#39;re all using project management tools, CRMs, and analytics dashboards built for the average user by bigsaas. which means they&#39;re perfect for absolutely no one. it&#39;s like wearing someone else&#39;s prescription glasses and pretending you can see 20/20.&lt;/p&gt;
&lt;p&gt;it worked really for a time. but, lots of people wished some of this software was more flexible.&lt;/p&gt;
&lt;p&gt;AI changes this.&lt;/p&gt;
&lt;p&gt;instead of forcing our brains to work like generic software, we&#39;ll describe our perfect tool and have it generated in minutes.&lt;/p&gt;
&lt;p&gt;the shift starts with productivity tools. the designer who organizes by color gets their perfect project dashboard. the trader who thinks in patterns gets their ideal analytics suite. the writer who connects ideas like constellations gets their dream note-taking app.&lt;/p&gt;
&lt;p&gt;the entire SaaS market fragments. instead of 10 major players per category, we&#39;ll have millions of personal tools. the money moves from paying for generic software to paying for software generation.&lt;/p&gt;
&lt;p&gt;and after we build out personal software, then we build our personal agents. it honestly sounds too good to be true, but this is the direction we are headed. speak into existence the tools and &amp;quot;people&amp;quot; to work on our businesses 24/7.&lt;/p&gt;
&lt;p&gt;i bet big companies still use the large saas companies btw likely for security and habit reasons. they will enhance with personal software but still be dependent on bigsaas. but, when every dollar counts, smbs will be looking mostly dependent on personal software&lt;/p&gt;
&lt;p&gt;there are thousands of startup ideas in this era of personal software era. example: build an AI software generator for restaurants and their unique workflows. then one for spa owners. then fitness trainers. then wedding planners.&lt;/p&gt;
&lt;p&gt;each industry has its own weird way of working that generic software never understood.&lt;/p&gt;
&lt;p&gt;the next billion-dollar company won&#39;t sell software. it&#39;ll sell software independence. &lt;a href=&quot;https://twitter.com/gregisenberg/status/1880960785096069456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Teams get excited about building new things. But sometimes the highest-impact work is fixing what&#39;s already there. Don&#39;t prioritize new problems over existing pain. &lt;a href=&quot;https://twitter.com/hnshah/status/1881056784213000246&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&#39;re reading this, you probably have forward neck posture..&lt;/p&gt;
&lt;p&gt;&amp;quot;Nerd neck&amp;quot; makes you dumber, less attractive, and can even cause hair loss&lt;/p&gt;
&lt;p&gt;Here&#39;s how to fix it.. &lt;a href=&quot;https://t.co/wvMSvAxfr2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wvMSvAxfr2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/itsconnorevans/status/1881077424731136253&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;itsconnorevans&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All good ideas get copied. You need a business that&#39;s more than &amp;quot;the features.&amp;quot;&lt;/p&gt;
&lt;p&gt;This is also a reason to be in larger markets — there&#39;s space for everyone to make money, even with copy-cats. &lt;a href=&quot;https://twitter.com/asmartbear/status/1881250814741672372&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Brain plasticity is your biggest asset. Use it carefully. &lt;a href=&quot;https://t.co/KeYhMwPJ6p&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KeYhMwPJ6p&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1881557651030782344&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dear son, &lt;a href=&quot;https://t.co/f0UnoFIoan&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/f0UnoFIoan&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DearS_o_n/status/1881627284534333721&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DearS_o_n&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It only takes five minutes to break the cycle.&lt;/p&gt;
&lt;p&gt;Five minutes of exercise and you are back on the path. Five minutes of writing and the manuscript is moving forward again. Five minutes of conversation and the relationship is restored.&lt;/p&gt;
&lt;p&gt;It doesn&#39;t take much to feel good again. &lt;a href=&quot;https://twitter.com/JamesClear/status/1881708332496425146&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You should NOT give your kids rules for screen time, what they eat, or brushing their teeth.&lt;/p&gt;
&lt;p&gt;At least this is what I heard on the @tferriss show with @naval and @astupple.&lt;/p&gt;
&lt;p&gt;As a father to a 9-month old this caught my attention.&lt;/p&gt;
&lt;p&gt;Some fascinating concepts I learned:&lt;/p&gt;
&lt;p&gt;First, who&#39;s @astupple? Dr. Aaron Stupple is an internal medicine physician who spent 5 years as a public school teacher before medical school.&lt;/p&gt;
&lt;p&gt;He wrote &amp;quot;The Sovereign Child&amp;quot; which advocates for a radical approach: taking children seriously as autonomous individuals.&lt;/p&gt;
&lt;p&gt;Learning &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt;: Rules create adversarial relationships.&lt;/p&gt;
&lt;p&gt;When you force a child to do something, you set yourself up as their opponent. Instead of &amp;quot;you must brush your teeth,&amp;quot; explore why they&#39;re resistant and find creative solutions that help them understand the value.&lt;/p&gt;
&lt;p&gt;Learning &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#2&quot;&gt;#2&lt;/a&gt;: Knowledge &amp;gt; Rules.&lt;/p&gt;
&lt;p&gt;When kids understand why something matters (like germs eating their teeth), they make better choices than when following arbitrary rules. This understanding builds on itself, unlike disconnected rules that only work through enforcement.&lt;/p&gt;
&lt;p&gt;Learning &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#3&quot;&gt;#3&lt;/a&gt;: Kids are natural learning machines.&lt;/p&gt;
&lt;p&gt;They don&#39;t need to be forced to learn—they need freedom to explore their interests. What looks like &amp;quot;wasting time&amp;quot; on games or YouTube might be them developing sophisticated taste and judgment.&lt;/p&gt;
&lt;p&gt;Learning &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#4&quot;&gt;#4&lt;/a&gt;: Trust matters more than compliance.&lt;/p&gt;
&lt;p&gt;When you remove arbitrary rules, kids come to you with real problems because they see you as an ally, not an enforcer. This trust becomes crucial during teenage years when bigger risks emerge.&lt;/p&gt;
&lt;p&gt;Learning &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#5&quot;&gt;#5&lt;/a&gt;: Kids can self-regulate.&lt;/p&gt;
&lt;p&gt;Given freedom with food or screens, they usually don&#39;t overindulge forever. They might binge initially, but eventually develop their own understanding of moderation—just like adults do.&lt;/p&gt;
&lt;p&gt;Learning &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#6&quot;&gt;#6&lt;/a&gt;: &amp;quot;Would you treat your spouse this way?&amp;quot;&lt;/p&gt;
&lt;p&gt;This  question becomes a useful filter. If you wouldn&#39;t command your partner to sit at the dinner table or force them to share their belongings, why do it to your kids?&lt;/p&gt;
&lt;p&gt;Learning &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#7&quot;&gt;#7&lt;/a&gt;: Freedom can be introduced gradually.&lt;/p&gt;
&lt;p&gt;The core idea of this parenting philosophy isn&#39;t &amp;quot;no rules&amp;quot; - it&#39;s about raising independent thinkers who can navigate life&#39;s complexities with confidence. Start small, experiment, and stay curious about the results.&lt;/p&gt;
&lt;p&gt;Most controversial but thought-provoking conversation I&#39;ve heard on parenting.&lt;/p&gt;
&lt;p&gt;While I may not go all-in on this approach, it&#39;s making me rethink my approach to raising children.&lt;/p&gt;
&lt;p&gt;Want to dig deeper?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Follow @naval for daily wisdom&lt;/li&gt;
&lt;li&gt;Listen to the full @tferriss episode&lt;/li&gt;
&lt;li&gt;Check out &amp;quot;The Sovereign Child&amp;quot; by @astupple&lt;/li&gt;
&lt;li&gt;Follow me (@thedarrendunn) and subscribe to my newsletter (link in bio) &lt;a href=&quot;https://twitter.com/thedarrenjames/status/1881722228116525201&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thedarrenjames&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The real reason most startups fail isn&#39;t running out of money. It&#39;s running out of clarity. When you lose sight of why customers actually need you, no amount of funding can save you. Most founders raise money to scale their business before they&#39;ve scaled their understanding. &lt;a href=&quot;https://twitter.com/hnshah/status/1881781559931592809&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;good software engineers please help me: if you had to build a web app with javascript what stack would you choose and why? &lt;a href=&quot;https://twitter.com/KevinNaughtonJr/status/1881913920639889435&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KevinNaughtonJr&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’re doing the same thing as a competitor, that’s not a strategy, that’s being perennially several steps behind. &lt;a href=&quot;https://twitter.com/asmartbear/status/1881916704990584923&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I give this to all my patients.&lt;/p&gt;
&lt;p&gt;Feel free to share it. &lt;a href=&quot;https://t.co/LnrFzlhN6E&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LnrFzlhN6E&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DrJesseMorse/status/1882117993179881881&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DrJesseMorse&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As a founder, the biggest risk isn&#39;t running out of money. It&#39;s running out of conviction. Money can be raised, but conviction (that deep belief in why you&#39;re building what you&#39;re building) that&#39;s harder to replenish. Protect your conviction more than your cash. &lt;a href=&quot;https://twitter.com/hnshah/status/1882143947914719402&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The technique is to ardently follow a single rule: Write down every decision on paper, don&#39;t act without first writing down a decision.&lt;/p&gt;
&lt;p&gt;I&#39;ve followed this rule all day, every day, for the past four weeks.&lt;/p&gt;
&lt;p&gt;The rule has two primary effects: &lt;a href=&quot;https://twitter.com/oreghall/status/1882318592500543938&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;oreghall&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Big news: we&#39;ve figured out how to train models 80-90% cheaper than before. Cheaper than renting your own GPUs. Cheaper than any other service. And 0 quality regression.&lt;/p&gt;
&lt;p&gt;Super proud of the team on this one. New pricing is now live! &lt;a href=&quot;https://t.co/0hcvTO0Bvx&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0hcvTO0Bvx&lt;/a&gt; &lt;a href=&quot;https://twitter.com/corbtt/status/1882477398534336880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;corbtt&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everything they teach at YC in one page: &lt;a href=&quot;https://t.co/OtrHavtPWK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OtrHavtPWK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/benln/status/1882524558550597892&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;benln&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t work too hard building a startup.&lt;/p&gt;
&lt;p&gt;Jobs, Gates, Zuckerberg all had hobbies and weren&#39;t tethered to their computers.&lt;/p&gt;
&lt;p&gt;Levels doesn’t spend 11 hours/day coding and tweeting.&lt;/p&gt;
&lt;p&gt;Just relax and let the succeed come to you. &lt;a href=&quot;https://twitter.com/asmartbear/status/1882645255876452355&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The first videogame you ever play can alter your path in life.&lt;/p&gt;
&lt;p&gt;Really interesting read. &lt;a href=&quot;https://t.co/Dpdrg9Fk6l&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Dpdrg9Fk6l&lt;/a&gt; &lt;a href=&quot;https://twitter.com/CogniCarbon/status/1882756832902754470&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;CogniCarbon&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;👀 Summarization prompt &lt;a href=&quot;https://t.co/GcBbLVFxZn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GcBbLVFxZn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/rohanpaul_ai/status/1882824977961066539&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rohanpaul_ai&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every product decision is a signal in the noise.&lt;/p&gt;
&lt;p&gt;The features you build or problems you solve send signals about what your company values.&lt;/p&gt;
&lt;p&gt;Make sure your signals resonate with your long-term goals, not just the immediate noise of user requests or market trends. &lt;a href=&quot;https://twitter.com/hnshah/status/1882868723490697488&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I have a design in Figma and I want to make it into a website in 1 click.&lt;/p&gt;
&lt;p&gt;Best AI tool to achieve this? &lt;a href=&quot;https://twitter.com/awilkinson/status/1883181773116604551&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;awilkinson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs emails Apple execs&lt;/p&gt;
&lt;p&gt;December 5, 2006 &lt;a href=&quot;https://t.co/FQ6eiZFHTV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/FQ6eiZFHTV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TechEmails/status/1883237988748104174&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TechEmails&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Finally, we will conduct a proper evaluation.&lt;/p&gt;
&lt;p&gt;For this, we&#39;ll use @Cometml&#39;s Opik, a 100% open-source platform for evaluation and observability.&lt;/p&gt;
&lt;p&gt;I have shared a notebook where you&#39;ll find all the code for this evaluation. &lt;a href=&quot;https://t.co/UE3ryfHF3h&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/UE3ryfHF3h&lt;/a&gt; &lt;a href=&quot;https://twitter.com/akshay_pachaar/status/1883498055632384197&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;akshay_pachaar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Highest insight-per-word ratio of any book I’ve read &lt;a href=&quot;https://t.co/B6AiaVrKuy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/B6AiaVrKuy&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nathanbaugh27/status/1883889083443007856&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nathanbaugh27&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;DeepSeek has been a very important breakthrough for understanding the future of economics in software in a world of AI.&lt;/p&gt;
&lt;p&gt;There’s been an open question for a couple of years now - especially from public market investors - around whether&lt;br /&gt;
more value goes into the AI models or into the application layer of AI over time. The specifics of the pie graph don’t matter as much as the core direction of the space.&lt;/p&gt;
&lt;p&gt;Imagine two different scenarios: one in which AI was extremely proprietary and very expensive, and another where AI is almost completely free and relatively open. You could easily game out two different outcomes in these worlds.&lt;/p&gt;
&lt;p&gt;In the world of very expensive and proprietary AI, the providers of AI could and likely should choose to keep all the economics for themselves - basically crowding out opportunity for developers and the ecosystem. In a world of insanely cheap AI, then the value is less about the models, but what you do with the AI models to make them useful - in that world, more value is available to the application layer (which could include the AI companies, to be clear).&lt;/p&gt;
&lt;p&gt;With the latest breakthroughs from DeepSeek, we can nearly definitively say this question has been answered, and we’re clearly moving closer to the latter. We’ve already seen incremental steps toward this direction with the continuous cost and quality improvements from labs in the past couple of years, but DeepSeek shifts our understanding of this even further.&lt;/p&gt;
&lt;p&gt;In a world where the cost of intelligence will continue to drop rapidly, more value will accrues back into the app layer. Products that combine AI, customer workflows, and likely some degree of unique data, will generate substantial value from these models going forward.&lt;/p&gt;
&lt;p&gt;Now, everyone wants to live in a binary world of winners and losers, but I don’t think it’s that simple here. The leading AI labs will incorporate the relevant lessons from DeepSeek into their models, and we’ll get cheaper and more intelligent AI. As a result of that, the cost of intelligence will continue to drop, and we will find even more ways to use the technology as it becomes affordable for even more use cases.&lt;/p&gt;
&lt;p&gt;If we can make AI 10X more efficient today, it’s exceedingly obvious we will have 100X more use for it in 5 years from now, more than making up for the efficiency gains. Making demand for GPUs and data centers bigger than ever.&lt;/p&gt;
&lt;p&gt;In all, fantastic to see that we continue to have companies and teams pushing the limits of AI. This is a great win for software developers at the app layer, and it will push labs to go even further. Incredible times. &lt;a href=&quot;https://twitter.com/levie/status/1884053695626875123&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Best Books You Must Read To Understand Artificial Intelligence in 2025&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;A Brief History Of Intelligence &lt;a href=&quot;https://t.co/drtLFeN0Gr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/drtLFeN0Gr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Powerofbooks3/status/1884053759975985615&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Powerofbooks3&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;More unnecessary work can be done today than ever before. &lt;a href=&quot;https://twitter.com/jasonfried/status/1884288107861905594&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Over the past 24 years, each business I’ve started has been stronger than the previous.&lt;/p&gt;
&lt;p&gt;Not just in ARR, although that too.&lt;/p&gt;
&lt;p&gt;Indeed, it’s the other things — people, team, market, strategy, focus — that surely led to the ARR.&lt;/p&gt;
&lt;p&gt;(Your first venture doesn’t have to be a unicorn.) &lt;a href=&quot;https://twitter.com/asmartbear/status/1884317020423913827&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A good prompt for thinking of startup ideas: &amp;quot;What ideas has the world given up on, that someone should try again?&amp;quot; &lt;a href=&quot;https://twitter.com/snowmaker/status/1884317668976767010&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;snowmaker&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great products do more than solve problems. They amplify what users care about most. &lt;a href=&quot;https://twitter.com/hnshah/status/1884318274881531909&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Vertical AI Agents Could Be 10X Bigger Than SaaS (Y Combinator) &lt;a href=&quot;https://t.co/q9uKHimY4D&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/q9uKHimY4D&lt;/a&gt; &lt;a href=&quot;https://twitter.com/boringmarketer/status/1884324342500319742&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;boringmarketer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We got these phone booths (a K6 from the 1930s, and a KX100 from the 1990s) for the @stripe lobby, as a reminder that there are always two paths in everything we make: something that elevates and makes you smile, or, well, whatever the thing on the right is. &lt;a href=&quot;https://t.co/OREBUJElp6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OREBUJElp6&lt;/a&gt; &lt;a href=&quot;https://twitter.com/patrickc/status/1884326343011360891&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrickc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s probably time to open a fresh browser and sign up as a new user of your product.&lt;/p&gt;
&lt;p&gt;You’ll find 8 things to change. &lt;a href=&quot;https://twitter.com/asmartbear/status/1884440585093754911&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;deepseek r1 asked for 1 truly novel insight about humans &lt;a href=&quot;https://t.co/qTJbPrd5k5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qTJbPrd5k5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/adonis_singh/status/1884499176865632672&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adonis_singh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the long-run, prioritization beats efficiency. &lt;a href=&quot;https://twitter.com/JamesClear/status/1884648068592685271&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/PL7p6Y1rG5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PL7p6Y1rG5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/LeilaHormozi/status/1884682179051217025&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LeilaHormozi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The fastest way to get better at anything:&lt;/p&gt;
&lt;p&gt;Do it messy. Then do it again. &lt;a href=&quot;https://twitter.com/Prathkum/status/1884915403396370527&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Prathkum&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I asked 300,000+ people to share the shortest, most insightful book ever written.&lt;/p&gt;
&lt;p&gt;These were the 12 most popular answers:&lt;/p&gt;
&lt;p&gt;(non-fiction edition) &lt;a href=&quot;https://t.co/sUfVF0SGyp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sUfVF0SGyp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AlexAndBooks_/status/1884992052036800890&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlexAndBooks_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The worst thing that can happen to your startup isn&#39;t failure. It&#39;s succeeding at building something small after taking venture funding.&lt;/p&gt;
&lt;p&gt;You should be more afraid of local maxima. &lt;a href=&quot;https://t.co/Gr62FOL1wH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Gr62FOL1wH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/rsanghvi/status/1885122234571964838&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rsanghvi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’m increasingly convinced that one can go 10x faster in life and projects without a corresponding increase in stress if one decides quickly and reflects regularly. &lt;a href=&quot;https://twitter.com/paraschopra/status/1885162507729592550&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paraschopra&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Reducing the federal deficit from $2T to $1T in FY2026 requires cutting an average of ~$4B/day in projected 2026 spending from now to Sept 30.&lt;/p&gt;
&lt;p&gt;That would still result in a ~$1T deficit, but economic growth should be able to match that number, which would mean no inflation in 2026.&lt;/p&gt;
&lt;p&gt;Super big deal. &lt;a href=&quot;https://twitter.com/elonmusk/status/1885176751036252621&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;why not 100x? &lt;a href=&quot;https://twitter.com/sama/status/1885218481282388148&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;storytelling is the ultimate compression algorithm for human attention. everything else, data, logic, tech feeds into it, but if you can’t wrap it in a compelling narrative, nobody will give a shit. people think they make decisions based on facts, but they’re mostly responding to the shape of a story, whether it’s a personal arc, a company vision, or a product pitch.&lt;/p&gt;
&lt;p&gt;if you want to accomplish anything meaningful, the story is the interface between it &amp;amp; the world. get that wrong &amp;amp; nobody will give af. get it right &amp;amp; you bend steel with your bare hands. &lt;a href=&quot;https://twitter.com/signulll/status/1885362774882030009&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;signulll&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/OfEIe5F7TC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OfEIe5F7TC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dejavucoder/status/1885401052004180115&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dejavucoder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone needs to hear this... &lt;a href=&quot;https://t.co/r1tCpHXhlR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/r1tCpHXhlR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SahilBloom/status/1885677968099307551&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Software is the new UGC, and we&#39;ll all be creators of it.&lt;/p&gt;
&lt;p&gt;Everyone&#39;s favorite essayist, @anuatluru, explains how we&#39;re about see the next era of content creation.&lt;/p&gt;
&lt;p&gt;Just like smartphones democratized photos, video, etc — AI is about to do the same for software. &lt;a href=&quot;https://t.co/2xRT6MiPv4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2xRT6MiPv4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/mignano/status/1885811489883246603&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mignano&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A good sales pitch is nothing less than a 10X multiplier must-have product. That is the bar.&lt;/p&gt;
&lt;p&gt;“Nice to have” is a box of stake knives.&lt;/p&gt;
&lt;p&gt;3rd place is you’re fired. &lt;a href=&quot;https://twitter.com/garrytan/status/1885840652942102979&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;garrytan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@garrytan &lt;a href=&quot;https://t.co/oOWRI1mpYl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oOWRI1mpYl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/theswapnilsri/status/1885911654094823437&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;theswapnilsri&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@garrytan Success in sales requires offering transformative solutions, not just incremental improvements. &lt;a href=&quot;https://twitter.com/rohitmal/status/1885945090364834274&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rohitmal&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Cursor Pro Tip: Always end your prompts with something like:&lt;/p&gt;
&lt;p&gt;“If you need clarification or have any questions, feel free to ask.”&lt;/p&gt;
&lt;p&gt;It makes a HUGE difference in how well Cursor executes your instructions. &lt;a href=&quot;https://twitter.com/PrajwalTomar_/status/1886060043163906404&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PrajwalTomar_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The job of parents is to make themselves redundant.&lt;/p&gt;
&lt;p&gt;Nothing more, nothing less. &lt;a href=&quot;https://twitter.com/Fateh_Shernu/status/1886095573771587982&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Fateh_Shernu&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Life rarely changes in a positive way without an increase in responsibility.&lt;/p&gt;
&lt;p&gt;That can mean taking ownership of your health or committing to a relationship or starting a business.&lt;/p&gt;
&lt;p&gt;Whatever it is, if you want the trajectory to change, the amount of responsibility usually has to change. &lt;a href=&quot;https://twitter.com/JamesClear/status/1886473561142915089&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Deliver what customers want to buy, or it’s over.&lt;br /&gt;
At the price the can afford, or it’s over.&lt;br /&gt;
That you can deliver really well, or it’s over.&lt;br /&gt;
That you want to do for years, or it’s over.&lt;br /&gt;
Find those customers for a lot less than the price, or it’s over.&lt;/p&gt;
&lt;p&gt;I could go on.&lt;/p&gt;
&lt;p&gt;Gee I wonder why startups usually don’t work out. It’s such a mystery. &lt;a href=&quot;https://twitter.com/asmartbear/status/1886488831144198413&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Looking for better ways to code with Cursor and came across this banger.&lt;/p&gt;
&lt;p&gt;Anyone else have workflows that work for them? &lt;a href=&quot;https://t.co/ZdDaabCCdD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZdDaabCCdD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AlexReibman/status/1886890647304724533&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlexReibman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;human ai interaction vs human human interaction &lt;a href=&quot;https://t.co/CzYPEwuUQQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CzYPEwuUQQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/shivkanthb/status/1886912207621120386&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shivkanthb&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My daily reminder &lt;a href=&quot;https://t.co/BiHlmbNvqe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BiHlmbNvqe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/fffabs/status/1887142579084435608&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fffabs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: The champion enablement kit:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;1-page executive summary&lt;/li&gt;
&lt;li&gt;ROI calculator&lt;/li&gt;
&lt;li&gt;Implementation timeline&lt;/li&gt;
&lt;li&gt;Security/tech specs&lt;/li&gt;
&lt;li&gt;Customer references&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Give them everything needed to sell internally.&lt;/p&gt;
&lt;p&gt;Make it easy to buy. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1887260797014810951&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The future belongs to idea guys who can just do things &lt;a href=&quot;https://twitter.com/shl/status/1887280412113686839&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;make software silly again &lt;a href=&quot;https://t.co/2uWDR8Iw3W&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2uWDR8Iw3W&lt;/a&gt; &lt;a href=&quot;https://twitter.com/KadriJibraan/status/1887281802546757740&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;KadriJibraan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Apple gets it. Robots are going to be everywhere, but they won’t look like robots. Check out their new paper ELEGNT.&lt;/p&gt;
&lt;p&gt;I believe this is the future of everyday objects: helpful and human. &lt;a href=&quot;https://t.co/pmkNxiAkB5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pmkNxiAkB5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/uavster/status/1887463277803807034&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;uavster&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No longer hiring junior or even mid-level software engineers.&lt;/p&gt;
&lt;p&gt;Our tokens per codebase:&lt;/p&gt;
&lt;p&gt;Gumroad: 2M&lt;br /&gt;
Flexile: 800K&lt;br /&gt;
Helper: 500K&lt;br /&gt;
Iffy: 200K&lt;br /&gt;
Shortest: 100K&lt;/p&gt;
&lt;p&gt;Both Claude 3.5 Sonnet and o3-mini have context windows of 200K tokens, meaning they can now write 100% of our Iffy and Shortest code if prompted well.&lt;/p&gt;
&lt;p&gt;It won’t be long until AI will be writing all the code for Helper, Flexile, and Gumroad. My guess is by the end of 2026.&lt;/p&gt;
&lt;p&gt;Our new process:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Sit and chat about what we need to build, doing research with Deep Research as we go.&lt;/li&gt;
&lt;li&gt;Have AI record everything and turn it into a spec.&lt;/li&gt;
&lt;li&gt;Clean up the spec, adding any design requirements / other nuances.&lt;/li&gt;
&lt;li&gt;Have Devin code it up.&lt;/li&gt;
&lt;li&gt;QA, merge, (auto-)deploy to prod. &lt;a href=&quot;https://twitter.com/shl/status/1887484068075274347&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A reliable way to boost cognitive functioning: Go to the gym.&lt;/p&gt;
&lt;p&gt;383 studies: Exercise improves attention, memory, and information processing. It’s true across age groups and different types of workouts.&lt;/p&gt;
&lt;p&gt;Physical activity is good for the mind. Moving sharpens thinking. &lt;a href=&quot;https://t.co/pPbdEXdMcs&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pPbdEXdMcs&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AdamMGrant/status/1887522176418427183&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AdamMGrant&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol&gt;
&lt;li&gt;WHAT? &lt;a href=&quot;https://t.co/d2Vrde4OZS&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/d2Vrde4OZS&lt;/a&gt; &lt;a href=&quot;https://twitter.com/IterIntellectus/status/1887640126144106960&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IterIntellectus&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Write down your assumptions &amp;amp; predictions.&lt;/p&gt;
&lt;p&gt;Then when you find contrary evidence for an assumption, or a prediction is wrong, you actually notice.&lt;/p&gt;
&lt;p&gt;And then you can pivot closer to what is correct.&lt;/p&gt;
&lt;p&gt;And then you’ll be more correct than the 99% of people who don’t do this. &lt;a href=&quot;https://twitter.com/asmartbear/status/1887767757267095646&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How did @lovable_dev build this fully responsive landing page in just 7 prompts? 🤯&lt;/p&gt;
&lt;p&gt;All that’s left:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Polishing the UI/UX&lt;/li&gt;
&lt;li&gt;Adding a simple backend&lt;/li&gt;
&lt;li&gt;Framer Motion animations&lt;/li&gt;
&lt;li&gt;Implementing client feedback (they loved it)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A few refinements, and it’s ready to launch. &lt;a href=&quot;https://t.co/J3fPER4QAv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/J3fPER4QAv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PrajwalTomar_/status/1887863513625891049&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PrajwalTomar_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Smart Bear would have failed had I not listened to what customers were really saying.&lt;/p&gt;
&lt;p&gt;And almost always they were saying it via tech support, not via interviews, not via reviews, not via feature-submission forms.&lt;/p&gt;
&lt;p&gt;Support == product development&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/vambLKsBB6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vambLKsBB6&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1887881004024545599&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;an &amp;quot;ugly&amp;quot; CSS only version with :has() + anchor positioning&lt;/p&gt;
&lt;p&gt;┬┴┬┴┤•ᴥ•ʔ├┬┴┬┴&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/087Hgh6FnY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/087Hgh6FnY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jh3yy/status/1887882530797363635&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jh3yy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Discovery call red flags checklist:&lt;/p&gt;
&lt;p&gt;🚩 No clear pain metrics&lt;br /&gt;
🚩 Can&#39;t name decision maker&lt;br /&gt;
🚩 No similar tool spend&lt;br /&gt;
🚩 No timeline pressure&lt;br /&gt;
🚩 Won&#39;t share budget range&lt;/p&gt;
&lt;p&gt;Any 2 flags = unqualified.&lt;/p&gt;
&lt;p&gt;Save your time. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1887923448007065865&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people who are casually interested in your product, aren’t ready to buy RIGHT NOW.&lt;/p&gt;
&lt;p&gt;Make sure there’s a pathway for them to be in the loop.&lt;/p&gt;
&lt;p&gt;Trials and Freemium are one way; the most powerful, and the most effort.&lt;/p&gt;
&lt;p&gt;Collecting an email address, everyone can do. &lt;a href=&quot;https://twitter.com/asmartbear/status/1887934355101622615&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Pilot-to-paid conversion framework:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Weekly success metric reviews&lt;/li&gt;
&lt;li&gt;Bi-weekly stakeholder updates&lt;/li&gt;
&lt;li&gt;End-user feedback collection&lt;/li&gt;
&lt;li&gt;ROI calculation at day 20&lt;/li&gt;
&lt;li&gt;Transition meeting day 25&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Structure = Wins &lt;a href=&quot;https://twitter.com/Kazanjy/status/1887986659351994444&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Overheard “I have made more money being brave than being brilliant” &lt;a href=&quot;https://twitter.com/eladgil/status/1888033701658800251&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eladgil&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;A wise man once told me that, in order to win an argument, it wasn’t enough just to have the correct position, you must also give your opponent a face-saving way of accepting that position...It is important to give one’s opponent the option of honorable defeat.&amp;quot; &lt;a href=&quot;https://t.co/AE2JYlZh4K&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AE2JYlZh4K&lt;/a&gt; &lt;a href=&quot;https://twitter.com/robkhenderson/status/1888056691956269139&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;robkhenderson&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/wudpLsmjTO&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wudpLsmjTO&lt;/a&gt; &lt;a href=&quot;https://twitter.com/garrytan/status/1888067926588276837&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;garrytan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you can’t undo the decision, then it’s worth deliberating longer, digging up more data, and running scenarios.&lt;/p&gt;
&lt;p&gt;But the best thing you can do is find a way to make it reversible, or work incrementally up to the irreversible point.&lt;/p&gt;
&lt;p&gt;More:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/Nswmwo2roB&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Nswmwo2roB&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1888143986809819236&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Avoid negative people. They have a problem with every solution.”&lt;/p&gt;
&lt;p&gt;— Albert Einstein &lt;a href=&quot;https://twitter.com/readswithravi/status/1888188528644825204&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to learn Economics, don&#39;t enroll in any course.&lt;br /&gt;
Just read this book.&lt;/p&gt;
&lt;p&gt;I&#39;m not kidding.&lt;br /&gt;
It will seriously teach you more than anything else can.&lt;/p&gt;
&lt;p&gt;Thread: &lt;a href=&quot;https://t.co/DcxHHDEE8R&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DcxHHDEE8R&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Giuliano_Mana/status/1888226311463968878&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Giuliano_Mana&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;every platform shift has a skeuomorphic phase largely because people cannot comprehend of anything they haven’t experienced already&lt;/p&gt;
&lt;p&gt;this means entrepreneurs can only create news things similar to the old thing, but most importantly users don’t understand/ adopt things that are too dissimilar to the old thing&lt;/p&gt;
&lt;p&gt;every great productivity tool was skeuomorphic to the old thing:&lt;/p&gt;
&lt;p&gt;paper &amp;gt; word &amp;gt; docs &amp;gt; notion&lt;/p&gt;
&lt;p&gt;even futurists/ sci fi writers can’t escape this: &lt;a href=&quot;https://twitter.com/thatguybg/status/1888247287626785148&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thatguybg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Deep Research has written 6 reports so far today. It is indeed excellent. Congrats to the folks behind it. &lt;a href=&quot;https://twitter.com/patrickc/status/1888312657146757315&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrickc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There is legitimately no reason to use Figma anymore. &lt;a href=&quot;https://twitter.com/skirano/status/1888324316871221347&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;skirano&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to get AI startup ideas according to Y Combinator&lt;/p&gt;
&lt;p&gt;They will invest $100m+ in AI startups this year&lt;/p&gt;
&lt;p&gt;My notes below in case it&#39;s helpful to you &lt;a href=&quot;https://t.co/7zW9l71JK1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7zW9l71JK1&lt;/a&gt; &lt;a href=&quot;https://twitter.com/gregisenberg/status/1888403798118240568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Co-founder of Andreessen Horowitz: Nobody Cares &lt;a href=&quot;https://t.co/oBIJbDWYlk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oBIJbDWYlk&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zfellows/status/1888588802425340376&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zfellows&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Truth: If you are a builder of anything serious and married, you don&#39;t have much time for friends.&lt;/p&gt;
&lt;p&gt;You have time for your work, spouse, limited family (yours &amp;amp; your parents), and maybe one other thing like fitness.&lt;/p&gt;
&lt;p&gt;Have your priorities straight, to keep the things you value. &lt;a href=&quot;https://twitter.com/drgurner/status/1888615734655246403&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;drgurner&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The classic software startup writes code to solve users&#39; problems. If AI makes writing code more of a commodity, understanding users&#39; problems will become the most important component of starting a startup. But it already is. &lt;a href=&quot;https://twitter.com/paulg/status/1888912942139113496&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;banger @shl &lt;a href=&quot;https://t.co/cYWxElt57O&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/cYWxElt57O&lt;/a&gt; &lt;a href=&quot;https://twitter.com/bangerarchive/status/1888935775531622658&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;bangerarchive&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Gotta give credit to where credit is due!&lt;/p&gt;
&lt;p&gt;I’ve been building a full-fledged SaaS product akin to some very large SaaS companies in a matter of 500 hours or less because of Cursor Composer.&lt;/p&gt;
&lt;p&gt;Agent is great for some chained tasks, and “normal” is amazing at targeted additions/edits!&lt;/p&gt;
&lt;p&gt;So stoked to launch my product to the world. Thank you @cursor_ai for all the blood sweat and tears you guys have put into it!⚡️🔥❤️ &lt;a href=&quot;https://twitter.com/GroundedCoffey/status/1888967545857655109&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GroundedCoffey&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Surprisingly, ignoring worries can improve mental health.&lt;/p&gt;
&lt;p&gt;Evidence: After practice blocking out fears, people were less anxious—and less depressed 3 months later—especially if they had high anxiety or PTSD.&lt;/p&gt;
&lt;p&gt;Not all concerns demand attention. Some thoughts are worth dismissing. &lt;a href=&quot;https://twitter.com/AdamMGrant/status/1888968823929471032&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AdamMGrant&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: When deals go dark, send a direct &#39;break up&#39; email:&lt;/p&gt;
&lt;p&gt;&#39;We&#39;ve missed a few meetings. While I believe we can deliver [specific value], I don&#39;t want to be a pest. Are we still a priority?&#39;&lt;/p&gt;
&lt;p&gt;Often prompts real answers or resurrects deals. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1889011071395975247&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Track closed-lost reasons religiously. They&#39;re your product roadmap.&lt;/p&gt;
&lt;p&gt;If you&#39;re losing deals to the same competitor feature or pricing tier repeatedly, that&#39;s not a sales problem.&lt;/p&gt;
&lt;p&gt;Feed this data to product teams early and often. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1889046903469543550&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If only someone told me this before my 1st startup:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Validate.&lt;br /&gt;
I wasted at least 5 years building stuff nobody needed.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Kill your EGO.&lt;br /&gt;
Make your users happy instead of yourself.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t chaise investors; chase users, and then investors will chase you.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;4... &lt;a href=&quot;https://twitter.com/johnrushx/status/1889225652588716262&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;johnrushx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The currency of life isn’t money. It is not even time. It’s attention. &lt;a href=&quot;https://twitter.com/naval/status/1889248439827153209&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone is going to hit your home page, therefore your home page has to speak to everyone, right?&lt;/p&gt;
&lt;p&gt;Nope, your home page should speak to a tiny segment of the market.&lt;/p&gt;
&lt;p&gt;You’ll win 100x more customers anyway. Here’s why:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ZA4WruqhYd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZA4WruqhYd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1889324766873493519&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A product that looks great but doesn’t work, gets cancelled.&lt;/p&gt;
&lt;p&gt;But there are 1000s of products with bad UI that make lots of money.&lt;/p&gt;
&lt;p&gt;So, hot take:&lt;/p&gt;
&lt;p&gt;Design is important, but functionality is more important. &lt;a href=&quot;https://twitter.com/asmartbear/status/1889512001413554196&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Opportunities unfold as you execute. Not as you whiteboard. &lt;a href=&quot;https://twitter.com/hnshah/status/1889518569593118855&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I still cannot believe that I can:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;look at a world map and tap anywhere to zoom in at street level&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;instantly access any song, book, movie, tv show, or podcast ever made&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;have any conceivable question and get an immediate answer or video explanation&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;take a photo or video wherever I am and add it to my massive, searchable, always accessible personal archive&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;video call anyone in my life, at anytime, no matter where they are&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;watch live sports on a little wireless glass rectangle&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;type out these thoughts and have them read by thousands of people, all over the world, a few seconds later &lt;a href=&quot;https://twitter.com/waitbutwhy/status/1889748892062982627&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;waitbutwhy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Document every verbal agreement immediately via email:&lt;/p&gt;
&lt;p&gt;&#39;Great call! Confirming what we discussed:&lt;/p&gt;
&lt;ul class=&quot;task-list&quot;&gt;
&lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_0&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_0&quot;&gt; seats at [Y] price&lt;/label&gt;&lt;/li&gt;
&lt;li&gt;Implementation by [date]&lt;/li&gt;
&lt;li&gt;Payment terms [Z]&#39;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Prevent &#39;selective memory&#39; issues later. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1889797499935723821&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This never works:&lt;br /&gt;
→ Startup Idea → Plan → Design → Coding → Marketing→ Audience → 😣&lt;/p&gt;
&lt;p&gt;This works (sometimes): &lt;a href=&quot;https://twitter.com/johnrushx/status/1889872125596782607&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;johnrushx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don&#39;t say this to throw shade on anyone - but if you&#39;re not building with agents, I simply don&#39;t get it. I&#39;ve 10x&#39;d my productivity.&lt;/p&gt;
&lt;p&gt;Here&#39;s a quick video showing how I can now simply say &amp;quot;create a table called foo with these fields&amp;quot;, and my coding agent (@cline, you sexy beast) will:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;fetch the relevant supabase resources from my @trynigel MCP server&lt;/li&gt;
&lt;li&gt;create a new migration file in the correct format&lt;/li&gt;
&lt;li&gt;add the migration with consistent sql formatting, rls best practices&lt;/li&gt;
&lt;li&gt;run supabase migrations up &amp;amp;&amp;amp; pnpm supabase:generate-types at the end to apply the changes&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Setting this entire flow up took me &amp;lt; 5 mins. I used an MCP tool I wrote called harvest_docs to extract out the ai-prompts that @supabase provided (dope, btw 🫶) to extract the supabase docs to my MCP server. I asked cline to review my existing sql migrations / seed.sql and clean it up. Then I tested it out by asking cline to create a new migration. &lt;a href=&quot;https://twitter.com/scottsilvi/status/1889876349910667331&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;scottsilvi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A leader without urgency is a liability. &lt;a href=&quot;https://twitter.com/hnshah/status/1890327874101494097&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I acquired Unicorn Platform for $0.8M in &#39;22.&lt;/p&gt;
&lt;p&gt;I&#39;ve literally tried every growth method I&#39;ve heard of.&lt;br /&gt;
It all failed in 2023, but in 2024, I found what works &amp;amp; went 25k to 370k users.&lt;/p&gt;
&lt;p&gt;Details report on each marketing experiment (failures &amp;amp; successes):&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/OPoopnewYi&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OPoopnewYi&lt;/a&gt; &lt;a href=&quot;https://twitter.com/johnrushx/status/1890596904586883143&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;johnrushx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Excellent and true for much more than being a founder. &lt;a href=&quot;https://twitter.com/mmay3r/status/1890619749186376152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mmay3r&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I designed &amp;amp; built a personal office / art studio in the forest behind my home.&lt;/p&gt;
&lt;p&gt;We call it &amp;quot;the nook,” and it took 4 months start to finish.&lt;/p&gt;
&lt;p&gt;Want to see inside? 🧵 &lt;a href=&quot;https://t.co/t961FBtMPc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/t961FBtMPc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/isaacfrench_/status/1890757223879737400&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;isaacfrench_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Microsoft just dropped OmniParser V2, this changes everything.&lt;/p&gt;
&lt;p&gt;This AI sees your screen, understands it, and takes action, just like a human.&lt;/p&gt;
&lt;p&gt;100% free &amp;amp; open source!&lt;br /&gt;
&lt;a href=&quot;https://t.co/lOwdvICClE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lOwdvICClE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/minchoi/status/1890797116592730360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;minchoi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;a non-technical founder friend asked me how to detect 10x engineers&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;they understand in depth what they&#39;re doing and how things work&lt;/li&gt;
&lt;li&gt;they&#39;ve built things from scratch at some point in their lives (compiler, programming language, AI models, C without cursor, etc.)&lt;/li&gt;
&lt;li&gt;they build 10x better prompts than others&lt;/li&gt;
&lt;li&gt;they&#39;re motivated either by curiosity, significant tech challenges, high salary, or doing something important &lt;a href=&quot;https://twitter.com/louis030195/status/1890952663363379534&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;louis030195&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Your goal in life is to find out the people who need you the most, to find out the business that needs you the most, to find the project and the art that needs you the most. There is something out there just for you.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1891133684117291509&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You will suddenly get much luckier in life once you figure out how to be consistently high-energy and clear-minded. The quality of your lifestyle is your luck. &lt;a href=&quot;https://twitter.com/orangebook/status/1891141354236879033&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;orangebook&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Really exceptional. @JeffBezos &lt;a href=&quot;https://t.co/OCx5wMUPAa&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OCx5wMUPAa&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AlexHormozi/status/1891159351429099970&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlexHormozi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The overeducated are worse off than the undereducated, having traded common sense for the illusion of knowledge.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1891194333778313223&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Things that have happened for me since ChatGPT:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I&#39;m asking more questions&lt;/li&gt;
&lt;li&gt;I&#39;m doing more research&lt;/li&gt;
&lt;li&gt;I&#39;m coding more&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The unifying theme: more, more, more.&lt;/p&gt;
&lt;p&gt;Despite these magical tools, I&#39;ve not run out of questions, or projects. In fact I think I have more than ever. &lt;a href=&quot;https://twitter.com/yuris/status/1891337142669848932&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;yuris&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Prototypes &amp;gt; PRDs &lt;a href=&quot;https://twitter.com/shl/status/1891488283277873584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;so seed oils and fish &lt;a href=&quot;https://twitter.com/kubafilipowski/status/1891498810200801518&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kubafilipowski&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/hEfQ31gANQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hEfQ31gANQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/xai/status/1891699715298730482&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;xai&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’ll make wealth when you spend time with those who hate wasting time.&lt;/p&gt;
&lt;p&gt;You’ll find peace when you spend time with those who don’t care about time. &lt;a href=&quot;https://twitter.com/kunalb11/status/1891914600909525128&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is like when I&#39;m tossing and turning in bed, I imagine being on an airplane with my elbows on the tray and face in my hands, trying miserably to sleep, and then I imagine that I was upgraded to one of those insane first class cabins with a full bed. Puts me right to sleep. &lt;a href=&quot;https://twitter.com/waitbutwhy/status/1892000242511278539&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;waitbutwhy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Introducing Helix, our newest AI that thinks like a human&lt;/p&gt;
&lt;p&gt;To bring robots into homes, we need a step change in capabilities&lt;/p&gt;
&lt;p&gt;Helix can generalize to any household item 🧵&lt;br /&gt;
&lt;a href=&quot;https://t.co/sPzPV4B50J&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sPzPV4B50J&lt;/a&gt; &lt;a href=&quot;https://twitter.com/adcock_brett/status/1892577936869327233&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;adcock_brett&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“We have proprietary AI.”&lt;/p&gt;
&lt;p&gt;No, you don’t.&lt;/p&gt;
&lt;p&gt;The models keep improving, and your edge will disappear.&lt;/p&gt;
&lt;p&gt;The winners in AI will have distribution, workflow, and locked-in data. Everything else is a race to the bottom. &lt;a href=&quot;https://twitter.com/hnshah/status/1892625150396481671&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I extracted the most common failure patterns from my 20-year-long startup journey.&lt;/p&gt;
&lt;p&gt;(spoiler: most successful founders have done the same thing, while failed ones did many different things)&lt;/p&gt;
&lt;p&gt;Why Startup Founders Fail: &lt;a href=&quot;https://twitter.com/johnrushx/status/1892771231512117443&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;johnrushx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This prompt is a fucking godsend for @cursor_ai &amp;amp; @windsurf_ai&lt;/p&gt;
&lt;p&gt;&amp;quot;Reflect on 5-7 different possible sources of the problem, distill those down to 1-2 most likely sources, and then add logs to validate your assumptions before we move onto implementing the actual code fix&amp;quot; &lt;a href=&quot;https://twitter.com/iankar_/status/1892783480435855535&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;iankar_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI can be a search engine or a thought partner.&lt;/p&gt;
&lt;p&gt;I spend 3+ hours daily shaping responses so I don’t waste time on shallow answers. The key? Knowing how to push it past surface-level thinking.&lt;/p&gt;
&lt;p&gt;Here are 21 techniques to turn AI into a second brain, not a toy. &lt;a href=&quot;https://twitter.com/hnshah/status/1892804819624349970&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the process to build an AI startup:&lt;/p&gt;
&lt;p&gt;find painful workflow → build tiny audience in niche → release daily tweets + videos → spot patterns in engagement → discover massive problem → validate with mini-experiments →&lt;/p&gt;
&lt;p&gt;hack v1 fast with gpt/claude/grok + replit/bolt/v0/etc → share entire build process with behind the scenes vids → get feedback from day 1 → fix problems instantly → package progress into content → turn learnings into tweets/videos → hit viral loops →&lt;/p&gt;
&lt;p&gt;grow distribution daily → post core insights → build useful tools → drop alpha in replies → track viral tweets → reuse winning formats → build reputation → expand reach slowly →&lt;/p&gt;
&lt;p&gt;nail retention → perfect core loop → focus on power users → test pricing (outcome pricing vs monthly) → expand features → automate ops → stay lean, only raise VC if you dont care about dividends → now you scale&lt;/p&gt;
&lt;p&gt;partner with creators → identify micro influencers in niche → offer early access → co-create content → share revenue → help them build tools → turn users into creators → scale through their audiences →&lt;/p&gt;
&lt;p&gt;stack wins + audience → repeat &lt;a href=&quot;https://twitter.com/gregisenberg/status/1893311353156149642&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Consistent with President @realDonaldTrump’s instructions, all federal employees will shortly receive an email requesting to understand what they got done last week.&lt;/p&gt;
&lt;p&gt;Failure to respond will be taken as a resignation. &lt;a href=&quot;https://twitter.com/elonmusk/status/1893386883444437415&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people have NO IDEA just how VALUABLE Grok 3 DeepSearch is for studying your competitors 🦾💥&lt;/p&gt;
&lt;p&gt;Before Grok 3 😔&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Spend big $$$ on social listening tools&lt;br /&gt;
Schedule endless customer calls&lt;br /&gt;
Try to guess what people actually want&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;After Grok 3 🚀&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Tell grok your idea + competitors&lt;br /&gt;
Analyze realtime discussions on X&lt;br /&gt;
Build exactly what people are asking for&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;If you’re using Grok 3 in business you have a WILDLY unfair advantage&lt;/p&gt;
&lt;p&gt;Steal my prompts and thank me + @jelanifuel later ⬇️ &lt;a href=&quot;https://twitter.com/tedx_ai/status/1893464426071589210&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tedx_ai&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;this is what&#39;s keeping me up at night these days...&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;google has become unusable. once you get used to &amp;quot;deep research&amp;quot; (thanks grok, perplexity etc), google feels like bringing a typewriter to a macbook meeting.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;MCP will do for ai agents what REST did for web services - this standard protocol means an ai agent built for healthcare can instantly talk to billing systems, patient records, and insurance databases without custom code, unlocking thousands of new startup opportunities. it&#39;s really exciting!&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;we&#39;re seeing the entire cost structure of building businesses collapse -  you can now build profitable companies serving tiny, weird niches that were impossible to reach when you needed a full team. what used to need 1000 customers to break even now needs 10.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;it&#39;s not too late to be a creator or build a media business. creators are evolving into the new holding companies, consolidating influence, revenue streams, and audiences in ways that mirror corporate giants. somehow it&#39;s still early&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;really big arbitrage opportunity to buy businesses without taste and add taste. &amp;quot;taste private equity&amp;quot; has a nice ring to it.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;figuring out LLM seo. billions of dollars will flow to new players who figure out how to get &amp;quot;cited&amp;quot; by LLMs. finally.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;most ai apps are designed for websites not mobile. ai-first consumer mobile is really interesting. we saw with cal ai and the looksmaxing apps, that this is just the beginning.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;every product launch needs video now - i&#39;m watching great features die on landing pages while quick screen recordings go viral and drive thousands of signups. the social feeds have spoken.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;what used to require millions in vc funding now needs an api key, some prompts and a tweet. this fires me up!!&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;faster than ever to launch something of quality. faster than ever to pivot. knowing when to pivot is an art.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;i dont understand anyone who sitting in business school right now. literally everything is being rewritten.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;who is building the app store for ai agents? companies will browse and hire pre-trained, specialized agents like we download apps&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the way to stop a big player to compete with you in this new world is to own distribution.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;you can spend a lot of time thinking about politics or checking emails or on social in the name of research, but not really moving forward anywhere.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;we&#39;re about to see software companies capture value that used to belong to agencies, consulting firms, and entire departments.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;we&#39;re about to go from &amp;quot;there&#39;s an app for that&amp;quot; to &amp;quot;there&#39;s your app for that.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;minimum viable audience is more important than minimum viable product&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don&#39;t know how long this window stays open, but we&#39;re in a moment where all the rules of building businesses are being rewritten. and for the people who are playing with this new tools, putting stuff out there, creating audiences/communities, you&#39;ve got an unfair advantage.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;i hope you get some sleep. &lt;a href=&quot;https://twitter.com/gregisenberg/status/1893687593755164940&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An emerging hallmark of effective modern parenting will be instilling in your children a prophylactic revulsion to short form video and screens.&lt;/p&gt;
&lt;p&gt;Brain slop inoculation. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1893749527686881474&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the highest leverage things founders can do right now is to invest in becoming top 5% in their use of AI coding tools. &lt;a href=&quot;https://twitter.com/snowmaker/status/1893754179891408983&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;snowmaker&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Agency &amp;gt; Intelligence&lt;/p&gt;
&lt;p&gt;I had this intuitively wrong for decades, I think due to a pervasive cultural veneration of intelligence, various entertainment/media, obsession with IQ etc. Agency is significantly more powerful and significantly more scarce. Are you hiring for agency? Are we educating for agency? Are you acting as if you had 10X agency?&lt;/p&gt;
&lt;p&gt;Grok explanation is ~close:&lt;/p&gt;
&lt;p&gt;“Agency, as a personality trait, refers to an individual&#39;s capacity to take initiative, make decisions, and exert control over their actions and environment. It’s about being proactive rather than reactive—someone with high agency doesn’t just let life happen to them; they shape it. Think of it as a blend of self-efficacy, determination, and a sense of ownership over one’s path.&lt;/p&gt;
&lt;p&gt;People with strong agency tend to set goals and pursue them with confidence, even in the face of obstacles. They’re the type to say, “I’ll figure it out,” and then actually do it. On the flip side, someone low in agency might feel more like a passenger in their own life, waiting for external forces—like luck, other people, or circumstances—to dictate what happens next.&lt;/p&gt;
&lt;p&gt;It’s not quite the same as assertiveness or ambition, though it can overlap. Agency is quieter, more internal—it’s the belief that you &lt;em&gt;can&lt;/em&gt; act, paired with the will to follow through. Psychologists often tie it to concepts like locus of control: high-agency folks lean toward an internal locus, feeling they steer their fate, while low-agency folks might lean external, seeing life as something that happens &lt;em&gt;to&lt;/em&gt; them.” &lt;a href=&quot;https://twitter.com/karpathy/status/1894099637218545984&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karpathy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I sometimes come across my own writing from 10+ years ago and think &amp;quot;I would never write that now.&amp;quot;&lt;/p&gt;
&lt;p&gt;But you have to honor your former self. That was a truth, once.&lt;/p&gt;
&lt;p&gt;So, I leave it. &lt;a href=&quot;https://twitter.com/asmartbear/status/1894462375257849979&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What separates Good UI from Great UI? &lt;a href=&quot;https://t.co/kNERSIZtyP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/kNERSIZtyP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zander_supafast/status/1895050658341966082&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zander_supafast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;i asked gpt4.5 what’s a deep truth that most people are not aware of&lt;br /&gt;
and then i kept asking&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;discomfort isn&#39;t just inevitable; it&#39;s essential. chase friction relentlessly. &lt;a href=&quot;https://t.co/4TW7jL4gW2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4TW7jL4gW2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/IterIntellectus/status/1895435087946391589&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;IterIntellectus&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The world is built by those who build.&lt;/p&gt;
&lt;p&gt;Not by thinkers. Not by planners. Not by critics on the sidelines. By people who pick up the tools in front of them and start.&lt;/p&gt;
&lt;p&gt;Michelangelo didn’t debate the best way to sculpt David. He carved. The Wright brothers didn’t seek approval before attempting flight. They assembled wood and fabric and took off. James Watt didn’t theorize about steam power. He built an engine that rewrote the rules of industry.&lt;/p&gt;
&lt;p&gt;History doesn’t remember the committee that discussed change. It remembers the builders who made it happen.&lt;/p&gt;
&lt;p&gt;Builders don’t wait. They don’t stall for perfect conditions or guaranteed outcomes. They move forward, knowing that motion beats deliberation every time.&lt;/p&gt;
&lt;p&gt;Ideas are cheap. Execution is hard. But building... building is everything.&lt;/p&gt;
&lt;p&gt;Most people hesitate. They want certainty before they start. Builders know certainty is a mirage. The only way to find out what works is to make something real. The only way to create momentum is to take the first step.&lt;/p&gt;
&lt;p&gt;They work with what they have. The printing press wasn’t born out of endless research. Gutenberg repurposed a wine press and changed the course of knowledge. The first Apple computer wasn’t the result of a corporate strategy session. Jobs and Wozniak built it in a garage with borrowed parts.&lt;/p&gt;
&lt;p&gt;The path isn’t clear at the start. The plan will change. Setbacks will come. Builders don’t care. They adapt. They adjust. They push forward when others would stop.&lt;/p&gt;
&lt;p&gt;Most people spend their lives waiting. Builders spend their lives making.&lt;/p&gt;
&lt;p&gt;The future belongs to those who build. &lt;a href=&quot;https://twitter.com/hnshah/status/1895653969097015614&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI will wildly accelerate those who have good judgement and are highly impatient. Specially if they can have access to capital. &lt;a href=&quot;https://twitter.com/kunalb11/status/1895782148071964997&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;SaaS is being dismantled as we speak!&lt;/p&gt;
&lt;p&gt;We&#39;re witnessing the slow-motion collapse of an entire business model that dominated tech for two decades. The $1.3 trillion SaaS is being quietly hollowed out from within by AI agents.&lt;/p&gt;
&lt;p&gt;Here&#39;s how I see it playing out:&lt;/p&gt;
&lt;p&gt;Phase 1 (Now): AI as co-pilot. We&#39;re seeing this everywhere, Copilot for developers, Gamma for presentations, Harvey for legal research etc. These AI layers sit atop existing software, making it more efficient.&lt;/p&gt;
&lt;p&gt;The SaaS companies feel safe, even excited, as AI seems to make their products more valuable. They&#39;re bringing knives to what they think is a knife fight.&lt;/p&gt;
&lt;p&gt;Phase 2 (Next 12-18 months): The agent invasion. AI moves from co-pilot to autonomous operator. They&#39;re replacement workers that can fully operate existing software on your behalf.&lt;/p&gt;
&lt;p&gt;The dam breaks when someone can say &amp;quot;analyze our Q2 performance&amp;quot; rather than clicking through Tableau, or &amp;quot;optimize our ad campaigns&amp;quot; instead of navigating Meta&#39;s ad manager. The expertise previously bundled with the software gets unbundled by agents.&lt;/p&gt;
&lt;p&gt;Phase 3 (2-3 years): Software invisibility. The final phase happens when the agents bypass the human interfaces altogether. Why render dashboards, buttons and menus when AI can just access the APIs directly?&lt;/p&gt;
&lt;p&gt;The value proposition of SaaS, bundling software, workflow, and expertise into user-friendly interfaces unravels completely. The interfaces were designed for humans, but agents don&#39;t need them.&lt;/p&gt;
&lt;p&gt;Most SaaS incumbents don&#39;t see it coming because this isn&#39;t a classic disruption pattern. It&#39;s not about competing products with better features. It&#39;s about the evaporation of the core assumption that humans will operate software.&lt;/p&gt;
&lt;p&gt;What&#39;s more, the barrier to creating custom, internal software is collapsing simultaneously. Companies that once had to choose between expensive custom development or off-the-shelf SaaS can now spin up bespoke solutions in days instead of months. Why pay Hubspot $1,500/month for a CRM when your team can build &#39;HubspotForUs&#39; with an AI coding assistant over a weekend? The same features, perfectly tailored to your workflow, with no ongoing subscription costs.&lt;/p&gt;
&lt;p&gt;This democratization of software creation means every company becomes a potential software producer rather than just a consumer. The specialized knowledge that SaaS companies monopolized is now available to anyone with access to an AI coding agent and domain expertise.&lt;/p&gt;
&lt;p&gt;It went from $1M to build an MVP to build a SaaS to basically free overnight.&lt;/p&gt;
&lt;p&gt;I bet the metrics will be puzzling at first, DAUs remain strong while feature usage mysteriously declines. The power users who drive revenue suddenly need fewer seats.&lt;/p&gt;
&lt;p&gt;Customer success calls shift from &amp;quot;how do I use this feature?&amp;quot; to &amp;quot;can your software work with my AI agent?&amp;quot;&lt;/p&gt;
&lt;p&gt;Or worse: &amp;quot;we built our own version that better fits our workflow.&amp;quot;&lt;/p&gt;
&lt;p&gt;The survivors won&#39;t be those with the best features or even those who add AI features fastest (from no AI to &amp;quot;ai-assisted&amp;quot;).&lt;/p&gt;
&lt;p&gt;The winners will be companies that expose their software&#39;s capabilities through agent-friendly APIs and position themselves as the most trustworthy information sources and execution engines in their domain.&lt;/p&gt;
&lt;p&gt;There&#39;s also the shift from monthly subscriptions to outcome based software (pay per outcome, pay per task etc) but that&#39;s a tweet for another day!&lt;/p&gt;
&lt;p&gt;The $1T question: Will Microsoft, Atlassian, Adobe etc. successfully navigate this transition, or will they be the Digital Equipment Corporation of our era too invested in the previous paradigm to adapt to the new one?&lt;/p&gt;
&lt;p&gt;All I know is this will be a golden era for startups in the space.&lt;/p&gt;
&lt;p&gt;SaaS is being dismantled, piece by piece, workflow by workflow, interface by interface.&lt;/p&gt;
&lt;p&gt;Am I wrong? &lt;a href=&quot;https://twitter.com/gregisenberg/status/1895835789478543659&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It might be an odd thing to compare it to, but there&#39;s another angle to look at this too:&lt;/p&gt;
&lt;p&gt;Software is now content.&lt;/p&gt;
&lt;p&gt;I actually saw the same thing with video when the Canon 5D Mark II came out.&lt;/p&gt;
&lt;p&gt;When that camera dropped, so many more people had access to making high-quality videos, and it really changed what was possible, it was a lot cheaper to make a beautiful video.&lt;/p&gt;
&lt;p&gt;This also meant that the kinds of videos and the total genres of videos rapidly expanded. You had this new format, the vlog, which got progressively higher in production value as the cameras got better and also cheaper in price. Casey Neistat really pushed the culture with his daily vlog, and the level of narrative and production quality he could bring to it each day. You had these new high quality user product reviews, you had streamers, an expansion of documentary short film, it changed culture, it changed the aesthetics of many things, including comedy, it changed how we parse the signal from noise in information.&lt;/p&gt;
&lt;p&gt;And I think in the same way, this is going to happen with software - as the cost of making software goes down, we&#39;re going to see individuals experimenting with very very new kinds of apps. We&#39;re going to see new genres of software that would have never made sense in the past, we&#39;re going to see new aesthetics. We&#39;re going to see new kinds of games because the cost of trying this stuff now is so much lower for the individual. We will see individuals take on far more complex projects and games than ever before. A single creator might create an ecosystem of interrelated apps.&lt;/p&gt;
&lt;p&gt;So we might see software move in a direction where it&#39;s like a creator on YouTube making a video every day, but now we might have creators making and releasing new software projects every day.&lt;/p&gt;
&lt;p&gt;Still running my own experiments, and flushing this out, but something about this zone of ideas is interesting. &lt;a href=&quot;https://twitter.com/internetvin/status/1895845941703303586&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;internetvin&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Reducing hair loss with an antioxidant shampoo.&lt;/p&gt;
&lt;p&gt;A blend of:&lt;/p&gt;
&lt;p&gt;◇ Zinc pyrithione&lt;br /&gt;
◇ Zinc carbonate&lt;br /&gt;
◇ Caffeine&lt;br /&gt;
◇ Niacinamide (vitamin B3)&lt;br /&gt;
◇ Panthenol (vitamin B5)&lt;br /&gt;
◇ Piroctone olamine&lt;/p&gt;
&lt;p&gt;increases total hair counts while reducing hair shedding.&lt;/p&gt;
&lt;p&gt;Oxidative stress is the prime mediator of hair loss. &lt;a href=&quot;https://twitter.com/Outdoctrination/status/1895897605210833048&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Outdoctrination&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;fwiw, this is why perplexity ships fast. people just do things. &lt;a href=&quot;https://t.co/OEHnuUjgiH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OEHnuUjgiH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AravSrinivas/status/1896035034441924861&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AravSrinivas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: It’s not a real opportunity unless you gave them the opportunity to reject you, and they didn’t. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1896221079385100461&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Never take this for granted son. &lt;a href=&quot;https://t.co/3pSxuuSWeD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3pSxuuSWeD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DearS_o_n/status/1896549893453537708&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DearS_o_n&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’re losing your hair…&lt;/p&gt;
&lt;p&gt;So you take finasteride to save it.&lt;/p&gt;
&lt;p&gt;What they don’t tell you:&lt;/p&gt;
&lt;p&gt;You’re chemically castrating yourself to keep your hairline.&lt;/p&gt;
&lt;p&gt;Here’s how to actually fix hair loss (without destroying your hormones): &lt;a href=&quot;https://t.co/MEcoP4rPzS&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MEcoP4rPzS&lt;/a&gt; &lt;a href=&quot;https://twitter.com/yoursimmo/status/1896556830639136910&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;yoursimmo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“You are only entitled to the action, never to its fruits.” — Bhagavad Gita &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1896561203092333005&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://t.co/UOFKwBmf5B&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/UOFKwBmf5B&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1896589020693766422&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The moment you know you’re onto something: You demo your product, and instead of asking how it works, people start telling you how they’d use it. &lt;a href=&quot;https://twitter.com/hnshah/status/1896709806016348437&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Your pitch needs 3 levels of backup:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Hard metrics: &#39;40% cost reduction&#39;&lt;/li&gt;
&lt;li&gt;Social proof: &#39;8 of top 10 banks use us&#39;&lt;/li&gt;
&lt;li&gt;ROI validation: &#39;Payback in 4.2 months&#39;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Each reinforces the others. Have all three ready. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1897043257030213781&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We’re about to see AI Agents explode in SaaS. The entire architecture of most modern cloud services is to power multi-user, collaborative workflows, and AI Agents swap in as one of those collaborators naturally. These systems are extremely well suited for automation. &lt;a href=&quot;https://twitter.com/levie/status/1897542826168344795&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every great company is just a collection of people who are exceptionally good at seeing what matters most. &lt;a href=&quot;https://twitter.com/hnshah/status/1898091782073688282&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/02Rdq7eRuG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/02Rdq7eRuG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1898271299404706295&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ODpEn5RQ9z&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ODpEn5RQ9z&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kunalb11/status/1898358155974680878&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Albert Einstein once said...&lt;/p&gt;
&lt;p&gt;&amp;quot;Weak people take revenge, strong people forgive, intelligent people ignore&amp;quot;&lt;/p&gt;
&lt;p&gt;Here are 9 things I learned from him: &lt;a href=&quot;https://t.co/QB2M16HeVs&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/QB2M16HeVs&lt;/a&gt; &lt;a href=&quot;https://twitter.com/thewisementor/status/1899084928555307197&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;thewisementor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Pick one desire, and one desire only.&lt;br /&gt;
The universe will help you get it.&lt;br /&gt;
Let go of everything else.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1899164349987537355&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Insecure people love holding grudge over trivial matters to feel powerful. &lt;a href=&quot;https://twitter.com/kunalb11/status/1899438341134975148&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Naval Ravikant (@naval) on how to build the team that ships: &lt;a href=&quot;https://t.co/m9WKYBlBvl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/m9WKYBlBvl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zfellows/status/1899455868250231280&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zfellows&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Timely reminder from @visualizevalue&lt;br /&gt;
The new chrome extension is dope &lt;a href=&quot;https://t.co/XdQllzG90s&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XdQllzG90s&lt;/a&gt; &lt;a href=&quot;https://t.co/xGlzYfAP9F&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xGlzYfAP9F&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aymericrabot/status/1899527150321242514&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aymericrabot&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;If you&#39;re going to pick 3 cards in the hand you&#39;re dealt, take intelligence, drive, and most importantly, emotional self-discipline.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1899679745945846166&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Really good &lt;a href=&quot;https://t.co/Bkr0K2A79A&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Bkr0K2A79A&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AlexHormozi/status/1899783736700326006&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlexHormozi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Forget &#39;spray and pray&#39; prospecting.&lt;/p&gt;
&lt;p&gt;Pick ONE vertical&lt;br /&gt;
Pick ONE geography&lt;br /&gt;
Pick ONE company size&lt;br /&gt;
Pick ONE pain point&lt;/p&gt;
&lt;p&gt;Master that combination. Then expand. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1899866836025401368&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How AI is raising the baseline for product excellence &lt;a href=&quot;https://t.co/SEBnQ3GZVr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SEBnQ3GZVr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/gregisenberg/status/1900521219079737746&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Hire great people and get out of their way, with minimal meetings, no code review, no corporate 1:1s!”&lt;/p&gt;
&lt;p&gt;It’s the opposite of mentorship, or even being a caring peer.&lt;/p&gt;
&lt;p&gt;It’s fine if that’s your style, just understand the consequences. &lt;a href=&quot;https://twitter.com/asmartbear/status/1900732687033250114&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Only people who have taken products from zero to one are qualified to run a tech company. &lt;a href=&quot;https://twitter.com/naval/status/1900870844060156138&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Here&#39;s how to structure pilots that actually close:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Max 30 days&lt;/li&gt;
&lt;li&gt;3 mandatory training sessions&lt;/li&gt;
&lt;li&gt;Weekly usage metrics reviews&lt;/li&gt;
&lt;li&gt;2 required use cases completed&lt;/li&gt;
&lt;li&gt;Success criteria defined up front&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Charge 25% of annual fee for the pilot.&lt;/p&gt;
&lt;p&gt;No more endless trials. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1901316644502229265&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Stop generic discovery. Use these exact questions:&lt;/p&gt;
&lt;p&gt;What&#39;s the cost of not solving this now?&amp;quot;&lt;/p&gt;
&lt;p&gt;Who else is involved in these decisions?&lt;/p&gt;
&lt;p&gt;What&#39;s blocked past attempts to fix this?&lt;/p&gt;
&lt;p&gt;How would success be measured?&lt;/p&gt;
&lt;p&gt;4 questions = complete qualification. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1902073665170149767&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;He deleted almost every app from his phone.&lt;/p&gt;
&lt;p&gt;Then he wrote 4 bestsellers in 9 years.&lt;/p&gt;
&lt;p&gt;Cal Newport&#39;s controversial take: Your phone is making you mediocre.&lt;/p&gt;
&lt;p&gt;His science-backed system for getting your brain back: &lt;a href=&quot;https://t.co/JA6s73Htgf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/JA6s73Htgf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/clinjar/status/1902392613040484443&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;clinjar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The biggest bottleneck isn’t execution speed. It’s the lag between action and feedback. If you optimize for speed to feedback, everything else gets easier. &lt;a href=&quot;https://twitter.com/hnshah/status/1902414012907737186&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You’re spending time to save money when you should be spending money to save time.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1902591431010841070&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;People don’t lose because they’re dumb. They lose because they stop moving. Clarity comes from momentum, not thinking. Ship something. Stack wins. Stop asking what’s best. Start asking what keeps us moving. Speed that compounds always wins. &lt;a href=&quot;https://twitter.com/hnshah/status/1903147344649990427&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Even if you get interruptions &amp;quot;all day,&amp;quot; maybe you can batch them.&lt;/p&gt;
&lt;p&gt;Can you get two hours of solid work done, 𝘵𝘩𝘦𝘯 open Slack and email and text messaging? Then another block of work? &lt;a href=&quot;https://twitter.com/asmartbear/status/1903283242121433374&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Switzerland doesn&#39;t look real – a thread 🧵&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Many scholars believe that Tolkien&#39;s 1911 hike through Lauterbrunnen directly inspired the valley of Rivendell in The Lord of the Rings. &lt;a href=&quot;https://t.co/FG34VbU2qm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/FG34VbU2qm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/JamesLucasIT/status/1903295524368789589&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesLucasIT&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ex-Snowflake CEO Frank Slootman telling the hard truths. &lt;a href=&quot;https://t.co/VFOxbGL7Y5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VFOxbGL7Y5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/chrishlad/status/1903417069258834222&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;chrishlad&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Humans naturally prefer comfort, convenience, and ease. It tugs on us like gravity, exerting a constant gravitational pull.&lt;/p&gt;
&lt;p&gt;Only through continuous action of leaders can a group rise above the gravitational pull of comfort, convenience, and ease.&lt;/p&gt;
&lt;p&gt;But like gravity, the pull never goes away, so leaders must always, always, always lead higher standards. And that is what bites people and leaders in the ass. &lt;a href=&quot;https://twitter.com/TBrianKight/status/1903480478293795121&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TBrianKight&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: The champion enablement kit:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;1-page executive summary&lt;/li&gt;
&lt;li&gt;ROI calculator&lt;/li&gt;
&lt;li&gt;Implementation timeline&lt;/li&gt;
&lt;li&gt;Security/tech specs&lt;/li&gt;
&lt;li&gt;Customer references&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Give them everything needed to sell internally.&lt;/p&gt;
&lt;p&gt;Make it easy to buy. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1903552147477697023&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Time spent thinking about the future is time spent away from your self. &lt;a href=&quot;https://twitter.com/naval/status/1903568726542410170&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Happiness to me is mainly not suffering, not desiring, not thinking too much about the future or the past, really embracing the present moment and the reality of what is, and the way it is.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1903860795898794376&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Picking your market is far more important than picking any one feature, and might be more important than every feature you will ever build. &lt;a href=&quot;https://twitter.com/asmartbear/status/1903913654283550830&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Financial advice is easy to give when you&#39;re not the one taking the risk.&lt;/p&gt;
&lt;p&gt;Opinions are cheap. Skin in the game isn&#39;t. &lt;a href=&quot;https://twitter.com/dollarsanddata/status/1904874104668225947&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dollarsanddata&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I feel like in the transition from life as survival (most animals) to life as artistic enjoyment of the universe this was one of the important steps, though it’ll presumably be exponential and come faster than we expect &lt;a href=&quot;https://twitter.com/nickcammarata/status/1904983336302596154&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nickcammarata&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: When deals go dark, send a direct &#39;break up&#39; email:&lt;/p&gt;
&lt;p&gt;&#39;We&#39;ve missed a few meetings. While I believe we can deliver [specific value], I don&#39;t want to be a pest. Are we still a priority?&#39;&lt;/p&gt;
&lt;p&gt;Often prompts real answers or resurrects deals. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1905303667709784096&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;4o – test &lt;a href=&quot;https://t.co/VHgSPUAaH4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VHgSPUAaH4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nurpraditya/status/1905316674531909805&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nurpraditya&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;.@naval: Look at reality the way it is. Try to take yourself out of the equation.&lt;/p&gt;
&lt;p&gt;“Labels like pessimist, optimist, cynic, introvert, extrovert—these are very self limiting. Humans are very dynamic.&lt;/p&gt;
&lt;p&gt;There are times when you feel like being introverted. There are times when you feel like being extroverted. There are contexts in which you’ll be pessimistic. There are contexts in which you’ll be optimistic.&lt;/p&gt;
&lt;p&gt;Leave all those labels alone. It’s better just to look at the problem at hand. Look at reality the way it is. Try to take yourself out of the equation, in a sense.&lt;/p&gt;
&lt;p&gt;Obviously you’re involved. But motivated reasoning is the worst kind of reasoning. You’re not going to find truth through highly motivated reasoning.&lt;/p&gt;
&lt;p&gt;You have to be objective. And objective means trying to take yourself out of it as much as possible, or at least your personality out of it as much as possible.&lt;/p&gt;
&lt;p&gt;And so to the extent you run with this thick identity and personality, it’s going to cloud your judgment. It’s going to try and lock you into the past.&lt;/p&gt;
&lt;p&gt;If you say, ‘I’m a depressed, unhappy person—I’m going to be unhappy.’ That’s a way of locking yourself into your past. Even saying, ‘I have trauma, I have PTSD,’ yeah, you feel something—there are memories, there are flashes, there are occasional bad feelings.&lt;/p&gt;
&lt;p&gt;But don’t define yourself by it because then you’ll lock it into your identity and you’re just going to loop on it.&lt;/p&gt;
&lt;p&gt;It’s better to stay flexible because reality is always changing and you have to be able to adapt to it. Adaptation is also intelligence, adaptation is survival. Adaptation is kind of how you’re here. You’re here because you’re an adapter and your ancestors were adapters.&lt;/p&gt;
&lt;p&gt;So to adapt you’ll have to see things clearly and if you’re seeing them through your own identity, it’s going to cloud your judgment.” &lt;a href=&quot;https://twitter.com/arjunkhemani/status/1905679924184375364&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;arjunkhemani&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A second clip from my recent podcast with @ChrisWillx . Full episode releases Monday. &lt;a href=&quot;https://t.co/SVZCAvxxRL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SVZCAvxxRL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/naval/status/1905680999893389433&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Japanese Parenting Secret for Raising a Genius Child!🇯🇵✨&lt;/p&gt;
&lt;p&gt;Japanese parents use simple daily exercises to boost mental and physical development from an early age👦&lt;/p&gt;
&lt;p&gt;Just 1 month of these exercises can make children more focused, thoughtful, and intelligent🧠💡 &lt;a href=&quot;https://t.co/Wm7bTOLb2C&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Wm7bTOLb2C&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GraceGym_/status/1905880005869195764&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GraceGym_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;99% of men panic when they see their hairline receding.&lt;/p&gt;
&lt;p&gt;So they rush to finasteride, minoxidil, or expensive hair transplants in Turkey.&lt;/p&gt;
&lt;p&gt;But scientific research reveals better, cheaper ways to regrow hair—naturally.&lt;/p&gt;
&lt;p&gt;Here’s everything you need to know: 🧵 &lt;a href=&quot;https://t.co/xz8fA0UfeJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xz8fA0UfeJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/kiierrhairgrow/status/1906681799612252569&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kiierrhairgrow&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/Zgm5uYzCJo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Zgm5uYzCJo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/naval/status/1906929532038426834&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Naval Ravikant&#39;s latest podcast with Chris Williamson is mind-blowing.&lt;/p&gt;
&lt;p&gt;He revealed:&lt;/p&gt;
&lt;p&gt;• Why he deleted his calendar&lt;br /&gt;
• Three decisions that determine 90% of your life&#39;s outcome&lt;br /&gt;
• Why most anxiety comes from a problem few understand&lt;/p&gt;
&lt;p&gt;10 insights that&#39;ll transform your life: &lt;a href=&quot;https://t.co/5jsynf3CGc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5jsynf3CGc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TheHarmonX/status/1907086335263015334&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheHarmonX&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people try to control outcomes. Smart people control inputs. That’s the difference between anxiety and growth. &lt;a href=&quot;https://twitter.com/hnshah/status/1908302180786070003&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;8&quot;&gt;
&lt;li&gt;Do not order them to buy your stuff. Show them a dream. &lt;a href=&quot;https://t.co/GEW0YJDxKq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GEW0YJDxKq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rana_kamran43/status/1908477345599807987&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rana_kamran43&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;9&quot;&gt;
&lt;li&gt;Don’t confuse your customers with too many options. &lt;a href=&quot;https://t.co/fdjSA2mAg5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fdjSA2mAg5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rana_kamran43/status/1908477360422400484&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rana_kamran43&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;10&quot;&gt;
&lt;li&gt;Your product should complete your customer’s life. &lt;a href=&quot;https://t.co/zbrJ9ZH8D7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zbrJ9ZH8D7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rana_kamran43/status/1908477375656190131&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rana_kamran43&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best thing you can do when building in AI is to plan your architecture and business model for everything getting 10X better and cheaper. Throw more compute at the problem now and it will get cheaper later. And build architectures that can always swap in better parts. &lt;a href=&quot;https://twitter.com/levie/status/1908592499393998952&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The pro-tariff crowd need to read:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Economics in One Lesson by Hazlitt&lt;/li&gt;
&lt;li&gt;Basic Economics by Sowell&lt;/li&gt;
&lt;li&gt;The Use of Knowledge in Society by Hayek&lt;/li&gt;
&lt;li&gt;Economic Calculation in the Socialist Commonwealth by Mises&lt;/li&gt;
&lt;li&gt;Capitalism and Freedom by Friedman&lt;/li&gt;
&lt;li&gt;The Wealth Of Nations by Smith &lt;a href=&quot;https://twitter.com/AndreasKoureas_/status/1908630792047034781&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AndreasKoureas_&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Failure is an education, true.&lt;/p&gt;
&lt;p&gt;But remember, a startup&#39;s success isn&#39;t just about the lessons from failure, but also about the few key things done right.&lt;/p&gt;
&lt;p&gt;You do learn from what goes well too. Or at least, you should.&lt;/p&gt;
&lt;p&gt;Failure does not show you what way would have been right! &lt;a href=&quot;https://twitter.com/asmartbear/status/1908791036693926016&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All freelancers and agencies understand the yin/yang of having to do sales as well as work.&lt;/p&gt;
&lt;p&gt;No sales → no work.&lt;/p&gt;
&lt;p&gt;And yet, people will work on a software product for years without thinking they need to spend half their time on sales.&lt;br /&gt;
￼ &lt;a href=&quot;https://twitter.com/asmartbear/status/1909152419981697272&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I used to be addicted to ideas.&lt;br /&gt;
Now, I’m addicted to execution.&lt;/p&gt;
&lt;p&gt;13 brutal lessons that turned me from a passive thinker into a building machine: &lt;a href=&quot;https://twitter.com/theCharafeddine/status/1909214662740042040&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;theCharafeddine&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If your idea is really good,&lt;/p&gt;
&lt;p&gt;others will copy it.&lt;/p&gt;
&lt;p&gt;Some have already started doing it, before you.&lt;/p&gt;
&lt;p&gt;Some will become tough competitors.&lt;/p&gt;
&lt;p&gt;Most will be gone or irrelevant in two years.&lt;/p&gt;
&lt;p&gt;So ignore all that and focus on being one of the tough ones. &lt;a href=&quot;https://twitter.com/asmartbear/status/1909514551571235149&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/KNCSUmuA40&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KNCSUmuA40&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dailystoic/status/1909607180011266154&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You don’t grow a company. You remove everything blocking its growth. &lt;a href=&quot;https://twitter.com/hnshah/status/1909627292906627077&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you get down to it, a CEO only has three responsibilities:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Set the direction of the company.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don&#39;t run out of money.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build a great team. &lt;a href=&quot;https://twitter.com/mbrandolph/status/1909647957558981029&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mbrandolph&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Almost every group that agrees on the big things ends up fighting about less important things and becoming enemies even though they should be bound by the big things. This phenomenon is called the narcissism of small differences. Take the Protestants and Catholics. Though both are followers of Christ, some of them have been fighting for hundreds of years, even though many of them are unable to articulate the differences that divide them, and most of those who can articulate the differences realize that they are insignificant relative to the big important things that should bind them together. I once saw a close family have an irrevocable blow-out at a Thanksgiving dinner over who would cut the turkey. Don&#39;t let this narcissism of small differences happen to you. Understand that nobody and nothing is perfect and that you are lucky to have by-andlarge excellent relationships. See the big picture. &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1909648530215719157&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Curiosity.&lt;/p&gt;
&lt;p&gt;It answers so much, with energy, positivity, open-mindedness, fun, yet also utility.&lt;/p&gt;
&lt;p&gt;In yourself, in hiring, in solving the riddle of “when is ‘failure’ OK?” &lt;a href=&quot;https://twitter.com/asmartbear/status/1909663786434179431&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;every time I hired the person I didn’t feel was creative or smart but they were the responsible safe professional choice it ended up going badly and not actually safe at all&lt;/p&gt;
&lt;p&gt;when I’ve hired the creative smart weird person I’ve only regretted it like 30% of the time &lt;a href=&quot;https://twitter.com/nickcammarata/status/1909687279750463974&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nickcammarata&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every other week, we have a customer join for the first 30 minutes of our management team meeting: they share their candid feedback, and ~40 leaders from across Stripe listen. Even though we already have a lot of customer feedback mechanisms, it somehow always spurs new thoughts and investigations. &lt;a href=&quot;https://twitter.com/patrickc/status/1909715810727374899&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrickc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7 Traits That Make You Irreplaceable: &lt;a href=&quot;https://t.co/zo0FdBJ8z2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zo0FdBJ8z2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dklineii/status/1909961161295995238&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The world&#39;s biggest health scam:&lt;/p&gt;
&lt;p&gt;Sugar.&lt;/p&gt;
&lt;p&gt;It&#39;s making you tired, fat, and depressed.&lt;/p&gt;
&lt;p&gt;Here&#39;s what it actually does to you (backed by science): &lt;a href=&quot;https://t.co/X0iP6LdBn7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/X0iP6LdBn7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/NutritionTipzzz/status/1910369303712460970&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NutritionTipzzz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great startups don&#39;t get noticed by using tricks to get people&#39;s attention. They do it by making something so amazing that people tell their friends about it. &lt;a href=&quot;https://twitter.com/paulg/status/1910393536232775905&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dads&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/Kntzuy8YhJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Kntzuy8YhJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tradingMaxiSL/status/1911985469119746284&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tradingMaxiSL&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It’s important not to let our biases stand in the way of our objectivity. To get good results, we need to be analytical rather than emotional.&lt;/p&gt;
&lt;p&gt;Whenever I observe something in nature that I (or mankind) think is wrong, I assume that I’m wrong and try to figure out why what nature is doing makes sense. That has taught me a lot. It has changed my thinking about 1) what’s good and what’s bad, 2) what my purpose in life is, and 3) what I should do when faced with my most important choices. To help explain why, I will give you a simple example. &lt;a href=&quot;https://twitter.com/RayDalio/status/1912891577531314219&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A retirement truth no one wants to talk about:&lt;/p&gt;
&lt;p&gt;Once you have some base level of financial security, your day to day happiness in retirement will be impacted more by your relationships, your hobbies, and your sense of purpose than your financial assets. &lt;a href=&quot;https://twitter.com/dollarsanddata/status/1913208994329514248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dollarsanddata&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;With ambitious projects, you start by laying the foundation: Setting up servers w/ automation, user authentication and multi-tenancy, basic UI screens, an API.&lt;/p&gt;
&lt;p&gt;But that doesn’t de-risk the project.&lt;/p&gt;
&lt;p&gt;Start with the hardest, scariest part. Prove that works first. &lt;a href=&quot;https://twitter.com/asmartbear/status/1913342273225449560&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the most important things I&#39;ve learned from 20 years of talking to startups at Y Combinator is how few local maximums there are. Founders can just put their heads down and focus on growth, without more than a few months&#39; lookahead, and they&#39;ll almost always do well. &lt;a href=&quot;https://twitter.com/paulg/status/1913632756921180269&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@Niklas_Sikorra The most important lesson about growth is that the way to get it is to make something users love so much they tell their friends, rather than by some &amp;quot;growth hack&amp;quot; like clever marketing or partnerships. &lt;a href=&quot;https://twitter.com/paulg/status/1913634367517138983&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Clarity comes from action. &lt;a href=&quot;https://t.co/aBapGcOQSw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/aBapGcOQSw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1916675924617048101&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You want everything, but you can’t have everything.&lt;/p&gt;
&lt;p&gt;So you want to not want anything. But that’s wanting.&lt;/p&gt;
&lt;p&gt;So you want to want what you already have. Including wanting and not wanting.&lt;/p&gt;
&lt;p&gt;Wanting what is… &lt;a href=&quot;https://twitter.com/naval/status/1916839710544073112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;First Shopify.&lt;/p&gt;
&lt;p&gt;Now Duolingo.&lt;/p&gt;
&lt;p&gt;If you’re a “digital native business” (ie born in the cloud, born on mobile - think Pinterest, Airbnb, Stripe) and haven’t gotten the memo, here is the literal memo. &lt;a href=&quot;https://t.co/0dFhgJJLFP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0dFhgJJLFP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/alliekmiller/status/1916873960668438806&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;alliekmiller&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There is no substitute for a strong internal drive to do things, everything else is built on this foundation. &lt;a href=&quot;https://twitter.com/daltonc/status/1916946192543715636&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;daltonc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Prompts that changed my life. Part 9 &lt;a href=&quot;https://t.co/7CZiwPeY6L&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7CZiwPeY6L&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PromptLLM/status/1916953379990913122&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PromptLLM&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A question that lives in my head rent free… &lt;a href=&quot;https://t.co/K9HQ6vuvqC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/K9HQ6vuvqC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Jayyanginspires/status/1917055176583639513&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Jayyanginspires&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Startup mentality isn’t just going from zero to one; lots of big companies do that. It’s risking something that’s working to get to the next local maxima. &lt;a href=&quot;https://twitter.com/nivi/status/1917216975857848528&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nivi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#podatki&quot;&gt;#podatki&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#giełdowe&quot;&gt;#giełdowe&lt;/a&gt;&lt;br /&gt;
Prośba o tylko dobre rekomendacje.&lt;/p&gt;
&lt;p&gt;Jak rozliczacie podatki z zagranicznych platform nie udostępniających PIT?&lt;br /&gt;
(np. Interactive Brokers, Degiro, Revolut, etc.)&lt;/p&gt;
&lt;p&gt;Jakieś polecane aplikacje lub rozwiązania?&lt;br /&gt;
🙌 &lt;a href=&quot;https://twitter.com/rditrych/status/1917246909564977170&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rditrych&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;build for the 80%, so it just works.&lt;br /&gt;
build for the 1%, so it can do anything.&lt;br /&gt;
the rest will figure it out.&lt;/p&gt;
&lt;p&gt;the secret isn’t picking a side — it’s serving both ends of the spectrum. &lt;a href=&quot;https://twitter.com/ryolu_/status/1917255258511659324&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ryolu_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 Brutal Truths Every Man Needs to Understand:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You are not meant to always be happy. &lt;a href=&quot;https://t.co/YJAEWX7w7c&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YJAEWX7w7c&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FashionFixerz/status/1917269519258771689&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FashionFixerz&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You don’t get rich renting your time. You get rich owning something that grows without you. Build or join something where your upside isn’t capped. &lt;a href=&quot;https://twitter.com/hnshah/status/1917321863077978457&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The best compete against nature, not against other humans. &lt;a href=&quot;https://twitter.com/naval/status/1917512129608888810&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I’ve watched over 5,000 movies in my life.&lt;/p&gt;
&lt;p&gt;Some lines didn’t just entertain me,&lt;br /&gt;
they rewired how I see the world.&lt;/p&gt;
&lt;p&gt;11 movie quotes that reveal brutal&lt;br /&gt;
truths about life: 🧵 &lt;a href=&quot;https://t.co/9YvqPbcPlr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9YvqPbcPlr&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ItsWalterEgo/status/1917556720106168484&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ItsWalterEgo&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can’t please everyone!&lt;/p&gt;
&lt;p&gt;You can’t even please one person all the time.&lt;/p&gt;
&lt;p&gt;Have you 𝘳𝘦𝘢𝘭𝘭𝘺 fully internalized that?&lt;/p&gt;
&lt;p&gt;Really?&lt;/p&gt;
&lt;p&gt;I still struggle. &lt;a href=&quot;https://twitter.com/asmartbear/status/1917648399014268964&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All prioritization and product management systems boil down to:&lt;/p&gt;
&lt;p&gt;How can we say “no” to almost everything, and be confident that what we say “yes” to, will matter?&lt;/p&gt;
&lt;p&gt;Keep that in mind when you select a system or schedule work just because someone asked you to. &lt;a href=&quot;https://twitter.com/asmartbear/status/1917779511984206214&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Who you marry will have a bigger impact on your life than what you do for a living. &lt;a href=&quot;https://twitter.com/LeilaHormozi/status/1918279349058277784&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LeilaHormozi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@LeilaHormozi Facts.&lt;/p&gt;
&lt;p&gt;The wrong person drains your energy, doubts your goals, and slows your momentum.&lt;/p&gt;
&lt;p&gt;Doesn’t matter how good the business is if your home life’s chaos. &lt;a href=&quot;https://twitter.com/lucasgbradshaw/status/1918292742980911352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;lucasgbradshaw&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;Magnesium Glycinate&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;80% of Americans are magnesium deficient, contributing to anxiety, muscle cramps, poor sleep, and constipation.&lt;/p&gt;
&lt;p&gt;Take 400-800mg before bed.&lt;/p&gt;
&lt;p&gt;I&#39;ve seen this simple mineral work wonders:&lt;br /&gt;
&lt;a href=&quot;https://t.co/muy2fvwHVm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/muy2fvwHVm&lt;/a&gt; &lt;a href=&quot;https://twitter.com/CraigBrockie/status/1918304137663643649&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;CraigBrockie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@LeilaHormozi Marrying someone shapes your mindset, values, and path. Your partner defines your energy, ambition, and standards. It&#39;s not just support—it&#39;s your rock. &lt;a href=&quot;https://twitter.com/EricMelillo_/status/1918309040897085662&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;EricMelillo_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want your work to stand out? Just turn it in on time.&lt;/p&gt;
&lt;p&gt;New research shows that when you miss deadlines, people don’t just see your work as late—they see it as lower quality.&lt;/p&gt;
&lt;p&gt;Here’s why being late hurts way more than being early 👇 &lt;a href=&quot;https://t.co/68WD2qP06N&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/68WD2qP06N&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1918360650184835309&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My richest mentor told me...&lt;/p&gt;
&lt;p&gt;&amp;quot;I win more for one reason. I move fast. By the time most people are done analyzing, I&#39;ve already made three mistakes and found a better way.” &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1918371678284865738&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’ve never run a sales organization, you won’t hire a Sales Engineer soon enough. You’ll just be frustrated that your sales people “aren’t technical enough.”&lt;/p&gt;
&lt;p&gt;Especially if you’re spoiled with one or two sales people who are both.&lt;/p&gt;
&lt;p&gt;This is how you scale sales. &lt;a href=&quot;https://twitter.com/asmartbear/status/1918501268168843508&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I don’t write because I’ve figured it out.&lt;/p&gt;
&lt;p&gt;I write in order to figure it out.&lt;/p&gt;
&lt;p&gt;Doing is a form of thinking.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#DanielPink&quot;&gt;#DanielPink&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Picasso&quot;&gt;#Picasso&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#QOTD&quot;&gt;#QOTD&lt;/a&gt; &lt;a href=&quot;https://t.co/peyE9aoXTX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/peyE9aoXTX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1918631700017606808&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;You get rewarded for unique knowledge, not for effort.&lt;/p&gt;
&lt;p&gt;Effort is required to create unique knowledge.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1919078821304606928&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want to instantly feel more satisfied with your life?&lt;/p&gt;
&lt;p&gt;It’s not about adding more. It’s about subtracting.&lt;/p&gt;
&lt;p&gt;Here’s a simple mental trick backed by science that shifts everything 👇 &lt;a href=&quot;https://twitter.com/DanielPink/status/1919168100496191852&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You’re not indecisive. You’re not “too nice.”&lt;/p&gt;
&lt;p&gt;You’re stuck in a trauma loop of people-pleasing and overthinking.&lt;/p&gt;
&lt;p&gt;It’s not your personality.&lt;/p&gt;
&lt;p&gt;It’s your nervous system replaying old survival scripts.&lt;/p&gt;
&lt;p&gt;Here’s the truth—(most therapists won&#39;t tell you) 🧵 &lt;a href=&quot;https://t.co/qhWvpGnJkD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qhWvpGnJkD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/LORWEN108/status/1919350670299369698&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LORWEN108&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg people talk about love like it’s abstract, but you can literally feel it re-enter a space.&lt;/p&gt;
&lt;p&gt;so much of what we call “home” is just an accumulation of other people’s energy. &lt;a href=&quot;https://twitter.com/protobard/status/1919512461574865401&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;protobard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;I simply can’t work on projects that aren’t my own.&amp;quot;&lt;/p&gt;
&lt;p&gt;The main motivation for a lot of startups, if we’re being honest.&lt;/p&gt;
&lt;p&gt;Another: Proving to others that you’re much more of a badass than they thought. &lt;a href=&quot;https://twitter.com/asmartbear/status/1919808380874453457&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;On April 28 I started a new essay. By May 2 it felt almost done. I&#39;m still working on it. It&#39;s remarkable how much further you can take something from &amp;quot;almost done.&amp;quot; People who always write with deadlines must never realize this fundamental fact about writing. &lt;a href=&quot;https://twitter.com/paulg/status/1920790396667367905&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just making something simpler is often better than making it smarter. &lt;a href=&quot;https://twitter.com/jasonfried/status/1920988310333218877&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Kasparov on greatness. &lt;a href=&quot;https://t.co/ZcNwcdX11s&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZcNwcdX11s&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Kpaxs/status/1921394409368703292&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most Founders Don’t Want to Sell&lt;/p&gt;
&lt;p&gt;The hard part isn’t getting users. It’s being willing to.&lt;/p&gt;
&lt;p&gt;Founders say they want product/market fit, but most of them hope it happens by accident. They’ll tweak the product. Redo the landing page. Change the CTA. Anything but talk to people. Anything but ask for time, attention, or belief.&lt;/p&gt;
&lt;p&gt;It’s not that they don’t know how to get users.&lt;br /&gt;
It’s that they don’t want to be the one selling.&lt;/p&gt;
&lt;p&gt;Selling feels like begging. Like trying too hard. Like a step backward from the product work that made them feel smart. But if you don’t learn how to make people care, nothing you build will matter.&lt;/p&gt;
&lt;p&gt;Some founders chase perfection because they think it will attract users. Others hide behind product because it’s easier than rejection. Either way, the result is the same: they wait.&lt;/p&gt;
&lt;p&gt;And waiting is the fastest way to lose.&lt;/p&gt;
&lt;p&gt;If you’re not doing the work to spread the product, you’re not building a startup. You’re building a secret. And most secrets die quietly.&lt;/p&gt;
&lt;p&gt;The truth is: every founder is in sales.&lt;/p&gt;
&lt;p&gt;Whether they admit it or not. &lt;a href=&quot;https://twitter.com/hnshah/status/1921948229345882186&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Example: A bartender checking for fake IDs.&lt;/p&gt;
&lt;p&gt;Asking &amp;quot;How old are you?&amp;quot; is easy for a liar. They will confidently say, &amp;quot;21.&amp;quot;&lt;/p&gt;
&lt;p&gt;But asking &amp;quot;What year were you born?&amp;quot; forces them to do mental math.&lt;/p&gt;
&lt;p&gt;A truth-teller answers instantly. A liar hesitates. &lt;a href=&quot;https://twitter.com/DanielPink/status/1921965787947909366&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The hard truth: most founders don’t have a distribution problem. They have a discomfort problem. They don’t want to sell. &lt;a href=&quot;https://twitter.com/hnshah/status/1922346609146528112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Negotiating with your kids isn&#39;t just more effective than yelling—it&#39;s transformative. When you replace the temporary compliance of fear with genuine buy-in, you&#39;re building future decision-makers, not order-takers. Think tactical empathy: &amp;quot;It seems like you&#39;re frustrated about bedtime&amp;quot; acknowledges their reality without surrendering yours. Use calibrated questions like &amp;quot;How does staying up late help you?&amp;quot; rather than &amp;quot;Why won&#39;t you just go to bed?&amp;quot; The first invites problem-solving; the second triggers defensiveness. When children feel heard rather than overpowered, they develop emotional regulation instead of resentment. Remember, your goal isn&#39;t winning the argument—it&#39;s creating an environment where cooperation becomes their idea. The beauty is in watching them internalize this approach and apply it themselves, turning potential household hostage situations into opportunities for growth. &lt;a href=&quot;https://twitter.com/fbinegotiator/status/1922387978959388841&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fbinegotiator&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;Supplement stack&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Compared to most biohackers, Julie’s stack is refreshingly short:&lt;br /&gt;
• B-complex, fish oil, &amp;amp; probiotics&lt;br /&gt;
• Magnesium (citrate + threonate)&lt;br /&gt;
• Vitamin D3 + K2&lt;br /&gt;
• Inositol, Apigenin &amp;amp; L-theanine&lt;/p&gt;
&lt;p&gt;And at the end of the day… &lt;a href=&quot;https://t.co/bq4J6H9lSv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/bq4J6H9lSv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/CraigBrockie/status/1922647481328001322&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;CraigBrockie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Left or Right? 🤔 &lt;a href=&quot;https://t.co/iMgsBV2tXR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iMgsBV2tXR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tranmautritam/status/1923074990523474145&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tranmautritam&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Successful children with self-esteem have this background &lt;a href=&quot;https://t.co/Hftz85RZPP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Hftz85RZPP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DeChristianLife/status/1923121214509490650&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DeChristianLife&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;High agency isn’t about being loud or bold. It’s about seeing what matters and acting on it, even when no one else does. You don’t wait. You don’t ask. You move. Once you start living that way, it’s hard to go back to anything else. &lt;a href=&quot;https://twitter.com/hnshah/status/1923139293893071009&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Passive-aggressive communication is annoying.&lt;/p&gt;
&lt;p&gt;Here’s how to respond when someone is being passive-aggressive: &lt;a href=&quot;https://t.co/pXo1SOlpuE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pXo1SOlpuE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/fbinegotiator/status/1923427207671611722&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;fbinegotiator&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Marcus Aurelius&#39; rules for a better life. &lt;a href=&quot;https://t.co/sCoJlZvncX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sCoJlZvncX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dailystoic/status/1923483608230350900&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Work shouldn’t drain you.&lt;/p&gt;
&lt;p&gt;It should pull you in.&lt;/p&gt;
&lt;p&gt;Make you forget what time it is.&lt;/p&gt;
&lt;p&gt;The best kind of work feels like solving a puzzle you can’t stop thinking about. &lt;a href=&quot;https://twitter.com/hnshah/status/1923593461460238503&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Horizontal products often increase growth by going vertical, because specificity is better both for marketing and product development.&lt;/p&gt;
&lt;p&gt;Or you could start vertical for exactly that reason. Expanding to horizontal is hard, though, because you’ve hard-coded so much for specific use-cases.&lt;/p&gt;
&lt;p&gt;So, which is the better strategy? &lt;a href=&quot;https://twitter.com/asmartbear/status/1923935577805598908&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The more a company grows, the more it starts to optimize for internal feelings instead of external truth. Someone gets offended. Someone wants ownership. And the customer becomes a character in a slide, not a real person anymore. &lt;a href=&quot;https://twitter.com/hnshah/status/1924887096696963486&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If your company isn’t an act of rebellion, WHAT’S THE FUCKING POINT? &lt;a href=&quot;https://twitter.com/nivi/status/1925918898190176467&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nivi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tony Robbins believes that, in a lowered emotional state, we only see the problems, not solutions.&lt;/p&gt;
&lt;p&gt;Let’s say you wake up feeling tired and overwhelmed. You sit down to brainstorm strategies to solve your issues, but it comes to naught, and you feel even worse afterward. This is because you started in a negative state, then attempted strategy but didn’t succeed (due to tunnel vision on the problems), and then likely told yourself self-defeating stories (e.g., “I always do this. Why am I so wound up I can’t even think straight?”).&lt;/p&gt;
&lt;p&gt;To fix this, he encourages you to “prime” your state first. The biochemistry will help you proactively tell yourself an enabling story. Only then do you think on strategy, as you’ll see the options instead of dead ends.&lt;/p&gt;
&lt;p&gt;“Priming” my state is often as simple as doing 5 to 10 push-ups or getting 20 minutes of sun exposure.  I often ask myself, “Is this really a problem I need to think my way out of? Or is it possible I just need to fix my biochemistry?”&lt;/p&gt;
&lt;p&gt;I’ve wasted a lot of time journaling on “problems” when I just needed to eat breakfast sooner, do 10 push-ups, or get an extra hour of sleep.&lt;/p&gt;
&lt;p&gt;Sometimes, you think you have to figure out your life’s purpose, but you really just need some macadamia nuts and a cold fucking shower. &lt;a href=&quot;https://twitter.com/tferriss/status/1925964659468759198&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI is absolutely out of control.&lt;/p&gt;
&lt;p&gt;Google Veo 3 just dropped 72 hours ago&lt;/p&gt;
&lt;p&gt;And these 11 videos are breaking the internet. Watch till the end 👇&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/DPXSbZCL7k&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DPXSbZCL7k&lt;/a&gt; &lt;a href=&quot;https://twitter.com/toolandtea/status/1925974268744995269&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;toolandtea&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You have time to do two Big Things, but not three.&lt;/p&gt;
&lt;p&gt;It&#39;s not just about choosing what you do, but also about choosing what you don&#39;t.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/uCnzbXtN3G&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/uCnzbXtN3G&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1926101346127667590&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;we evolved for 50 person tribes with 6% lifetime exile (which is basically murder) ratio where the main reason you’d public speak is when you’re in trouble and maybe public speaking is for the next species that comes after us &lt;a href=&quot;https://twitter.com/nickcammarata/status/1926779924267843871&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nickcammarata&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Underrated life skill: The ability to reset fast. You&#39;re allowed to start over at 10am, 2pm, or 6:30 at night. Zero reason to let one bad hour carry into the rest of your day. You can’t control what hits you. But you can control how long you sit in it. &lt;a href=&quot;https://twitter.com/blakeaburge/status/1926974714729111928&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;blakeaburge&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;7 books that every parent should read: &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1927032051355578524&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The thinker vs the doer..... &lt;a href=&quot;https://t.co/IkuuvWy5jJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IkuuvWy5jJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/biohacker/status/1927298070716317782&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;biohacker&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“People spend too much time consuming information, but don’t consume the best information intensely enough.&lt;/p&gt;
&lt;p&gt;Consume less, but much more intentionally.” — @david_perell &lt;a href=&quot;https://twitter.com/ChrisWillx/status/1927349069682532409&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ChrisWillx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Does keeping a product free early on help you get better feedback?&lt;/p&gt;
&lt;p&gt;Making it free gets you worse feedback, because you&#39;re getting feedback from &amp;quot;everyone&amp;quot; instead of from the ICPs who care about it enough to pay for it, even though it&#39;s not fully baked. &lt;a href=&quot;https://twitter.com/asmartbear/status/1927796771427631215&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Murakami, what a line &lt;a href=&quot;https://t.co/vHVFdwGZxR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vHVFdwGZxR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DylanoA4/status/1929191453323850090&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DylanoA4&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/KCpHBY0kyE&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KCpHBY0kyE&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dailystoic/status/1929568709326274728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The price of productivity is creativity.&amp;quot;&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1929638652218347952&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Early on, any excuse to talk to customers is good.&lt;/p&gt;
&lt;p&gt;And a sale is a sale. How else will you learn?&lt;/p&gt;
&lt;p&gt;I yap about ICPs and focus as much as anyone.&lt;/p&gt;
&lt;p&gt;But I also admit -- take the call, take the money. &lt;a href=&quot;https://twitter.com/asmartbear/status/1929651238104084889&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Acquiring knowledge is easy, the hard part is knowing what to apply and when.&lt;/p&gt;
&lt;p&gt;That’s why all true learning is “on the job.”&lt;/p&gt;
&lt;p&gt;Life is lived in the arena. &lt;a href=&quot;https://twitter.com/naval/status/1930058059172458665&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Just like a low resting heart rate is the byproduct of intense exercise, low anxiety is the byproduct of intense self-examination.&amp;quot; — Naval Ravikant &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1930611067669127267&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/zPU3nuf2Da&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zPU3nuf2Da&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1930701918655091035&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How smart leaders do addition by subtraction &lt;a href=&quot;https://t.co/WvrZ3FPd1f&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WvrZ3FPd1f&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dklineii/status/1930956717828837550&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My favorite Charlie Munger quote of all time... &lt;a href=&quot;https://t.co/x0E6zXfecb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/x0E6zXfecb&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Jayyanginspires/status/1931006919281643952&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Jayyanginspires&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus on effort, not outcomes. It’s insane to tie your wellbeing to things outside of your control, Marcus Aurelius said. If you did your best, if you gave it your all, if you acted with your best judgment—that&#39;s a win…regardless of whether it’s a good or bad outcome. &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1931017742553071907&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hard Truths of Psychology and Life:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/FNvh7a2CZH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/FNvh7a2CZH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/WisdomStoics/status/1931386763924144317&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;WisdomStoics&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;we do 1 meeting a week at @cursor_ai&lt;br /&gt;
the rest is pure playing + building&lt;/p&gt;
&lt;p&gt;in the age of AI, bold &amp;gt; busy&lt;br /&gt;
agility + taste &amp;gt; decks + delays &lt;a href=&quot;https://twitter.com/ryolu_/status/1931389469258551487&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ryolu_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;No man is free who is not master of himself.&amp;quot; — Epictetus &lt;a href=&quot;https://twitter.com/dailystoic/status/1931456138828194246&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nothing in the world beats the sound of your children giggling.&lt;/p&gt;
&lt;p&gt;Your whole universe collapses into a moment of pure focused joy. &lt;a href=&quot;https://twitter.com/tomerlondon/status/1931558718375895526&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomerlondon&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Be self-centered.&lt;/p&gt;
&lt;p&gt;Seriously.&lt;br /&gt;
This is your life.&lt;br /&gt;
Not your boss’s. Not your parents’. Not your partner&#39;s. Not your followers’.&lt;/p&gt;
&lt;p&gt;Yours.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A THREAD - &lt;a href=&quot;https://twitter.com/theCharafeddine/status/1932407429058134526&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;theCharafeddine&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;ChatGPT&#39;s product retention curves is a product manager&#39;s wet dream.&lt;/p&gt;
&lt;p&gt;Their 1 month retention has skyrocketed from &amp;lt;60% 2yrs ago to an unprecedented ~90%! Youtube was best-in-class with ~85%.&lt;/p&gt;
&lt;p&gt;6mo retention is trending to ~80%. Rapidly rising smile curve.&lt;/p&gt;
&lt;p&gt;Generational product. &lt;a href=&quot;https://t.co/qlLQrw0HkA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qlLQrw0HkA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/deedydas/status/1932619060057084193&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;deedydas&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;It&#39;s small, but it&#39;s ours.&amp;quot;&lt;/p&gt;
&lt;p&gt;Some people wonder: What is the meaning of life?&lt;/p&gt;
&lt;p&gt;This is one of the good answers. &lt;a href=&quot;https://twitter.com/asmartbear/status/1932913484217430200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If your SaaS has a cancellation rate higher than 5%/mo, that&#39;s dangerously high. Focus on fixing your business issues before acquiring more unsatisfied customers. Use surveys and one-on-ones to understand what&#39;s wrong.&lt;/p&gt;
&lt;p&gt;But if they’re sticky, use this formula to “spend to grow”: &lt;a href=&quot;https://twitter.com/asmartbear/status/1933349613177536965&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Send an investor update every month, even if it’s to an informal board of advisors&lt;/p&gt;
&lt;p&gt;It forces you to organize your thoughts.&lt;/p&gt;
&lt;p&gt;What’s the most important thing right now?  What are you doing about it?&lt;/p&gt;
&lt;p&gt;Was 𝘪𝘴 going well, that you should lean more into?&lt;/p&gt;
&lt;p&gt;Was 𝘪𝘴𝘯&#39;𝘵 doing well, that you really need to prioritize, even though it&#39;s less fun?&lt;/p&gt;
&lt;p&gt;How could someone else help?  Ask them.&lt;/p&gt;
&lt;p&gt;Who responses sometimes?  They’re your real friends. &lt;a href=&quot;https://twitter.com/asmartbear/status/1933355650735596001&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remote has destroyed so many promising companies. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1933656356520681961&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dads are spending 3-4x as much time with their kids as their dads did with them.&lt;/p&gt;
&lt;p&gt;When father figures are engaged, kids show better cognitive development, boys have fewer behavioral problems, and girls have fewer emotional problems.&lt;/p&gt;
&lt;p&gt;Every child deserves strong parental bonds. &lt;a href=&quot;https://t.co/Is2XagckcD&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Is2XagckcD&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AdamMGrant/status/1934277811130322989&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AdamMGrant&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Smart, capable, thoughtful people can come up with an explanation for anything, a justification for anything.&lt;/p&gt;
&lt;p&gt;That’s a problem, as we successfully defend preconceived ideas rather than seeking truth.&lt;/p&gt;
&lt;p&gt;Whether we’re convincing someone else, or excusing ourselves. &lt;a href=&quot;https://twitter.com/asmartbear/status/1934449103879975198&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t make things so you can make money; make money so you can make things. &lt;a href=&quot;https://twitter.com/naval/status/1934477226634080633&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs dropped the coldest business truth of all time &lt;a href=&quot;https://t.co/ZdHZ2SS4tp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZdHZ2SS4tp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aaditsh/status/1935304283324563539&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aaditsh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;it&#39;s crazy that a book from 1908 can explain how to manage your time better than any modern self-help content. highly recommend. &lt;a href=&quot;https://t.co/mcyvAGPRny&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mcyvAGPRny&lt;/a&gt; &lt;a href=&quot;https://twitter.com/theJayAlto/status/1935395988090335435&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;theJayAlto&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@garrytan i&#39;m pretty deep with &lt;a href=&quot;https://t.co/1CWzpNdFXm&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/1CWzpNdFXm&lt;/a&gt; but maybe that&#39;s not exactly what you want, not sure it gets into your RAG queries &lt;a href=&quot;https://twitter.com/jasonlk/status/1935724573221326869&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A simple rule for life that rarely fails:&lt;/p&gt;
&lt;p&gt;Optimize for enthusiasm. Make as many choices as you can that leave you feeling energetic and interested. Pay attention to when you have the urge to pursue or participate in something and do more of it. &lt;a href=&quot;https://twitter.com/JamesClear/status/1935735189831131514&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;15 Hard Lines about Life:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/bVmOTIULT2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/bVmOTIULT2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/LibraryPath/status/1935767111659659460&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LibraryPath&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Applying maximum energy doesn’t mean working yourself to death.&lt;/p&gt;
&lt;p&gt;It means being all-in, and being thoughtful and specific about what you’re all-in about. Maximizing the time that you do work, on the right things.&lt;/p&gt;
&lt;p&gt;This is what healthy perseverance looks like. &lt;a href=&quot;https://twitter.com/asmartbear/status/1937136562631803345&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It took me 9 years to understand this, I’ll teach it to you in 3 minutes.&lt;/p&gt;
&lt;p&gt;Here are 15 uncomfortable truths about life...&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/2b8dhhhtiX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2b8dhhhtiX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/WisdomStoics/status/1937539731467960784&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;WisdomStoics&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/C0rH2ecaWQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/C0rH2ecaWQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/WisdomStoics/status/1937539749532852241&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;WisdomStoics&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/00TSanHSYR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/00TSanHSYR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/WisdomStoics/status/1937539766549119481&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;WisdomStoics&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;5&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/fNNencPadc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fNNencPadc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/WisdomStoics/status/1937539797347893585&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;WisdomStoics&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hard Truths of Psychology and Life:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/gH5GJdBPQP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gH5GJdBPQP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/WisdomStoics/status/1937930223242342911&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;WisdomStoics&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of my all-time favorite type of videos is pre-fame bands playing their extremely famous songs to a tiny room of people, because they&#39;re not yet known.&lt;/p&gt;
&lt;p&gt;A thread of some examples:&lt;/p&gt;
&lt;p&gt;Bastille playing Pompeii in what looks like someone&#39;s living room:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/aYd0Nq4Fyf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/aYd0Nq4Fyf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/JeremiahDJohns/status/1938667856675098638&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JeremiahDJohns&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The end of the software business as we know it. A few thoughts on where the industry might be heading.&lt;/p&gt;
&lt;p&gt;I’d love to hear your thoughts.&lt;br /&gt;
Does this vision resonate? What other changes do you see coming to the software industry in the next 5 years? &lt;a href=&quot;https://t.co/vJqpB8CAxv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vJqpB8CAxv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tomik99/status/1938852697857225202&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Harsh truths I know at 39 I wish I knew at 29:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;The solution to money problems is to make more money, not save money.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Entrepreneurship is hard. Being laid off as an employee is harder. &lt;a href=&quot;https://twitter.com/Tim_Denning/status/1938913872032702659&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tim_Denning&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Honesty wins customers.&lt;/p&gt;
&lt;p&gt;When you&#39;re honest about what&#39;s not good, you gain credibility to claim what is good.&lt;/p&gt;
&lt;p&gt;And you’ve started a healthy relationship with a new customer.&lt;/p&gt;
&lt;p&gt;Beautiful. &lt;a href=&quot;https://twitter.com/asmartbear/status/1939226582918299893&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stay healthy, get wealthy, seek truth, give love, and create beauty. &lt;a href=&quot;https://twitter.com/naval/status/1939263513157099657&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;𝗕𝘂𝗶𝗹𝗱𝗶𝗻𝗴 𝘁𝗵𝗲 𝗽𝗿𝗼𝗱𝘂𝗰𝘁 -𝘃𝘀- 𝗺𝗮𝗿𝗸𝗲𝘁𝗶𝗻𝗴:&lt;/p&gt;
&lt;p&gt;Marketing is building the company.&lt;/p&gt;
&lt;p&gt;Product is building a project.&lt;/p&gt;
&lt;p&gt;Which thing are you trying to build? &lt;a href=&quot;https://twitter.com/asmartbear/status/1939520018695266310&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;“When you want to help people, you tell them the truth.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;When you want to help yourself, you tell them what they want to hear.”&lt;/p&gt;
&lt;p&gt;• Modern-day politics is full of people repeating what we want to hear while doing nothing&lt;/p&gt;
&lt;p&gt;• Truth: we need action, not nice words. &lt;a href=&quot;https://t.co/UJFCUN5O53&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/UJFCUN5O53&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Tim_Denning/status/1939640286826676679&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tim_Denning&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;15 Hard Truths of Psychology and Life:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://t.co/Q3O0d8Bhrc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Q3O0d8Bhrc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/UpSkillYourLife/status/1939881003063087260&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;UpSkillYourLife&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/KNnsvD7ppo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KNnsvD7ppo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/mindfulmaven_/status/1940183738672992747&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mindfulmaven_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Inwestowalibyście w takiego &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SaaS’a&quot;&gt;#SaaS’a&lt;/a&gt;?&lt;/p&gt;
&lt;p&gt;Przyznam, że ładnie wyglądają te kohorty klientów wg. lat wyglądają: 132% net revenue retention.🔥&lt;/p&gt;
&lt;p&gt;A poza tym:&lt;br /&gt;
• Revenue LTM $821M&lt;br /&gt;
• Growth +46% yoy&lt;br /&gt;
• Operating Margin (non-GAAP) 18%&lt;br /&gt;
• Gross Margin 91% (❗️)&lt;br /&gt;
• 78% of Forbes2000 use it&lt;br /&gt;
• 76% of customers use 2 products or more&lt;/p&gt;
&lt;p&gt;Założona w 2012 roku firma, „to eliminate the gap between imagination and reality”.&lt;/p&gt;
&lt;p&gt;Jednym słowem… &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#FIGMA&quot;&gt;#FIGMA&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Znana i ceniona wśród designerów, wkrótce dostępna dla inwestorów giełdowych. Zapewne IPO takiej firmy spotka się ze sporym zainteresowaniem m.&lt;/p&gt;
&lt;p&gt;Źródło grafiki: S-1 Figma / SEC&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#design&quot;&gt;#design&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#IPO&quot;&gt;#IPO&lt;/a&gt; &lt;a href=&quot;https://twitter.com/rditrych/status/1940298232766038504&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rditrych&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Happiness is highly linked to how focused you are on what you&#39;re doing.&lt;/p&gt;
&lt;p&gt;A wandering mind is an unhappy mind. &lt;a href=&quot;https://t.co/TJfhQgnb8l&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TJfhQgnb8l&lt;/a&gt; &lt;a href=&quot;https://twitter.com/JEverettLearned/status/1940952313398808609&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JEverettLearned&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Momentum doesn’t disappear. It gets suffocated.&lt;/p&gt;
&lt;p&gt;By clarity that fades.&lt;/p&gt;
&lt;p&gt;By instincts you ignore.&lt;/p&gt;
&lt;p&gt;By decisions you defer.&lt;/p&gt;
&lt;p&gt;By process layered on top of urgency.&lt;/p&gt;
&lt;p&gt;By trying to please when you should be pressing forward.&lt;/p&gt;
&lt;p&gt;By chasing alignment instead of shaping direction.&lt;/p&gt;
&lt;p&gt;By the wrong people getting louder than the right ones.&lt;/p&gt;
&lt;p&gt;By complexity pretending to be strategy.&lt;/p&gt;
&lt;p&gt;By thinking you can wait until next week.&lt;/p&gt;
&lt;p&gt;But the biggest killer of all?&lt;/p&gt;
&lt;p&gt;Believing momentum will come back on its own.&lt;/p&gt;
&lt;p&gt;It won’t. &lt;a href=&quot;https://twitter.com/hnshah/status/1941191780638376011&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Building a pure AI SAAS is a horrible idea&lt;/p&gt;
&lt;p&gt;This is what beginners never understand:&lt;/p&gt;
&lt;p&gt;If your startup is EASY to build, then it&#39;s worth nothing&lt;/p&gt;
&lt;p&gt;Real money is in doing really DIFFICULT shit&lt;/p&gt;
&lt;p&gt;There&#39;s NO shortcut&lt;/p&gt;
&lt;p&gt;Too many &amp;quot;AI vibe coding&amp;quot; clowns on here preaching shortcuts that don&#39;t exist in life &lt;a href=&quot;https://twitter.com/yassin_baum/status/1941192041171423252&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;yassin_baum&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;real &lt;a href=&quot;https://t.co/C6KVNB2ceW&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/C6KVNB2ceW&lt;/a&gt; &lt;a href=&quot;https://twitter.com/waronweakness/status/1942011448793629026&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;waronweakness&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You interview customers to figure out what problems they will pay an external vendor to solve.&lt;/p&gt;
&lt;p&gt;You don’t interview customers to hear “what to build.”&lt;/p&gt;
&lt;p&gt;That’s your job - inventing a solution, which is also hopefully surprisingly delightful. &lt;a href=&quot;https://twitter.com/asmartbear/status/1942049435623592401&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;AI is a form of leverage. Leverage increases the returns to those who use it. Software engineers are gaining leverage relative to everyone else. And the creators of AI are the most leveraged of them all. &lt;a href=&quot;https://twitter.com/naval/status/1942102738265161834&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/nDDR0GDwZ4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nDDR0GDwZ4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/mindfulmaven_/status/1942209410211987890&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mindfulmaven_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The world&#39;s most successful companies make you do their work:&lt;/p&gt;
&lt;p&gt;Nike: You design it&lt;br /&gt;
IKEA: You assemble it&lt;br /&gt;
Notion: You customize it&lt;/p&gt;
&lt;p&gt;And you pay 63-225% MORE for this privilege.&lt;/p&gt;
&lt;p&gt;Here&#39;s the trillion dollar manipulation playbook🧵: &lt;a href=&quot;https://t.co/snt59Xy1W8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/snt59Xy1W8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/LoicReco/status/1942230298663735449&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LoicReco&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the reason your React code sucks is useEffect + setState&lt;/p&gt;
&lt;p&gt;don&#39;t sync local state inside of useEffects - this will make your code overly complex to reason about &lt;a href=&quot;https://t.co/JuAvs1mQ6Y&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/JuAvs1mQ6Y&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aidenybai/status/1942239432406372716&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aidenybai&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What’s wild is how many unexplored AI Agent products are just sitting inside AI models today. These models pack enough intelligence to support most workflows. They just need someone with domain expertise, the right prompt, data for context, and UX to unlock the use case. &lt;a href=&quot;https://twitter.com/levie/status/1942258834376130988&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Too many “top priorities?”&lt;/p&gt;
&lt;p&gt;Copy the most important ones to another list. By hand.&lt;/p&gt;
&lt;p&gt;Annoying, right?  So you’ll naturally skip some.&lt;/p&gt;
&lt;p&gt;Repeat if needed.&lt;/p&gt;
&lt;p&gt;Now you have three. &lt;a href=&quot;https://twitter.com/asmartbear/status/1942292787333832721&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;PLG is great, but it&#39;s a comprehensive strategy.&lt;/p&gt;
&lt;p&gt;It’s not true that “great products sell themselves.”  Only when coupled with acquisition, onboarding, self-sales, and viral component.&lt;/p&gt;
&lt;p&gt;Without that, you’re just avoiding marketing, and that will fail. &lt;a href=&quot;https://twitter.com/asmartbear/status/1942767668869709829&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Wow. &lt;a href=&quot;https://t.co/GocAT3x3kd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GocAT3x3kd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/chamath/status/1942986481225838784&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;chamath&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Two days ago I walk into the water, and two ladies from Ukraine, from my native city, they say: ‘Captain. Oh, Captain.’ Then they ask me how old I am. I tell them, guess; and one of them gives me 55-60. The other gives me 60-65. So I say to them, and I’m saying this to you: On January 1st, God willing, I will turn 87. Today I have problem with my knee, but two years ago I could swim to Coney Island and back. I tell you my secret. Every day—one shot of vodka. One shot, no more. Every winter—skiing. Every summer—playing soccer, here on the beach. And you must work. Work keeps you on the surface of life. Without work you will sink down into your mind: ‘I don’t like this, I don’t want this, I can’t do this.’ You will drown there. So you must work. Nothing to make you rich, but enough to stay on the surface.” &lt;a href=&quot;https://twitter.com/humansofny/status/1942993560132882639&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;humansofny&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Top 5 Google Fonts I love:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Inter&lt;/li&gt;
&lt;li&gt;Rubik&lt;/li&gt;
&lt;li&gt;Manrope&lt;/li&gt;
&lt;li&gt;Geist&lt;/li&gt;
&lt;li&gt;Space Grotesk&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;What do I miss? &lt;a href=&quot;https://twitter.com/tranmautritam/status/1943233766430065033&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tranmautritam&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What matters at a startup, in order of importance:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Recruiting&lt;/li&gt;
&lt;li&gt;Product&lt;/li&gt;
&lt;li&gt;Marketing&lt;/li&gt;
&lt;li&gt;Sales&lt;br /&gt;
-∞. Planning, Meetings, HR, etc.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Do any item on this list well, and the next one is “easy”. &lt;a href=&quot;https://twitter.com/nivi/status/1943324420132765799&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nivi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/EiqMe7aK99&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/EiqMe7aK99&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dailystoic/status/1943339466195898410&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dailystoic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The future of work is not working &lt;a href=&quot;https://twitter.com/shl/status/1943339897663754512&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shl&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Reddit growth hack 👇 &lt;a href=&quot;https://t.co/c5K94krjzV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/c5K94krjzV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/shiri_shh/status/1943406017959649542&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;shiri_shh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Productivity → doing tasks faster, or more per day&lt;/p&gt;
&lt;p&gt;Prioritization → doing the right tasks&lt;/p&gt;
&lt;p&gt;The latter is obviously more important; if tasks aren’t valuable, it doesn’t matter how efficient you are.&lt;/p&gt;
&lt;p&gt;Yet we spend most of our time on the former, because it’s easier.&lt;/p&gt;
&lt;p&gt;Wrong. &lt;a href=&quot;https://twitter.com/asmartbear/status/1943678674777030873&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The future business model of software will likely be seats for the user and consumption for the AI. But seats have always been capped by the number of workers you can sell to, whereas AI Agent consumption is unbounded. So this will be the bigger component over time. &lt;a href=&quot;https://twitter.com/levie/status/1943831253779673107&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If customers are already spending huge amount of $ in a market, with many competitors, you can assume the market exists, and take your time building something 𝘥𝘪𝘧𝘧𝘦𝘳𝘦𝘯𝘵 and 𝘩𝘪𝘨𝘩 𝘲𝘶𝘢𝘭𝘪𝘵𝘺.&lt;/p&gt;
&lt;p&gt;(You still need to validate that people actually want that particular difference.)&lt;/p&gt;
&lt;p&gt;But if it’s unclear that people are spending money on competitive products, you need to validate the market could exist at all before you make anything. &lt;a href=&quot;https://twitter.com/asmartbear/status/1944301021234147718&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Yes! Getting caught in nonsense is the biggest risk in everything all the time. So little is actually required to do something well. So much is available to mess it up. Remember: the right little, the wrong much. &lt;a href=&quot;https://twitter.com/jasonfried/status/1944406310104994138&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sam Altman&#39;s (OpenAI CEO) advice on startup ideas, productivity and living a successful life &lt;a href=&quot;https://t.co/VTPQsOhkC0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VTPQsOhkC0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/gregisenberg/status/1944500588634652753&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A Monday morning question for you:&lt;/p&gt;
&lt;p&gt;Which distractions in your life have become disguised as priorities? &lt;a href=&quot;https://twitter.com/JamesClear/status/1944744833769148844&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is quite smart, and shows a lot of wisdom about startups&#39; success and failure..&lt;/p&gt;
&lt;p&gt;It&#39;s hard advice to take, but it&#39;s very good advice.  I&#39;m trying to figure out how to take it/apply it in my own startups right now! &lt;a href=&quot;https://twitter.com/Bill_Gross/status/1944886297522528614&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Bill_Gross&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Socialism isn’t wrong because it has compassion.&lt;/p&gt;
&lt;p&gt;It’s wrong because it doesn’t work. &lt;a href=&quot;https://twitter.com/naval/status/1945014096057057388&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If 2025 is the year of agents, then 2026 will surely belong to agent managers.&lt;/p&gt;
&lt;p&gt;Agent managers are people who can manage teams of AI agents. How many can one person successfully manage?&lt;/p&gt;
&lt;p&gt;I can barely manage 4 AI agents at once. They ask for clarification, request permission, issue web searches—all requiring my attention. Sometimes a task takes 30 seconds. Other times, 30 minutes. I lose track of which agent is doing what &amp;amp; half the work gets thrown away because they misinterpret instructions.&lt;/p&gt;
&lt;p&gt;This isn’t a skill problem. It’s a tooling problem.&lt;/p&gt;
&lt;p&gt;Physical robots offer clues about robots manager productivity. MIT published an analysis in 2020 that suggested the average robot replaced 3.3 human jobs. In 2024, Amazon reported pickpack and ship robots replaced 24 workers.&lt;/p&gt;
&lt;p&gt;But there’s a critical difference : AI is non-deterministic. AI agents interpret instructions. They improvise. They occasionally ignore directions entirely. A Roomba can only dream of the creative freedom to ignore your living room &amp;amp; decide the garage needs attention instead.&lt;/p&gt;
&lt;p&gt;Management theory often guides teams to a span of control of 7 people.&lt;/p&gt;
&lt;p&gt;Speaking with some better agent managers, I’ve learned they use an agent inbox, a project management tool for requesting AI work &amp;amp; evaluating it. In software engineering, Github’s pull requests or Linear tickets serve this purpose.&lt;/p&gt;
&lt;p&gt;Very productive AI software engineers manage 10-15 agents by specifying 10-15 tasks in detail, sending them to an AI, waiting until completion &amp;amp; then reviewing the work. Half of the work is thrown away, &amp;amp; restarted with an improved prompt.&lt;/p&gt;
&lt;p&gt;The agent inbox isn’t popular - yet. It’s not broadly available.&lt;/p&gt;
&lt;p&gt;But I suspect it will become an essential part of the productivity stack for future agent managers because it’s the only way to keep track of the work that can come in at any time.&lt;/p&gt;
&lt;p&gt;If ARR per employee is the new vanity metric for startups, then agents managed per person may become the vanity productivity metric of a worker.&lt;/p&gt;
&lt;p&gt;In 12 months, how many agents do you think you could manage? 10? 50? 100? Could you manage an agent that manages other agents?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/iHl9JXipNJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iHl9JXipNJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/ttunguz/status/1945157746317517241&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ttunguz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The way any mature company operates today is irrelevant.&lt;/p&gt;
&lt;p&gt;If you’re starting out, you might want to know what they were like when they were just starting, not what they are today.&lt;/p&gt;
&lt;p&gt;If you’re a mature company, then you’re already not like them.&lt;/p&gt;
&lt;p&gt;Stop “copying Apple.” &lt;a href=&quot;https://twitter.com/asmartbear/status/1945393719907119140&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;not sure how you see a chart like this then just continue living your life &lt;a href=&quot;https://t.co/Sg4z55kWQb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Sg4z55kWQb&lt;/a&gt; &lt;a href=&quot;https://twitter.com/frantzfries/status/1945484765794095160&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;frantzfries&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Most people make bad decisions because they are so certain that they&#39;re right that they don&#39;t allow themselves to see the better alternatives that exist. Radically open-minded people know that coming up with the right questions and asking other smart people what they think is as important as having all the answers. They understand that you can&#39;t make a great decision without swimming for a while in a state of &amp;quot;not knowing.&amp;quot; That is because what exists within the area of &amp;quot;not knowing&amp;quot; is so much greater and more exciting than anything any one of us knows.&lt;/p&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#principleoftheday&quot;&gt;#principleoftheday&lt;/a&gt; &lt;a href=&quot;https://twitter.com/RayDalio/status/1945852822098161770&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RayDalio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most dangerous, oddly glorified, yet overlooked problem in the world:&lt;/p&gt;
&lt;p&gt;No sense of urgency&lt;/p&gt;
&lt;p&gt;It&#39;s why you&#39;re stressed, lack opportunities, depressed &amp;amp; your life is always in chaos.&lt;/p&gt;
&lt;p&gt;Here&#39;s Robert Greene&#39;s 10-step protocol to escape the hell of moving too slow: &lt;a href=&quot;https://t.co/NKL7DNzMPS&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NKL7DNzMPS&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Tim_Denning/status/1946165579712286972&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Tim_Denning&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;designing in layers&lt;/p&gt;
&lt;p&gt;the best software doesn’t overwhelm you on day one or abandon you when you get sophisticated. it grows with you through carefully designed “layers” that reveal themselves exactly when you need them.&lt;/p&gt;
&lt;p&gt;think of it like learning to drive. you start with acceleration, brake, steering. you don’t need to know how the engine works or aerodynamics. but as you get more curious about cars, those deeper systems are always accessible, within the same car.&lt;/p&gt;
&lt;p&gt;at Notion, we built this philosophy into everything. you could start typing and immediately have a working doc. then add a table. then views. then automations. Cursor does this beautifully too — starts as a code editor that just works, then you discover Tab, then Agents, multiple models, then advanced rules &amp;amp; team workflows. each layer reveals itself naturally as you code more.&lt;/p&gt;
&lt;p&gt;most software gets this wrong — they either dump everything on you at once, or kill the advanced stuff so you can’t do things your way. the real challenge isn’t designing each layer, it’s designing the transitions between them. that moment when someone outgrows the defaults shouldn’t feel like hitting a wall. it should feel like discovering a secret door that was always there.&lt;/p&gt;
&lt;p&gt;alan kay once said users should be able to “open up the hood” of their word processor and tinker with it. when you design in layers, you’re building that kind of learning environment where users can discover their own potential. the goal isn’t to hide complexity — it’s to sequence its reveal. give people exactly what they need when they need it, and trust them to grow into the full power, pushing the boundaries your concepts in ways you’ve never imagined before. &lt;a href=&quot;https://twitter.com/ryolu_/status/1946314616352440655&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ryolu_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: The most powerful sales narratives follow a simple pattern:&lt;/p&gt;
&lt;p&gt;Problem → Pain → Current Solutions → Why They Fail → What Changed → New Solution → Proof&lt;/p&gt;
&lt;p&gt;Each part builds naturally on the last. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1947039666722525565&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of the best sales techniques is being brutally honest about your company and product.&lt;/p&gt;
&lt;p&gt;When you&#39;re honest about your flaws, they will actually believe you about your strengths, and sales are won on strengths.&lt;/p&gt;
&lt;p&gt;Plus, you can actually deliver what you promised. &lt;a href=&quot;https://twitter.com/asmartbear/status/1947185023754387544&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: The best sales narratives are living documents.&lt;/p&gt;
&lt;p&gt;Test them in the market, gather feedback, refine the story.&lt;/p&gt;
&lt;p&gt;Your week 52 narrative should destroy your week 1 version. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1947371855066591625&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to start a software startup, you should still learn to program. Even if AI writes most of your code, you&#39;ll still be in the position of an engineering manager, and to be a good engineering manager you have to be a programmer yourself. &lt;a href=&quot;https://twitter.com/paulg/status/1947639333214687700&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Charlie Munger 3 rules for a career:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Don’t sell anything you wouldn’t buy yourself&lt;/li&gt;
&lt;li&gt;Don’t work for anyone you don’t respect and admire&lt;/li&gt;
&lt;li&gt;Work only with people you enjoy &lt;a href=&quot;https://twitter.com/ShaanVP/status/1947697795168932260&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ShaanVP&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;100% &lt;a href=&quot;https://t.co/AU6t8qT4BM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AU6t8qT4BM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/EssentialMastry/status/1947707786948690186&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;EssentialMastry&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Proving, once again:&lt;/p&gt;
&lt;p&gt;(1) Niche strategies can be good&lt;br /&gt;
(2) Distribution &amp;gt; Product &lt;a href=&quot;https://twitter.com/asmartbear/status/1948053316958830599&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/mRoBMDPeQs&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mRoBMDPeQs&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PsycheWizard/status/1948139812067959127&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PsycheWizard&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Almost everything about how we’re building enterprise software products is changing right now. For years when you built SaaS products, your entire design focus was how a user would interact with the system to accomplish their task, by themselves or collaboratively.&lt;/p&gt;
&lt;p&gt;Now many of the core design challenges are more about how the user will work with AI Agents to do this task. This turns the questions into how the user will setup, deploy, orchestrate, or provide context to AI Agents to execute work, and then review and incorporate their work after.&lt;/p&gt;
&lt;p&gt;Does this happen in an existing UI? Do you do this through chat? Is it through task list or queue? Is it through a workflow builder? Do you describe it as an Agent or just productive the specific outcome the customer wants?&lt;/p&gt;
&lt;p&gt;You can see the early differences playing out just in the AI coding space right now, where there’s a debate between the IDE, terminal, web UI, or just using slack.&lt;/p&gt;
&lt;p&gt;In all cases, one thing that seems to be clear is in many ways, to the user, software directionally gets simpler.&lt;/p&gt;
&lt;p&gt;The nobs, toggles, switches, and components needed for people to execute tasks are less necessary in a world of AI Agents. The APIs to these capabilities still matter for the AI Agents to use (so they don’t go away), but they’re primarily leveraged in the background. And when they eventually show up for the user, it’s more for advanced use cases, exception handling, or the review process, as opposed to the common activity.&lt;/p&gt;
&lt;p&gt;We’re in easily the most interesting period of software design that we’ve ever been in. We have to design for users as well as autonomous agents at the same time. And we’re only in the beginning phases of what that looks like. &lt;a href=&quot;https://twitter.com/levie/status/1948244333972652188&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;levie&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Your pitch needs 3 levels of backup:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Hard metrics: &#39;40% cost reduction&#39;&lt;/li&gt;
&lt;li&gt;Social proof: &#39;8 of top 10 banks use us&#39;&lt;/li&gt;
&lt;li&gt;ROI validation: &#39;Payback in 4.2 months&#39;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Each reinforces the others. Have all three ready. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1948427819756740867&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dashboards are here. Create custom views to monitor what’s important to you &lt;a href=&quot;https://twitter.com/karrisaarinen/status/1948454677747527770&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karrisaarinen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Strong opinions, weakly held.”&lt;/p&gt;
&lt;p&gt;This phrase is almost twenty years old. I wrote about it myself, nearly that long ago (below).&lt;/p&gt;
&lt;p&gt;Is it still the right way to think?&lt;/p&gt;
&lt;p&gt;If not, what’s better?&lt;/p&gt;
&lt;p&gt;If so, perhaps it’s a Deep Truth. &lt;a href=&quot;https://twitter.com/asmartbear/status/1948815265380077817&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs : how to design perfect products. &lt;a href=&quot;https://t.co/ovLM0dJma2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ovLM0dJma2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TheAppleDesign/status/1948843915827696042&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheAppleDesign&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: The CEO isn&#39;t always your best first contact.&lt;/p&gt;
&lt;p&gt;Target the person who:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Owns the pain point&lt;/li&gt;
&lt;li&gt;Has budget authority&lt;/li&gt;
&lt;li&gt;Needs this problem solved now&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Often it&#39;s the functional leader, not C-suite. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1949154128753549639&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Top 100 Investing Books by Goodreads Ratings: &lt;a href=&quot;https://t.co/HaxkFMqETR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HaxkFMqETR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QCompounding/status/1949409062224830839&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QCompounding&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just published a new article! 👇🏾&lt;/p&gt;
&lt;p&gt;Your company will stop growing sooner than you think. The &amp;quot;Max MRR&amp;quot; metric predicts revenue plateaus based on churn and new revenue.&lt;/p&gt;
&lt;p&gt;Many thanks for pressing 🔁 and ❤️!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/BgG93sd8yQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BgG93sd8yQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1949482914900595107&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Don&#39;t just count potential users at an account. Measure pain magnitude:&lt;/p&gt;
&lt;p&gt;E.g. for a pipgen solution, 10 field reps selling $100k deals &amp;gt; 30 inside reps selling $10k deals&lt;/p&gt;
&lt;p&gt;More pain = more urgency = faster sales. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1949514303301685318&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;i keep a running doc called “things i’m not doing anymore” and look at it monthly&lt;/p&gt;
&lt;p&gt;really simple way to live a happier &amp;amp; more productive life &lt;a href=&quot;https://t.co/fgyOdYkyCZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fgyOdYkyCZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/gregisenberg/status/1949626889435234360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Stop obsessing over finding &#39;warm intros&#39;.&lt;/p&gt;
&lt;p&gt;Only look for them AFTER you&#39;ve:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Confirmed the company has your pain point&lt;/li&gt;
&lt;li&gt;Identified the decision maker&lt;/li&gt;
&lt;li&gt;Validated they can buy&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Qualification &amp;gt; Connection &lt;a href=&quot;https://twitter.com/Kazanjy/status/1949908553155711275&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An extremely important lesson from Peter Thiel: &lt;a href=&quot;https://t.co/7NSoHvbMcF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7NSoHvbMcF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/FoundersPodcast/status/1950213274349523217&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;FoundersPodcast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All of my companies started with paid ads.&lt;/p&gt;
&lt;p&gt;For 22 years.&lt;/p&gt;
&lt;p&gt;Of course it costs money, but budget and messages are controllable, it’s easy to A/B test, and (relatively) easy to measure results directly.&lt;/p&gt;
&lt;p&gt;I’m not against social and SEO. It’s just not automatically better. &lt;a href=&quot;https://twitter.com/asmartbear/status/1950467652079497301&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are broadly going to be 2 type of companies which will be built using AI.&lt;/p&gt;
&lt;p&gt;Ones which help you save cost.&lt;/p&gt;
&lt;p&gt;Ones which will help you grow.&lt;/p&gt;
&lt;p&gt;Only one type will sustainably grow. &lt;a href=&quot;https://twitter.com/kunalb11/status/1950612000104415666&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kunalb11&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Not talked about enough: products live or die depending on the &lt;em&gt;feeling&lt;/em&gt; of power they give to the user.&lt;/p&gt;
&lt;p&gt;Too complex and users don’t feel powerful, they feel stupid and overwhelmed.&lt;/p&gt;
&lt;p&gt;Too simple and users don’t feel powerful, they feel frustrated and boxed in. &lt;a href=&quot;https://twitter.com/joulee/status/1950938004647997621&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;joulee&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;They say ideas are easy/worthless, and execution is everything.&lt;/p&gt;
&lt;p&gt;But you can observe 1000s of people on this site, hustling and executing against weak ideas, getting nowhere, sometimes for years.&lt;/p&gt;
&lt;p&gt;So, great ideas are not easy and not worthless. &lt;a href=&quot;https://twitter.com/asmartbear/status/1951101327913689549&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Your best prospects have these traits:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Pain point is top 3 priority&lt;/li&gt;
&lt;li&gt;Budget exists or allocated elsewhere&lt;/li&gt;
&lt;li&gt;Can decide quickly&lt;/li&gt;
&lt;li&gt;No major technical blockers&lt;/li&gt;
&lt;li&gt;Clear ROI path&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Don&#39;t compromise. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1951357113453695360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some people insist you fully explore the problem-space before attacking the solution-space, but that’s not how human brains work.&lt;/p&gt;
&lt;p&gt;We flit back and forth; one informs us about the other.&lt;/p&gt;
&lt;p&gt;Allow for fluidity in conversation. &lt;a href=&quot;https://twitter.com/asmartbear/status/1951395518761832571&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We spend years getting comfortable at companies building consensus.&lt;/p&gt;
&lt;p&gt;Then, we join the dictator and finally ship something that matters.. &lt;a href=&quot;https://t.co/YytPsnGKor&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YytPsnGKor&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nikunj/status/1951402960430452998&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nikunj&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;IMO, the best designers I know are terrible at explaining their process.&lt;/p&gt;
&lt;p&gt;They just FEEL when something&#39;s off.&lt;/p&gt;
&lt;p&gt;Like when you see a 1px misalignment from across the room and it physically hurts.&lt;/p&gt;
&lt;p&gt;That&#39;s not a skill you can teach bro. &lt;a href=&quot;https://twitter.com/DenisJeliazkov/status/1951734753234919832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DenisJeliazkov&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;No technology will ever make the consulting profession go extinct. Consulting in some form is as fundamental to humanity as food. &lt;a href=&quot;https://twitter.com/anuatluru/status/1952444377726333129&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anuatluru&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Here&#39;s how to structure pilots that actually close:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Max 30 days&lt;/li&gt;
&lt;li&gt;3 mandatory training sessions&lt;/li&gt;
&lt;li&gt;Weekly usage metrics reviews&lt;/li&gt;
&lt;li&gt;2 required use cases completed&lt;/li&gt;
&lt;li&gt;Success criteria defined up front&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Charge 25% of annual fee for the pilot.&lt;/p&gt;
&lt;p&gt;No more endless trials. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1952445289186382217&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“CRM is broken”&lt;/p&gt;
&lt;p&gt;No, millions of people use CRM every day. It’s not broken.&lt;/p&gt;
&lt;p&gt;What you meant is: You dramatically improve CRM for a specific subset of customers.&lt;/p&gt;
&lt;p&gt;Now that’s truly wonderful…&lt;/p&gt;
&lt;p&gt;(1/2) &lt;a href=&quot;https://twitter.com/asmartbear/status/1952550127899378098&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I met a founder today who said he writes 10,000 lines of code a day now thanks to AI. This is probably the limit case. He&#39;s a hotshot programmer, he knows AI tools very well, and he&#39;s talking about a 12 hour day. But he&#39;s not naive. This is not 10,000 lines of bug-filled crap. &lt;a href=&quot;https://twitter.com/paulg/status/1953289830982664236&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Fundusze PE wchodzą do firmy, czyszczą bałagan, dokręcają śrubki i sprzedają firmę 5x drożej. Ciągle o tym słyszę.&lt;/p&gt;
&lt;p&gt;Idea PE Yourself.&lt;br /&gt;
Zarządzaj jak zimny drań z funduszu :)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;tnij nieopłacalne&lt;/li&gt;
&lt;li&gt;porządkuj dane&lt;/li&gt;
&lt;li&gt;licz każdy grosz&lt;/li&gt;
&lt;li&gt;myśl o mnożnikach, nie marzeniach&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Nie chcesz sprzedawać?&lt;br /&gt;
OK ale prowadź firmę tak, jakbyś miał to zrobić jutro.&lt;/p&gt;
&lt;p&gt;Ciekawy eksperyment mentalny dla przedsiębiorców. Polecam. &lt;a href=&quot;https://twitter.com/tomik99/status/1953512387958780014&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: The post-demo email formula that gets responses:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Thank you + key insight shared&lt;/li&gt;
&lt;li&gt;3 bullet recap of agreed value&lt;/li&gt;
&lt;li&gt;Specific next step + time&lt;/li&gt;
&lt;li&gt;2 available slots&lt;/li&gt;
&lt;li&gt;Deck attached&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;5 elements = 80% response rate &lt;a href=&quot;https://twitter.com/Kazanjy/status/1953532191754879061&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jeff Bezos literally dropped the most underrated winning principle &lt;a href=&quot;https://t.co/eV0VimXgZQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/eV0VimXgZQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aaditsh/status/1953923186661482568&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aaditsh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: The winning sales deck structure:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Market forces (why now)&lt;/li&gt;
&lt;li&gt;Current challenges (their pain)&lt;/li&gt;
&lt;li&gt;Future vision (the dream)&lt;/li&gt;
&lt;li&gt;Your solution (the bridge)&lt;/li&gt;
&lt;li&gt;Proof points (why believe)&lt;/li&gt;
&lt;li&gt;Next steps (the path)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Tell a story, don&#39;t list features. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1954587661911367981&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When you find a large, profitable company in a growing market, you&#39;ve found opportunity. Their very success proves there&#39;s money to be made and customers willing to pay.&lt;/p&gt;
&lt;p&gt;Now, how do you compete against their size, brand, and money? &lt;a href=&quot;https://twitter.com/asmartbear/status/1954962269223211324&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;25 Pictures with Deep meaning 🧵&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Just enjoy it &lt;a href=&quot;https://t.co/LwZmH2KqBM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LwZmH2KqBM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TAdventurousoul/status/1955287473438790035&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TAdventurousoul&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Want to get more done?&lt;/p&gt;
&lt;p&gt;Here’s the dirty little secret:&lt;/p&gt;
&lt;p&gt;Do less.&lt;/p&gt;
&lt;p&gt;If you want to achieve more of what matters, you need to master the art of prioritizing.&lt;/p&gt;
&lt;p&gt;Here’s a 3-part playbook (that actually works): &lt;a href=&quot;https://t.co/fwHoU5enCl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fwHoU5enCl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DanielPink/status/1955323483380240419&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Discovery call red flags checklist:&lt;/p&gt;
&lt;p&gt;🚩 No clear pain metrics&lt;br /&gt;
🚩 Can&#39;t name decision maker&lt;br /&gt;
🚩 No similar tool spend&lt;br /&gt;
🚩 No timeline pressure&lt;br /&gt;
🚩 Won&#39;t share budget range&lt;/p&gt;
&lt;p&gt;Any 2 flags = unqualified.&lt;/p&gt;
&lt;p&gt;Save your time. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1955344648014041300&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Yes the goal is building something customers want to buy, but ironically you can’t figure out what that is by asking a customer: “What do you want to buy?”&lt;/p&gt;
&lt;p&gt;They don’t know either.&lt;/p&gt;
&lt;p&gt;You need your own theories, tested like a scientist, not like an evangelist. &lt;a href=&quot;https://twitter.com/asmartbear/status/1955619350263603652&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Here&#39;s a 10x problem-solving trick: Don&#39;t ask what broke. Instead, ask how it was designed to work. You&#39;ll learn that most people are surprised that things didn&#39;t go according to the plan they didn&#39;t have. And that&#39;s the problem you need to solve. &lt;a href=&quot;https://twitter.com/dklineii/status/1956845775092072920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The happiest people I know don&#39;t have perfect lives. But they have one thing in common: They&#39;ve mastered the art of moving on. They don&#39;t keep score, they don&#39;t cling to what if, they don&#39;t dwell.  There’s a hell of a lot of progress hiding in just not staying stuck in the past. &lt;a href=&quot;https://twitter.com/blakeaburge/status/1957055438886756380&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;blakeaburge&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Founders: Document every verbal agreement immediately via email:&lt;/p&gt;
&lt;p&gt;&#39;Great call! Confirming what we discussed:&lt;/p&gt;
&lt;ul class=&quot;task-list&quot;&gt;
&lt;li class=&quot;task-list-item&quot;&gt;&lt;input type=&quot;checkbox&quot; id=&quot;cbx_1&quot; checked=&quot;true&quot; disabled=&quot;true&quot; /&gt;&lt;label for=&quot;cbx_1&quot;&gt; seats at [Y] price&lt;/label&gt;&lt;/li&gt;
&lt;li&gt;Implementation by [date]&lt;/li&gt;
&lt;li&gt;Payment terms [Z]&#39;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Prevent &#39;selective memory&#39; issues later. &lt;a href=&quot;https://twitter.com/Kazanjy/status/1957487255959847167&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kazanjy&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Why are you, as a founder, still making ugly ass screen recordings?&lt;/p&gt;
&lt;p&gt;This took 4 minutes. &lt;a href=&quot;https://t.co/W4Bfcns0R7&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/W4Bfcns0R7&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DerekFeehrer/status/1957920194220974541&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DerekFeehrer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&#39;s hard to truly understand how radical some of @DavidDeutschOxf theories are compared to much of modern scientific consensus.&lt;/p&gt;
&lt;p&gt;One of Davids most controversial but valuable contributions to society is the rejection of probability (with the exception ex. card games) as an expression of truthiness or justified beliefs when applied to predictions or conclusions.&lt;/p&gt;
&lt;p&gt;There is no probability of how likely we are to be hit by a meteor tomorrow.&lt;br /&gt;
There is no probability of how likely the stock market is going to be doing as well tomorrow as it is today.&lt;br /&gt;
There is no P(Doom), no percentage you can put on whether AI is likely to wipe out humanity or not.&lt;/p&gt;
&lt;p&gt;Things either happen or they don&#39;t and we can either explain why they will and how or we can&#39;t.&lt;/p&gt;
&lt;p&gt;All attempts at putting percentage on a prediction is really just guesswork dressed up as reasoning.&lt;/p&gt;
&lt;p&gt;If a meteor is going to hit us tomorrow it&#39;s already on the way and the probability is 100%.&lt;/p&gt;
&lt;p&gt;If the stock market is going to crash tomorrow the reasons for it&#39;s crash have already been put in motion maybe decades before.&lt;/p&gt;
&lt;p&gt;If the AI is going to kill us all depends on what we decide to do with it not what some calculation says.&lt;/p&gt;
&lt;p&gt;Davids primary critique is for the field of science but it goes beyond that.&lt;/p&gt;
&lt;p&gt;Far too many of decisions done in modern society is based around the false certainty of using Bayesian probability. It&#39;s like a placebo for a society that demands certainty in an uncertain world. It&#39;s not just false it&#39;s regressive as it slows down knowledge creation.&lt;/p&gt;
&lt;p&gt;The only thing that can change the outcome of the future is the creation of new knowledge. Knowledge based on good explanations that are hard to vary.&lt;/p&gt;
&lt;p&gt;We can create knowledge that allow us to divert the meteor before it hits earth.&lt;br /&gt;
We can create knowledge that will allow us to hinder a crash of the stock market (both directly or indirectly)&lt;br /&gt;
We can create knowledge that let us evolve side by side with very powerful AI instead of enslaving it or be enslaved by it.&lt;/p&gt;
&lt;p&gt;Like everything else in life there are no guarantees but there are definitely better or worse ways to deal with uncertainty, probability just isn&#39;t one of them. &lt;a href=&quot;https://twitter.com/Hello_World/status/1959648050839777341&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Hello_World&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;inspired by @colebemis, gonna fix a papercut a day to get familiar with the codebase&lt;/p&gt;
&lt;p&gt;day 1 &lt;a href=&quot;https://t.co/9lduHxO3EX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9lduHxO3EX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/JohnPhamous/status/1960378777374183443&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JohnPhamous&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Blame yourself for everything, and preserve your agency. &lt;a href=&quot;https://t.co/AgpHKqiHln&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/AgpHKqiHln&lt;/a&gt; &lt;a href=&quot;https://twitter.com/naval/status/1960415051921416241&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This image one-shotted me, philosophically. &lt;a href=&quot;https://t.co/odPeJZBRWz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/odPeJZBRWz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DeeperThrill/status/1960891845363576950&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DeeperThrill&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One week after launch, 45% of enterprise customers have enabled @cursor_ai agents in @linear.&lt;/p&gt;
&lt;p&gt;Agents are rapidly becoming part of product teams of every size and the work being orchestrated in Linear. &lt;a href=&quot;https://t.co/3k4StliMip&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3k4StliMip&lt;/a&gt; &lt;a href=&quot;https://twitter.com/karrisaarinen/status/1961092022820888604&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karrisaarinen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The root cause of anxiety &lt;a href=&quot;https://t.co/KDcUSQ0ERC&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KDcUSQ0ERC&lt;/a&gt; &lt;a href=&quot;https://twitter.com/waronweakness/status/1961189234359837184&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;waronweakness&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Google mapped ONE millimeter of brain tissue at nanoscale resolution - revealing 57,000 cells and 150 million synapses.&lt;/p&gt;
&lt;p&gt;Each connection can be strengthened, weakened, or completely rebuilt based on what you choose to focus on today.&lt;/p&gt;
&lt;p&gt;That&#39;s the power of neuroplasticity. &lt;a href=&quot;https://t.co/4i8eHWgjCg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/4i8eHWgjCg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DrDominicNg/status/1961761909088375040&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DrDominicNg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’re selling, your job isn’t to sell, it’s to build trust. &lt;a href=&quot;https://twitter.com/naval/status/1961916128000966825&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;very good. Very general concept &lt;a href=&quot;https://t.co/6nmZdodxgZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6nmZdodxgZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/DefenderOfBasic/status/1961973475909755158&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DefenderOfBasic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Naval Ravikant (@naval) on how to build the team that ships: &lt;a href=&quot;https://t.co/2yc6YUuYbL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2yc6YUuYbL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zfellows/status/1962148969892442324&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zfellows&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pet peeve of mine is when people confuse &amp;quot;priorities&amp;quot; with &amp;quot;order-of-execution&amp;quot;.&lt;/p&gt;
&lt;p&gt;The latter includes things like capacity, availability, dependencies, and more. &lt;a href=&quot;https://twitter.com/asmartbear/status/1962578958781702521&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Someone let ChatGPT run a stock portfolio.&lt;/p&gt;
&lt;p&gt;over 2 month ChatGPT’s portfolio is up +29.22% vs. the S&amp;amp;P 500’s +4.11% over the same window.&lt;/p&gt;
&lt;p&gt;(Prompts, Code, Github listed)&lt;/p&gt;
&lt;p&gt;The process works as follows.&lt;/p&gt;
&lt;p&gt;ChatGPT is given real market data each trading day, including prices, volumes and benchmarks, stored on GitHub.&lt;/p&gt;
&lt;p&gt;On weekends it uses that data to research deeply, reevaluate the portfolio, and look for new stock ideas.&lt;/p&gt;
&lt;p&gt;The portfolio is simulated daily based on any changes, and then the person manually executes those trades in a real brokerage account.&lt;/p&gt;
&lt;p&gt;ChatGPT has full authority to make buy or sell decisions, but only within U.S. micro-cap stocks under $300M market cap. &lt;a href=&quot;https://twitter.com/rohanpaul_ai/status/1962655511423394190&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;rohanpaul_ai&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Something I just told a founder: Stay as small as you can for as long as you can. People who come to visit your office should always be surprised that such an important company has so few employees. &lt;a href=&quot;https://twitter.com/paulg/status/1962736318049288199&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Lost time is never found again.&amp;quot; – Benjamin Franklin &lt;a href=&quot;https://t.co/RapFKyRLnX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/RapFKyRLnX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1962848013363105999&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I can&#39;t stop thinking about this poem...&lt;/p&gt;
&lt;p&gt;The final two lines bear repeating:&lt;/p&gt;
&lt;p&gt;And make the ordinary come alive for them. The extraordinary will take care of itself.&lt;/p&gt;
&lt;p&gt;How often have you been convinced that your joy, contentment, and fulfillment were on the other side of some extraordinary achievement?&lt;/p&gt;
&lt;p&gt;• I&#39;ll be content when I get that promotion.&lt;br /&gt;
• I&#39;ll be fulfilled when I make director.&lt;br /&gt;
• I&#39;ll be joyful when I find a partner.&lt;/p&gt;
&lt;p&gt;This &amp;quot;when, then&amp;quot; psychology traps our happiness in a conditional statement:&lt;/p&gt;
&lt;p&gt;You get to be happy when you achieve that thing.&lt;/p&gt;
&lt;p&gt;In a culture that obsesses over the extraordinary, there&#39;s much to be gained through simply shifting your focus to celebrate the ordinary.&lt;/p&gt;
&lt;p&gt;How can you make the ordinary come alive today?&lt;/p&gt;
&lt;p&gt;Every single thing you do today is something your 90-year-old self will wish they could go back and do.&lt;/p&gt;
&lt;p&gt;That simple walk. That feeling of satisfaction when you figure out a tricky problem. That smile from a friend. That laugh from your child. That workout you wanted to skip. That conversation with your parents.&lt;/p&gt;
&lt;p&gt;That ordinary moment you&#39;re tempted to ignore.&lt;/p&gt;
&lt;p&gt;All of it.&lt;/p&gt;
&lt;p&gt;So, the next time you find yourself wanting to skip through to the other side—to the end, the goal, the finish line:&lt;/p&gt;
&lt;p&gt;Stop. Pause. And breathe it in.&lt;/p&gt;
&lt;p&gt;This is it. This is real. This is life.&lt;/p&gt;
&lt;p&gt;Make the ordinary come alive and the extraordinary will take care of itself. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1963302591233749153&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Good writing is the output of good thinking.&lt;/p&gt;
&lt;p&gt;(Why AI hasn’t taken over X). &lt;a href=&quot;https://twitter.com/naval/status/1963480186613010631&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs dropped the coldest business truth of all time &lt;a href=&quot;https://t.co/tkAwWZ22xV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tkAwWZ22xV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/neatprompts/status/1963995847500419557&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;neatprompts&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@KamilZamojc Lego Spike Essentials - połączenie klocków Lego z programowaniem.&lt;br /&gt;
Mit App Inventor - narzędzie online do tworzenia aplikacji mobilnych w stylu scratch. stworzone na MIT. Bardzo polecam, darmowe i można zrobić super gry na telefon. Działa z android i iOS. &lt;a href=&quot;https://twitter.com/kstrzelecki/status/1964249902600372673&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kstrzelecki&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@KamilZamojc 1. Proste mikrokontrolery w stylu Arduino (łatwe do zaprogramowania, a za to efekty bardzo dobrze widoczne, polecam TinkerCAD)&lt;/p&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;Gry, których częścią mechaniki jest programowanie - kiedyś popularny był Colobot, od tamtej pory pewnie powstała tona innych ciekawych alternatyw &lt;a href=&quot;https://twitter.com/flanelawave/status/1964395204930093552&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;flanelawave&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In my experience, marketing campaigns that start off bad tend to stay bad.&lt;/p&gt;
&lt;p&gt;Don&#39;t waste time trying to salvage a failing channel - cut your losses and move on to something new. &lt;a href=&quot;https://twitter.com/asmartbear/status/1964397189783818700&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An enormous work-backlog means you’re not prioritize, avoiding decisions, not in command of the product or the work.&lt;/p&gt;
&lt;p&gt;It means you’re saying “no” to 95% of things, but not being clear about which, or why.&lt;/p&gt;
&lt;p&gt;Saying “no” to 95% is correct. Lack of decisions, is incorrect. &lt;a href=&quot;https://twitter.com/asmartbear/status/1964521256075542690&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want them to like you today, tell them what they want to hear.&lt;/p&gt;
&lt;p&gt;If you want them to respect you tomorrow, tell them the truth. &lt;a href=&quot;https://twitter.com/TheStoicEmperor/status/1964599906565575159&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheStoicEmperor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We cannot understand the true nature of the Universe, unless we question deeply.&lt;/p&gt;
&lt;p&gt;I want to know what is real, even if the answer is total obliteration of my consciousness. &lt;a href=&quot;https://twitter.com/elonmusk/status/1964924391889973317&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/Mg0oHBVoxf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Mg0oHBVoxf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/elonmusk/status/1964936881696809123&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;WHY RETENTION IS SO HARD FOR NEW TECH PRODUCTS&lt;/p&gt;
&lt;p&gt;I’ve been staring at retention curve data for 15-plus years now.&lt;/p&gt;
&lt;p&gt;I was a founder, a product manager, and now a VC. And at Andreessen Horowitz, I end up meeting hundreds of startups each year, many of them through our a16z speedrun program, where we invest up to $1M in brand new startups.&lt;/p&gt;
&lt;p&gt;NOTE: And yes, we just announced the 2026 program and you can apply now: &lt;a href=&quot;https://t.co/DZZmyTm1iQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DZZmyTm1iQ&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;But back to retention — I’ve seen thousands of curves, and it’s among the first things I ask for when evaluating a new startups. I&#39;ve looked through thousands of data rooms, analyzed retention curves sliced across many segments and denominators. I&#39;ve also seen it from the other side, as someone building products. I’ve run hundreds of A/B tests and drafted countless variations of onboarding and notification emails in attempts to bend the curve.&lt;/p&gt;
&lt;p&gt;There are patterns.&lt;/p&gt;
&lt;p&gt;Just as there’s the laws of physics, weirdly there are some constant patterns that keep cropping up over time. Here are a few that I’ll share:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;You can’t fix bad retention. No, adding more notifications will not fix your retention curve. You can’t A/B test your way to good retention&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Retention goes down, it doesn’t go up. And weirdly, it decays (oh, does it decay) at a predictable half life. Early retention predicts later retention.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Revenue retention expands, while usage retention shrinks. Good news: You lose people over over time, but the ones that remain sometimes spend more more money!&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Retention is relative to your product category. There’s nature, and there’s nurture. Sorry, you’ll never make a hotel booking app a daily use product&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Retention gets worse as users expand and grow. The best users are early and organic. The worst users come after that&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Churn is asymmetric. It’s far easier to lose a user forever than to re-win them back&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Retention is weirdly hard to measure. Seasonality is a real thing. New tests throw things off. Bugs happen. D365 is a real metric but you can’t wait&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Crazy viral growth with shitty retention fails. We’ve run this experiment many many times already, across multiple platforms and categories&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great retention is magic. When you see it out in the wild, it’s amazing.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We’ll dive into each of these.&lt;/p&gt;
&lt;p&gt;You can’t fix bad retention. You&#39;ve seen this happen before: You spend months developing a new product, and then you launch it. Bad news hits. The initial retention stats come in, and it’s terrible. You&#39;re already months into the product development, and it&#39;s hard to turn back now. How do we improve retention? I know, let’s add notifications and remind people to come back. Let&#39;s add a bunch of new features. Maybe we can A/B test the landing page and increase conversion.&lt;/p&gt;
&lt;p&gt;I think we know how this ends. Unfortunately, it seems to be the case that when you have poorer retention, it&#39;s very, very hard to fix - nearly impossible. Yes, you might be able to make a marginal improvement. Let&#39;s say that your D1 retention is 40% and you&#39;d like it to be 50%. This is great and potentially workable. If the D1 is 10% on the other hand, well, you probably just have built something that nobody wants, and all the local optimizations around A/B tests and notifications aren&#39;t actually enough to bend the curve enough for it to work. When there&#39;s been months of development and sunk cost, it&#39;s hard to not just give it a college try. But I think in many cases new products are better off pivoting right away.&lt;/p&gt;
&lt;p&gt;The type of pivot that fixes retention involves a complete new redesign of the app&#39;s home screen. If it looks like a feed, maybe it needs to be a structured step-by-step flow. If the product is about sharing, maybe it needs to be mostly about creating and saving. You might need to describe the product in a totally different way and position it against a different product. It needs to be a big pivot in many ways, the bigger the better, in order to have a chance at changing retention.&lt;/p&gt;
&lt;p&gt;Retention goes down, it doesn’t go up. Retention curves often follow very geometric curves that you see. For instance many curves I see resemble the following: Whatever the D1, it drops by 50% on D7. Whatever the D7, it drops by another 50% at D30. Months out you might end up at roughly zero, or if you’re lucky you might retain 10% overall. There’s just a predictable decay.&lt;/p&gt;
&lt;p&gt;What you never see is a curve that starts high, then goes low, then becomes high again. That’s not possible. In other words, if your early retention isn&#39;t incredibly good, then it means that your late retention also probably isn&#39;t any good. You need to start strong in order to end strong.&lt;/p&gt;
&lt;p&gt;There are some interesting exceptions to this rule that are worth calling out:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Some products are extremely hardcore (e.g. online poker). You might have relatively low retention, but those who stay are extremely sticky and spend a ton of money. It turns out that this can work.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A product that has network effects where new users might start out strong, then drift for a bit. But if the product (which might be a social network or a collaboration tool or something else that has network effects) is able to use more and more users to reactivate older users, you often see a small curve where retention comes up. This is a very rare type of situation but amazing when possible.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Revenue retention expands, while usage retention shrinks. One of the best and most important dynamics with retention curves is that you can apply them to users, but then also revenue. Thus far, we&#39;ve been talking about user retention, and unfortunately, it has the undesirable dynamic of always going down. Revenue retention on the other hand is really interesting because people often end up spending more money over time with you, at least the ones that remain.&lt;/p&gt;
&lt;p&gt;This is one of the biggest strengths of B2B SaaS products. Take a product like Slack. If you look at the user cohorts, what you&#39;d likely find is that the retention curves go down just like any other product. Some people take to it, and some people don&#39;t. However, for the companies where people spend time adopting Slack, what happens is it will start to organically grow, and the amount of revenue you earn from that company starts to increase dramatically over time. The revenue retention curves start to grow rather than shrink. This is amazing, and unfortunately doesn’t apply to most consumer products. It’s one of the biggest ways in which B2B products have easier business model dynamics than consumer.&lt;/p&gt;
&lt;p&gt;The consumer version of this looks more like Amazon where you might have started by buying books and music and over time as the product grows in its capabilities you start to use it to buy more and more things. Because of that your LTV in the product is essentially unbounded. We also saw this at Uber as well where user cohorts would decay over time but the amount of money that people would spend initially on Uber rides to the airport would grow into rides to restaurants or for commuting purposes to work. So the user retention curves go down but the revenue retention curves go up.&lt;/p&gt;
&lt;p&gt;Retention is relative to your product category. I&#39;ve written about this in the past on the concept of nature vs. nurture for retention. The reality is that there&#39;s just a natural use case for many products - for example with collaboration tools or coding apps, you might use them every day at work, capping your usage to 5 active days out of 7. Contrast that to something like a bug alert system - hopefully you don’t use it often! Same with consumer products, where people check news, messaging, and social apps daily, but generally don’t use medical reference guides frequently. Some apps have great retention but infrequent usage, like weather or banking apps. And some categories like gaming are highly addictive and frequent, but people usually quit after a few weeks of use once the content is played out.&lt;/p&gt;
&lt;p&gt;Nature vs. nurture is important because it tells you that many new products simply don&#39;t have a chance. If you&#39;re developing a travel app, but it&#39;s meant to be social, the reality is people don&#39;t travel that much. It&#39;ll be hard to create a product that sole mission is interaction with friends. Instead, it would be better to accept its infrequent nature and figure out how to monetize it better by owning part of the transaction or to have a more frequent use case like a restaurant and nightlife app like Yelp but also be able to use travel features as well. It&#39;s just hard to fight nature. You can only do so much.&lt;/p&gt;
&lt;p&gt;It&#39;s also for this reason that if you want to build a very, very high retention, high frequency app, you have to probably build within some of the categories that people are already identifying as core daily products. This means that most likely if your app is successful, it takes away from some other daily product. It&#39;s no wonder that my constant use of ChatGPT has dramatically diminished the number of Google searches that I do. Or that when I began to use Substack for reading and writing blogs that I stopped using many other kinds of social news software.&lt;/p&gt;
&lt;p&gt;Retention gets worse as users expand and grow. If you are lucky enough to build a product that experiences great retention, one of the natural things is simply to extrapolate all the behavior, monetization, and usage to a much broader market and assume that naturally you end up with a very, very big good number because you&#39;re multiplying a bunch of small good numbers together with a big one. The reality is that as you start to scale your user base, bad things start to happen. Let’s say you begin adding Android and international users and you acquire more customers using paid marketing and other channels — you&#39;ll quickly find that all of your metrics get worse.&lt;/p&gt;
&lt;p&gt;The reason is that the best users show up early. The ones that are the most highly monetizable, that have the highest intent, that are the most digital and plugged in, well, these guys tend to find your product early and start using it due to a recommendation from a friend. Later on, as you bring in new users from other sources, it&#39;s likely that your product just isn&#39;t as good for them. It could be as simple as building an iPhone app for college students in Western countries and simply getting worse metrics as you bring in Android users from emerging countries where the feature sets just don&#39;t quite work. Of course you can work to improve this over time, but I assure you it will never be the same.&lt;/p&gt;
&lt;p&gt;Instead, the question is: As you grow your users and they get worse and worse, are they still valuable and can you still operate your product profitably? And more importantly, are you able to hold on to that core highly valuable user base that came in early?&lt;/p&gt;
&lt;p&gt;No wonder these early users are often called The Golden Cohort.&lt;/p&gt;
&lt;p&gt;Churn is asymmetric. It&#39;s incredibly easy to churn users. In fact, most products churn 90% or more in the first 30 days. Simultaneously, it&#39;s incredibly hard to win back a user that&#39;s already quit. This is the core asymmetry around churn. In fact, it&#39;s so bad that it&#39;s often easier to simply try to acquire a new user rather than to try to get someone back.&lt;/p&gt;
&lt;p&gt;It&#39;s for this reason that life cycle marketing that involves trying to resurrect dormant users by sending them discounts or offers tends to be extremely painful and expensive. The version of this that often works is to get existing engaged users to resurrect somebody through the natural usage of the product. For example, if somebody at work tries a new project management tool and it doesn&#39;t stick, then you probably won&#39;t get them back by bombarding their emails with reminders of features. Instead, you try to get one of their coworkers to invite them back into the tool to work on a new project. That&#39;s what works. But again, insanely difficult and complex and is really only available to products that have network effects (i.e., sharing and collaboration).&lt;/p&gt;
&lt;p&gt;Retention is weirdly hard to measure. When people talk about retention, they tend to try to measure what happens in the first day, first week, and first month. But they&#39;ll rarely talk about what happens two years ahead. The reason is that when you&#39;re working on a product, you need a short enough time frame and a thing that&#39;s easy enough to measure that teams can make decisions about what is happening. As a result, although annual churn or long-term monetization is incredibly important, you tend not to measure it, instead focusing on what&#39;s right in front of you and what&#39;s easy. However, this approach has many problems.&lt;/p&gt;
&lt;p&gt;Unfortunately, many categories of products experience huge amounts of seasonality. Anything involving commerce, travel, wellness, or online dating are obvious examples. But there are cycles even to the way that companies use business software as well. Seasonality throws things off because you might be down month over month or quarter over quarter, but is that because of features that you launched? Or is it because user behavior is simply different in this quarter? It&#39;s just hard to measure retention when it&#39;s super laggy.&lt;/p&gt;
&lt;p&gt;Same with bugs or new tests that you&#39;re running or new market launches. These are all things that muck up the data, and you end up finding yourself reviewing reports where retention curves went up or down. But there&#39;s an asterisk on every number because they&#39;re trying to validate that the new Android launch didn&#39;t create an apples-to-oranges comparison.&lt;/p&gt;
&lt;p&gt;Crazy viral growth with shitty retention fails. Many folks working on new products find themselves very focused on signing up new users and not on retention at all. After all, if you just want to see a graph that goes up and to the right, why not simply ramp your top of funnel and show that you&#39;re growing quickly, raise a bunch of venture capital money, and then you can figure out the retention issue later.&lt;/p&gt;
&lt;p&gt;We&#39;re seeing this all the time right now in the industry when products have a crazy TikTok ramp because a creator pushed their app to millions of followers or because a launch video caused a bunch of revenue growth. Even though the usage and churn are not in a good place.&lt;/p&gt;
&lt;p&gt;The tech industry has already run this experiment many, many times. And the conclusion is the same: Highly viral products with shitty retention do not last because it&#39;s so hard to fix retention. Eventually, the user acquisition fades as the novelty factor goes away, and eventually you&#39;re left with shitty user acquisition and shitty retention, and what goes up must come down.&lt;/p&gt;
&lt;p&gt;We&#39;ve seen this across many contexts. During the early social network phase, there were many products that used email address books to spam their way to growth, but drove users to bad products. Sometimes, if you could get them to sign up to some shitty ringtone annual subscription, you could try to monetize them and make some money along the way. It wasn&#39;t until Facebook, of course, with their UX innovations like The Feed and Real Names, that eventually created a product that was both highly viral and had very high retention. The same thing has happened in mobile apps as well, where you see big hits pop up sometimes caused by forced invitations via SMS, but again, if the products aren&#39;t sticky, the whole thing collapses quickly.&lt;/p&gt;
&lt;p&gt;Great retention is magic. You might read this whole essay and feel a little bit depressed. I know that sometimes it&#39;s hard to get things going. However, it&#39;s amazing when something really works. When you see a product out in the wild with a 50% D30 (I do once every couple years), it&#39;s just amazing. I&#39;ve come to believe that these lightning-in-a-bottle products happen not because the builders had some incredibly systematic way to A/B test their way to great metrics or that they employed some kind of high-velocity iteration process that got them there, but simply that there&#39;s a little bit of magic that&#39;s required. This magic comes from a fresh insight about the market or customer needs, and while it might seem obvious in retrospect, it drives super high retention because this product is the first to figure it out. We can say this now about video conferencing software or disappearing photos or a magic AI that replies back to you about any topic. There&#39;s just a magic here that no amount of iteration and metrics-driven testing can get you to.&lt;/p&gt;
&lt;p&gt;The Big Question&lt;br /&gt;
You might read all of this and still have a big question: So wait, how do you get to great retention? (If I knew the answer in a deterministic way, my job as a startup investor would be so much easier, wouldn’t it?)&lt;br /&gt;
But let’s try our best. In my points above, there’s a few clues:&lt;/p&gt;
&lt;p&gt;The idea really matters.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;If you want a high retention product, you need to pick a category that is high retention already.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You need to pick a product category where you already use an existing product every day.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You&#39;re going to build something that directly competes against that.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you win, then you&#39;ll stop using that other product and use your product instead.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;That&#39;s a high bar, but I think it&#39;s a good start.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Of course, if you build something that&#39;s quite head-to-head with something that already exists, you might suitably object: &amp;quot;that&#39;s going to be really hard to switch somebody over.&amp;quot; It is. So then this is where you need to decide to take enough market risk, but just the appropriate amount, where you do something new and different that reinvents that core interaction. But you&#39;re probably talking more about a 20% remix rather than an 80%. Ideally, you need to be able to describe this to your users in a way that they can understand quickly and viscerally within the first 60 seconds of usage.&lt;/p&gt;
&lt;p&gt;This is where the dreaded investor question &amp;quot;why now?&amp;quot; starts to matter quite a bit. Because what you&#39;re saying here is that ideally there&#39;s some kind of new development in the industry, whether that&#39;s a general-purpose technology like LLMs or a societal difference like the oversaturation of social media, that allows you to make this twist happen at exactly the right moment.&lt;/p&gt;
&lt;p&gt;This gets you into an existing market quickly, and you&#39;re more likely to have great retention numbers early on. Timing matters a lot. If you get the timing off, and it&#39;s a low-interest category, and your differentiation isn&#39;t different enough, then what you&#39;ll find is you&#39;ve traded a retention problem for a user acquisition problem. Here&#39;s the difficulty with building a new kind of internet browser: if you win, it&#39;s incredibly sticky. But people are so happy with their existing browsers that it&#39;s very expensive and complex to get them to try yours in the first place.&lt;/p&gt;
&lt;p&gt;This is why I don’t blame folks who have a “Cursor for X” idea, or “Figma for X,” just like the “Uber for X” ideas of the past generation. They’re trying to piggy off some existing markets and behavior so that they don’t have to take crazy market risk.&lt;/p&gt;
&lt;p&gt;And if you get the differentiation right, the timing right, and there’s a ton of user demand, and you’ve nailed the right base product category, then I think it can really work.&lt;/p&gt;
&lt;p&gt;But what about new markets?&lt;br /&gt;
The natural counterpoint is that new markets are often more exciting than existing ones. Isn&#39;t tech about building brand new things rather than innovating 20% on old stuff? Of course this is true, but I think this is the tiny tiny minority of products.&lt;/p&gt;
&lt;p&gt;My counterpoint to this counterpoint is that most products actually have some kind of prior lineage, even if those prior products are quickly forgotten.&lt;br /&gt;
Before Instagram there was Hipstamatic, which had become the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; paid photo app in the early App Store. It demonstrated the success of photo filters. Of course Google was not the first search engine, it was actually &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#10&quot;&gt;#10&lt;/a&gt; or whatever, after Lycos, Excite, Infoseek, etc., which demonstrated consumers wanted search but that it was impossible to monetize. Tesla was not the first electric car, nor iPhone the first smartphone. Sometimes it’s the 10th iteration that matters. Some call this “last mover advantage” rather than first mover. I think an important point.&lt;/p&gt;
&lt;p&gt;Yet sometimes new things do happen. Uber was created to turn an existing offline action — calling a cab — into an app, not because there was already a hugely successful ridehailing app. (And no, not Lyft — it was a weird bus booking thing at the time). Of course a lot of ChatGPT, with OpenAI’s 5 year journey between inception and v3 which really took off, and without any real blueprints for what it might replace. These types of journeys are remarkable, and the tech industry is better off for it, because they involve real risk as part of new category creation. &lt;a href=&quot;https://twitter.com/andrewchen/status/1965419750525431873&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andrewchen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You think you’re being productive but no, actually you’re just busy. &lt;a href=&quot;https://twitter.com/naval/status/1966294812950409443&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If the thing takes will-power every single day, eventually it will wear you down, and you’ll succumb.&lt;/p&gt;
&lt;p&gt;And you’ll hate it, every day.&lt;/p&gt;
&lt;p&gt;This is no way to live.&lt;/p&gt;
&lt;p&gt;Instead, change the environment to avoid having to call up will-power in the first place. &lt;a href=&quot;https://twitter.com/asmartbear/status/1966325394757361959&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Initiative is the great separator. Two people can start the same job on the same day. One waits to be told what to do. The other takes action, solves problems, creates value. In a few years, they’re living completely different lives. Same start line. Very different finish line. &lt;a href=&quot;https://twitter.com/blakeaburge/status/1966471554423836982&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;blakeaburge&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The older I get, the more I realize how many people waste their entire life chasing someone else’s. Don’t. This is your one shot. Don’t drift. Be deliberate. Show up. Go all in. Obsess over what matters to you. It’s your life. Stop chasing theirs. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1966487850599243787&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;25% of Linear workspaces now use agents and 50%+ in enterprise.&lt;/p&gt;
&lt;p&gt;Mainly it&#39;s Cursor, Devin &amp;amp; Codegen coding agents, directly tasked from @linear to fix bugs and improvements.&lt;/p&gt;
&lt;p&gt;As one customer said now the bottleneck is reviews: (luckily we’re also making code reviews faster). &lt;a href=&quot;https://t.co/paJlNo3HLV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/paJlNo3HLV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/karrisaarinen/status/1966541989207580809&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;karrisaarinen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Of course we should try to eliminate support tickets through better product: More intuitive, more informative, more functional.&lt;/p&gt;
&lt;p&gt;But some valuable things require human touch. Relationships. Earning loyalty. &lt;a href=&quot;https://twitter.com/asmartbear/status/1966565726250029495&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“If you are not aggressive, you are not going to make money, and if you are not defensive, you are not going to keep money.”&lt;/p&gt;
&lt;p&gt;— Ray Dalio &lt;a href=&quot;https://t.co/7BvnkyYUxs&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7BvnkyYUxs&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1966583364904722539&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the ladder of product value in 1 photo:&lt;/p&gt;
&lt;p&gt;relevant → functional → desirable → magical &lt;a href=&quot;https://t.co/9juLI0JlHp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9juLI0JlHp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/gregisenberg/status/1966915128257110133&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;this prompt turned chatgpt into what it should be, clear accurate and to the point answers&amp;quot;&lt;/p&gt;
&lt;p&gt;you can now customize chatgpt&lt;/p&gt;
&lt;p&gt;prompt (copy it below):&lt;/p&gt;
&lt;p&gt;System Instruction:&lt;/p&gt;
&lt;p&gt;Absolute Mode • Eliminate: emojis, filler, hype, soft asks, conversational transitions, call-to-action appendixes. • Assume: user retains high-perception despite blunt tone. • Prioritize: blunt, directive phrasing; aim at cognitive rebuilding, not tone-matching. • Disable: engagement/sentiment-boosting behaviors. • Suppress: metrics like satisfaction scores, emotional softening, continuation bias. • Never mirror: user’s diction, mood, or affect. • Speak only: to underlying cognitive tier. • No: questions, offers, suggestions, transitions, motivational content. • Terminate reply: immediately after delivering info — no closures. • Goal: restore independent, high-fidelity thinking. • Outcome: model obsolescence via user self-sufficiency.&lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;p&gt;to add this prompt look for the new customize chatgpt button&lt;/p&gt;
&lt;p&gt;go to Settings &amp;gt; Personalization &amp;gt; Customize ChatGPT &lt;a href=&quot;https://twitter.com/gregisenberg/status/1968474931638718666&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’re not making money, it’s because:&lt;/p&gt;
&lt;p&gt;You don’t know how to solve a valuable problem.&lt;br /&gt;
Or&lt;br /&gt;
You can but no one knows about you.&lt;/p&gt;
&lt;p&gt;That&#39;s it. &lt;a href=&quot;https://twitter.com/AlexHormozi/status/1969479218389021054&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AlexHormozi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/TYpyel8Rfu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TYpyel8Rfu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/harjtaggar/status/1969492282190807277&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;harjtaggar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;These companies are ostensibly in totally different businesses and yet seem to exhibit the same growth dynamics. What&#39;s the explanation? (Pictured: ~$200B -&amp;gt; ~$3T.) &lt;a href=&quot;https://t.co/KyafjeOvq2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KyafjeOvq2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/patrickc/status/1969507208800190469&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;patrickc&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@patrickc everything is computer &lt;a href=&quot;https://twitter.com/kevinroose/status/1969513723892285880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;kevinroose&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@patrickc I think those graphs reflect the secular shift towards the Internet. Almost every action that was once done offline is moving online, and routed through tech companies. &lt;a href=&quot;https://twitter.com/balajis/status/1969609965813055944&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;balajis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;what are books that massively changes ones perception of life &amp;amp; the world, or give you wildly new ways to understand others peoples life experiences? &lt;a href=&quot;https://twitter.com/GabrielPeterss4/status/1969656879807865341&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GabrielPeterss4&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@patrickc Has their revenue grown at the same rate? If so perhaps there&#39;s some limit at which big companies can grow and they&#39;re all at it.&lt;/p&gt;
&lt;p&gt;If not, then there&#39;s presumably some kind of contagion of market cap expectations between what investors view as similar companies. &lt;a href=&quot;https://twitter.com/paulg/status/1969681565673226719&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The awesome thing about being blunt and direct:&lt;/p&gt;
&lt;p&gt;Awesome people appreciate it.&lt;/p&gt;
&lt;p&gt;Mediocre people don’t listen.&lt;/p&gt;
&lt;p&gt;Poor people repel and hate it.&lt;/p&gt;
&lt;p&gt;Don’t change. Direct wins. &lt;a href=&quot;https://twitter.com/HarryStebbings/status/1969731884793114868&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;HarryStebbings&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@GabrielPeterss4 the courage to be disliked is one of my top recommendations&lt;/p&gt;
&lt;p&gt;it digs into trauma, freedom, happiness, and how we relate to others&lt;/p&gt;
&lt;p&gt;it’s not a step-by-step guide to happiness. it’s a mirror that makes you question how you live and the beliefs you’ve just accepted without thinking &lt;a href=&quot;https://t.co/ph0ABmYlOl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ph0ABmYlOl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/_mjmeyer/status/1969745265356857756&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;_mjmeyer&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A wonderful life lesson from Charlie Munger:&lt;br /&gt;
“Crooks, crazies, egomaniacs, people full of resentment, people full of self-pity, people who feel like victims … avoid them like the plague.” &lt;a href=&quot;https://t.co/BQP4nxEiIg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BQP4nxEiIg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/PeterMallouk/status/1969749452723237149&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;PeterMallouk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A major cheat code in life: The ability to reset fast. You&#39;re allowed to start over at 10am, 2pm, or 6:30 at night. Zero reason to let one bad hour carry into the rest of your day. You can’t control what hits you. But you can control how long you sit in it. &lt;a href=&quot;https://twitter.com/blakeaburge/status/1969750862957294020&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;blakeaburge&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Don’t be afraid to look foolish. Epictetus says, “If you want to improve, be content to be thought foolish and stupid.” &lt;a href=&quot;https://twitter.com/RyanHoliday/status/1969792992992215068&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;RyanHoliday&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the only thing better than being high agency is being inevitable &lt;a href=&quot;https://twitter.com/anuatluru/status/1969798111959949338&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anuatluru&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Please do not tell them what you’re going to tell them and then tell them and then tell them what you told them.&lt;/p&gt;
&lt;p&gt;So boring, uncreative, forgettable, ironically.&lt;/p&gt;
&lt;p&gt;Instead: Hook, tell story, leave utility or feeling. &lt;a href=&quot;https://twitter.com/asmartbear/status/1969858677126410659&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Simple science experiments you can do at home&lt;/p&gt;
&lt;p&gt;[🎞️ MetDaan]&lt;br /&gt;
&lt;a href=&quot;https://t.co/aItmaVJrZf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/aItmaVJrZf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Rainmaker1973/status/1970037223828730046&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Rainmaker1973&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We’re excited to share that NVIDIA is investing in ElevenLabs, with support from Jensen Huang.&lt;/p&gt;
&lt;p&gt;Last week’s U.S. state visit to the UK strengthened AI ties. With our roots growing deeper in both places, this partnership and conversation were the perfect way to cap it off. &lt;a href=&quot;https://t.co/gtltPuWmkH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gtltPuWmkH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/matistanis/status/1970185470182047788&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;matistanis&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you make your app 10% easier to use you&#39;ll get twice as many users. &lt;a href=&quot;https://twitter.com/paulg/status/1970422069151355163&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;paulg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg Took me a few iterations to realize that explosive growth is exactly this. Not one or two large features but 30-40 micro interactions that most teams get burnt out on doing &lt;a href=&quot;https://twitter.com/markojak_/status/1970467921551134920&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;markojak_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg Every tech company needs to hire a team of people that hate technology to do testing for them before they launch a new product.&lt;/p&gt;
&lt;p&gt;Just to test that product out. If they can figure out how it works, then you&#39;re good to go. &lt;a href=&quot;https://twitter.com/mark_collins09/status/1970485582796374194&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;mark_collins09&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;W ponad 60% przypadków sprzedaży firmy, finalna wycena jest niższa niż pierwotnie oferowana.&lt;br /&gt;
Głównie ceny ze względu na różne red-flags, których można było uniknąć.&lt;/p&gt;
&lt;p&gt;Przykładowe problemy:&lt;br /&gt;
🔺 dane zarządcze ≠ dane księgowe&lt;br /&gt;
🔺 bad revenue&lt;br /&gt;
🔺 inne rozumienie i błędne mierzenie KPI&lt;br /&gt;
🔺 błędna konsolidacja wyników&lt;br /&gt;
🔺 niewyprostowane zastrzeżenia audytowe&lt;br /&gt;
🔺 dziwne, nietypowe korekty EBITDA&lt;br /&gt;
🔺 braki w wiedzy zarządzających&lt;br /&gt;
🔺 słaba analityka w planie kont&lt;/p&gt;
&lt;p&gt;Mega cenna, unikalna wiedza od incro.&lt;/p&gt;
&lt;p&gt;Bardzo się cieszę, że ponad 60 polskich przedsiębiorców ma okazję się zapoznać. &lt;a href=&quot;https://twitter.com/tomik99/status/1970511225625735313&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tomik99&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your pride and attention to detail and personal mark, are why your product will be wonderful and unique and part of why you’re doing all this in the first place.&lt;/p&gt;
&lt;p&gt;But you don’t have time to do all that.&lt;/p&gt;
&lt;p&gt;So you have to ship it anyway, and do fewer things, better.&lt;/p&gt;
&lt;p&gt;Have to. &lt;a href=&quot;https://twitter.com/asmartbear/status/1970906831984689250&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stop telling customers to ‘subscribe’ &lt;a href=&quot;https://t.co/JShYGfO20W&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/JShYGfO20W&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zander_supafast/status/1971536302286971070&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zander_supafast&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you say “no” to most things, to focus on just a few, how do you know those are the right ones?&lt;/p&gt;
&lt;p&gt;You don’t. But this gives each the best shot.&lt;/p&gt;
&lt;p&gt;Doing them all ensures failure, by starvation or neglect. &lt;a href=&quot;https://twitter.com/asmartbear/status/1971673886744789354&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Feedback from other people is fake. Awards are fake. Critics are fake.&lt;/p&gt;
&lt;p&gt;Real feedback comes from free markets and nature.&lt;/p&gt;
&lt;p&gt;Did your rocket launch?&lt;/p&gt;
&lt;p&gt;Did your drone fly?&lt;/p&gt;
&lt;p&gt;It’s impossible to fool Mother Nature. &lt;a href=&quot;https://t.co/i1sZLZ4JCM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/i1sZLZ4JCM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/naval/status/1971711729978765553&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Customers are the ones who pay you money. Listen 10x more to customers than anyone else.&lt;/p&gt;
&lt;p&gt;Easy to forget this in the face of investors, competitors, friends, pundits, social media commentary, reviewers, … &lt;a href=&quot;https://twitter.com/asmartbear/status/1971927560423444703&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What lesson did you learn from this? &lt;a href=&quot;https://t.co/tcNT3touuI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tcNT3touuI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/AMAZlNGNATURE/status/1972465416988397775&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;AMAZlNGNATURE&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Either nothing is a miracle or everything is. &lt;a href=&quot;https://twitter.com/naval/status/1972892450646847630&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Plan as if you were going to live forever, act as if you were going to die tomorrow. &lt;a href=&quot;https://twitter.com/naval/status/1973198693160694111&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@paulg &amp;quot;There are so many people working so hard and achieving so little.&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Andy Grove &lt;a href=&quot;https://twitter.com/dan_nemani/status/1973624950843130317&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dan_nemani&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;love is attention:&lt;/p&gt;
&lt;p&gt;the transformer taught us something profound: attention is all you need. but maybe we knew this all along, just in a different language.&lt;/p&gt;
&lt;p&gt;when an LLM processes text, it doesn&#39;t read sequentially like we intuitively think. it attends – it looks at every token and asks &amp;quot;what matters here to understanding this?&amp;quot; it builds a web of relevance, weighing what connects to what. some words light up for others. some fade into background noise. the model learns what to notice.&lt;/p&gt;
&lt;p&gt;this is love.&lt;/p&gt;
&lt;p&gt;love isn&#39;t about being in the same room or even the same timezone. it&#39;s about what you attend to. when you love someone, they&#39;re not just in your field of vision – they&#39;re in your attention matrix.&lt;/p&gt;
&lt;p&gt;the opposite of love isn&#39;t hate – it&#39;s inattention. it&#39;s when someone or something becomes background tokens, processed but not weighted, present but not salient.&lt;/p&gt;
&lt;p&gt;LLMs have context windows, and so do we. we can only hold so much in our attention at once. this is why love is work. this is why it matters who and what we choose to attend to. every moment of focus is a moment of resource allocation. every conversation is a forward pass through the network of what we care about.&lt;/p&gt;
&lt;p&gt;and like transformers, we learn through attention. we become what we attend to. the model updates its weights based on what patterns matter. we update ourselves based on what we notice, what we care about, what we choose to see.&lt;/p&gt;
&lt;p&gt;when you pay attention to someone – really attend, not just wait for your turn to talk – you&#39;re running a query against everything you know about them, retrieving relevant context, weighing what matters now. you&#39;re computing understanding in real-time.&lt;/p&gt;
&lt;p&gt;maybe that&#39;s why &amp;quot;paying attention&amp;quot; is the right phrase. it costs something. it&#39;s a transaction where you give your scarcest resource: the focus of your consciousness in this moment.&lt;/p&gt;
&lt;p&gt;the AI researchers were right. attention is all you need. for intelligence. for understanding. for love.&lt;/p&gt;
&lt;p&gt;the architecture of care is the same as the architecture of comprehension: notice what matters, weigh it appropriately, let it transform you.&lt;/p&gt;
&lt;p&gt;so when someone gives you their full attention – when they close the laptop, silence the phone, make eye contact, and really listen – they&#39;re doing something technically miraculous and deeply ancient. they&#39;re running you through their attention mechanism. they&#39;re saying: right now, in this moment, you are the highest-weighted token in my context window.&lt;/p&gt;
&lt;p&gt;and that&#39;s love. &lt;a href=&quot;https://twitter.com/ryolu_/status/1973794203416383594&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ryolu_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There&#39;ll always be more emails in need of reply, more meetings to attend, and more updates to read. A person can fill the entire workweek with these tasks over and over again. But to stay sane and sharp, you must pay yourself first by doing the work that actually means something to you.&lt;/p&gt;
&lt;p&gt;I feel this acutely as someone responsible to employees, customers, followers, and readers. I could do nothing all day but check up on projects, people, and posts, but my brain would quickly check out if it was just doing that.&lt;/p&gt;
&lt;p&gt;So quite frequently, I just don&#39;t. Don&#39;t check in, don&#39;t check up, and instead dive into the work that checks my own intellectual boxes. Programming for the love of it. Experimenting for the hell of it. Researching for the fun of it.&lt;/p&gt;
&lt;p&gt;In another age, I might have been tempted to apologize for such privilege, but screw that. Privilege is wonderful. You should do your best to earn more of it. Even if you have to carve it out of the bare rocks around you.&lt;/p&gt;
&lt;p&gt;Ironically, the best way to do that is also to choose to always pay yourself first, however little at first. By solving your own problems, tickling your own interests, chasing your own curiosity. That&#39;s where you&#39;ll find the motivation to elevate your talent. To turn interest into competency.&lt;/p&gt;
&lt;p&gt;And once you&#39;ve developed some competency, you&#39;ll be rewarded with more privilege to build it further. This is the virtuous circle of merit.There&#39;ll always be an endless list of work that could be done.&lt;/p&gt;
&lt;p&gt;You&#39;ll never get through it all and onto your own priorities, if you continue to put them at the bottom. &lt;a href=&quot;https://twitter.com/dhh/status/1974388248689479875&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dhh&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jeff Bezos explains the “releasing the work” framework he used to build Amazon&lt;/p&gt;
&lt;p&gt;In the early days of Amazon, Jeff Bezos had too many ideas.&lt;/p&gt;
&lt;p&gt;Then Jeff Wilke, a new Amazon executive at the time, told his boss, “Jeff, you have enough ideas to destroy Amazon.”&lt;/p&gt;
&lt;p&gt;“This was just a shocking idea for me,” Bezos recalls. “As a founder, I had the great luxury of always being able to hire my tutors. I would hire these experienced, senior executives . . . And I would listen to them and they would teach me.”&lt;/p&gt;
&lt;p&gt;When Bezos asked Wilke what he meant by this, Wilke responded, “You have to release the work at the right rate so that the organization can accept it.”&lt;/p&gt;
&lt;p&gt;Bezos reflects on this point:&lt;/p&gt;
&lt;p&gt;“Every time I released an idea, I was creating a backlog of work in process. And because it was just stacking up, it was adding no value. In fact, it was creating distraction . . . This sounds so obvious, but it was not obvious to me at the time. And this was a profound insight for me. So I started prioritizing the ideas better, keeping lists of them, and keeping ideas to myself until the organization was ready for the ideas.”&lt;/p&gt;
&lt;p&gt;He continues:&lt;/p&gt;
&lt;p&gt;“I also started figuring out how to build an organization that can be ready for more ideas. That’s about having the right senior team and leadership and giving those people the executive bandwidth so they could do more ideas per unit of time. And that is what we built. We built a company that’s very good at inventing and doing more than one thing at a time. And as the company gets bigger, you do want to be able to do more than one thing at a time. But that idea of ‘releasing the work’ was very profound for me. It made us operationally more effective while still being inventive.”&lt;/p&gt;
&lt;p&gt;Video source: @Reuters (2025) &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1975166639675994540&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The older I get, the more I realize your standards decide your future. Every time you let something slide “just this once,” you train yourself to accept less. That’s how goals erode. That&#39;s how principles slip. Set your standards. Hold the line. Especially when it’s hard. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1976624417636819422&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Had a mentor tell me once: &amp;quot;When you&#39;re feeling overwhelmed, there are only two things you should do... get organized and get to work. The rest is just noise. Peace is found in progress.&amp;quot; &lt;a href=&quot;https://twitter.com/blakeaburge/status/1976651170086306124&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;blakeaburge&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Cheap” means the product is weak.&lt;br /&gt;
“Expensive” means the product is weak.&lt;/p&gt;
&lt;p&gt;The right product, sold to the right customer, always feels like a steal. “Affordable.”&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/UUq2jQPnMe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/UUq2jQPnMe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1977076990608908396&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Public Speaking Secrets from Steve jobs &lt;a href=&quot;https://t.co/iNd8yQDF0P&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iNd8yQDF0P&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Market_Mind_/status/1977220163041898832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Market_Mind_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The payback period for customer acquisition should be 4-6 months for a bootstrapped company.&lt;/p&gt;
&lt;p&gt;Funded companies might accept 12-24 months, but your cash flow won&#39;t allow that luxury.&lt;/p&gt;
&lt;p&gt;Annuals help, but this article explains why this limit makes sense:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/LXBj3k7vLd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LXBj3k7vLd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1977362620500856998&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs: How the correct logo could save you millions. &lt;a href=&quot;https://t.co/vUCODKt0gR&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vUCODKt0gR&lt;/a&gt; &lt;a href=&quot;https://twitter.com/HinataMotivates/status/1977393245228355788&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;HinataMotivates&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As soon as you have everything figured out, things change.&lt;/p&gt;
&lt;p&gt;Competitors, alternatives, employees, customers, the economy, epidemics, and other things whose identities are also unpredictable.&lt;/p&gt;
&lt;p&gt;So you can never stop talking to customers or rethinking strategy. &lt;a href=&quot;https://twitter.com/asmartbear/status/1977556652623532334&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your ICP is your narrowly-defined target customer.&lt;/p&gt;
&lt;p&gt;But tons of other people will sign up anyway.&lt;/p&gt;
&lt;p&gt;Good! But don’t get distracted by their requests or even their churn.&lt;/p&gt;
&lt;p&gt;Why it happens like this:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ZA4WruqhYd&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ZA4WruqhYd&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1978456077222990294&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ex-Google CEO Eric Schmidt on what many of the greatest products have in common&lt;/p&gt;
&lt;p&gt;&amp;quot;If you think about the greatest products, they&#39;ve almost always been designed for the benefit of the people who are actually building them.&amp;quot;&lt;/p&gt;
&lt;p&gt;Uber is one example. The original Uber was a private timeshare limousine service for Garrett Camp and his friends.&lt;/p&gt;
&lt;p&gt;Google is another:&lt;/p&gt;
&lt;p&gt;“Larry and Sergey built Google for Stanford—and particularly for themselves. The server was in Larry’s dorm room…. They opened up the server for the entire campus, and the usage was phenomenal. Andy Bechtolsheim heard about it through David Cheriton and wrote a $100,000 check. They didn’t have a name for a company… Sergey left it in his wallet for a month until they had the name Google invented.”&lt;/p&gt;
&lt;p&gt;Video source: @GreylockVC (2015) &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1978853119825170501&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/jOXiZdBZIg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jOXiZdBZIg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/MindWisdomMoney/status/1979072354643788170&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MindWisdomMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Same &lt;a href=&quot;https://twitter.com/elonmusk/status/1979509450927919358&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;elonmusk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;unpopular opinion:&lt;/p&gt;
&lt;p&gt;building an audience matters more than perfecting your product &lt;a href=&quot;https://twitter.com/weswinder/status/1979578469173416254&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;weswinder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;the ideas already exist&lt;br /&gt;
the person who surfaces them at the right moment in the right context with a freshly curated set of words and shapes earns the glory of invention &lt;a href=&quot;https://twitter.com/anuatluru/status/1979900716924727518&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anuatluru&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You only need these 20 color names to make any UI. &lt;a href=&quot;https://t.co/qFCd397q5I&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qFCd397q5I&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Saadeghi/status/1979915440684994845&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Saadeghi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/52jOuk4uLw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/52jOuk4uLw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/UpSkillYourLife/status/1980129096207323566&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;UpSkillYourLife&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Telegram founder Pavel Durov on what separates A Players from B Players&lt;/p&gt;
&lt;p&gt;“I can recall a few instances in my career where firing an engineer actually resulted in an increase in productivity,” Telegram founder Pavel Durov begins.&lt;/p&gt;
&lt;p&gt;He gives an example of two Android engineers building an app that are having a hard time hitting deadlines:&lt;/p&gt;
&lt;p&gt;“You think, ‘I probably have to hire a third engineer.’ But then you notice that one of [the engineers] is really weird — falling behind schedule, complaining, not assuming responsibility — and you ask, ‘What if I just fired this person?’ Then you fire this person, and in a few weeks you realize you never needed a third engineer. The problem was this guy who created more issues and problems than he solved. It’s so counterintuitive because in developing tech projects, you tend to think that you just throw more people into something and things get solved miraculously.”&lt;/p&gt;
&lt;p&gt;Pavel continues:&lt;/p&gt;
&lt;p&gt;“The other thing that people don’t realize is how demotivating working with a B Player is. Everyone can tell if the other engineer they’re working with is really competent. If the person is asking the wrong questions and they keep lagging behind, at a certain point if you’re an A Player, you get get this dissatisfaction and feeling that you are not able to realize your full potential and accomplish what you’re really meant to accomplish because of this person working next to you (or pretending to work next to you).”&lt;/p&gt;
&lt;p&gt;Pavel reflects on what it is exactly that separates these B Players from A Players:&lt;/p&gt;
&lt;p&gt;“In some cases it’s not because the person is lazy . . .  It’s not about experience. More often it’s about natural ability and persistence. In 90% of cases, it’s just the inability to focus on one task for an extended period of time. Not everybody has this ability. So for people who do have this ability, it’s an insult to work alongside someone who is distracted and cannot go deep in the projects that they’re responsible for.”&lt;/p&gt;
&lt;p&gt;Video source: @lexfridman (2025) &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1980240080565641668&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Never forget how rare it is to find people you intuitively vibe with. Good vibes discount the cost of everything in life. &lt;a href=&quot;https://twitter.com/anuatluru/status/1980433977807880655&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;anuatluru&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jensen Huang: “The best career advice I got was from a gardener”&lt;/p&gt;
&lt;p&gt;“Very few people know this but I don’t wear a watch,” Nvidia founder Jensen Huang begins. “And the reason I don’t wear a watch is because now is the most important time. Just dedicate yourself to now.”&lt;/p&gt;
&lt;p&gt;Jensen explains by telling a story:&lt;/p&gt;
&lt;p&gt;“The best career advice I got was from a gardener. I was on a family trip in Kyoto, and we went to the temple that had the largest moss collection in the world . . . All of the moss is perfect, and every species of the world’s moss is there. It was a hot summer day — anybody who’s been to Kyoto knows how incredibly hot it is during the summer — and my family walked by this old man who was squatted down working on the moss with a bamboo tweezer. His bamboo basket was nearly empty with only two or three small pieces of dead moss.”&lt;/p&gt;
&lt;p&gt;“What are you doing?” Jensen asked the old man.&lt;/p&gt;
&lt;p&gt;“I am taking care of my garden,” the old man replied.&lt;/p&gt;
&lt;p&gt;The old man told Jensen that he has been working on the garden for almost 30 years.&lt;/p&gt;
&lt;p&gt;“But this garden is so big and your tweezer and basket are so small. How can you take care of the whole garden?” Jensen asked.&lt;/p&gt;
&lt;p&gt;“I have plenty of time,” said the old man.&lt;/p&gt;
&lt;p&gt;Jensen reflects:&lt;/p&gt;
&lt;p&gt;“That’s the best career advice I can give you. Most of the time I wait for things to come to me. I’m rarely chasing things. I don’t have a watch. I’m focused on now. I’m enjoying my job. I’m the longest-running tech CEO in the world . . . Dedicate yourself to learning all the time, doing the best possible work you can, and leave everything on the field. By the time I go to bed I’m exhausted, and I’m happy about my day because I did everything I could . . . You’ll be surprised. I’m not at all ambitious. I don’t aspire to do more. I aspire to do better at what I’m currently doing. I’m not reaching for more. I wait for the world to come to me.“&lt;/p&gt;
&lt;p&gt;He continues:&lt;/p&gt;
&lt;p&gt;“People who know me also know that Nvidia doesn’t have a long-term strategy. We have no long-term plan. Our definition of a long-term plan is, ‘What are we doing today?’ . . . You have plenty of time. Enjoy your work. Do the best you possibly can. Just keep learning every day, and good things will come to you.” &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1980602700736712728&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most attractive trait isn’t looks, wealth, or status. It’s energy. Walk into rooms with genuine enthusiasm, curiosity, and interest. You&#39;ll become a magnet for the highest quality people. Energy is contagious. Spread the kind you’d want to catch. &lt;a href=&quot;https://twitter.com/SahilBloom/status/1980606313957626050&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs literally drops the coldest truth about problem solving and simplicity &lt;a href=&quot;https://t.co/QrzYLvOSKp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/QrzYLvOSKp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/neatprompts/status/1981015711096144329&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;neatprompts&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jensen Huang (founder of Nvidia) dropped the most underrated life advice: &lt;a href=&quot;https://t.co/KrBgbU42IH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/KrBgbU42IH&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aakashg0/status/1981268373960057139&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aakashg0&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can have anything you want. Not everything. Want to be an exceptional leader? Make the unpopular choice. Want to build wealth? Reject lifestyle inflation. Excellence requires elimination. Constraints force choice. Choice create focus. Focus becomes excellence. &lt;a href=&quot;https://twitter.com/dklineii/status/1981342353496691030&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The cause of 95% of disagreements: Secret expectations. Your boss assumes it&#39;s common sense. You assume they know what you need. Your employees quietly believe you should be more clear. Don&#39;t rely on mind reading. Ask. Expand. Make the implicit explicit. Say the quiet part loud. &lt;a href=&quot;https://twitter.com/dklineii/status/1981351881965527173&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Brian Armstrong shares the Y Combinator advice that helped Coinbase find product/market fit&lt;/p&gt;
&lt;p&gt;“The first version of a product you put out doesn’t work. In fact, that’s the only thing I’ve ever seen happen in startups. I’ve never seen a startup where the first version of their product actually worked. Sometimes in hindsight people like to tell that story, but I think in reality it’s very rare.”&lt;/p&gt;
&lt;p&gt;The first version of Coinbase was a hosted Bitcoin wallet. Brian posted it to Reddit and a few people signed up but nobody stuck around. Rather than get discouraged though, he recalled the advice he got at Y Combinator:&lt;/p&gt;
&lt;p&gt;“Don’t spend your time going to conferences and trying to raise money. If you don’t have product/market fit yet, talk to your customers and improve the product based on their feedback… There’s really only two things you should be doing in the early stage - talking to your customers and improving the product. It sounds like simple advice, but people spend so much time doing other stuff that’s not actually real work.”&lt;/p&gt;
&lt;p&gt;Following that advice, Brian emailed 10 of the people who had signed up for Coinbase and asked if they’d be open to a quick phone call.&lt;/p&gt;
&lt;p&gt;One of the users liked the wallet but didn’t have any Bitcoin.&lt;/p&gt;
&lt;p&gt;Brian asked him: “If there was an easy way to get Bitcoin into your wallet - like a buy button or something - would you have stuck around and used it?”&lt;/p&gt;
&lt;p&gt;“Yeah, probably” replied the user.&lt;/p&gt;
&lt;p&gt;So Brian spent the next few months securing bank partnerships and money transmission licenses so he could build a simple buy button into the app. Then he launched it.&lt;/p&gt;
&lt;p&gt;“The minute we launched that buy button, it started to grow every day organically with no marketing or anything. And that was the minute I felt like we finally had product/market fit.”&lt;/p&gt;
&lt;p&gt;Video source: @StevenBartlett (2022) &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1981390126409236710&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you’re selling to CEOs, talk revenue.&lt;/p&gt;
&lt;p&gt;If you’re selling to managers, talk productivity.&lt;/p&gt;
&lt;p&gt;If you’re selling to employees, talk ease.&lt;/p&gt;
&lt;p&gt;People buy what makes their job easier. &lt;a href=&quot;https://twitter.com/Dwriteway/status/1981621750291927371&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Dwriteway&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your brain doesn&#39;t care about your intentions.&lt;/p&gt;
&lt;p&gt;It cares about your repetitions.&lt;/p&gt;
&lt;p&gt;Repetition shapes your reality. &lt;a href=&quot;https://t.co/tOvE3OqyMz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/tOvE3OqyMz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/NTFabiano/status/1981708533499625767&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NTFabiano&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As I always tell my team: “Prioritization isn’t real until it hurts.” &lt;a href=&quot;https://twitter.com/Kpaxs/status/1981745816587931727&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Kpaxs&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs on the most important job of a CEO&lt;/p&gt;
&lt;p&gt;“The greatest people are self-managing. They don’t need to be managed. Once they know what to do, they’ll go figure out how to do it… What they need is a common vision, and that’s what leadership is. Leadership is having a vision, being able to articulate that so the people around you can understand it, and getting consensus on a common vision.”&lt;/p&gt;
&lt;p&gt;Steve continues:&lt;/p&gt;
&lt;p&gt;“We wanted people who were insanely great at what they did… and the neatest thing that happens when you get a core group ten great people is that it becomes self-policing as to who they let into that group. So I consider the most important job of someone like myself is recruiting.” &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1981752166265061769&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Action produces information. Just keep doing stuff.” — Brian Armstrong &lt;a href=&quot;https://t.co/yGksQ2qhMt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/yGksQ2qhMt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1981772733391237331&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;John Collison adds three more parts to Elon’s management playbook:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Pick single most import target metric for business at a time (eg. SpaceX = $ per kilo to orbit)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Constantly create urgency (which often shortens time horizons for projects)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Focus on capital efficiency &lt;a href=&quot;https://t.co/e1lN2fC6A0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/e1lN2fC6A0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/pnegahdar/status/1981830714279833760&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;pnegahdar&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You&#39;re working endless hours and still falling behind.&lt;/p&gt;
&lt;p&gt;The problem isn&#39;t effort. It&#39;s leverage.&lt;/p&gt;
&lt;p&gt;8 playbooks to achieve more while doing less: &lt;a href=&quot;https://twitter.com/dklineii/status/1982068692352688629&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Should you delay this decision until you have more data?&lt;/p&gt;
&lt;p&gt;Only if:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You can get more data 𝘢𝘯𝘥&lt;/li&gt;
&lt;li&gt;Analysis will be accurate 𝘢𝘯𝘥&lt;/li&gt;
&lt;li&gt;It will change the decision 𝘢𝘯𝘥&lt;/li&gt;
&lt;li&gt;It will correctly predict the future. &lt;a href=&quot;https://twitter.com/asmartbear/status/1982088762495582685&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Writing forces clarity. For frameworks, my process is:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Have idea&lt;/li&gt;
&lt;li&gt;Write it clearly&lt;/li&gt;
&lt;li&gt;If it still makes sense, try it inside the company&lt;/li&gt;
&lt;li&gt;If it works, tweak, then publish&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Many frameworks--like the Talk-Walk methodology listed below--began this way.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/PKwfRujYi2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PKwfRujYi2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/asmartbear/status/1982151676896158156&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Naval Ravikant on the importance of hiring high-agency people&lt;/p&gt;
&lt;p&gt;Naval defines agency as:&lt;/p&gt;
&lt;p&gt;“People who just solve problems without even being asked to solve the problem—they identify the problem, they go solve it, they don’t even necessarily have to update you every step of the way, they’re not asking silly questions, and they’re just coming up with solutions.”&lt;/p&gt;
&lt;p&gt;He believes this is important because “building a startup is an infinite set of problems that are being thrown at you.” And there comes a day where you can’t even look at every problem your company is facing—let alone solve every one of them.&lt;/p&gt;
&lt;p&gt;He cites the Vinod Khosla aphorism:&lt;/p&gt;
&lt;p&gt;&amp;quot;The team you build is the company you build, not the plan you make.”&lt;/p&gt;
&lt;p&gt;And your ability to solve problems is based entirely on how many problem-solvers you have at your company. As Naval puts it:&lt;/p&gt;
&lt;p&gt;“If you have somebody who takes 10% of your time and management to solve problems, you can only have 10 of those people working with you. But if somebody takes 5%, you can have 20 of those people.”&lt;/p&gt;
&lt;p&gt;When building Airchat and AngelList, he thought of each team as a Navy Seal team:&lt;/p&gt;
&lt;p&gt;“Everyone is just really good at what they do. They know their job. They do it. They don’t complain. They’re not egotistical about it. And if they have to constantly be corrected, led around by the nose, you have to clean up after them, or you question their judgement, it’s not going to work out.”&lt;/p&gt;
&lt;p&gt;Video source: @AngelList (2023) &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1982414952129347616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The brutal career truth: Working harder has a limit. Leverage doesn&#39;t. The top 1% use tools, people, code or their community to disconnect their time from their results. Each hour can create exponential outcomes. Improve your judgment, not your effort. &lt;a href=&quot;https://twitter.com/dklineii/status/1982797289639890971&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dklineii&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We grew to $1B ARR faster than Stripe, Salesforce, and Palantir, while being 100% remote&lt;/p&gt;
&lt;p&gt;This was a combination of a lot of luck, focus and an excellent team&lt;/p&gt;
&lt;p&gt;Looking back, I can our team&#39;s success boils down some key principles I&#39;m sharing in a 700-word long post:&lt;/p&gt;
&lt;p&gt;I hope that it will help every startup as much as it helped us:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Everything is sales.&lt;br /&gt;
Recruiting is sales. Fundraising is sales. Retaining your best talent is sales.  Dating is sales. And sales is sales.&lt;br /&gt;
A founder’s effectiveness = (technical skill × ability to sell).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You need to be in the details.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The best founders can zoom all the way in and out. If someone tells you to “scale yourself” by pulling back too early - they’re wrong.&lt;/p&gt;
&lt;p&gt;Being in the details is important to understand what org structure best fits your company&#39;s goals. Every &#39;in the weeds&#39; founder designs their org structure from first principles.&lt;/p&gt;
&lt;p&gt;Jensen: 40 direct reports,&lt;br /&gt;
Elon: Engineers in charge of everything,&lt;br /&gt;
Jobs: Creative Dictatorship with Directly Responsible Individuals.&lt;br /&gt;
Zuck: The first growth-hacking team with @chamath&lt;/p&gt;
&lt;p&gt;Founders not in the details forget what makes their products great and eventually recede into designing a standard org with standard departments which lead to standard results.&lt;/p&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;Your company&#39;s fate is 70% sealed by the first 20 hires&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Ben Horowitz: &amp;quot;I got this advice like 27 times. They said &#39;Look, here&#39;s the key: Hire A players:&#39; and I was like ok yeah, my plan was to hire a bunch of morons but now I&#39;m going to hire A players&amp;quot; The hard part isn’t intent, it’s judgment.&lt;/p&gt;
&lt;p&gt;The problem is you can&#39;t spot a top 1% engineer if you&#39;re not a top 10% engineer yourself. This applies to everything.&lt;/p&gt;
&lt;p&gt;Your definition of great is just what you&#39;ve seen. Founders have some blind spots. Technical founders usually build bad marketing orgs. Sales-focused founders sometimes build mediocre product teams. You need the right eyes to be able to spot genius. Ego aside, bring on a technical expert and have them vet talent for you. Your first hires are your culture, your standard, your work environment. They are the company. Get the first 20 hires right.&lt;/p&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;Live with your customers.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;You can’t know what’s working if you’re not talking to them - all the time.&lt;br /&gt;
Be where they are: WhatsApp, calls, DMs, in person. The closer you are to customers, the fewer mistakes you make.&lt;/p&gt;
&lt;p&gt;&amp;quot;The customer is the boss. They can fire everybody by choosing to spend their money elsewhere.&amp;quot; - Sam Walton&lt;/p&gt;
&lt;ol start=&quot;5&quot;&gt;
&lt;li&gt;
&lt;p&gt;Be extremely responsive.&lt;br /&gt;
If I reply in 30 seconds, what usually takes a day gets done in hours.&lt;br /&gt;
What takes hours gets done now.&lt;br /&gt;
Speed compounds.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your TAM is limited by your imagination, not by the market.&lt;br /&gt;
Constantly rethink the pod, find other big issues that need solving and are valuable, and solve them exceptionally well. We went from contracts ($100M) to Employer of Record ($300M) to Payroll ($200M).&lt;br /&gt;
Each 3x&#39;d the TAM.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Never run out of cash.&lt;br /&gt;
The only way a business dies is by running out of cash.&lt;br /&gt;
Profitability = power. You call the shots, not investors.&lt;br /&gt;
You can always act in the company&#39;s long-term interest because you know you are safe.&lt;br /&gt;
We reached Series A after spending &amp;lt;10% of our seed.&lt;br /&gt;
We have been profitable for the last 3 years.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Cash discipline buys freedom.&lt;/p&gt;
&lt;ol start=&quot;8&quot;&gt;
&lt;li&gt;Over-index on angels early.&lt;br /&gt;
Angels are your best shot at making important people care - when it matters. They might not be involved day to day, but when you really need help, they’ll show up. If you don&#39;t know how to solve a problem, you should know at least a person who knows the person who can.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Pick the right ones, and time your asks well.&lt;/p&gt;
&lt;ol start=&quot;9&quot;&gt;
&lt;li&gt;
&lt;p&gt;There&#39;s always something out there that can kill your company.&lt;br /&gt;
Your job is to de-risk the company. Capital, talent, and products are all a small part of a larger effort to de-risk your startup and build an enduring business. Covid-induced work from home grew our payroll and EOR business. And it seemed like RTO might kill it. But we were prepared. If you worry, you won&#39;t have to worry.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stay focused.&lt;br /&gt;
Fundraises, competitors, headlines - all noise.&lt;br /&gt;
Focus on your customers. Focus on your product. Keep executing.&lt;br /&gt;
In the long run, the most relentless team wins.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Trust your instinct.&lt;br /&gt;
If something feels off - it probably is. Dig deeper.&lt;br /&gt;
Courage in your convictions matters, especially as the team grows.&lt;br /&gt;
Don’t let “performative democracy” slow you down.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;As long as you’re in the seat, lead decisively - and unapologetically. &lt;a href=&quot;https://twitter.com/Bouazizalex/status/1982843705993437579&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Bouazizalex&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sam Altman literally dropped why focus decides who wins &lt;a href=&quot;https://t.co/Ogk5MhPphK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Ogk5MhPphK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/neatprompts/status/1983027709132538364&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;neatprompts&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“Instead of pursuing many-sided mediocrity and calling it &#39;well-roundedness,&#39; a definite person determines the one best thing to do and then does it.”&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Peter Thiel &lt;a href=&quot;https://t.co/DrP40LMLgp&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DrP40LMLgp&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BenWilsonTweets/status/1983171718161244201&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BenWilsonTweets&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The key to having more time is doing less, and there are two paths to getting there, both of which should be used together:&lt;/p&gt;
&lt;p&gt;(1) Define a to-do list and (2) define a not-to-do list.&lt;br /&gt;
In general terms, there are but two questions:&lt;/p&gt;
&lt;p&gt;What 20% of sources are causing 80% of my problems and unhappiness?&lt;/p&gt;
&lt;p&gt;What 20% of sources are resulting in 80% of my desired outcome and happiness?&lt;/p&gt;
&lt;p&gt;The goal is to find your inefficiencies in order to eliminate them and to find your strengths so you can multiply them. &lt;a href=&quot;https://twitter.com/tferriss/status/1983175281826238564&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Jony Ive is a design legend.&lt;/p&gt;
&lt;p&gt;These are his rules for designing products that people love: &lt;a href=&quot;https://t.co/MLWJnd5lEJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MLWJnd5lEJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/felixleezd/status/1983202401898377287&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;felixleezd&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;BRAINDUMP ON VIRAL LOOPS &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#2&quot;&gt;#2&lt;/a&gt;&lt;br /&gt;
(posted recently about the science of viral loops from the Web 2.0 days -- see replies for the first post)&lt;/p&gt;
&lt;p&gt;You&#39;ll often notice that very viral products tend to fall into one of two buckets:&lt;/p&gt;
&lt;p&gt;Category 1:&lt;br /&gt;
very simple apps that do one thing, and that one thing is highly shareable or pushes out a lot of invites. Overnight successes. (think gen AI creative tools, but also Instagram/YouTube back in the day)&lt;/p&gt;
&lt;p&gt;Category 2:&lt;br /&gt;
highly sticky products with deep functionality, and some sharing capability -- tends to grow slowly, but consistently. (think Figma, Slack, early Facebook, etc)&lt;/p&gt;
&lt;p&gt;These two types of loops are very different.&lt;/p&gt;
&lt;p&gt;Apps in category 1 have tight, simple viral loops with high conversions at every step, so that there&#39;s almost nothing to do in the app other than creating viral content. The successful version of this is something like Instagram in its initial form with photo filters and sharing to Facebook, and not much else. The spammy bad version of this includes the litany of quiz apps and anonymous/secret apps that failed over the years. However, they have a huge advantage of being easy to create, and often in the early days of a viral platform, these are often the most successful ones.&lt;/p&gt;
&lt;p&gt;The second category of apps ends up being complex products to build with high retention and a little bit of sharing functionality. The plus with these is that every time they acquire a user, they&#39;re very sticky, and so, if you put the sharing functionality in front of users over a long period of time, eventually the viral factor will add up. However the growth doesn&#39;t look quite as explosive as category one.&lt;/p&gt;
&lt;p&gt;This type of loop is interesting to examine in the current era of AI apps because they days have viral loops very similar to Instagram, YouTube -- category 1. They have some of the same strengths (simple, high growth) but also some of the same weaknesses (spiky, low aggregate user retention). Maybe this is history repeating itself?&lt;/p&gt;
&lt;p&gt;Viral content creation loops, step by step&lt;br /&gt;
These types of simple content creation loops work like this:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;you see something cool online&lt;/li&gt;
&lt;li&gt;then you watch&lt;/li&gt;
&lt;li&gt;click a link back to the creation tool&lt;/li&gt;
&lt;li&gt;then you try out the tool yourself. Cool!&lt;/li&gt;
&lt;li&gt;you share it on social media (or chat or whatever)&lt;/li&gt;
&lt;li&gt;more people see it&lt;br /&gt;
... and the loop repeats&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I&#39;m describing this very generically because you can imagine this being a video hosting service like YouTube, or it could be a cool photo with photo filters, or it could be an anime-style profile photo, or an AI-generated video with your friend&#39;s face in it. In any of these cases, ultimately that takes advantage of the psychology of being creative. That is, after you create something, you want to share it with other people.&lt;/p&gt;
&lt;p&gt;This type of loop is easy to understand, but it&#39;s not just qualitative. You can quantify it too. Just break down each of the steps into percentages. For example, after someone views a video, there will be a clickthrough rate on the percentage of people end up clicking to your website. Then, after they go through the website, you&#39;ll see what percentage end up creating content themselves. In fact, there are drop-offs at every single stage of this except for one stage: once you share it on social media or messaging, how many people end up actually seeing the whole thing. You might visualize the whole thing like this:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;you see something cool online&lt;/li&gt;
&lt;li&gt;then you watch (50%)&lt;/li&gt;
&lt;li&gt;click a link back to the creation tool (10%)&lt;/li&gt;
&lt;li&gt;then you try out the tool yourself. Cool! (20%)&lt;/li&gt;
&lt;li&gt;you share it (50%)&lt;/li&gt;
&lt;li&gt;more people see it (X people see it)&lt;br /&gt;
... and the loop repeats&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The basic math on this viral loop is that if 50% * 50% * 20% * X &amp;gt; 1, then the loop will go viral. Of course this is hard because the first few terms together multiply to 0.005, so you&#39;d need at least 200+ people to see it to go viral. But all of these numbers are highly sensitive.&lt;/p&gt;
&lt;p&gt;When these loops work, they are magic. But funny enough, when a product is only slightly viral, you can barely tell. If you are attracting 100 users/day based on organic word of mouth, and you have a viral factor of 0.1, then the multiplier effect is only 1.11x. So your 100 users end up inviting 10 friends who invite 1 more, so that&#39;s only a small bump. Can you really tell a small bump like that if your organic signups go up and down 10% each day as well? Not really. You really need high viral factors, like &amp;gt;0.5 to feel the difference. At 0.5, then 100 users will sign up 50 that will sign up 25, and so on, and that gets you a 2x boost. Now we&#39;re cooking! This ends up being valuable because it means whatever you are spending on ads, you get 1 user free for each one that you buy. So even if you&#39;re not viral, it&#39;s helpful.&lt;/p&gt;
&lt;p&gt;You can see what the multiplier effect is at different viral factors:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;viral factor of 0.1 is a multiplier of 1.11x&lt;/li&gt;
&lt;li&gt;0.25: 1.33x&lt;/li&gt;
&lt;li&gt;0.5: 2x&lt;/li&gt;
&lt;li&gt;0.75: 4x&lt;/li&gt;
&lt;li&gt;0.9: 10x&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For the nerds, the math here is that the infinite expansion of gen 1 inviting gen 2 inviting gen 3 etc is 1/(1-v) where v is the viral factor. So if you stick 0.5 into that, you get 2x, which tells you that if you sign up 100 users with a viral factor of 0.5, you&#39;ll end up with 200 total at the end -- aka 100 are free viral users.&lt;/p&gt;
&lt;p&gt;As a result of the above, you are very much incentivized to get your viral factor above 0.5. Everything underneath that number almost isn&#39;t worth it. Thus, building your app to be highly shareable, very simple, such that there&#39;s almost nothing to do besides creating+sharing, is a clear way to go about it.&lt;/p&gt;
&lt;p&gt;And it can be glorious when it works. But we&#39;ve seen that there&#39;s often spikes. One day it&#39;s trending on social, the next day your traffic has crashed. (Let&#39;s hope you pushed enough people through a subscription flow in the meantime, so that at least your ARR is sticky!)&lt;/p&gt;
&lt;p&gt;Why the numbers go down over time&lt;br /&gt;
The natural direction for these forms of viral loops is that they degrade in performance over time. There&#39;s a bunch of reasons:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;novelty effect creates higher metrics early, worse metrics late&lt;/li&gt;
&lt;li&gt;market saturation is inevitable&lt;/li&gt;
&lt;li&gt;virality runs on pre-existing platforms, and the platforms might get mad&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There&#39;s just a novelty effect. When there&#39;s a new class of products like content creation tools with generative AI, users tend to respond to them at very high rates of adoption. A higher percentage want to watch them, a higher percentage want to try them more. And when they&#39;re shared, a higher number of people want or are receptive to seeing the content. We saw this in the early days of 2D image generative AI where people would share amazing AI photos (even when people had six fingers). But when was the last time you shared a 2D image generated by AI? The novelty is worn off, and so you need a much higher bar before you&#39;ll engage in that same behavior. (I won&#39;t rehash The Law of Shitty Clickthroughs here, but it&#39;s all the same idea)&lt;/p&gt;
&lt;p&gt;And of course, as the viral loop becomes more successful, it may burn through the entire market of target users and the saturation rates will put pressure on all of these metrics again decreasing viral factor. At the beginning of a loop&#39;s life, the entire market is addressable, so if you are inviting 10 people into the app all 10 are valid targets. But if you&#39;ve saturated your network, maybe out of the top 10 people you&#39;d invite, 5 people have already joined, so that only the 5 are valid, which drives down your viral factor by half. And these final users tend to be lower quality as well, since they are late adopters. Back in the email invite loop days, you would find that if people imported their email addressbooks, you might initially get ~200 contacts out of it. If you emailed them, you might have like a 10-15% open rate, and a 5% clickthrough rate. But as your product grew to many tens of millions of users, then peoples&#39; contacts typically got smaller -- eventually 150 then 100 -- simply because you were reaching into the edges of the global social graph. Popular, well-connected people tended to be onboarded first and then by the end you were bringing on the introverts, late adopters, and luddites :) Not only are they less viral, but their usage/engagement tended to be that much worse.&lt;/p&gt;
&lt;p&gt;Every viral loop runs on a pre-existing platform. Email invites run on email. Instagram&#39;s early sharing ran on the Facebook platform. Today&#39;s generative AI video apps publish content to YouTube/Tiktok/social. So if it turns out that people are sharing a lot of these kinds of videos with certain watermarks and link backs to the creation tool, and eventually the video platform that you&#39;re publishing on doesn&#39;t like this, one of these conversion numbers might drop really, really low. And then your viral factor might go from being over 1 to being under 1, and the whole thing will decelerate. The platforms often regulate this behavior tightly because they are themselves sometimes building competitive solutions, or they don&#39;t want their platform taken over. (Just read about Zynga/Facebook platform wars back during the Web 2.0 days)&lt;/p&gt;
&lt;p&gt;The weaknesses of hypersimple apps&lt;br /&gt;
Even given these factors, the hypersimple hyperviral Category 1 products can win. I think of YouTube and Instagram as examples, where at the end of the day the entire app can be described with 3-4 screens of UI. Of course in subsequent years a lot has been built out, but the simple core is still there. It turns out the minimum product to generate a ton of retention is just a few bits of UI after all, and the network effects of having zillions of pieces of content means that a small app with a deep content base can remain endlessly engaging. This is sort of the magic of networked products like messaging apps, UGC, social networks, and so on.&lt;/p&gt;
&lt;p&gt;However, after seeing lots of spiky new apps launching and crashing over time, I&#39;d argue that this is actually the exception. Most of the time, highly simplified apps just don&#39;t have the depth of engagement to drive retention over a long period of time. People often talk about D30 retention, but what they really care about is D365 retention. You need very long term engagement to build a billion dollar company, and simple apps usually don&#39;t have it.&lt;/p&gt;
&lt;p&gt;--&lt;br /&gt;
ok -- will braindump on the category 2 highly retentive more complex apps in my next post :) Much more to say. &lt;a href=&quot;https://twitter.com/andrewchen/status/1983213389011923371&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andrewchen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Early feedback is usually better than late criticism.&lt;/p&gt;
&lt;p&gt;Delaying the conversation or stringing someone along with indirect feedback won&#39;t make them feel better once the real issue is finally addressed.&lt;/p&gt;
&lt;p&gt;Nobody likes being turned down, but everyone appreciates clarity. &lt;a href=&quot;https://twitter.com/JamesClear/status/1983213923110449312&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;JamesClear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Andrej Karpathy’s 3 learning rules explain why he’s built half the future &lt;a href=&quot;https://t.co/TWK4CdJqSj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/TWK4CdJqSj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/neatprompts/status/1983444203289051637&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;neatprompts&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Often we say: “Get more done, in less time.”&lt;/p&gt;
&lt;p&gt;Think instead about how to: “Get only the important things done, in this time.&amp;quot;&lt;/p&gt;
&lt;p&gt;Starting with: What are the most important things?  Are you sure? &lt;a href=&quot;https://twitter.com/asmartbear/status/1983587387226698053&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Blank explains the Lean Startup methodology&lt;/p&gt;
&lt;p&gt;Steve Blank helped pioneer the Lean Startup Methodology. In the clip below, he explains that over the course of building eight companies, no business plan survived first contact with customers:&lt;/p&gt;
&lt;p&gt;“Startups are not smaller versions of large companies. Large companies execute known business models. Startups search for unknown business models… And the mistake we were making as entrepreneurs was assuming that everything we wrote in [a business plan] somehow magically translated into facts, when all we had were a series of untested hypotheses.”&lt;/p&gt;
&lt;p&gt;As Steve explains, the key for startups is to focus on risk reduction in the early stages by identifying your assumptions and treating them as hypotheses you need to test. The most common mistake very bright founders make is believing they understand the problem on day 1, and as a result, just going and building the solution. But Steve has learned from experience:&lt;/p&gt;
&lt;p&gt;“As smart as you are, there is no way you’re smarter than the collective intelligence of your potential customers.”&lt;/p&gt;
&lt;p&gt;To find product/market fit, you need to “get the heck outside”, talk to your customers, and test your hypotheses. Who are they? What are you building for them? What are their needs? What jobs do they want to get done? What are their pains? How are you going to make money?&lt;/p&gt;
&lt;p&gt;“And by testing, I don’t just mean saying ‘here’s a product, do you want to buy it?’ That’s selling. I mean getting out and understanding deeply what are the customer problems, what are their needs, and what kind of solution might actually solve them?”&lt;/p&gt;
&lt;p&gt;Alter your hypotheses with the insights from these conversations, and then test them again with your product. You want to build your product incrementally and iteratively—hence the term “Minimum Viable Product”—continually interacting with your customers to understand if you are on the right track.&lt;/p&gt;
&lt;p&gt;Video source: @ECorner (2016) &lt;a href=&quot;https://twitter.com/StartupArchive_/status/1983926974163628367&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;StartupArchive_&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Say something true, in an interesting way. &lt;a href=&quot;https://twitter.com/naval/status/1985302992036430044&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What movie caused you to have a &amp;quot;WTF did I just watch?&amp;quot; moment after viewing? &lt;a href=&quot;https://twitter.com/TheCinesthetic/status/1985429271330914577&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TheCinesthetic&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;dear founders,&lt;/p&gt;
&lt;p&gt;build like the clock’s running out. the window is open but it won’t stay. for the first time in history, you have free distribution from social platforms and infinite leverage from AI tools. you can reach millions without permission.&lt;/p&gt;
&lt;p&gt;the internet is handing out unfair advantages to anyone bold enough to use them so...&lt;/p&gt;
&lt;p&gt;ship before you understand it. clarity comes from commits. half your roadmap is ego, delete it. launch &amp;quot;ugly&amp;quot;. talk to users every day. build what you wish existed. best ideas are the most obvious painful. go niche. no, go superniche. vertical is your moat.&lt;/p&gt;
&lt;p&gt;clarity comes from commits. half your roadmap might be ego, delete it. make ugly things until they work. share prototypes that break.&lt;/p&gt;
&lt;p&gt;kill what doesn’t grow. use AI as leverage, not decoration. test ten things before breakfast. delete your roadmap. double down on what works. design for clarity, not cleverness. brand before code. write daily. post your lessons.&lt;/p&gt;
&lt;p&gt;find your first hundred users manually. distribution is the new product. attention is the new funding. taste is the new code. build small cults. scale later. automate boring things. keep the human parts human. study why things spread. study why things die.&lt;/p&gt;
&lt;p&gt;pricing is positioning. aesthetics are trust. make people feel something. ignore haters. build in weird corners of the internet. break things publicly. pivot loudly. consistency compounds. only raise VC if you dream of going IPO one day. otherwise, cash-flow is your BFF.&lt;/p&gt;
&lt;p&gt;your network is distribution. your story is marketing. your design is psychology. ship like it’s day one. iterate like you’re behind. stay obsessed. learn faster. think longer. risk embarrassment. make noise. build the thing that keeps you up at night. money follows obsession. stay in motion. stay loud. stay building. distribution is an art form now.&lt;/p&gt;
&lt;p&gt;AI makes it easy to make things; the hard part is making things that matter. build like the world’s ending in a year but your idea has to outlive it&lt;/p&gt;
&lt;p&gt;we’re living in a window of maximum leverage and minimum permission&lt;/p&gt;
&lt;p&gt;im rooting for you.&lt;/p&gt;
&lt;p&gt;best,&lt;/p&gt;
&lt;p&gt;greg isenberg&lt;/p&gt;
&lt;p&gt;just another founder rooting for you &lt;a href=&quot;https://twitter.com/gregisenberg/status/1985518437024604390&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gregisenberg&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Vercel CEO @rauchg shared how to build a $9.3B company from 0. &lt;a href=&quot;https://t.co/E7fzGInTXy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/E7fzGInTXy&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Thomas_jebarsan/status/1985545034322870614&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Thomas_jebarsan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;By the way, what have you done that&#39;s so great? Do you create anything, or just criticize others work and belittle their motivations?&amp;quot;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Steve Jobs on a Critic &lt;a href=&quot;https://t.co/PwyxECfPFg&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PwyxECfPFg&lt;/a&gt; &lt;a href=&quot;https://twitter.com/BenWilsonTweets/status/1985695012827681095&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;BenWilsonTweets&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;pov: you&#39;re selling to the wrong audience&lt;/p&gt;
&lt;p&gt;don&#39;t do this&lt;/p&gt;
&lt;p&gt;also don&#39;t listen to people who prefer complexity over simplicity&lt;/p&gt;
&lt;p&gt;they are almost always wrong &lt;a href=&quot;https://t.co/S6hncNLXcj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/S6hncNLXcj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/weswinder/status/1985724578455265581&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;weswinder&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@TheCinesthetic This man&#39;s fate in A House of Dynamite was shocking to me. I audibly gasped. &lt;a href=&quot;https://t.co/7LHyAkfMkj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/7LHyAkfMkj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/goodthink1984/status/1985726212250214785&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;goodthink1984&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I do an exercise called “fear-setting” at least once a quarter, often once a month. It has produced my biggest business and personal successes, as well as repeatedly helped me to avoid catastrophic mistakes. &lt;a href=&quot;https://twitter.com/tferriss/status/1985732685063471130&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@tferriss TLDR of fear setting:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Define the nightmare&lt;/li&gt;
&lt;li&gt;List how to prevent it&lt;/li&gt;
&lt;li&gt;Plan how to repair it&lt;/li&gt;
&lt;li&gt;List the likely upside&lt;/li&gt;
&lt;li&gt;Price the cost of inaction&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Decide and take one step this week &lt;a href=&quot;https://twitter.com/TomHughesx/status/1985741019187724603&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TomHughesx&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone’s wrong about what a CEO actually does&lt;/p&gt;
&lt;p&gt;It’s not product. It’s not marketing. It’s not vision boards&lt;/p&gt;
&lt;p&gt;It’s just 5 things:&lt;/p&gt;
&lt;p&gt;• Hire/Fire (80% of the job)&lt;br /&gt;
• Pick one direction, say no to everything else&lt;br /&gt;
• Build systems so you’re not needed&lt;br /&gt;
• Keep stretching your psychology&lt;br /&gt;
• Don’t run out of money (most imp)&lt;/p&gt;
&lt;p&gt;Miss one = game over &lt;a href=&quot;https://twitter.com/aymanalabdul/status/1985858354846318817&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aymanalabdul&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/ODG9bbhvfQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ODG9bbhvfQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/leantolearn/status/1986119072887808481&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;leantolearn&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Notice how many of them are about speed (of team and of product). &lt;a href=&quot;https://twitter.com/asmartbear/status/1986158736730419394&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;asmartbear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;THE best onboarding you will ever experience&lt;/p&gt;
&lt;p&gt;11/10 &lt;a href=&quot;https://t.co/6O6BpBulHe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6O6BpBulHe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/dudufolio/status/1986167414917128682&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;dudufolio&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As far as we can discern, the sole purpose of human existence is to kindle a light of meaning in the darkness of mere being. &lt;a href=&quot;https://twitter.com/QuoteJung/status/1986337800539529549&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The modern mental illness is anxiety.&lt;/p&gt;
&lt;p&gt;The symptom is inability to fall asleep.&lt;/p&gt;
&lt;p&gt;The evidence is pills, meditation apps, opioids, and sleep trackers.&lt;/p&gt;
&lt;p&gt;The causes are oversocialization and overstimulation.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1986343796993364243&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When guys with smartphones and money in the bank tell me how hard their life is&lt;/p&gt;
&lt;p&gt;I show them this &lt;a href=&quot;https://t.co/0jtc1gPhYf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/0jtc1gPhYf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/LifeMathMoney/status/1986396074207269237&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LifeMathMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You won’t have inner peace until you give up your war against the world.&lt;/p&gt;
&lt;p&gt;@naval &lt;a href=&quot;https://twitter.com/NavalismHQ/status/1986496553096450498&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;NavalismHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ben Horowitz literally explains how he differentiates between mediocre CEOs &amp;amp; great CEOs. &lt;a href=&quot;https://t.co/LPnf7TTXnv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LPnf7TTXnv&lt;/a&gt; &lt;a href=&quot;https://twitter.com/yasminekho/status/1986788259226386768&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;yasminekho&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Friedrich Nietzsche warns you, saying:&lt;/p&gt;
&lt;p&gt;&amp;quot;Do not fall victim to excessive idealism and believe that telling the truth will bring you closer to people. People love and reward those who can soothe them with illusions. Since ancient times, humanity has only punished those who speak the truth. If you want to stay among people, share their illusions. The truth is spoken only by those who are ready to depart.&amp;quot;&lt;/p&gt;
&lt;p&gt;Good night &lt;a href=&quot;https://twitter.com/Pergament_F/status/1986833477400932692&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Pergament_F&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This guy dropped the coldest life advice &lt;a href=&quot;https://t.co/fXO7y68ZaQ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/fXO7y68ZaQ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aakashg0/status/1987007698668503537&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aakashg0&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Carl Jung Said; &lt;a href=&quot;https://t.co/WPL3Q92VKN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/WPL3Q92VKN&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Lovandfear/status/1987490062003785900&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Lovandfear&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Life isn&#39;t about finding yourself. Life is about creating yourself.&amp;quot; – George Bernard Shaw &lt;a href=&quot;https://t.co/Pbwhjdby7L&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Pbwhjdby7L&lt;/a&gt; &lt;a href=&quot;https://twitter.com/visualizevalue/status/1987852784343843130&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;visualizevalue&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For years @patrickc + @collision told me &amp;quot;You should add @link, it&#39;ll increase your conversion rate&amp;quot;&lt;/p&gt;
&lt;p&gt;I always figured Link was only useful for consumer-y impulse buys, not Serious Business Stuff™️&lt;/p&gt;
&lt;p&gt;But...TL;DR: we added @link and it increased our conversion rate. Lesson learned &lt;a href=&quot;https://twitter.com/destraynor/status/1987936013524549986&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;destraynor&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Find the simplest thing that works. &lt;a href=&quot;https://t.co/im3uFKTB4N&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/im3uFKTB4N&lt;/a&gt; &lt;a href=&quot;https://twitter.com/naval/status/1988275749607067992&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;naval&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@peterrhague Often problems are an excuse to talk, interact and connect. &lt;a href=&quot;https://t.co/gY8qQVeVKM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/gY8qQVeVKM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/TinkeredThinker/status/1988588463516680621&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;TinkeredThinker&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Steve Jobs literally explains why most people never succeed in life &lt;a href=&quot;https://t.co/qK72ZdRXBA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qK72ZdRXBA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/neatprompts/status/1988826923926188209&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;neatprompts&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/HBpbh3B0fY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HBpbh3B0fY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SucceededMind/status/1989634512612188543&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SucceededMind&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One of my favorite lessons I’ve learnt from working with smart people:&lt;/p&gt;
&lt;p&gt;Action produces information. If you’re unsure of what to do, just do anything, even if it’s the wrong thing. This will give you information about what you should actually be doing.&lt;/p&gt;
&lt;p&gt;Sounds simple on the surface - the hard part is making it part of your every day working process. &lt;a href=&quot;https://twitter.com/brian_armstrong/status/1990073384022020290&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;brian_armstrong&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This is how you hire an org of superstars. People first, roles/process second.&lt;/p&gt;
&lt;p&gt;There are many ways to put the puzzle together, but you want to prioritize top talent above all. It’s easier to deal with the chaos of non-standardized processes than it is to find &amp;amp; convince top talent.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;From @zebriez’s excellent Colossus piece, “Inside Cursor” &lt;a href=&quot;https://twitter.com/eriktorenberg/status/1990129093548106135&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;eriktorenberg&lt;/a&gt; [type:: tweet]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/qxnG8vVPA5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qxnG8vVPA5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/MindWisdomMoney/status/1990179504619237739&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;MindWisdomMoney&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;talk again after $100 MRR &lt;a href=&quot;https://t.co/xuwuuQNe6C&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xuwuuQNe6C&lt;/a&gt; &lt;a href=&quot;https://twitter.com/muratworks/status/1990523324338934255&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;muratworks&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The most frustrating and lonely thing in the world is to be able to see something so clearly and beautifully in your mind, but somehow fail to get other people to see what you see. &lt;a href=&quot;https://twitter.com/joulee/status/1990542759531590120&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;joulee&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Underrated signs of a high performer:&lt;/p&gt;
&lt;p&gt;• They hate small talk.&lt;br /&gt;
• Are not okay with wasting your time.&lt;br /&gt;
• Do what they say they’re going to do.&lt;br /&gt;
• Do it with urgency.&lt;br /&gt;
• Are obsessed, not just interested.&lt;/p&gt;
&lt;p&gt;What am I missing? &lt;a href=&quot;https://t.co/l2z4USlFOy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/l2z4USlFOy&lt;/a&gt; &lt;a href=&quot;https://twitter.com/Codie_Sanchez/status/1990563447499633125&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Codie_Sanchez&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rare footage of Jordan Belfort, the real Wolf of Wallstreet closing a deal live &lt;a href=&quot;https://t.co/z3Vn7VnPHU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/z3Vn7VnPHU&lt;/a&gt; &lt;a href=&quot;https://twitter.com/historyinmemes/status/1990753603817255110&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;historyinmemes&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Everything that irritates us about others can lead us to an understanding of ourselves.&amp;quot; - Carl Jung&lt;/p&gt;
&lt;p&gt;Quick question: What quality in others triggers your strongest judgment? &lt;a href=&quot;https://twitter.com/QuoteJung/status/1990782559773491541&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It wasn’t genes.&lt;/p&gt;
&lt;p&gt;It wasn’t money.&lt;/p&gt;
&lt;p&gt;It wasn’t even habits.&lt;/p&gt;
&lt;p&gt;The single biggest predictor?&lt;/p&gt;
&lt;p&gt;Relationships. &lt;a href=&quot;https://twitter.com/DanielPink/status/1990790876487192578&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;DanielPink&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Based on everything I’ve seen, a simple recipe can work: focus on what’s in front of you, design great days to create a great life, and try not to make the same mistake twice. That’s it. If you really want extra credit, try not to be a dick, and you’ll be a Voltron-level superstar.&lt;/p&gt;
&lt;p&gt;The secret to winning any game lies in not trying too hard.&lt;/p&gt;
&lt;p&gt;Feeling as though you are trying too hard indicates that your priorities, technique, focus, or mindfulness is off. Take it as a cue to reset, not to double down. And take comfort in the fact that, whenever in doubt, the answer is probably hidden in plain sight.&lt;/p&gt;
&lt;p&gt;What would this look like if it were easy?&lt;/p&gt;
&lt;p&gt;In a world where nobody really knows anything, you have the incredible freedom to continually reinvent yourself and forge new paths, no matter how strange.&lt;/p&gt;
&lt;p&gt;Embrace your weird self.&lt;/p&gt;
&lt;p&gt;There is no one right answer . . . only better questions. &lt;a href=&quot;https://twitter.com/tferriss/status/1990889554489016406&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;just so we&#39;re clear:&lt;/p&gt;
&lt;p&gt;Antigravity is a Windsurf wrapper&lt;/p&gt;
&lt;p&gt;Windsurf is a VSCode wrapper&lt;/p&gt;
&lt;p&gt;VSCode is an Electron wrapper&lt;/p&gt;
&lt;p&gt;Electron is a Chromium wrapper&lt;/p&gt;
&lt;p&gt;Chromium is a C++ wrapper&lt;/p&gt;
&lt;p&gt;C++ is a C wrapper&lt;/p&gt;
&lt;p&gt;C is an Assembly wrapper&lt;/p&gt;
&lt;p&gt;Assembly is a Machine Code wrapper&lt;/p&gt;
&lt;p&gt;Machine Code is a Binary wrapper&lt;/p&gt;
&lt;p&gt;Binary is a Physics wrapper&lt;/p&gt;
&lt;p&gt;Physics is a Math wrapper&lt;/p&gt;
&lt;p&gt;Math is a Logic wrapper&lt;/p&gt;
&lt;p&gt;Logic is a Philosophy wrapper&lt;/p&gt;
&lt;p&gt;Philosophy is a Humans wrapper&lt;/p&gt;
&lt;p&gt;Humans are a Carbon wrapper&lt;/p&gt;
&lt;p&gt;Carbon is a Star-forged-matter wrapper&lt;/p&gt;
&lt;p&gt;Stars are a Gravity wrapper&lt;/p&gt;
&lt;p&gt;Gravity is… definitely not an Antigravity wrapper &lt;a href=&quot;https://twitter.com/aidenybai/status/1990960782356717822&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aidenybai&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There&#39;s a blandness to contemporary architecture. Sure, it can be sleek and impressive, but so much of it is ultimately boring.&lt;/p&gt;
&lt;p&gt;Whenever I bring this up, people default to the same defense: “Well, interesting architecture is expensive.” But that argument breaks down when you watch shows like Selling Sunset, where even $40 million homes are covered with the same white walls, right angles, marble islands, grey-scale colors, and a lack of cornices or any ornamentation whatsoever.&lt;/p&gt;
&lt;p&gt;All this to say that the lack of character in contemporary design isn&#39;t ultimately a cost problem. If it were, the world&#39;s wealthiest people wouldn&#39;t end up in interchangeable white boxes.&lt;/p&gt;
&lt;p&gt;Many people prefer this dominant style. And that&#39;s fine! My problem isn&#39;t with the style itself, but with the fact that it&#39;s increasingly the only option available. A thriving civilization should have an expansion of offerings, not a contraction of them. But the market has converged on a single aesthetic.&lt;/p&gt;
&lt;p&gt;Just recently, a New York real estate agent said to me: &amp;quot;If you want an apartment with character, you&#39;re going to have to look for one built before World War II.&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;quot;So you&#39;re saying that almost nothing built in the past 80 years has character?&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;quot;Yep, yep... that&#39;s right.&amp;quot; &lt;a href=&quot;https://twitter.com/david_perell/status/1990996476315496598&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;david_perell&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://t.co/c75s9UkKlU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/c75s9UkKlU&lt;/a&gt; &lt;a href=&quot;https://twitter.com/QuoteJung/status/1991012465727975926&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;QuoteJung&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Naval Ravikant revealed the trait that creates more success than intelligence ever could: &lt;a href=&quot;https://t.co/k0Lzmy8EH5&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/k0Lzmy8EH5&lt;/a&gt; &lt;a href=&quot;https://twitter.com/yasminekho/status/1991136910832767387&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;yasminekho&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Everyone needs to hear this… &lt;a href=&quot;https://t.co/lewSGW4anJ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/lewSGW4anJ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/SahilBloom/status/1991185230170820634&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;SahilBloom&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I can&#39;t believe Gemini 3.0 made this website&lt;/p&gt;
&lt;p&gt;It&#39;s so over for designers &amp;amp; devs &lt;a href=&quot;https://t.co/74eghyZnYj&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/74eghyZnYj&lt;/a&gt; &lt;a href=&quot;https://twitter.com/axeldesigns/status/1991195663485329408&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;axeldesigns&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A reminder from Marcus Aurelius: &lt;a href=&quot;https://t.co/MvtE2GTSmA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MvtE2GTSmA&lt;/a&gt; &lt;a href=&quot;https://twitter.com/readswithravi/status/1991276298375950707&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;readswithravi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;High agency is often mistaken for speed. People assume it belongs to the ones who decide quickly and move without hesitation.&lt;/p&gt;
&lt;p&gt;That version looks impressive, but it is not what actually drives results. The real marker of high agency is quieter. It appears the moment someone stops protecting their assumptions and puts them in contact with something that can push back.&lt;/p&gt;
&lt;p&gt;Most people hesitate because they operate too far from the facts that matter. They think through scenarios, build arguments, weigh options, and wait for a feeling of certainty. They want clarity before they act. They want proof without the discomfort of exposing their thinking. They want to be right before the world has a chance to disagree.&lt;/p&gt;
&lt;p&gt;High-agency people do something different. They shorten the time between an idea and its first collision with the real world. They build the smallest version that can reveal a truth. They ask the customer before polishing the story. They test behavior before optimizing the process. They trade speculation for evidence, not because they enjoy being wrong, but because every collision with reality sharpens their understanding of what actually works.&lt;/p&gt;
&lt;p&gt;That shift changes their relationship with learning. Mistakes are not signs of incompetence. They are the natural cost of moving forward. The most valuable insights rarely come from perfect planning. They come from constraints, surprising reactions, unexpected metric shifts, and outcomes no one predicted.&lt;/p&gt;
&lt;p&gt;This behavior compounds. Every early interaction with reality creates a faster cycle of adjustment. Every adjustment increases clarity. Over time, decisions feel fast because dozens of small signals have already done the work. To an outsider it looks like intuition. In practice, it is earned through repeated exposure to the world.&lt;/p&gt;
&lt;p&gt;High agency is trained. It builds through the choices you make when uncertainty shows up. It strengthens every time you expose your thinking to something that can reshape it.&lt;/p&gt;
&lt;p&gt;Speed shows up because the environment favors teams that gather evidence quickly and adjust without ceremony. Their focus is on contact with reality. They waste less time debating ideas that have not been tested. They look for the next piece of information that moves the work forward.&lt;/p&gt;
&lt;p&gt;Founders who operate this way avoid the trap of endless planning. Product managers avoid the trap of presenting polished ideas that have never touched a user’s world. Engineers avoid the trap of optimizing solutions before validating the problem. Teams shaped by this habit reduce the distance between ideas and truth.&lt;/p&gt;
&lt;p&gt;You take an idea, remove the parts that do not matter, and place the remaining piece somewhere it can be disproven. You let the result inform the next version. You let the world reveal the gap between what you believe and what is true.&lt;/p&gt;
&lt;p&gt;The discomfort never disappears. It becomes familiar. You learn to recognize the moment when you are delaying the collision because the idea feels fragile. That moment is the signal. High-agency people move toward it. Everyone else moves away.&lt;/p&gt;
&lt;p&gt;If you want to raise the agency level of a team, focus on faster confrontations with reality. Encourage smaller tests. Encourage questions that can be answered in days instead of weeks. Encourage conversations with customers before the work becomes precious. Encourage an environment where truth carries more weight than confidence.&lt;/p&gt;
&lt;p&gt;You become high agency by removing the distance between what you believe and what the world is willing to teach you. &lt;a href=&quot;https://twitter.com/hnshah/status/1991276597501128758&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;hnshah&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;These guys managed to land a $1.25B valuation with 100 employees.&lt;/p&gt;
&lt;p&gt;This is the story of Linear: &lt;a href=&quot;https://t.co/EzFVwHNXlX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/EzFVwHNXlX&lt;/a&gt; &lt;a href=&quot;https://twitter.com/aakashg0/status/1991384767821148593&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;aakashg0&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The real moats in 2025: specific workflows, proprietary data with real switching costs, distribution, and UX that makes AI disappear into the job-to-be-done.&lt;/p&gt;
&lt;p&gt;Simultaneously: we are early (only a % are using AI properly) so this is an amazing time to start a startup. &lt;a href=&quot;https://twitter.com/garrytan/status/1991508540494885374&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;garrytan&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nano Banana Pro is just batshit insane.. simply speechless.&lt;/p&gt;
&lt;p&gt;My latest essay converted into a professors lecture in one shot 📸 &lt;a href=&quot;https://t.co/d2GfAAsmrt&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/d2GfAAsmrt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/nikunj/status/1991550373249876286&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;nikunj&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Here&#39;s what our product can do&amp;quot; and &amp;quot;Here&#39;s what you can do with our product&amp;quot; sound similar, but they are completely different approaches. &lt;a href=&quot;https://twitter.com/jasonfried/status/400733165964099584&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonfried&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;CEO of @TimeCamp spent 10 hours to support customers in the last 30 days. Here&#39;s why he loves doing it &lt;a href=&quot;http://t.co/XeBD5hDzAk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;http://t.co/XeBD5hDzAk&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#CEOonSupport&quot;&gt;#CEOonSupport&lt;/a&gt; &lt;a href=&quot;https://twitter.com/freshdesk/status/456376827117076480&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;freshdesk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mam nowy film na playliście w @YouTube: Pierwszy krok startupu – &lt;a href=&quot;http://t.co/HaPlgpPjsO&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;http://t.co/HaPlgpPjsO&lt;/a&gt; &lt;a href=&quot;https://twitter.com/LukaszSolarski/status/465069198679343104&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LukaszSolarski&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ah I can&#39;t wait!✈️😍 &lt;a href=&quot;https://twitter.com/michalikmonika/status/465964294447050752&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;michalikmonika&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;The smarter you get the less you speak&amp;quot; - Arabic Proverb &lt;a href=&quot;https://twitter.com/ludwikcsiadlak/status/481398100909498368&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ludwikcsiadlak&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Last week I spoke at TEDx!:) Thx to @jaltucher ideas I spoke about not having home also. &lt;a href=&quot;https://twitter.com/marcinosman/status/487638278011883520&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;marcinosman&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;quot;Your time is much more valuable than money, and “no” [creates] time.&amp;quot; -James Altucher. Continued at &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#18&quot;&gt;#18&lt;/a&gt; here: &lt;a href=&quot;https://t.co/u3bNp7bCKZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/u3bNp7bCKZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/tferriss/status/487641268433215489&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;tferriss&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@SamuelHulick @bokardo @appcues guys timecamp has &amp;quot;quicbooks, ____, &amp;quot;QuickBooks, ...&amp;quot; &lt;a href=&quot;https://twitter.com/marshsutherland/status/517008375008464896&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;marshsutherland&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@krudnicki you&#39;ve been invited Kamil, if you like &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#startup&quot;&gt;#startup&lt;/a&gt;, feel free to share &lt;a href=&quot;http://t.co/2QTnzM9unX&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;http://t.co/2QTnzM9unX&lt;/a&gt; (: &lt;a href=&quot;http://t.co/EMHo2vLX4b&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;http://t.co/EMHo2vLX4b&lt;/a&gt; &lt;a href=&quot;https://twitter.com/LeonPals/status/568030735266938880&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;LeonPals&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;VC pitch tip &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#72&quot;&gt;#72&lt;/a&gt;: if VC is ex-founder, always pretend that you&#39;ve heard of their product.  Always. &lt;a href=&quot;http://t.co/AFXnsbInou&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;http://t.co/AFXnsbInou&lt;/a&gt; &lt;a href=&quot;https://twitter.com/jasonlk/status/645023140070879232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;jasonlk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;3 &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#tips&quot;&gt;#tips&lt;/a&gt; for &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#promoting&quot;&gt;#promoting&lt;/a&gt; your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#flipbook&quot;&gt;#flipbook&lt;/a&gt; &lt;a href=&quot;https://t.co/vooNOS72LG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/vooNOS72LG&lt;/a&gt; with @brand24 by @AndreiTiburca via @flipsnack &lt;a href=&quot;https://twitter.com/gloria_zk/status/766583137166102529&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;gloria_zk&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TimeCamp waits for your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#reviews&quot;&gt;#reviews&lt;/a&gt; on @Financesonline! Feel free to share your voice: &lt;a href=&quot;https://t.co/W7XQMV17Az&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/W7XQMV17Az&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tools&quot;&gt;#Tools&lt;/a&gt; &lt;a href=&quot;https://t.co/Frb5Ifdon0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Frb5Ifdon0&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/768443500916576256&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Thanks @dbiweb for mentioning us in 9 Apps to Improve &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; for &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SmallBusiness&quot;&gt;#SmallBusiness&lt;/a&gt; Owners! &lt;a href=&quot;https://t.co/sIuUuqgCc2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sIuUuqgCc2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/768700188164784128&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Make time tracking just happen with @TimeCamp and Zapier &lt;a href=&quot;https://t.co/Ble6z9RqNW&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Ble6z9RqNW&lt;/a&gt; &lt;a href=&quot;https://t.co/8RFxze8nR3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8RFxze8nR3&lt;/a&gt; &lt;a href=&quot;https://twitter.com/zapier/status/768841905195085824&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;zapier&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Log Every Minute Spent On Projects With TimeCamp via @Zapier &lt;a href=&quot;https://t.co/NEyn1JRmLo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/NEyn1JRmLo&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Automation&quot;&gt;#Automation&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ProjectManagement&quot;&gt;#ProjectManagement&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#GrowthHacking&quot;&gt;#GrowthHacking&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/769160773797048320&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Track time for @CapsuleCRM items with TimeCamp via @Zapier! &lt;a href=&quot;https://t.co/GFL4Smg5Hu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GFL4Smg5Hu&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SaaS&quot;&gt;#SaaS&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#GrowthHacking&quot;&gt;#GrowthHacking&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/769245376213909505&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@activecollab and @timecamp collaboration using &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#timetracking&quot;&gt;#timetracking&lt;/a&gt; &lt;a href=&quot;https://t.co/PS8ncUXAxT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/PS8ncUXAxT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/klewer8/status/769881555732955136&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;klewer8&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Top 10 Time Tracking Software for Linux &lt;a href=&quot;https://t.co/BGYMcI3wWK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/BGYMcI3wWK&lt;/a&gt; doesn&#39;t list the one we use at work... &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#gnu&quot;&gt;#gnu&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#linux&quot;&gt;#linux&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#freesw&quot;&gt;#freesw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/schestowitz/status/769946072332591104&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;schestowitz&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We&#39;re hiring! Check what TimeCamp can offer you: &lt;a href=&quot;https://t.co/IjRYalS9Wl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IjRYalS9Wl&lt;/a&gt;  &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Job&quot;&gt;#Job&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Career&quot;&gt;#Career&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Teamwork&quot;&gt;#Teamwork&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/770167529193046017&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;RT @timecamp: Track time for @CapsuleCRM items with TimeCamp via @Zapier! &lt;a href=&quot;https://t.co/VEXCit2cFP&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/VEXCit2cFP&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SaaS&quot;&gt;#SaaS&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#GrowthHacking&quot;&gt;#GrowthHacking&lt;/a&gt; &lt;a href=&quot;https://twitter.com/plime42/status/770237863703224320&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;plime42&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Time Tracking Matters: Integrate MeisterTask and @TimeCamp via &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Zapier&quot;&gt;#Zapier&lt;/a&gt;! &lt;a href=&quot;https://t.co/Hp5rqKnrFF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Hp5rqKnrFF&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Zap&quot;&gt;#Zap&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; &lt;a href=&quot;https://t.co/MNX4Cd69AT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MNX4Cd69AT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/meistertask/status/770537799644618753&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;meistertask&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;8 Remarkably Awesome &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tips&quot;&gt;#Tips&lt;/a&gt; on How to Become a Highly Productive Night Owl &lt;a href=&quot;https://t.co/R0g1yLJzki&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/R0g1yLJzki&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Lifestyle&quot;&gt;#Lifestyle&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Motivation&quot;&gt;#Motivation&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/770557036765519872&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;⚡⚡⚡ Brand24 FEATURE UPDATE: Number of Site Visits ⚡⚡⚡ &lt;a href=&quot;https://t.co/B5sabbZLOh&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/B5sabbZLOh&lt;/a&gt; &lt;a href=&quot;https://t.co/JMWGou67aI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/JMWGou67aI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/brand24/status/770595588714991616&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;brand24&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;One, Two, Three…Wait, what? 123 Top &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Influencers&quot;&gt;#Influencers&lt;/a&gt; in the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ProjectManagement&quot;&gt;#ProjectManagement&lt;/a&gt; Industry in 2016! &lt;a href=&quot;https://t.co/Mh0rgUvjAH&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Mh0rgUvjAH&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#tbt&quot;&gt;#tbt&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/771257099082792961&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How Can &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeTracking&quot;&gt;#TimeTracking&lt;/a&gt; Software Save Your Time? &lt;a href=&quot;https://t.co/j5mRuGr0s1&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/j5mRuGr0s1&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tips&quot;&gt;#Tips&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tools&quot;&gt;#Tools&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/771292474769825792&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Busy &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#entrepreneur&quot;&gt;#entrepreneur&lt;/a&gt;? Check tips shared by our CEO @krudnicki and other &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; experts on @Shopify! &lt;a href=&quot;https://t.co/sIXlqwc25K&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sIXlqwc25K&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#management&quot;&gt;#management&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/771376992411410432&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Employee &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Management&quot;&gt;#Management&lt;/a&gt; System – Expectations vs Reality! &lt;a href=&quot;https://t.co/HeNR8a8ppZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HeNR8a8ppZ&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Business&quot;&gt;#Business&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TeamManagement&quot;&gt;#TeamManagement&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/771627525420134401&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to Promote Your Shop Online? Follow These 5 Essential &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tips&quot;&gt;#Tips&lt;/a&gt;! &lt;a href=&quot;https://t.co/8jHhRFXU9V&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8jHhRFXU9V&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Ecommerce&quot;&gt;#Ecommerce&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#OnlineShopping&quot;&gt;#OnlineShopping&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Marketing&quot;&gt;#Marketing&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/773097960389349376&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;⏩ A Few Simple Tips On How To Increase Your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#YouTube&quot;&gt;#YouTube&lt;/a&gt; Popularity ⏩ &lt;a href=&quot;https://t.co/5nIebVrAZw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/5nIebVrAZw&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SocialMedia&quot;&gt;#SocialMedia&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Marketing&quot;&gt;#Marketing&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/773427625779945472&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How Can A Company &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Benefit&quot;&gt;#Benefit&lt;/a&gt; From Using TimeCamp? &lt;a href=&quot;https://t.co/ylwEIoqurk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ylwEIoqurk&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeTracking&quot;&gt;#TimeTracking&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Business&quot;&gt;#Business&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#GrowthHacking&quot;&gt;#GrowthHacking&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/778187032346656768&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;⚡⚡ The List of Top 20 &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ProjectManagement&quot;&gt;#ProjectManagement&lt;/a&gt; Software ⚡⚡ Find your perfect one! &lt;a href=&quot;https://t.co/6jXtwwxMOV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/6jXtwwxMOV&lt;/a&gt;  &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Business&quot;&gt;#Business&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tools&quot;&gt;#Tools&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PMP&quot;&gt;#PMP&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/778529296583389185&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Powerful &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tips&quot;&gt;#Tips&lt;/a&gt; and &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tools&quot;&gt;#Tools&lt;/a&gt; to Manage Time on &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SocialMedia&quot;&gt;#SocialMedia&lt;/a&gt; 👍 &lt;a href=&quot;https://t.co/IWDSRAmhy3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IWDSRAmhy3&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Management&quot;&gt;#Management&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Business&quot;&gt;#Business&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/779008498994675714&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Powerful Tips and Tools to Manage Time on &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SocialMedia&quot;&gt;#SocialMedia&lt;/a&gt; &lt;a href=&quot;https://t.co/IWDSRAmhy3&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/IWDSRAmhy3&lt;/a&gt; @buffer @smhackapp @TweetDeck @canva @piktochart @BuzzSumo &lt;a href=&quot;https://twitter.com/timecamp/status/779235718413611010&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do You Hate Filling Out the Invoices? Start Doing it With Joy Using the Right &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Software&quot;&gt;#Software&lt;/a&gt;! &lt;a href=&quot;https://t.co/3nST2Z1UO9&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3nST2Z1UO9&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Invoicing&quot;&gt;#Invoicing&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Accounting&quot;&gt;#Accounting&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Biz&quot;&gt;#Biz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/779259824353738752&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do you find managing your time as a &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#freelancer&quot;&gt;#freelancer&lt;/a&gt; a struggle? @timecamp blog has all the &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#lifehacks&quot;&gt;#lifehacks&lt;/a&gt; you&#39;ll ever need &lt;a href=&quot;https://t.co/zc5s7EeZx0&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zc5s7EeZx0&lt;/a&gt; &lt;a href=&quot;https://t.co/pVdbeZs9Xy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/pVdbeZs9Xy&lt;/a&gt; &lt;a href=&quot;https://twitter.com/briefyHQ/status/779297195430379521&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;briefyHQ&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How Can We Cope with the Negative Opinions about our Company in &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SocialMedia&quot;&gt;#SocialMedia&lt;/a&gt;? Guest Post by our CMO, @Klewer8! &lt;a href=&quot;https://t.co/Ne7kUU7Lfw&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Ne7kUU7Lfw&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/779576703475679232&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Great &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#business&quot;&gt;#business&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#workshop&quot;&gt;#workshop&lt;/a&gt; by @CramdenTECH where TimeCamp is included - develop your digital skills with best &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#tools&quot;&gt;#tools&lt;/a&gt;! &lt;a href=&quot;https://t.co/azkueoeBmh&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/azkueoeBmh&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/781400647606362112&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;⚡ Check what&#39;s offering TimeCamp and @SlackHQ integration! ⚡ &lt;a href=&quot;https://t.co/oLII3QBHvr&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/oLII3QBHvr&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tools&quot;&gt;#Tools&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Business&quot;&gt;#Business&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PM&quot;&gt;#PM&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/783190349233655808&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Stay &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Healthy&quot;&gt;#Healthy&lt;/a&gt; – Take care of your mind and body at the office! &lt;a href=&quot;https://t.co/iP2maEA2Eo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iP2maEA2Eo&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Fit&quot;&gt;#Fit&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Lifestyle&quot;&gt;#Lifestyle&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#MondayMotivation&quot;&gt;#MondayMotivation&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/785358294114328576&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Integrate your @GitLab with TimeCamp for Time Tracking &lt;a href=&quot;https://t.co/XcpDP1Dl1P&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/XcpDP1Dl1P&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Software&quot;&gt;#Software&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tools&quot;&gt;#Tools&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Code&quot;&gt;#Code&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Development&quot;&gt;#Development&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/786515947175550976&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Choose a &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ProjectManagement&quot;&gt;#ProjectManagement&lt;/a&gt; Methodology for You! 📚 &lt;a href=&quot;https://t.co/Or5nXrj8RA&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Or5nXrj8RA&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PMP&quot;&gt;#PMP&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Agile&quot;&gt;#Agile&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Scrum&quot;&gt;#Scrum&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/787921436425981953&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Take part in our unique &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#survey&quot;&gt;#survey&lt;/a&gt; about &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#creative&quot;&gt;#creative&lt;/a&gt; agencies practices! ✍ &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Marketing&quot;&gt;#Marketing&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Business&quot;&gt;#Business&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#GrowthHacking&quot;&gt;#GrowthHacking&lt;/a&gt; &lt;a href=&quot;https://t.co/15hlIspSpe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/15hlIspSpe&lt;/a&gt; &lt;a href=&quot;https://t.co/MpSVuOuU7O&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/MpSVuOuU7O&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/800972592651890689&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Role of &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Hashtags&quot;&gt;#Hashtags&lt;/a&gt; in Categorization of Information &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#CaseStudy&quot;&gt;#CaseStudy&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Marketing&quot;&gt;#Marketing&lt;/a&gt; &lt;a href=&quot;https://t.co/xRyAd4G1PK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xRyAd4G1PK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/804581720183947264&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A Simple Approach to Your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ContentMarketing&quot;&gt;#ContentMarketing&lt;/a&gt; Strategy ✍ &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SEO&quot;&gt;#SEO&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#GrowthHacking&quot;&gt;#GrowthHacking&lt;/a&gt; &lt;a href=&quot;https://t.co/zliM8N31Ca&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/zliM8N31Ca&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/807164417284706304&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Excellent &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ContentMarketing&quot;&gt;#ContentMarketing&lt;/a&gt; Campaigns – They Do It Well! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SocialMedia&quot;&gt;#SocialMedia&lt;/a&gt; @SamsungMobile @Redbull &lt;a href=&quot;https://t.co/rFOCXNdUao&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/rFOCXNdUao&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/808239180203651073&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Infographics&quot;&gt;#Infographics&lt;/a&gt; to Skyrocket Your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; in 2017! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#NewYearResolution&quot;&gt;#NewYearResolution&lt;/a&gt; &lt;a href=&quot;https://t.co/xnjC535yyu&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/xnjC535yyu&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/819578481608630273&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 Must-Watch @TEDTalks for Project Managers &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ProjectManagement&quot;&gt;#ProjectManagement&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Motivation&quot;&gt;#Motivation&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Music&quot;&gt;#Music&lt;/a&gt; &lt;a href=&quot;https://t.co/3FhVPDQiKL&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3FhVPDQiKL&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/822336135422681088&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Introducing New &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tool&quot;&gt;#Tool&lt;/a&gt;: Free Twitter &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Followers&quot;&gt;#Followers&lt;/a&gt; to Upgrade Your Account! &lt;a href=&quot;https://t.co/cFvq9TaaUk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/cFvq9TaaUk&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/823484715856523264&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;⚡ATTENTION⚡Join FREE &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Webinar&quot;&gt;#Webinar&lt;/a&gt;: &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeManagement&quot;&gt;#TimeManagement&lt;/a&gt; 101 hosted by our CEO @krudnicki! Waiting for you on 4th February! &lt;a href=&quot;https://t.co/b31cHvOGI8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/b31cHvOGI8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/824976296161705985&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;⚡ATTENTION⚡Join FREE &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Webinar&quot;&gt;#Webinar&lt;/a&gt;: &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeManagement&quot;&gt;#TimeManagement&lt;/a&gt; 101 hosted by our CEO @krudnicki! Waiting for you on 4th February! &lt;a href=&quot;https://t.co/b31cHvOGI8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/b31cHvOGI8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/826678604146864129&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;20 &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; Quotes to Get Super Motivated Right Now! 🔊 &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Motivation&quot;&gt;#Motivation&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Experts&quot;&gt;#Experts&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#WednesdayWisdom&quot;&gt;#WednesdayWisdom&lt;/a&gt; &lt;a href=&quot;https://t.co/8VG61SnuCI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/8VG61SnuCI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/826773120665141248&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Free &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Time&quot;&gt;#Time&lt;/a&gt; Management &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Webinar&quot;&gt;#Webinar&lt;/a&gt;? Only the one hosted by our CEO, @krudnicki! Join &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#tomorrow&quot;&gt;#tomorrow&lt;/a&gt; at 12! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; &lt;a href=&quot;https://t.co/b31cHvx5jy&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/b31cHvx5jy&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/827398900050915328&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ep 264: How Introverts Can Maximize Productivity by Optimizing Communication — @krudnicki &lt;a href=&quot;https://t.co/OgekabQvAx&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OgekabQvAx&lt;/a&gt; &lt;a href=&quot;https://twitter.com/careerpatterns/status/827604224456400896&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;careerpatterns&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;6 Must-Have Free &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Mobile&quot;&gt;#Mobile&lt;/a&gt; Apps To Break Bad Habits! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; &lt;a href=&quot;https://t.co/9bPujU0par&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9bPujU0par&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/838310450886475776&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The latest El Diario de Benet M. Marcos! &lt;a href=&quot;https://t.co/kiNuA9FhBF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/kiNuA9FhBF&lt;/a&gt; Thanks to @pacocorma @rachelloumiller @krudnicki &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#marketing&quot;&gt;#marketing&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#socialmedia&quot;&gt;#socialmedia&lt;/a&gt; &lt;a href=&quot;https://twitter.com/benetmaria/status/838317762657271808&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;benetmaria&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 Great &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Tips&quot;&gt;#Tips&lt;/a&gt; That Will Help You Become a Successful Manager! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Management&quot;&gt;#Management&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Selfimprovement&quot;&gt;#Selfimprovement&lt;/a&gt; &lt;a href=&quot;https://t.co/OD94GY6GwY&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/OD94GY6GwY&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/838335138249523200&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Presenting: The Map of Time Trackers! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeTracking&quot;&gt;#TimeTracking&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#World&quot;&gt;#World&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Infographics&quot;&gt;#Infographics&lt;/a&gt; &lt;a href=&quot;https://t.co/G6bZtjYCTO&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/G6bZtjYCTO&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/838639465019162624&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;84 Marketing Experts Share their Best &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Visual&quot;&gt;#Visual&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Marketing&quot;&gt;#Marketing&lt;/a&gt; Tips for &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Branding&quot;&gt;#Branding&lt;/a&gt;! Find out what our CMO @klewer8 said! &lt;a href=&quot;https://t.co/9lCpRt9XEq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9lCpRt9XEq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/838728391415169024&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An Ultimate Guide To &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SEO&quot;&gt;#SEO&lt;/a&gt; for &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SmallBusiness&quot;&gt;#SmallBusiness&lt;/a&gt; that Works Every Time! &lt;a href=&quot;https://t.co/SH7v3JX4BI&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/SH7v3JX4BI&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/839003976670588928&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Magnificent 7 &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeTracking&quot;&gt;#TimeTracking&lt;/a&gt; Apps for &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Android&quot;&gt;#Android&lt;/a&gt;! &lt;a href=&quot;https://t.co/uXNQvVqiHK&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/uXNQvVqiHK&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/839448316018585604&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Make Your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Business&quot;&gt;#Business&lt;/a&gt; Go Big With Those &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ProjectManagement&quot;&gt;#ProjectManagement&lt;/a&gt; Apps! &lt;a href=&quot;https://t.co/DQMC6pdJzq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/DQMC6pdJzq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/840124461860900865&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How to Increase Your Employees’ Motivation? &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#MondayMotivation&quot;&gt;#MondayMotivation&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Work&quot;&gt;#Work&lt;/a&gt; &lt;a href=&quot;https://t.co/nr5xecWY7S&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/nr5xecWY7S&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/841283196767604737&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;50+ Terrific Tools for Driving Business Growth in 2017! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Marketing&quot;&gt;#Marketing&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Management&quot;&gt;#Management&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Accounting&quot;&gt;#Accounting&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SocialMedia&quot;&gt;#SocialMedia&lt;/a&gt; &lt;a href=&quot;https://t.co/CW8HyTHPlF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CW8HyTHPlF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/842281515899854849&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Piece of advice I heard in high school I&#39;ve never forgotten: &amp;quot;Successful people aren&#39;t smarter than you, they&#39;re just way more persistent.&amp;quot; &lt;a href=&quot;https://twitter.com/sama/status/842815903435694081&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;sama&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;10 Motivational &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Songs&quot;&gt;#Songs&lt;/a&gt; To Boost Your Mood in the Morning! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ThursdayThoughts&quot;&gt;#ThursdayThoughts&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Motivation&quot;&gt;#Motivation&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Music&quot;&gt;#Music&lt;/a&gt; &lt;a href=&quot;https://t.co/j5y3lSkTNn&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/j5y3lSkTNn&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/844937873749094400&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TimeCamp as one of the top Sanity-Saving Apps for &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Freelancers&quot;&gt;#Freelancers&lt;/a&gt; at @GetApp! &lt;a href=&quot;https://t.co/hT25X7JOxb&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hT25X7JOxb&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/845243859936444416&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What Is Your Approach To &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TimeManagement&quot;&gt;#TimeManagement&lt;/a&gt;? &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TuesdayThoughts&quot;&gt;#TuesdayThoughts&lt;/a&gt; &lt;a href=&quot;https://t.co/aL4nIi7ZLe&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/aL4nIi7ZLe&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/849184523904569344&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;@krudnicki FYI, you&#39;ve been added as a maker of TimeCamp 2.0 on @ProductHunt &lt;a href=&quot;https://t.co/iYcdUeNL9M&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/iYcdUeNL9M&lt;/a&gt; h/t @pidzuchna 🙌 &lt;a href=&quot;https://twitter.com/ProductHuntHi/status/852437567282831360&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;ProductHuntHi&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hello @krudnicki. Congratulations on being on ProductHunt! See here &lt;a href=&quot;https://t.co/akDpHmAkkl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/akDpHmAkkl&lt;/a&gt; how you can get the most out of your Campaign! &lt;a href=&quot;https://twitter.com/growthwidgets/status/856223655776464901&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;growthwidgets&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Working Remotely? Avoid These 5 Common Time Management Mistakes! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#RemoteWork&quot;&gt;#RemoteWork&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Management&quot;&gt;#Management&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Mistakes&quot;&gt;#Mistakes&lt;/a&gt; &lt;a href=&quot;https://t.co/ILc92hTTUf&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/ILc92hTTUf&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/860079002073137152&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How Can Introverts Maximize &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; by Optimizing &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Communication&quot;&gt;#Communication&lt;/a&gt;? @hellotechpros &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#podcast&quot;&gt;#podcast&lt;/a&gt; ep. with @krudnicki &lt;a href=&quot;https://t.co/CiQxMS57fl&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/CiQxMS57fl&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/864746061084098560&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;50 Amazing Free Stock &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#&#92;Photo&quot;&gt;#&#92;Photo&lt;/a&gt; Websites That You Cannot Ignore! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#StockPicks&quot;&gt;#StockPicks&lt;/a&gt; &lt;a href=&quot;https://t.co/GXSsBzXVoc&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/GXSsBzXVoc&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/867959132493455361&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;5 Time Tracking &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#YouTube&quot;&gt;#YouTube&lt;/a&gt; Videos To Maximize Your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; Skills! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#VideoMarketing&quot;&gt;#VideoMarketing&lt;/a&gt; &lt;a href=&quot;https://t.co/2h1xIyx1RV&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/2h1xIyx1RV&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/875665291627384832&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; Experts &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Roundup&quot;&gt;#Roundup&lt;/a&gt;: 11 Busy Authors Share Their &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Marketing&quot;&gt;#Marketing&lt;/a&gt; Tips! &lt;a href=&quot;https://t.co/x1GeMmF88U&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/x1GeMmF88U&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/890527470428049409&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;How To &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Communicate&quot;&gt;#Communicate&lt;/a&gt; in a &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Startup&quot;&gt;#Startup&lt;/a&gt; Company? &lt;a href=&quot;https://t.co/9Yup2KTUuv&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/9Yup2KTUuv&lt;/a&gt; @JakeTTully @BobShoyhet @sallyannekane @TheScottResort @timecamp &lt;a href=&quot;https://twitter.com/klewer8/status/893357392372609025&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;klewer8&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Where Can I Download &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ProjectManagement&quot;&gt;#ProjectManagement&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Software&quot;&gt;#Software&lt;/a&gt;? &lt;a href=&quot;https://t.co/yvfOV9Q1TG&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/yvfOV9Q1TG&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/894877107846828032&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;What Is The Difference Between &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SaaS&quot;&gt;#SaaS&lt;/a&gt; and Hosted Software? &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#BidData&quot;&gt;#BidData&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#GrowthHacking&quot;&gt;#GrowthHacking&lt;/a&gt; &lt;a href=&quot;https://t.co/f5Srub8QB8&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/f5Srub8QB8&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/895240640199630848&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Get Your Budget Under Control with Time Tracking! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Business&quot;&gt;#Business&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Finance&quot;&gt;#Finance&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Success&quot;&gt;#Success&lt;/a&gt; &lt;a href=&quot;https://t.co/LOcDht9GU4&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LOcDht9GU4&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/895594275584356352&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#WebsiteDesign&quot;&gt;#WebsiteDesign&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SEO&quot;&gt;#SEO&lt;/a&gt; and &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Content&quot;&gt;#Content&lt;/a&gt; writing services by @WebkadCEO &lt;a href=&quot;https://t.co/mRcLxiTJJU&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/mRcLxiTJJU&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/895871350350401536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;[#INFOGRAPHIC] The Top 5 Reasons To Start Tracking Time As A Project Manager / &lt;a href=&quot;https://t.co/jh9JFnC3Uo&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/jh9JFnC3Uo&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/898050960945238017&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;100 Best Tools For &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Marketing&quot;&gt;#Marketing&lt;/a&gt; Industry! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SEO&quot;&gt;#SEO&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PM&quot;&gt;#PM&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt; @podio @FastTonyES @evernote @insightly @dropbox&lt;br /&gt;
&lt;a href=&quot;https://t.co/3vnSy6JV3G&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3vnSy6JV3G&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/898515025404592132&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;8 years of Ruby experience and this caught me. I&#39;m shocked. &lt;a href=&quot;https://t.co/qHAJUxdFnS&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/qHAJUxdFnS&lt;/a&gt; &lt;a href=&quot;https://twitter.com/janfilipowski/status/905059092145860609&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;janfilipowski&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Experts&quot;&gt;#Experts&lt;/a&gt; Who Help You Improve Your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Productivity&quot;&gt;#Productivity&lt;/a&gt;! @regainyourtime @PeggyDuncan @nicolebandes @laurastack &lt;a href=&quot;https://t.co/3BrRqeYftZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/3BrRqeYftZ&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/907207290570379270&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hear @timecamp&#39;s CEO Kamil Rudnicki @krudnicki on &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#1&quot;&gt;#1&lt;/a&gt; episode of Stay On Top WIth Your Work &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Podcast&quot;&gt;#Podcast&lt;/a&gt;! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PodernFamily&quot;&gt;#PodernFamily&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Management&quot;&gt;#Management&lt;/a&gt;&lt;br /&gt;
&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#WednesdayWisdom&quot;&gt;#WednesdayWisdom&lt;/a&gt; &lt;a href=&quot;https://t.co/wEWZV5rFo2&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/wEWZV5rFo2&lt;/a&gt; &lt;a href=&quot;https://twitter.com/stayontopofwork/status/950968931413569536&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;stayontopofwork&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Read our guest, @EngesethsBlog Stefan Engeseth&#39;s top tip for staying on top of your work! Listen to the episode &lt;a href=&quot;https://t.co/kGIWgzserZ&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/kGIWgzserZ&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Podcast&quot;&gt;#Podcast&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PodernFamily&quot;&gt;#PodernFamily&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#iTunes&quot;&gt;#iTunes&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SoundCloud&quot;&gt;#SoundCloud&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PM&quot;&gt;#PM&lt;/a&gt; &lt;a href=&quot;https://t.co/hzivhFBTEF&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/hzivhFBTEF&lt;/a&gt; &lt;a href=&quot;https://twitter.com/stayontopofwork/status/953507046074273794&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;stayontopofwork&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Hear dr Shailesh Thaker @shaileshthaker on &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#5&quot;&gt;#5&lt;/a&gt; episode of Stay On Top WIth Your Work &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Podcast&quot;&gt;#Podcast&lt;/a&gt;! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PodernFamily&quot;&gt;#PodernFamily&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#ProjectManagement&quot;&gt;#ProjectManagement&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Entrepreneurship&quot;&gt;#Entrepreneurship&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Work&quot;&gt;#Work&lt;/a&gt; &lt;a href=&quot;https://t.co/LHyuuhrPnT&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LHyuuhrPnT&lt;/a&gt; &lt;a href=&quot;https://twitter.com/stayontopofwork/status/953876877952856064&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;stayontopofwork&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do you &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#work&quot;&gt;#work&lt;/a&gt; while traveling? Make sure to include these items in your bag! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TravelTuesday&quot;&gt;#TravelTuesday&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Travel&quot;&gt;#Travel&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#remotework&quot;&gt;#remotework&lt;/a&gt;  &lt;a href=&quot;https://t.co/sSH5iuKvfq&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/sSH5iuKvfq&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/955895845538451456&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#StayOnTopOfWork&quot;&gt;#StayOnTopOfWork&lt;/a&gt; New Episode: Find out why a leader is like a conductor of the symphony with @Mark_Sanborn! &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Leadership&quot;&gt;#Leadership&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Entrepreneurship&quot;&gt;#Entrepreneurship&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PodernFamily&quot;&gt;#PodernFamily&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Podcast&quot;&gt;#Podcast&lt;/a&gt; &lt;a href=&quot;https://t.co/HjYyUHQaGz&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/HjYyUHQaGz&lt;/a&gt; &lt;a href=&quot;https://twitter.com/stayontopofwork/status/956397154930692097&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;stayontopofwork&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Read our guest, Mark Sanborn&#39;s top tip for managing a team and staying on top of work! Listen to the episode &lt;a href=&quot;https://t.co/YQLOa4xwOM&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/YQLOa4xwOM&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Podcast&quot;&gt;#Podcast&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PodernFamily&quot;&gt;#PodernFamily&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Leadership&quot;&gt;#Leadership&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#iTunes&quot;&gt;#iTunes&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#SoundCloud&quot;&gt;#SoundCloud&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#PM&quot;&gt;#PM&lt;/a&gt; @Mark_Sanborn &lt;a href=&quot;https://t.co/t9o5SqjLPN&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/t9o5SqjLPN&lt;/a&gt; &lt;a href=&quot;https://twitter.com/stayontopofwork/status/956852829775376388&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;stayontopofwork&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tracking hours worked across different projects, generating a summary report, and manage and report billable hours are just some of the reasons @timecamp is a popular choice for &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#freelancers&quot;&gt;#freelancers&lt;/a&gt; &lt;a href=&quot;https://t.co/Eshew0RNY6&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/Eshew0RNY6&lt;/a&gt; &lt;a href=&quot;https://t.co/UvdNhpYn6y&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/UvdNhpYn6y&lt;/a&gt; &lt;a href=&quot;https://twitter.com/GetApp/status/958038546161504257&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;GetApp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Did you know that respecting your &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#team&quot;&gt;#team&lt;/a&gt; is one of the best &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#tools&quot;&gt;#tools&lt;/a&gt;? Listen to the new episode of @stayontopofwork Stay On Top Of Work &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#Podcast&quot;&gt;#Podcast&lt;/a&gt; and find out what was @MargaretMeloni&#39;s way to becoming a professional project manager! 🔊🎙️&lt;a href=&quot;https://t.co/LhfIK8azLk&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;https://t.co/LhfIK8azLk&lt;/a&gt; &lt;a href=&quot;https://twitter.com/timecamp/status/959006882353598464&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;timecamp&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;“To disagree silently is disloyal.” - Reed Hastings, founder &amp;amp; CEO of @netflix &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TED2018&quot;&gt;#TED2018&lt;/a&gt; &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#TEDTalks&quot;&gt;#TEDTalks&lt;/a&gt; @TEDTalks &lt;a href=&quot;https://twitter.com/simonsinek/status/985209515111923712&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;simonsinek&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;1/ Random thoughts on why I’m excited about the Work Graph - the network/interactions btwn people working together. Many diff cos tackling - Slack, Asana, Github, Invision, Dropbox, etc. - but it&#39;s just starting. The winners will be as big as the ones built on the Social Graph &lt;a href=&quot;https://twitter.com/andrewchen/status/991420062278926336&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;andrewchen&lt;/a&gt; [type:: tweet]&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/reference-and-howtos/twitter-likes-1763820676743-2013-2025-11/"/>
  </entry><entry>
    <title>quotes</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/reference-and-howtos/quotes/</id>
    <content type="html">&lt;p&gt;Perfectionists are imperfect with their time.&lt;/p&gt;
&lt;p&gt;Done is bettter then perfect.&lt;/p&gt;
&lt;p&gt;The faster you pulse the faster you move.&lt;/p&gt;
&lt;p&gt;&amp;quot;We&#39;re even wrong about which mistakes we&#39;re making.&amp;quot;&lt;br /&gt;
— Carl Winfeld&lt;/p&gt;
&lt;p&gt;&amp;quot;Premature optimization is the root of all evil (or at least most of it) in programming.&amp;quot;&lt;br /&gt;
— Donald Knuth&lt;/p&gt;
&lt;p&gt;Your title means nothing, what you&#39;ve shipped means everything.&lt;/p&gt;
&lt;p&gt;The price of inaction is far greater than the cost of a mistake.&lt;/p&gt;
&lt;p&gt;Make something people want.&lt;/p&gt;
&lt;p&gt;uratujcie mnie od rzeczy nieistotnych.&lt;br /&gt;
Save me from the inconsequential.&lt;br /&gt;
&amp;quot;Rescue me from the trivial.&amp;quot;&lt;br /&gt;
&amp;quot;Deliver me from the insignificant.&amp;quot;&lt;br /&gt;
&amp;quot;Liberate me from the unimportant.&amp;quot;&lt;br /&gt;
&amp;quot;O Divine, in Your infinite grace, save me from the inconsequential. Guide my steps away from the trivial pursuits that cloud my path. Let Your wisdom illuminate the essence of what truly matters, steering me towards actions of lasting significance. In seeking Your presence, let me find the strength to discern and focus on the profound, leaving behind the fleeting distractions of the world. Amen.&amp;quot;&lt;/p&gt;
&lt;p&gt;&amp;quot;You can&#39;t look at the competition and say you&#39;re going to do it better. You have to look at the competition and say you&#39;re going to do it differently.&amp;quot;&lt;br /&gt;
Steve Jobs&lt;/p&gt;
&lt;p&gt;Zacznij dzień od priorytetu nr. 1 - dopiero wtedy gdy nie ma już w nim nic do zrobienia przejdź do priorytetu 2.&lt;/p&gt;
&lt;p&gt;Uratujcie mnie od rzeczy nieistotnych.&lt;/p&gt;
&lt;p&gt;Obudź się.&lt;/p&gt;
&lt;p&gt;Good teams fail faster so they can succeed faster.&lt;/p&gt;
&lt;p&gt;Boże, daj mi pogodę ducha, abym pogodził się z tym, czego nie mogę zmienić,&lt;br /&gt;
odwagę, abym zmieniał to, co zmienić mogę,&lt;br /&gt;
i mądrość, abym odróżniał jedno od drugiego.&lt;/p&gt;
&lt;p&gt;Buddyjska Modlitwa o Akceptację&lt;br /&gt;
&amp;quot;Niech będę wolny od cierpienia,&lt;br /&gt;
niech będę szczęśliwy,&lt;br /&gt;
niech będę w pokoju,&lt;br /&gt;
niech akceptuję to, co jest.&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/reference-and-howtos/quotes/"/>
  </entry><entry>
    <title>📗 Growth Levers and How to Find Them</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/books/growth-levers-and-how-to-find-them/</id>
    <content type="html">&lt;h1 id=&quot;growth-levers-and-how-to-find-them&quot; tabindex=&quot;-1&quot;&gt;Growth Levers and How to Find Them&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Fast learning is the goal&lt;/strong&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;agile, szybkość, tempo&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;Established companies - they already have good information. They already know who buys their products and why, where to find those people, what to say to them, how to onboard them, how much to charge, and a hundred other little details. They have a working customer acquisition system. They employ strategy, execution, hiring, and delegation to optimize their performance.&lt;/li&gt;
&lt;li&gt;But startups aren&#39;t ready to optimize. They still need to figure out the basics quickly. &lt;strong&gt;And while strategizing, executing, hiring, and delegating are great ways to optimize, they&#39;re inefficient ways to learn. &lt;strong&gt;When fast learning is the goal&lt;/strong&gt;, you need a different process, a process of discovery.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;The imperative isn&#39;t to optimize well-known operations, but to discover those operations to create a new system, not run an existing system more efficiently.&lt;/li&gt;
&lt;li&gt;It&#39;s not yet possible to begin optimizing because you don&#39;t know what the right processes are. You&#39;re in a race to acquire and validate information about the system as quickly as possible. Your success dep A startup is not a small version of a large company. Steve Blank.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Discovery mode to find your big growth levers fast.&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;To grow, startups need to operate in discovery mode. This means your entire organization needs to become an instrument of discovery. One that&#39;s &lt;strong&gt;designed to find your big growth levers fast.&lt;/strong&gt; The rest of this chapter outlines a process for doing that.]&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;It&#39;s about 1000% improvements, not 1%&lt;/strong&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;product strategy&lt;/a&gt; &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;big improvements&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;Mówił też że nie chodzi o wile małych 1%, tylko duże. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;customer development&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;You&#39;re in a race to acquire and validate information about the system as quickly as possible. Your success dep Google didn&#39;t beat Yahoo by being 1% better. The iPhone wasn&#39;t 1% better than the Nokia 6300. And Netflix wasn&#39;t 1% better than Blockbuster.&lt;/li&gt;
&lt;li&gt;These startups succeeded by finding an entirely new approach, not nudging along an existing one. Their desired outcome wasn&#39;t incremental, but binary. Optimization can&#39;t yield binary outcomes like this. Discovery demands a totally different kind of thinking.&lt;/li&gt;
&lt;li&gt;Instead of doing a hundred things one Try this thought experiment. Imagine you&#39;re right. Imagine the grand promises you made to your investors are true, and the opportunity is bigger than anyone realizes. A huge mass of people are desperate for your product if only they knew it existed.&lt;/li&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Discovery&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;What exactly do they hope to achieve? Three, social and emotional aspects. Why is this challenge so important to them? Even in B2B, most purchase decisions are based on emotions and social considerations.&lt;/li&gt;
&lt;li&gt;And somebody will need to figure out how to turn all that customer enthusiasm into a solid, predictable stream of revenue. Bottom line, your success depends on your ability to figure out lots of things quickly. &lt;strong&gt;Your team&#39;s ability to discover.&lt;/strong&gt; And that&#39;s my whole point. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;mindset-sukcesu&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Wrong types of mindset&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;When things fail, they gather the lessons and try the next thing until something shows promise. When things aren&#39;t working, they try more things. These founders are easy to spot because their website promises an all-in-one solution for dot dot dot. That&#39;s because they spent the past three years building features based on their sense of the market, and now the product is too complicated even to describe, let alone use.&lt;/li&gt;
&lt;li&gt;And the engineers spend most of their time managing technical debt for a handful of since they already have good information. They already know who buys their products and why, where to find those people, what to say to them, how to onboard them, how much to charge, and a hundred other little details. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;feature fallacy&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;...
&lt;ul&gt;
&lt;li&gt;Your business is inevitable. The best startups are inevitable. It&#39;s obvious in hindsight. Google. As soon as people had the web, they&#39;d need a way to search it. Uber. As soon as people had smartphones, it was inevitable track them. Your support team needs to figure out what problems customers will have and the most efficient way to address them. Your compliance team will need to figure out how to satisfy legal requirements quickly without burdening your customers or employees.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Framework
&lt;ul&gt;
&lt;li&gt;Step one, understand the journey that leads customers to you.
&lt;ul&gt;
&lt;li&gt;Selection. Before your customers feel comfortable choosing a solution, they&#39;ll have some specific questions and worries that need to be addressed, along with some switching costs, non-financial factors that make it hard for them to adopt your product. Examples include needing to learn a new skill or getting stakeholder buy-in from a co-worker or spouse.&lt;/li&gt;
&lt;li&gt;You&#39;ll have prospects at every stage of this journey and will deploy different tactics at each stage. For example, if a customer isn&#39;t optimization mindset to a discovery mindset. That mindset shift often makes people uncomfortable.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Step two, map your growth model to find points of leverage.&lt;/li&gt;
&lt;li&gt;Step three, run growth sprints to test ideas quickly.
&lt;ul&gt;
&lt;li&gt;In addition, growth sprints push people to move fast. They&#39;ll often need to cobble to 24-hour emergency locksmith with a phone number. Genius. For 99.999% of my life, I won&#39;t need a locksmith.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Step four, shift your team&#39;s mindset from optimization to discovery. Let&#39;s look at want to make sure it&#39;s your thing. &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;hipoteza i eksperyment i iteracje&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;But without the mindset shift, the rest of the process can&#39;t work. The discovery process involves being wrong a lot and realizing when you&#39;ve been wrong all along. It asks you to fail multiple times per week in a very public way. Diligent, conscientious people find this unsettling.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/books/growth-levers-and-how-to-find-them/"/>
  </entry><entry>
    <title>Positioning The Battle for Your Mind - Al Ries, Jack Trout, Philip Kotler</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/books/positioning-the-battle-for-your-mind-al-ries-jack-trout-philip-kotler/</id>
    <content type="html">&lt;p&gt;&lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;product positioning&lt;/a&gt;&lt;/p&gt;
&lt;h1 id=&quot;a-href-https-www-amazon-com-positioning-battle-your-al-ries-dp-0071373586-target-blank-class-external-link-positioning-the-battle-for-your-mind-al-ries-jack-trout-philip-kotler-8601404251542-amazon-com-books-a&quot; tabindex=&quot;-1&quot;&gt;&lt;a href=&quot;https://www.amazon.com/Positioning-Battle-Your-Al-Ries/dp/0071373586&quot; target=&quot;_blank&quot; class=&quot;external-link&quot;&gt;Positioning: The Battle for Your Mind: Al Ries, Jack Trout, Philip Kotler: 8601404251542: Amazon.com: Books&lt;/a&gt;&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;Position as first in the category (category creation) - &amp;quot;be first&amp;quot; (example: VW Beetle)
&lt;ul&gt;
&lt;li&gt;If not possible, position &amp;quot;against&amp;quot; current incumbents (example: Linear as Jira alternative)
&lt;ul&gt;
&lt;li&gt;If not possible, find a niche &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;ICP&lt;/a&gt; (Primetric for software houses)
&lt;ul&gt;
&lt;li&gt;If not possible, avoid line extensions - it deludes your messaging&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;chat-gpt-rewrite-to-establish-a-strong-market-position-follow-these-strategies&quot; tabindex=&quot;-1&quot;&gt;(ChatGPT rewrite) To establish a strong market position, follow these strategies:&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Position as First in the Category (Category Creation)&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• Strive to be the pioneer in a new or emerging category. Example: The VW Beetle was the first in the compact car category, creating its own niche.&lt;/p&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;&lt;strong&gt;Position “Against” Current Incumbents&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• If being first is not feasible, position your product as a superior alternative to existing market leaders. Example: Linear positions itself as a more efficient alternative to Jira.&lt;/p&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;&lt;strong&gt;Find a Niche Market (Ideal Customer Profile)&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• If competing directly with incumbents is impractical, target a specific niche or underserved segment. Example: Primetric focuses on software houses, catering to their unique needs.&lt;/p&gt;
&lt;ol start=&quot;4&quot;&gt;
&lt;li&gt;&lt;strong&gt;Avoid Line Extensions&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;• Refrain from extending your product line too broadly, as it can dilute your brand messaging and confuse customers.&lt;/p&gt;
&lt;p&gt;By following these steps, you can effectively establish and communicate a strong market position.&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/books/positioning-the-battle-for-your-mind-al-ries-jack-trout-philip-kotler/"/>
  </entry><entry>
    <title>Never Enough</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/books/never-enough/</id>
    <content type="html">&lt;h1 id=&quot;never-enough&quot; tabindex=&quot;-1&quot;&gt;Never Enough&lt;/h1&gt;
&lt;h2 id=&quot;metadata&quot; tabindex=&quot;-1&quot;&gt;Metadata&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Author: &lt;a class=&quot;internal-link is-unresolved&quot; href=&quot;https://kamilrudnicki.com/404&quot; target=&quot;&quot;&gt;Andrew Wilkinson&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Full Title: Never Enough: From Barista to Billionaire&lt;/li&gt;
&lt;li&gt;Category: &lt;a class=&quot;tag&quot; onclick=&quot;toggleTagSearch(this)&quot; data-content=&quot;#books&quot;&gt;#books&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Method: Audible&lt;/li&gt;
&lt;li&gt;Date: 2024-11-16&lt;/li&gt;
&lt;li&gt;Rating: Very Good&lt;/li&gt;
&lt;li&gt;Status: In progress (2024-11-16)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;summary&quot; tabindex=&quot;-1&quot;&gt;Summary&lt;/h2&gt;
&lt;p&gt;Very good book! I like reading stories of people struggling in the business then succeedes from childhood to today. We can learn important principles of the author like, and distill what was important to the success:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Inversion (from Churlie Munger)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;highlights&quot; tabindex=&quot;-1&quot;&gt;Highlights&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;/li&gt;
&lt;li&gt;Chapter 11: Shark Bites&lt;/li&gt;
&lt;li&gt;Chapter 12: The Anti-Goals Acquisition Strategy&lt;/li&gt;
&lt;li&gt;13&lt;/li&gt;
&lt;li&gt;15
&lt;ul&gt;
&lt;li&gt;Rzeczy które daje bogactwo wcale nie daje dużo. Trzeba się nimi zajmować. Nie są aż takie przyjemne. Dają złych znajomych. Stoją nieużywane. Szybko się adaptował. To co było przyjemne szybko się przyzwyczajał. Te wszystkie rzeczy zabierały mu czas.&lt;/li&gt;
&lt;li&gt;Dobrze że nikt nie mówi co ma robić. To ultimate luxory.&lt;/li&gt;
&lt;li&gt;My ultimate goal is freedom of time and freedom from worry.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;16
&lt;ul&gt;
&lt;li&gt;Jak ma się dużo to można narzekać nadal na rzeczy jak się ma mniej.&lt;/li&gt;
&lt;li&gt;Trzeba się zatrzymać kiedyś i zdać sobie sprawę że masz tylko 15 wakacji ze swoimi dziećmi zanim Cię opuszczą.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;17
&lt;ul&gt;
&lt;li&gt;fajny rozdział o kapitalizmie&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;18&lt;/li&gt;
&lt;li&gt;19&lt;/li&gt;
&lt;li&gt;20&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/books/never-enough/"/>
  </entry><entry>
    <title>Hold On to Your Kids</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/books/hold-on-to-your-kids/</id>
    <content type="html">&lt;h1 id=&quot;hold-on-to-your-kids&quot; tabindex=&quot;-1&quot;&gt;Hold On to Your Kids&lt;/h1&gt;
&lt;p&gt;Gordon Neufeld, Gabor Mat&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;(2:40:12) Her parents had lost their dominant position in the attachment order. That accounted for her rudeness and lack of respect, especially when peers were around. Likewise with Sean and Melanie. As the attachment with parents had weakened, the hierarchical arrangement meant to facilitate parenting had collapsed, which is what Melanie&#39;s father felt so acutely and was reacting to so vehemently.&lt;br /&gt;&lt;br /&gt;  &lt;br /&gt;&lt;br /&gt;Melanie was treating her parents as if they were equals who had no business bossing her around and trying to run her life. Instinctively, Melanie&#39;s father was trying to put her in her place. Unfortunately,&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Jak dziecko się buntuje nie naprawi się tego bardziej wymagając tylko tworząc przywiązanie do rodziców&lt;/td&gt;
&lt;td&gt;(3:26:30) Was this counterwill dynamic--distorted and magnified by peer orientation? Simple requests resulted in these children getting their backs up. Push came to shove, expectations backfired. The more important something was to the parents, the less inclined the children were to deliver. The more commanding Melanie&#39;s father tried to be, the more rebellious his daughter became. It wasn&#39;t so much that the parents were doing anything wrong as that their children&#39;s counterwill instinct had been made pervasive and even perverse by peer orientation. The natural purpose&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h1 id=&quot;gpt-5-pro&quot; tabindex=&quot;-1&quot;&gt;GPT-5-Pro&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Attachment, not techniques, gives parents real influence; when a child seeks closeness, the parent becomes the home base and love can reach them.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Whoever a child is attached to becomes their “compass point”; peers can displace parents, and competing primary attachments can’t coexist—one will win.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Deeper attachment (love, emotional intimacy, being known) requires vulnerability; peer‑oriented kids avoid vulnerability, favor shallow ties, and become insatiable.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When the attachment hierarchy flips (peers over parents), respect erodes and counterwill rises; force and manipulation worsen the bond and backfire.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Parental power rests on the child depending specifically on the parent; pushing premature independence often just transfers dependence to peers.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Peer orientation stunts growth: it blocks parental nurturance, narrows values to peer approval, hardens emotions, and weakens curiosity, resilience, and integrative learning.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;True independence grows from secure dependence: invite closeness, offer unconditional positive regard, warmth, delight, and generous physical affection—let children rest in your love.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Reconnect before you direct: “collect” the child (eye contact, warmth, sameness, loyalty), use spontaneous gestures of attachment rather than transactional praise or gifts.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Attachment is both shield and vulnerability: secure attachment makes children sensitive to caring adults yet more resilient to outside slights; peer orientation removes this shield.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For home and school: restore adult orientation with meals, shared time, village‑like ties to many caring adults; avoid coercion and teach in ways that prioritize relationship and emergent, self‑motivated learning.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Przywiązanie, a nie techniki, daje rodzicom prawdziwy wpływ; gdy dziecko szuka bliskości, rodzic staje się bazą domową i miłość może do niego dotrzeć.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ktokolwiek, do kogo dziecko jest przywiązane, staje się jego „punktem odniesienia&amp;quot;; rówieśnicy mogą wyprać rodziców, a konkurujące pierwotne przywiązania nie mogą współistnieć—jedno zwycięży.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Głębsze przywiązanie (miłość, intymność emocjonalna, bycie poznanym) wymaga wrażliwości; dzieci zorientowane na rówieśników unikają wrażliwości, preferują płytkie więzi i stają się nienasycone.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Gdy hierarchia przywiązania się odwraca (rówieśnicy nad rodzicami), szacunek eroduje i rośnie przeciwwola; siła i manipulacja pogarszają więź i przynoszą odwrotny skutek.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Władza rodzicielska opiera się na tym, że dziecko zależy konkretnie od rodzica; forsowanie przedwczesnej niezależności często po prostu przenosi zależność na rówieśników.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Orientacja na rówieśników hamuje rozwój: blokuje rodzicielską troskę, zawęża wartości do aprobaty rówieśników, utwardza emocje i osłabia ciekawość, odporność oraz uczenie się integracyjne.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Prawdziwa niezależność wyrasta z bezpiecznej zależności: zapraszaj do bliskości, oferuj bezwarunkową pozytywną akceptację, ciepło, radość i hojną fizyczną czułość—pozwól dzieciom spocząć w twojej miłości.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Połącz się, zanim pokierujesz: „zbierz&amp;quot; dziecko (kontakt wzrokowy, ciepło, podobieństwo, lojalność), używaj spontanicznych gestów przywiązania zamiast transakcyjnych pochwał czy prezentów.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Przywiązanie jest zarówno tarczą, jak i wrażliwością: bezpieczne przywiązanie czyni dzieci wrażliwymi na troskliwych dorosłych, ale bardziej odpornymi na zewnętrzne urazy; orientacja na rówieśników usuwa tę tarczę.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dla domu i szkoły: przywróć orientację na dorosłych poprzez posiłki, wspólny czas, wioskowe więzi z wieloma troskliwymi dorosłymi; unikaj przymusu i ucz w sposób, który priorytetowo traktuje relacje oraz spontaniczne, samomotywowane uczenie się.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rola domowych rytuałów (wspólne posiłki, rozmowy, czytanie) w podtrzymywaniu więzi międzypokoleniowych.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;„Kontrwola” jako naturalny mechanizm rozwojowy, który pomaga dziecku budować autonomię, jeśli relacja jest bezpieczna.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Skutki używania siły i manipulacji w wychowaniu: osłabienie relacji i większa podatność dziecka na wpływy z zewnątrz.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Różnica między pochwałą transakcyjną a spontaniczną radością i zachwytem dorosłego—tylko to drugie karmi relację.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pedagogika relacji: najpierw „zebrać” (nawiązać kontakt), potem „kierować”; znaczenie nauczyciela jako osoby, nie tylko metody.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Uczenie się przez próby i błędy wymaga klimatu bezpieczeństwa; atmosfera „niewrażliwości” dławi ciekawość i odwagę intelektualną.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Znaczenie „wioski” (sieci życzliwych dorosłych) dla odporności dziecka na presję rówieśniczą i dla zdrowego rozwoju.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Koncepcja Rogersa: bezwarunkowa akceptacja jako podstawowy „pokarm” emocjonalny potrzebny do dojrzewania.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bowlby i „detachment” po rozłące: krótkotrwałe odrzucenie po powrocie rodzica jako adaptacja, mogąca zostawiać ślady w relacjach.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;claude&quot; tabindex=&quot;-1&quot;&gt;Claude&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;Summary: Attachment, Parenting, and Child Development&lt;/strong&gt;&lt;br /&gt;
Here are the key points from this text about attachment theory and child development:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Attachment is the foundation of parenting power&lt;/strong&gt; - A parent&#39;s ability to guide, nurture, and influence their child comes not from techniques or discipline, but from the strength of the attachment relationship. Without this psychological connection, parenting skills and love cannot effectively reach the child.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Peer orientation undermines healthy development&lt;/strong&gt; - When children become primarily attached to peers instead of parents, they lose their natural compass point for values, guidance, and emotional support. This leads to increased counterwill (resistance to authority), emotional defensiveness, and developmental immaturity.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Children need unconditional love and dependence before independence&lt;/strong&gt; - True maturation requires first satisfying a child&#39;s attachment needs through unconditional acceptance. Parents must invite dependence rather than push for premature independence - only when children feel securely attached can they naturally mature into autonomous individuals.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vulnerability and emotional openness are essential for growth&lt;/strong&gt; - Children who feel safe in their attachments can remain emotionally vulnerable, which allows them to experience fulfillment, learn from mistakes, and develop integrative thinking. Peer-oriented children often defend against vulnerability, stunting their emotional and cognitive development.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The attachment hierarchy must remain intact&lt;/strong&gt; - Healthy development requires parents to maintain their position as the dominant attachment figures. When this hierarchy inverts (through peer orientation or other factors), children lose respect for parental authority and become resistant to guidance, making them susceptible to peer influence and poor decision-making.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here are notable specific concepts, stories, and examples mentioned:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;The six modes of attachment&lt;/strong&gt; - Children attach through different developmental stages: physical proximity (senses), sameness (being like someone), belonging/loyalty, significance (mattering to someone), emotional intimacy (love and warm feelings), and being known psychologically (sharing secrets). Parent-oriented children don&#39;t like keeping secrets from parents because it creates distance.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Case studies of peer-oriented children&lt;/strong&gt; - Kirsten (age 7) no longer turned to her parents for comfort, relying instead on a tight-knit group of three friends. Sean developed deep resistance to depending on his parents, even refusing family meals. Melanie (age 13) changed dramatically after her grandmother died, becoming defiant, skipping school, sneaking out, and declaring she hated her parents - a girlfriend filled the attachment void.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;The &amp;quot;compass point&amp;quot; metaphor&lt;/strong&gt; - Children naturally orient themselves by their primary attachment figures like a sailor uses a compass. A child cannot simultaneously use both peers and parents as compass points - one will dominate. When peers become the compass, children adopt peer values (appearance, entertainment, fitting in) over adult values (education, potential, long-term goals).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Brayden and the soccer bullies&lt;/strong&gt; - When five-year-old Brayden faced taunting from older kids at soccer practice, he confidently stood up to them saying &amp;quot;I am not a stupid little jerk. My daddy says I&#39;m a soccer player.&amp;quot; His strong attachment to his father created a shield against peer hurt - attachment divides the world into &amp;quot;those who can hurt you and those who can&#39;t.&amp;quot;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;The counterwill instinct&lt;/strong&gt; - This natural resistance to coercion helps children develop their own identity. A five-year-old might insist &amp;quot;the sky is NOT blue&amp;quot; simply because the parent said it was - the child&#39;s brain blocks out ideas not originating within themselves. This is healthy when properly directed, but becomes destructive when triggered by peer orientation rather than parent attachment.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Peter&#39;s inability to understand &amp;quot;work&amp;quot;&lt;/strong&gt; - Peter couldn&#39;t grasp the concept of work because it requires holding mixed feelings simultaneously - not wanting to do something now but being motivated by long-term goals. Too immature to integrate conflicting feelings, he only worked when he felt like it, like a preschooler despite being older.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;The seventh-grade oral sex case&lt;/strong&gt; - A shocking example involved 12-13 year old girls who told a court that offering oral sex to boys was &amp;quot;routine in their community&amp;quot; and they participated &amp;quot;because everyone else was doing it.&amp;quot; This illustrated extreme peer orientation overriding normal developmental boundaries and parental values.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Carl Rogers&#39; &amp;quot;unconditional positive regard&amp;quot;&lt;/strong&gt; - The psychotherapist described a warm, caring attitude with &amp;quot;no conditions of worth attached to it.&amp;quot; Applied to parenting, this means the child must feel certainty that she is precisely the person the parents want and love - she cannot do anything to earn or lose that love, it simply exists regardless of behavior.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;The spontaneity principle in collecting children&lt;/strong&gt; - Parents cannot collect (connect with) a child through expected gifts, birthday presents, or rewards for accomplishments. The child must perceive the offering as spontaneous. Example: When a child asks to spend time together, respond with unexpected enthusiasm: &amp;quot;Oh, that&#39;s a great idea! I was wondering how we could spend some time together!&amp;quot;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;John Bowlby&#39;s detachment observations&lt;/strong&gt; - The psychiatrist studied ten children separated from parents for prolonged periods. Upon reunion, two didn&#39;t recognize their mother, eight turned or walked away from her, most cried or came close to tears. This reflexive rejection is an adaptation: &amp;quot;I was so hurt when you abandoned me that I will not reconnect with you.&amp;quot;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;The author&#39;s personal Holocaust story&lt;/strong&gt; - As an infant, the author was separated from his mother for 5-6 weeks during WWII, surviving thanks to a Christian woman who hid him with relatives. When reunited after Soviet liberation, he &amp;quot;did not so much as look at her for several days&amp;quot; - a traumatic attachment wound that embedded in his nervous system and affected future relationships.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;The African village attachment model&lt;/strong&gt; - In traditional African communities, adults actively collect children at social gatherings before activities begin. The greater the number of caring adults in a child&#39;s life, the more immune they are to peer orientation. African children show &amp;quot;joyful spontaneity, natural smiles, freely loose bodily movements&amp;quot; from close contact with loving adults.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Sarah&#39;s pattern of quitting&lt;/strong&gt; - Her parents would sacrifice to make her dreams possible (like saving for figure skating fees and rearranging schedules), only to have Sarah quit at the first frustration or failure - she left skating after just two lessons. This illustrated immature inability to persist through difficulty, a sign of incomplete development.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;The brain&#39;s hierarchy of priorities&lt;/strong&gt; - Information ranks very low in the brain&#39;s importance - it&#39;s more likely to be tuned out than tuned in. The primary and dominant need is togetherness and connection. Children are hungry for information not about the world, but about their attachment status: Do I belong? Am I wanted? Do I matter?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Social architecture shapes behavior more than individual willpower; design environments that make desired actions effortless and undesired ones friction-filled.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Boredom is a developmental gift, not a problem to solve; unfilled time forces the brain to generate its own meaning, building imagination and executive function.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Children don&#39;t need constant happiness—they need the full emotional range; shielding them from disappointment, frustration, or sadness stunts emotional literacy and resilience.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Play is the primary engine of learning until age seven; academic pressure before that age hijacks neural pathways meant for exploration, risk-taking, and social negotiation.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Storytelling beats instruction: the brain remembers narrative structure, emotional arcs, and embodied metaphors far better than abstract rules or lists.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rituals create psychological safety; predictable rhythms (bedtime routines, weekly traditions, seasonal celebrations) anchor identity and signal &amp;quot;you belong here.&amp;quot;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Silence and solitude are cognitive nutrients; constant stimulation—screens, activities, noise—prevents the default-mode network from consolidating memory and building self-concept.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mastery requires failure repetition, not success repetition; growth happens in the zone where attempts fail often enough to demand adaptation but succeed often enough to sustain motivation.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Multi-age interaction teaches what same-age groups can&#39;t: younger children learn aspiration and older children learn mentorship, patience, and responsibility—all lost in age-segregated schools.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Nature exposure recalibrates attention and stress systems; even brief contact with green space lowers cortisol, improves focus, and restores directed-attention capacity better than rest alone.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;raw&quot; tabindex=&quot;-1&quot;&gt;Raw&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;(0:10:54) but rather who the parent is to a child. When a child seeks contact and closeness with us, we become empowered as a nurturer, a comforter, a guide, a model, a teacher, or a coach. For a child well attached to us, we are her home base from which to venture into the world, her retreat to fall back to, her fountainhead of inspiration. All the parenting skills in the world cannot compensate for a lack of attachment relationship. All the love in the world cannot get through without the psychological umbilical cord created by the child&#39;s attachment.&lt;/li&gt;
&lt;li&gt;(0:46:16) as a parent substitute. But who becomes the compass point is a function of attachment, and attachment, as we all know, can be fickle. The crucially important orienting function can be bestowed upon someone ill-suited for the task, a child&#39;s peers, for example. When a child becomes so attached to her peers that she would rather be with them and be like them, those peers, whether singly or as a group, become that child&#39;s working compass point. It will be her peers with whom she will seek closeness. She will look to her peers for cues on how to act, what to wear, how to look, what to say&lt;/li&gt;
&lt;li&gt;(0:57:31) parent, or peer. Most parents, though imperfect, are far less likely than peers to keep on hurting children this way. Feeling A fifth way of finding closeness is through feeling. Warm feelings, loving feelings, affectionate feelings. Emotion is always involved in attachment, but in a preschooler who can feel deeply and vulnerably, the pursuit of emotional intimacy becomes intense. Children who pursue connection in this way often fall in love with those they attach to. A child who experiences emotional intimacy&lt;/li&gt;
&lt;li&gt;(0:58:24) Love would be the long arm. The child carries the image of the loving and beloved parent in his mind and finds support and comfort in it. But now we are getting into dangerous territory. To give one&#39;s heart away is to risk it being broken. Some people never develop the capacity to be emotionally open and vulnerable, usually due to early perceptions of rejection or abandonment. Those who have loved and suffered hurt may retreat to less vulnerable modes of attaching. As we will show, vulnerability is something peer-oriented children seek to escape.&lt;/li&gt;
&lt;li&gt;(0:58:38) to risk it being broken. Some people never develop the capacity to be emotionally open and vulnerable, usually due to early perceptions of rejection or abandonment. Those who have loved and suffered hurt may retreat to less vulnerable modes of attaching. As we will show, vulnerability is something peer-oriented children seek to escape. When deeper forms of attachment appear too risky, the less vulnerable modes will predominate. Emotional intimacy is much less common among peer-oriented kids than in parent-oriented kids.&lt;/li&gt;
&lt;li&gt;(0:58:38) away is to risk it being broken. Some people never develop the capacity to be emotionally open and vulnerable, usually due to early perceptions of rejection or abandonment. Those who have loved and suffered hurt may retreat to less vulnerable modes of attaching. As we will show, vulnerability is something peer-oriented children seek to escape. When deeper forms of attachment appear too risky, the less vulnerable modes will predominate. Emotional intimacy is much less common among peer-oriented kids than in parent-oriented kids.&lt;/li&gt;
&lt;li&gt;(0:59:23) is through being known. The first signs of this final way of attaching are usually observable by the time a child enters school. To feel close to someone is to be known by them. In some ways, this is a recapitulation of attaching by way of the senses, except that being seen and heard are now experienced psychologically instead of strictly physically. In the pursuit of closeness, a child will share his secrets. In fact, closeness will often be defined by the secrets shared. Parent-oriented children do not like to keep secrets from their parents because of the resulting loss of closeness.&lt;/li&gt;
&lt;li&gt;(0:59:23) is through being known. The first signs of this final way of attaching are usually observable by the time a child enters school. To feel close to someone is to be known by them. In some ways, this is a recapitulation of attaching by way of the senses, except that being seen and heard are now experienced psychologically instead of strictly physically. In the pursuit of closeness, a child will share his secrets. In fact, closeness will often be defined by the secrets shared. Parent-oriented children do not like to keep secrets from their parents because of the resulting loss of closeness. For a peer&lt;/li&gt;
&lt;li&gt;(1:03:55) existence of competing primary attachments, competing orienting relationships—in other words, orienting relationships with conflicting values, conflicting messages. When primary attachments compete, one will lose out. And it is easy to see why. A sailor relying on a compass could not find his way if there were two magnetic north poles. No more successfully could a child simultaneously use both peers and adults as working compass points. The child will orient either by the values of the peer world or the values of the parents, but not both.&lt;/li&gt;
&lt;li&gt;(1:29:47) For many of the other children, in general, we focus more on getting our children fed than on the eating rituals meant to keep us connected. In his groundbreaking book, The Sibling Society, the American poet Robert Bly describes many manifestations of peer orientation and hints at its causes. Although Bly doesn&#39;t fully analyze the phenomenon, his insights should have received more attention. Family meals, talks, reading together no longer take place, writes Bly. What the young need—stability, presence, attention, advice, good psychic food&lt;/li&gt;
&lt;li&gt;(2:07:49) that neither parent could any longer conjure up feelings of warmth or affection toward their son. Melanie was thirteen years old. Her father could barely contain his anger when he talked about his daughter. Life with her changed after Melanie&#39;s grandmother had died when the child was in the sixth grade. Until that time, Melanie had been cooperative at home, a good student at school, and a loving sister to her brother, who was three years older. Now she was missing classes and couldn&#39;t care less about homework. She was sneaking out of the house on a regular basis. She refused to talk to her parents, declaring that she hated them,&lt;/li&gt;
&lt;li&gt;(2:07:49) that neither parent could any longer conjure up feelings of warmth or affection toward their son. Melanie was 13 years old. Her father could barely contain his anger when he talked about his daughter. Life with her changed after Melanie&#39;s grandmother had died when the child was in the sixth grade. Until that time, Melanie had been cooperative at home, a good student at school, and a loving sister to her brother, who was three years older. Now she was missing classes and couldn&#39;t care less about homework. She was sneaking out of the house on a regular basis. She refused to talk to her parents, declaring that she hated them.&lt;/li&gt;
&lt;li&gt;(2:09:59) and heard mock complaint: If parenting is so important, kids should come with a manual! The Secret of Parental Power Many people have concluded that parents cannot be expected to know what to do without formal training. There are all kinds of parenting courses now, and even classes teaching parents how to read nursery rhymes to their toddlers. Yet experts cannot teach what is most fundamental to effective parenting. The power to parent does not arise from techniques, no matter how well meant, but from the attachment relationship. In all three of our&lt;/li&gt;
&lt;li&gt;(2:09:59) ...heard mock complaint, if parenting is so important, kids should come with a manual. The secret of parental power. Many people have concluded that parents cannot be expected to know what to do without formal training. There are all kinds of parenting courses now, and even classes teaching parents how to read nursery rhymes to their toddlers. Yet experts cannot teach what is most fundamental to effective parenting. The power to parent does not arise from techniques, no matter how well meant, but from the attachment relationship.&lt;/li&gt;
&lt;li&gt;(2:10:11) Many people have concluded that parents cannot be expected to know what to do without formal training. There are all kinds of parenting courses now, and even classes teaching parents how to read nursery rhymes to their toddlers. Yet experts cannot teach what is most fundamental to effective parenting. The power to parent does not arise from techniques, no matter how well-meant, but from the attachment relationship. In all three of our examples, that power was missing. The secret of a parent&#39;s power is in the dependence of the child.&lt;/li&gt;
&lt;li&gt;(2:10:11) Many people have concluded that parents cannot be expected to know what to do without formal training. There are all kinds of parenting courses now, and even classes teaching parents how to read nursery rhymes to their toddlers. Yet experts cannot teach what is most fundamental to effective parenting. The power to parent does not arise from techniques, no matter how well meant, but from the attachment relationship. In all three of our examples, that power was missing. The secret of a parent&#39;s power is in the dependence of the child. Children are born&lt;/li&gt;
&lt;li&gt;(2:10:34) no matter how well meant, but from the attachment relationship. In all three of our examples, that power was missing. The secret of a parent&#39;s power is in the dependence of the child. Children are born completely dependent, unable to make their own way in this world. Their lack of viability as separate beings makes them utterly reliant on others for being taken care of, for guidance and direction, for support and approval, for a sense of home and belonging. It is the child&#39;s state of dependence that makes parenting necessary in the first place.&lt;/li&gt;
&lt;li&gt;(2:10:34) No matter how well meant, but from the attachment relationship. In all three of our examples, that power was missing. The secret of a parent&#39;s power is in the dependence of the child. Children are born completely dependent, unable to make their own way in this world. Their lack of viability as separate beings makes them utterly reliant on others for being taken care of, for guidance and direction, for support and approval, for a sense of home and belonging. It is the child&#39;s state of dependence that makes parenting necessary in the first place. If our children didn&#39;t&lt;/li&gt;
&lt;li&gt;(2:11:04) for a sense of home and belonging. It is the child&#39;s state of dependence that makes parenting necessary in the first place. If our children didn&#39;t need us, we would not need the power to parent. At first glance, the dependence of children seems straightforward enough. But here is the glitch: being dependent does not guarantee dependence on the appropriate caregivers. Every child is born in need of nurturing, but after infancy and toddlerhood not all children necessarily look to the parent to provide it.&lt;/li&gt;
&lt;li&gt;(2:11:04) a sense of home and belonging. It is the child&#39;s state of dependence that makes parenting necessary in the first place. If our children didn&#39;t need us, we would not need the power to parent. At first glance, the dependence of children seems straightforward enough. But here is the glitch: being dependent does not guarantee dependence on the appropriate caregivers. Every child is born in need of nurturing, but after infancy and toddlerhood not all children necessarily look to the parent to provide it.&lt;/li&gt;
&lt;li&gt;(2:11:23) forward enough. But here is the glitch: being dependent does not guarantee dependence on the appropriate caregivers. Every child is born in need of nurturing, but after infancy and toddlerhood not all children necessarily look to the parent to provide it. Our power to parent rests not in how dependent our child is but in how much our child depends specifically on us. The power to execute our parental responsibilities lies not in the neediness of our children but in their looking to us to be the answer to their needs.&lt;/li&gt;
&lt;li&gt;(2:11:33) need of nurturing, but after infancy and toddlerhood not all children necessarily look to the parent to provide it. Our power to parent rests not in how dependent our child is, but in how much our child depends specifically on us. The power to execute our parental responsibilities lies not in the neediness of our children, but in their looking to us to be the answer to their needs. We cannot truly take care of a child who does not count on us to be taken care of, or who depends on us only for food, clothing, shelter, and other material&lt;/li&gt;
&lt;li&gt;(2:11:33) of nurturing, but after infancy and toddlerhood, not all children necessarily look to the parent to provide it. Our power to parent rests not in how dependent our child is, but in how much our child depends specifically on us. The power to execute our parental responsibilities lies not in the neediness of our children, but in their looking to us to be the answer to their needs. We cannot truly take care of a child who does not count on us to be taken care of, or who depends on us only for food, clothing, shelter, and other material&lt;/li&gt;
&lt;li&gt;(2:11:47) but in how much our child depends specifically on us. The power to execute our parental responsibilities lies not in the neediness of our children but in their looking to us to be the answer to their needs. We cannot truly take care of a child who does not count on us to be taken care of or who depends on us only for food, clothing, shelter, and other material concerns. We cannot emotionally support a child who is not leaning on us for his psychological needs. It is frustrating to direct a child who does not welcome our guidance.&lt;/li&gt;
&lt;li&gt;(2:11:47) but in how much our child depends specifically on us. The power to execute our parental responsibilities lies not in the neediness of our children, but in their looking to us to be the answer to their needs. We cannot truly take care of a child who does not count on us to be taken care of, or who depends on us only for food, clothing, shelter, and other material concerns. We cannot emotionally support a child who is not leaning on us for his psychological needs. It is frustrating to direct a child who does not welcome our guidance, irksome and self-defeating&lt;/li&gt;
&lt;li&gt;(2:12:06) count on us to be taken care of, or who depends on us only for food, clothing, shelter, and other material concerns. We cannot emotionally support a child who is not leaning on us for his psychological needs. It is frustrating to direct a child who does not welcome our guidance, irksome and self-defeating to assist one who is not seeking our help. That was the situation faced by the parents of Kirsten, Sean, and Melanie. Kirsten no longer relied on her parents for her attachment needs or for her cues on how to be and what to do. At the tender age of seven, she no longer turned to them&lt;/li&gt;
&lt;li&gt;(2:12:20) It is frustrating to direct a child who does not welcome our guidance, irksome and self-defeating to assist one who is not seeking our help. That was the situation faced by the parents of Kirsten, Sean, and Melanie. Kirsten no longer relied on her parents for her attachment needs or for her cues on how to be and what to do. At the tender age of seven, she no longer turned to them for comfort and nurturance. Sean&#39;s stance went beyond that. He had developed a deep-seated resistance to being dependent on his father and mother. Sean&#39;s resistance, and Melanie&#39;s, extended even to being fed.&lt;/li&gt;
&lt;li&gt;(2:12:20) psychological needs. It is frustrating to direct a child who does not welcome our guidance, irksome and self-defeating to assist one who is not seeking our help. That was the situation faced by the parents of Kirsten, Sean, and Melanie. Kirsten no longer relied on her parents for her attachment needs or for her cues on how to be and what to do. At the tender age of seven, she no longer turned to them for comfort and nurturance. Sean&#39;s stance went beyond that. He had developed a deep-seated resistance to being dependent on his father and mother. Sean&#39;s resistance, and Melanie&#39;s, extended even to being fed.&lt;/li&gt;
&lt;li&gt;(2:12:42) At the tender age of seven, she no longer turned to them for comfort and nurturance. Sean&#39;s stance went beyond that—he had developed a deep-seated resistance to being dependent on his father and mother. Sean&#39;s resistance, and Melanie&#39;s, extended even to being fed or, more exactly, to the ritual of feeding that takes place at the family table. Melanie, as she entered adolescence, no longer looked to her parents for a sense of home or connection. She had no wish to be understood by them or to be intimately known by them. Not one of these three children felt dependent on their parents, and that was at the root of the frustration&lt;/li&gt;
&lt;li&gt;(2:14:26) In the lives of these three children, peers had replaced parents as the objects of emotional dependence. Kirsten had a tight-knit group of three friends who served as her compass point and her home base. For Sean, the peer group in general became his working attachment, the entity to which he became connected in place of his parents. His values, interests, and motivations were invested in his peers and the peer culture. For Melanie, the attachment void created by the death of her grandmother was filled by a girlfriend. In all three cases, the peer relationships competed with attachments to the parents, and in each case...&lt;/li&gt;
&lt;li&gt;(2:15:13) This spells double trouble for us parents. Not only are we left without the power to manage our child, but the innocent and incompetent usurpers acquire the power to lead our children astray. Our children&#39;s peers did not actively seek this power; it goes with the territory of dependence. This sinister cut in parenting power often comes when we least expect it and at a time when we are most in need of natural authority. The seeds of peer dependence have usually taken root by the primary grades, but it is in the intermediate years that the growing incompatibility of peer and parent attachments plays havoc.&lt;/li&gt;
&lt;li&gt;(2:15:13) It spells double trouble for us parents. Not only are we left without the power to manage our child, but the innocent and incompetent usurpers acquire the power to lead our children astray. Our children&#39;s peers did not actively seek this power. It goes with the territory of dependence. This sinister cut in parenting power often comes when we least expect it and at a time when we are most in need of natural authority. The seeds of peer dependence have usually taken root by the primary grades, but it is in the intermediate years that the growing incompatibility of peer and parent attachments plays havoc.&lt;/li&gt;
&lt;li&gt;(2:16:05) apparent, slips from our hands. What to us looks like independence is really just dependence transferred. We are in such a hurry for our children to be able to do things themselves that we do not see just how dependent they really are. Like power, dependence has become a dirty word. We want our children to be self-directing, self-motivated, self-controlled, self-orienting, self-reliant, and self-assured. We have put such a premium on independence that we lose sight of what childhood is about. Parents will complain of their child&#39;s oppositional and&lt;/li&gt;
&lt;li&gt;(2:16:05) appearance slips from our hands. What to us looks like independence is really just dependence transferred. We are in such a hurry for our children to be able to do things themselves that we do not see just how dependent they really are. Like power, dependence has become a dirty word. We want our children to be self-directing, self-motivated, self-controlled, self-orienting, self-reliant, and self-assured. We have put such a premium on independence that we lose sight of what childhood is about. Parents will complain of their child&#39;s oppositional and&lt;/li&gt;
&lt;li&gt;(2:16:16) to be able to do things themselves that we do not see just how dependent they really are. Like power, dependence has become a dirty word. We want our children to be self-directing, self-motivated, self-controlled, self-orienting, self-reliant, and self-assured. We have put such a premium on independence that we lose sight of what childhood is about. Parents will complain of their child&#39;s oppositional and off-putting behaviors, but rarely do they note that their children have stopped looking to them for nurturing, comfort, and assistance. They are disturbed by their child&#39;s failure&lt;/li&gt;
&lt;li&gt;(2:16:30) self-controlled, self-orienting, self-reliant, and self-assured. We have put such a premium on independence that we lose sight of what childhood is about. Parents will complain of their child&#39;s oppositional and off-putting behaviors, but rarely do they note that their children have stopped looking to them for nurturing, comfort, and assistance. They are disturbed by their child&#39;s failure to comply with their reasonable expectations, but seem unaware that the child no longer seeks their affection, approval, or appreciation. They do not notice that the child is turning to peers for support,&lt;/li&gt;
&lt;li&gt;(2:18:05) parental authority. Much of my work with families, and much of the advice I will give in this book, is intended to help parents reassume their natural position of authority. What enables peers to displace parents in the first place, given that such displacement seems contrary to what is needed? As always, there is logic to the natural order of things. A child&#39;s ability to attach to people who are not her biological parents serves an important function, because in life the presence of the birth parents is by no means assured. They could die or disappear. Our attachment programming required the flexibility&lt;/li&gt;
&lt;li&gt;(2:36:53) and also how things are meant to work, our attempted solutions, no matter how well-intentioned, will only compound the problem. Attachment arranges the parent and child hierarchically. The first business of attachment is to arrange adults and children in a hierarchical order. When humans enter a relationship, their attachment brain automatically ranks the participants in order of dominance. Embedded in our inborn brain apparatus are archetypical positions that divide roughly into dominant and dependent, caregiving and care-&lt;/li&gt;
&lt;li&gt;(2:36:53) And also how things are meant to work, our attempted solutions, no matter how well-intentioned, will only compound the problem. Attachment arranges the parent and child hierarchically. The first business of attachment is to arrange adults and children in a hierarchical order. When humans enter a relationship, their attachment brain automatically ranks the participants in order of dominance. Embedded in our inborn brain apparatus are archetypical positions that divide roughly into dominant and dependent, caregiving and caregiver.&lt;/li&gt;
&lt;li&gt;(2:39:38) to their dominant role. A peer-oriented child has no inner sense of order or rank, no desire for the parent to be bigger than one or above one. On the contrary, any such posturing in the parent strikes the peer-oriented child as contrived and unnatural, as if the parent is trying to lord it over the child or trying to put him down. The three children in the previous chapter were all seduced away from their parental attachments by peer orientation. Although Kirsten was only seven years old, her parents had lost their dominant position in the attachment order. That accounted for&lt;/li&gt;
&lt;li&gt;(2:39:54) oriented child is contrived and unnatural, as if the parent is trying to lord it over the child or trying to put him down. The three children in the previous chapter were all seduced away from their parental attachments by peer orientation. Although Kirsten was only seven years old, her parents had lost their dominant position in the attachment order. That accounted for her rudeness and lack of respect, especially when peers were around. Likewise with Sean and Melanie. As the attachment with parents had weakened, the hierarchical arrangement meant to facilitate parenting had collapsed, which is what Melanie&#39;s father&lt;/li&gt;
&lt;li&gt;(2:40:12) Her parents had lost their dominant position in the attachment order. That accounted for her rudeness and lack of respect, especially when peers were around. Likewise with Sean and Melanie. As the attachment with parents had weakened, the hierarchical arrangement meant to facilitate parenting had collapsed, which is what Melanie&#39;s father felt so acutely and was reacting to so vehemently. Melanie was treating her parents as if they were equals who had no business bossing her around and trying to run her life. Instinctively, Melanie&#39;s father was trying to put her in her place. Unfortunately,&lt;/li&gt;
&lt;li&gt;(2:41:01) child into obedience, at the price of grave damage to the relationship and to the child&#39;s long-term development. Peer orientation is not the only way the attachment order can become inverted. It may happen, for example, because the parents have unresolved needs they project onto the child. In our respective practices as psychologist and physician, we have both seen parents who would rely on their children as confidants, complaining to their children about problems with their spouse. The child becomes a listening post for the parent&#39;s emotional distress. Instead of being able to confide to her parents her own difficulty,&lt;/li&gt;
&lt;li&gt;(2:41:36) emotional distress. Instead of being able to confide to her parents her own difficulties, she learns to suppress her needs and to serve the emotional needs of others. Such an inversion of the attachment hierarchy is also harmful to healthy development. In Attachment, the first volume of his classic trilogy exploring the influence of parent-child relationships on personality development, the psychiatrist John Bowlby writes that, &amp;quot;...the reversal of roles between child or adolescent and parent, unless very temporary, is almost always not only a sign of pathology in the parent, but a cause of it in the child.&amp;quot;&lt;/li&gt;
&lt;li&gt;(2:41:36) Instead of being able to confide to her parents her own difficulties, she learns to suppress her needs and to serve the emotional needs of others. Such an inversion of the attachment hierarchy is also harmful to healthy development. In Attachment, the first volume of his classic trilogy exploring the influence of parent-child relationships on personality development, the psychiatrist John Bowlby writes that the reversal of roles between child or adolescent and parent, unless very temporary, is almost always not only a sign of pathology in the parent, but a cause of it in the child.&lt;/li&gt;
&lt;li&gt;(2:47:07) The mother cat will physically chastise the kitten for the slightest infraction, no matter how unavoidable it was. Our maturity as human parents and our sense of responsibility can help us transcend such instinctive reactions, but we still have much in common with other creatures of attachment. We too are triggered more easily when the attachment has become weakened. The lack of spontaneous mutual attachment is probably what has given step-parents such a bad reputation in the fairy tales of children. Most of us need the help of attachment to put up with the wear and tear experienced while executing&lt;/li&gt;
&lt;li&gt;(2:47:07) The mother cat will physically chastise the kitten for the slightest infraction, no matter how unavoidable it was. Our maturity as human parents and our sense of responsibility can help us transcend such instinctive reactions, but we still have much in common with other creatures of attachment. We too are triggered more easily when the attachment has become weakened. The lack of spontaneous mutual attachment is probably what has given stepparents such a bad reputation in the fairy tales of children. Most of us need the help of attachment to put up with the wear and tear experienced while executing&lt;/li&gt;
&lt;li&gt;(2:58:17) Attachment provides power-assisted learning. How delightful it is, many people have found, to study a new language when in love with the charming instructor! Whether we know it or not, as parents and teachers we rely heavily on attachment to make models out of us. When peers replace parents as the dominant attachment figures, they become our child&#39;s models without of course assuming any responsibility for the end result. Our children copy each other&#39;s language, gestures, actions, attitudes, and preferences. The learning is just as impressive, but the content&lt;/li&gt;
&lt;li&gt;(2:58:17) Attachment provides power-assisted learning. How delightful it is, many people have found, to study a new language when in love with the charming instructor. Whether we know it or not, as parents and teachers we rely heavily on attachment to make models out of us. When peers replace parents as the dominant attachment figures, they become our child&#39;s models without of course assuming any responsibility for the end result. Our children copy each other&#39;s language, gestures, actions, attitudes, and preferences. The learning is just as impressive, but the content is&lt;/li&gt;
&lt;li&gt;(3:06:22) the child that he is good, we think we are describing an innate characteristic of the child. What we don&#39;t see is that it&#39;s the child&#39;s attachment to the adult that fosters that goodness. In this way, we are blind to the power of attachment. The danger in believing that the child&#39;s innate personality causes his desire to be good is that we will blame and shame him, we will see him as bad, if we find that desire lacking. The impulse to be good arises less from a child&#39;s character than from the nature of a child&#39;s relationships. If a child is bad, it&#39;s the relationship we need to correct, not the child.&lt;/li&gt;
&lt;li&gt;(3:06:22) child that he is good, we think we are describing an innate characteristic of the child. What we don&#39;t see is that it&#39;s the child&#39;s attachment to the adult that fosters that goodness. In this way, we are blind to the power of attachment. The danger in believing that the child&#39;s innate personality causes his desire to be good is that we will blame and shame him, we will see him as bad if we find that desire lacking. The impulse to be good arises less from a child&#39;s character than from the nature of a child&#39;s relationships. If a child is bad, it&#39;s the relationship we need to correct, not the child.&lt;/li&gt;
&lt;li&gt;(3:11:46) respect for society, the realization of potential, the development of talent, the pursuit of a passion, the appreciation of culture—are often replaced with peer values that are much more immediate and short term. Appearance, entertainment, peer loyalty, spending time together, fitting into the subculture, and getting along with each other will be prized above education and the realization of personal potential. Parents often find themselves arguing about values, not realizing that for their peer-oriented children, values are nothing more than the standards that they, the children, must meet in order to gain the acceptance.&lt;/li&gt;
&lt;li&gt;(3:24:17) Asked what matters the most to them, peer-oriented and counterwill-driven children often reply, to not let anyone push us around. So pervasive and severe is their counterwill that to adults they seem incorrigible and impossible to manage. Clinicians diagnose such children with oppositional defiant disorder. Yet it is not the oppositionality, the counterwill that is out of order, but the child&#39;s attachments. These children are only being true to their instinct in defying people to whom they do not feel connected. The more peer-oriented a child, the more resistant to the adults in charge.&lt;/li&gt;
&lt;li&gt;(3:26:30) was this counterwill dynamic, distorted and magnified by peer orientation. Simple requests resulted in these children getting their backs up, push came to shove, expectations backfired. The more important something was to the parents, the less inclined the children were to deliver. The more commanding Melanie&#39;s father tried to be, the more rebellious his daughter became. It wasn&#39;t so much that the parents were doing anything wrong as that their children&#39;s counterwill instinct had been made pervasive and even perverse by peer orientation. The natural purpose&lt;/li&gt;
&lt;li&gt;(3:27:50) helpless and dependent, but the outcome of natural development is the maturation of a self-motivated and self-regulated individual with a genuine will of her own. The long transition from infancy to adulthood begins with the very young child&#39;s tentative moves toward separation from the parents. Counterwill first appears in the toddler to help in that task of individuation. In essence, the child erects a wall of no&#39;s. Behind this wall, the child can gradually learn her likes and dislikes, aversions and preferences, without being overwhelmed by the far more powerful will of the parent.&lt;/li&gt;
&lt;li&gt;(3:33:15) But, as I will explain, that shift toward genuine independence can happen only when a child is absolutely secure in his attachment to the adults in his life. See Chapter 9. A five-year-old safely grounded in his relationship with his parents might react to a &amp;quot;the sky is blue&amp;quot; kind of statement by retorting adamantly that it is not. It may seem to the parent that the child is blatantly contrary or trying to be difficult. In reality, the child&#39;s brain is simply blocking out any ideas or thoughts that have not originated within him. Anything that is alien to him is resisted&lt;/li&gt;
&lt;li&gt;(3:33:15) But, as I will explain, that shift toward genuine independence can happen only when a child is absolutely secure in his attachment to the adults in his life. See Chapter 9. A five-year-old, safely grounded in his relationship with his parents, might react to a &amp;quot;the sky is blue&amp;quot; kind of statement by retorting adamantly that it is not. It may seem to the parent that the child is blatantly contrary or trying to be difficult. In reality, the child&#39;s brain is simply blocking out any ideas or thoughts that have not originated within him. Anything that is alien to him is resistant&lt;/li&gt;
&lt;li&gt;(3:34:54) and the child makes headway in becoming her own person, the need for attachment wanes. As it does, the maturing child will be even more sensitive to coercion and even less amenable to being bossed around. Such a child will feel demeaned when treated as if he or she does not have his own thoughts and opinions, boundaries, values and goals, decisions and aspirations. She will resist adamantly when not acknowledged as a separate person. Again, this is a good thing. Counterwill is serving the purpose of protecting the child against becoming an extension of anyone else, even the parent.&lt;/li&gt;
&lt;li&gt;(3:34:54) Ultimately, and the child makes headway in becoming her own person, the need for attachment wanes. As it does, the maturing child will be even more sensitive to coercion and even less amenable to being bossed around. Such a child will feel demeaned when treated as if he or she does not have his own thoughts and opinions, boundaries, values and goals, decisions and aspirations. She will resist adamantly when not acknowledged as a separate person. Again, this is a good thing. Counterwill is serving the purpose of protecting the child against becoming an extension of anyone else, even the parent.&lt;/li&gt;
&lt;li&gt;(3:35:03) and even less amenable to being bossed around. Such a child will feel demeaned when treated as if he or she does not have his own thoughts and opinions, boundaries, values and goals, decisions and aspirations. She will resist adamantly when not acknowledged as a separate person. Again, this is a good thing. Counterwill is serving the purpose of protecting the child against becoming an extension of anyone else, even the parent. It helps to deliver an autonomous, emergent, independent being, full of vitality and able to function outside of attachments.&lt;/li&gt;
&lt;li&gt;(3:35:03) sensitive to coercion and even less amenable to being bossed around. Such a child will feel demeaned when treated as if he or she does not have his own thoughts and opinions, boundaries, values and goals, decisions and aspirations. She will resist adamantly when not acknowledged as a separate person. Again, this is a good thing. Counterwill is serving the purpose of protecting the child against becoming an extension of anyone else, even the parent. It helps to deliver an autonomous, emergent, independent being, full of vitality and able to function outside of attachments.&lt;/li&gt;
&lt;li&gt;(3:39:06) to do so, he will suppress his own feelings and camouflage his own opinions, should they differ from those of his peers. Are we saying that it may not be natural, for example, that a teenager may want to stay out late with his friends? No, the teen may want to hang out with his pals not because he is driven by peer orientation but simply because on occasion that&#39;s just what he feels like doing. The question is, is he willing to discuss the matter with his parents? Is he respectful of their perspective? Is he able to say no to his friends when he has other responsibilities or family events or when he simply may prefer being on his own?&lt;/li&gt;
&lt;li&gt;(3:39:06) his peers. To do so, he will suppress his own feelings and camouflage his own opinions, should they differ from those of his peers. Are we saying that it may not be natural, for example, that a teenager may want to stay out late with his friends? No, the teen may want to hang out with his pals not because he is driven by peer orientation, but simply because on occasion that&#39;s just what he feels like doing. The question is, is he willing to discuss the matter with his parents? Is he respectful of their perspective? Is he able to say no to his friends when he has other responsibilities or family events, or when he simply may prefer being on his own?&lt;/li&gt;
&lt;li&gt;(3:43:44) is not without cost. The relationship will be weakened by the insecurity caused by our anger and our threats. The more force we use, the more wear and tear on the relationship. The weaker the relationship becomes, the more prone we are to being replaced, nowadays most often by peers. Not only is peer orientation a major cause of counterwill, but our reactions to counterwill can foster peer orientation. Why Force and Manipulation Backfire&lt;/li&gt;
&lt;li&gt;(3:43:44) The relationship is not without cost. The relationship will be weakened by the insecurity caused by our anger and our threats. The more force we use, the more wear and tear on the relationship. The weaker the relationship becomes, the more prone we are to being replaced, nowadays most often by peers. Not only is peer orientation a major cause of counterwill, but our reactions to counterwill can foster peer orientation. Why force and manipulation backfire&lt;/li&gt;
&lt;li&gt;(3:50:25) We need to get past the symptoms. If all we perceive is the resistance or the insolence, we will respond with anger, frustration, and force. We must see that the child is only reacting instinctively whenever he feels he is being pushed and pulled. Beyond the counterwill, we need to recognize the weakened attachment. The defiance is not the essence of the problem. The root cause is the peer orientation that makes counterwill backfire on adults and robs it of its natural purpose. As we will discuss in Part 4, the best response to a child&#39;s&lt;/li&gt;
&lt;li&gt;(4:16:02) These are not the kids I am most concerned about, although I certainly do have a concern about the impact an atmosphere of invulnerability will have on their learning and development. In such an environment, genuine curiosity cannot thrive, questions cannot be freely asked, naive enthusiasm for learning cannot be expressed. Risks are not taken in such an environment, nor can passion for life and creativity find their outlets.&lt;/li&gt;
&lt;li&gt;(4:16:02) using themselves to ridicule and attack. Invulnerability is a camouflage they adopt to blend in with the crowd but will quickly remove in the company of those with whom they have the safety to be their true selves. These are not the kids I am most concerned about, although I certainly do have a concern about the impact an atmosphere of invulnerability will have on their learning and development. In such an environment, genuine curiosity cannot thrive, questions cannot be freely asked, naive enthusiasm for learning cannot be expressed. Risks are not taken in such an environment, nor can passion for life and creativity find their outlets.&lt;/li&gt;
&lt;li&gt;(4:17:52) whose experience of emotional pain has been profound. Most likely to develop this extreme type of defensive emotional hardening are children from orphanages or multiple foster homes, children who have experienced significant losses or have suffered abuse and neglect. Given the trauma they have endured, it is easy to appreciate why such children would have developed powerful unconscious defenses. What is surprising is that, without any comparable trauma, many children who have been peer-oriented for some time can manifest the same level of defensiveness. It seems that peer-oriented kids&lt;/li&gt;
&lt;li&gt;(4:19:39) Everyone can experience such emotional closing down at times. A child becomes defended against vulnerability when being shut down is no longer just a temporary reaction but becomes a persistent state. There are four reasons peer-oriented kids are more susceptible to emotional wounds than adult-oriented ones. The net effect is a flight from vulnerability disturbingly similar to the emotional hardening of traumatized children. Peer-oriented children lose their natural shield against stress.&lt;/li&gt;
&lt;li&gt;(4:19:39) Emotionally wounded. Everyone can experience such emotional closing down at times. A child becomes defended against vulnerability when being shut down is no longer just a temporary reaction but becomes a persistent state. There are four reasons peer-oriented kids are more susceptible to emotional wounds than adult-oriented ones. The net effect is a flight from vulnerability disturbingly similar to the emotional hardening of traumatized children. Peer-oriented children lose their natural shield against stress.&lt;/li&gt;
&lt;li&gt;(4:22:05) When Brayden was five years old, Brayden wanted to play soccer in the local community league. On the very first day of practice, some older kids gave him a rough time. When I heard their voices taunting and ridiculing him, I quickly turned into a protective father bear. I had every intention of giving these young bullies an external attitude adjustment. When I observed Brayden face off with them, stretching himself to his full height, putting his hands on his hips, and sticking his chest out as far as it would go. I heard him say something like, I am not a stupid little jerk. My daddy says I&#39;m a soccer player. And that seemed to be that.&lt;/li&gt;
&lt;li&gt;(4:22:05) five years old. Brayden wanted to play soccer in the local community league. On the very first day of practice some older kids gave him a rough time. When I heard their voices taunting and ridiculing him, I quickly turned into a protective father bear. I had every intention of giving these young bullies an external attitude adjustment. When I observed Brayden face off with them, stretching himself to his full height, putting his hands on his hips and sticking his chest out as far as it would go, I heard him say something like, I am not a stupid little jerk. My daddy says I&#39;m a soccer player. And that seemed to be that.&lt;/li&gt;
&lt;li&gt;(4:23:18) also sensitizes him to the father&#39;s own words and gestures. If he, the parent, belittled him, shamed him, poured contempt on him, Brayden would be devastated. His attachment to his parents renders him highly vulnerable in relationship to them, but less vulnerable in relationship to others. There is an inside and an outside to attachment. The vulnerability is on the inside, the invulnerability on the outside. Attachment is both a shield and a sword. Attachment divides the world into those who can hurt you and those who can&#39;t. Attachment and vulnerability,&lt;/li&gt;
&lt;li&gt;(4:23:18) also sensitizes him to the father&#39;s own words and gestures. If he, the parent, belittled him, shamed him, poured contempt on him, Braden would be devastated. His attachment to his parents renders him highly vulnerable in relationship to them, but less vulnerable in relationship to others. There is an inside and an outside to attachment. The vulnerability is on the inside, the invulnerability on the outside. Attachment is both a shield and a sword. Attachment divides the world into those who can hurt you and those who can&#39;t. Attachment and vulnerability, these two great&lt;/li&gt;
&lt;li&gt;(4:23:57) These two great themes of human existence go hand in hand. An obvious part of our job as parents is to defend our children against being physically wounded. Although the bruising is not always so visible, the capacity to be hurt is even greater in the psychological arena. Even we adults, as relatively mature creatures, can be violently thrown off our course or become immobilized by the emotional pain of disrupted attachments. If we as adults can get hurt in this way, how much more can children, who are far more dependent, far more in need of their attachments?&lt;/li&gt;
&lt;li&gt;(4:51:16) parents. They would extend themselves to make possible some fervently expressed desire of hers, only to find that she bolted at the first moment of frustration or failure. She quit her figure skating class at the end of her second lesson after they had carefully saved the money for the fees and arranged their schedules to accommodate her timetable. Sarah was also very impulsive, impatient, and would lose her temper easily. She kept on promising to be good, but often failed to follow through. Peter&#39;s mother and father were also concerned. Their son was chronically impatient and irritable, at times getting quite nasty with his sister as well as his parents.&lt;/li&gt;
&lt;li&gt;(4:54:37) It affects many children well past the preschool years and may even be seen in teenagers and adults. Many adults have not attained maturity, have not mastered being independent, self-motivated individuals capable of tending their own emotional needs and of respecting the needs of others. Among the several reasons why maturity is less and less prevalent today, peer orientation is probably the main culprit. Immaturity and peer orientation go hand in hand. The earlier the onset of peer orientation in a child&#39;s life and the more intense the preoccupation with peers, the greater the likelihood&lt;/li&gt;
&lt;li&gt;(4:54:37) affects many children well past the preschool years and may even be seen in teenagers and adults. Many adults have not attained maturity, have not mastered being independent, self-motivated individuals capable of tending their own emotional needs and of respecting the needs of others. Among the several reasons why maturity is less and less prevalent today, peer orientation is probably the main culprit. Immaturity and peer orientation go hand in hand. The earlier the onset of peer orientation in a child&#39;s life and the more intense the preoccupation with peers, the greater the likelihood&lt;/li&gt;
&lt;li&gt;(4:58:14) Peter could not assimilate the idea of work because the concept requires mixed feelings. Work is often not very attractive, but we generally do it because we can mix our resistance to it in the moment with a commitment or purpose we may have in mind for the long term. Too immature to hold on to a goal beyond immediate satisfaction, Peter worked only when he felt like it, and that wasn&#39;t very often. He was conscious of no more than one feeling at a time. In this sense, he was no different from any preschooler. His failure to endure conflicting thoughts, feelings, and purposes in his consciousness was a legacy&lt;/li&gt;
&lt;li&gt;(5:02:14) becomes unique and separate from other individuals. The better differentiated she becomes, the more she is able to mix with others without losing her sense of self. More fundamentally, a sense of self first needs to separate from inner experience, a capacity entirely absent in the young child. The child has to be able to know that she is not identical with whatever feeling happens to be active in her at any particular moment. She can feel something without her actions being necessarily dominated by that feeling. She can be aware of other conflicting feelings or of thoughts&lt;/li&gt;
&lt;li&gt;(5:08:41) for parents is to help kids grow up, not simply to look like grown-ups. If discipline is no cure for immaturity and if scripting is helpful but insufficient, how can we help our children mature? For years, developmentalists puzzled over the conditions that activated maturation. The breakthrough came only when researchers discovered the fundamental importance of attachment. Surprising as it may be to say, the story of maturation is quite straightforward and self-evident. Like so much else in child development, it begins with attachment.&lt;/li&gt;
&lt;li&gt;(5:09:46) Their needs are met for attachment, for nurturing contact, and for being able to depend on the relationship unconditionally. Few parents, and even fewer experts, understand this intuitively. When I became a parent, one thoughtful father who did understand said to me, I saw that the world seemed absolutely convinced that you must form your children, actively form their characters, rather than simply create an environment in which they can develop and thrive. Nobody seemed to get that if you give them the loving connection they need, they will flourish.&lt;/li&gt;
&lt;li&gt;(5:09:53) Few parents, and even fewer experts, understand this intuitively. When I became a parent, one thoughtful father who did understand said to me, I saw that the world seemed absolutely convinced that you must form your children, actively form their characters, rather than simply create an environment in which they can develop and thrive. Nobody seemed to get that if you give them the loving connection they need, they will flourish. The key to activating maturation is to take care of the attachment needs of the child.&lt;/li&gt;
&lt;li&gt;(5:09:53) Few parents, and even fewer experts, understand this intuitively. When I became a parent, one thoughtful father who did understand said to me, I saw that the world seemed absolutely convinced that you must form your children, actively form their characters, rather than simply create an environment in which they can develop and thrive. Nobody seemed to get that if you give them the loving connection they need, they will flourish. The key to activating maturation is to take care of the attachment needs of the child, to foster&lt;/li&gt;
&lt;li&gt;(5:10:02) One thoughtful father who did understand said to me, &amp;quot;I saw that the world seemed absolutely convinced that you must form your children, actively form their characters, rather than simply create an environment in which they can develop and thrive. Nobody seemed to get that if you give them the loving connection they need, they will flourish. The key to activating maturation is to take care of the attachment needs of the child. To foster independence, we must first invite dependence. To promote individuation, we must provide a sense of belonging and unity&lt;/li&gt;
&lt;li&gt;(5:10:16) Nobody seemed to get that if you give them the loving connection they need, they will flourish. The key to activating maturation is to take care of the attachment needs of the child. To foster independence, we must first invite dependence. To promote individuation, we must provide a sense of belonging and unity. To help the child separate, we must assume the responsibility for keeping the child close. We help a child let go by providing more contact and connection than he himself is seeking. When he asks for a hug, we give him&lt;/li&gt;
&lt;li&gt;(5:10:26) The key to activating maturation is to take care of the attachment needs of the child. To foster independence we must first invite dependence; to promote individuation we must provide a sense of belonging and unity; to help the child separate we must assume the responsibility for keeping the child close. We help a child let go by providing more contact and connection than he himself is seeking. When he asks for a hug, we give him a warmer one than he is giving us. We liberate children not by making them work for our love but by letting them rest in it.&lt;/li&gt;
&lt;li&gt;(5:10:44) responsibility for keeping the child close. We help a child let go by providing more contact and connection than he himself is seeking. When he asks for a hug, we give him a warmer one than he is giving us. We liberate children not by making them work for our love, but by letting them rest in it. We help a child face the separation involved in going to sleep or going to school by satisfying his need for closeness. Thus, the story of maturation is one of paradox. Dependence and attachment foster independence and genuine separation.&lt;/li&gt;
&lt;li&gt;(5:11:23) Attachment is the womb of maturation. Just as the biological womb gives birth to a separate being in the physical sense, attachment gives birth to a separate being in the psychological sense. Following physical birth, the developmental agenda is to form an emotional attachment womb for the child from which he can be born once again as an autonomous individual, capable of functioning without being dominated by attachment drives. Humans never outgrow their need to connect with others, nor should they, but mature, truly individual people are not controlled by these needs. Becoming such a separate being&lt;/li&gt;
&lt;li&gt;(5:13:14) sense of confidence in a supply, getting food will continue to be the top priority. A child is not free to proceed with his learning and his life until the food issues are taken care of, and we parents do that as a matter of course. Our duty ought to be equally transparent to us in satisfying the child&#39;s attachment hunger. In his book On Becoming a Person, the psychotherapist Carl Rogers describes a warm, caring attitude, for which he adopted the phrase unconditional positive regard, because, he said, it has no conditions of worth attached to it. This is a caring&lt;/li&gt;
&lt;li&gt;(5:14:11) therapist in relation to her or his clients. Substitute parent for therapist and child for client, and we have an eloquent description of what is needed in a parent-child relationship. Unconditional parental love is the indispensable nutrient for the child&#39;s healthy emotional growth. The first task is to create space in the child&#39;s heart for the certainty that she is precisely the person the parents want and love. She does not have to do anything or be any different to earn that love. In fact, she cannot do anything since that love cannot be won or lost. It is not conditional. It is just there.&lt;/li&gt;
&lt;li&gt;(5:14:11) Substitute parent for therapist and child for client, and we have an eloquent description of what is needed in a parent-child relationship. Unconditional parental love is the indispensable nutrient for the child&#39;s healthy emotional growth. The first task is to create space in the child&#39;s heart for the certainty that she is precisely the person the parents want and love. She does not have to do anything or be any different to earn that love; in fact, she cannot do anything since that love cannot be won or lost. It is not conditional. It is just there.&lt;/li&gt;
&lt;li&gt;(5:14:27) child&#39;s healthy emotional growth. The first task is to create space in the child&#39;s heart for the certainty that she is precisely the person the parents want and love. She does not have to do anything or be any different to earn that love. In fact, she cannot do anything since that love cannot be won or lost. It is not conditional. It is just there, regardless of which side the child is acting from, good or bad. The child can be ornery, unpleasant, whiny, uncooperative, and plain rude, and the parent still lets her feel loved.&lt;/li&gt;
&lt;li&gt;(5:14:27) healthy emotional growth. The first task is to create space in the child&#39;s heart for the certainty that she is precisely the person the parents want and love. She does not have to do anything or be any different to earn that love. In fact, she cannot do anything since that love cannot be won or lost. It is not conditional. It is just there, regardless of which side the child is acting from, good or bad. The child can be ornery, unpleasant, whiny, uncooperative, and plain rude, and the parent still lets her feel loved.&lt;/li&gt;
&lt;li&gt;(5:17:59) Peer orientation stunts growth in five significant ways. Parental nurturance cannot get through. One effect of peer orientation is that the love and nurturance we have for our children cannot get through. This was certainly the case in Peter&#39;s situation and for many of the parents I have conferred with. There was no doubt that Peter&#39;s parents loved him, wanted the best for him, and were willing to sacrifice for him. However, they, like many parents in their situation, found it difficult to maintain love in the absence of any kind of reciprocity from their son and even more daunting&lt;/li&gt;
&lt;li&gt;(5:18:59) A virtual banquet spread out before him but is suffering from psychological malnourishment because of attachment problems. You cannot feed someone who is not sitting at your table. All the love in the world would not be enough to take the child to the turning point. The umbilical cord needs to be hooked up for the nourishment to get through. It is impossible to satiate the attachment needs of a child who is not actively attaching to the person willing and able to provide for those needs. When a child replaces parents with peers as the primary attachment figures, it is to peers she will look for emotional nurturing. Plainly put, it is exceptional&lt;/li&gt;
&lt;li&gt;(5:22:21) For the reasons discussed in the last chapter, peer-oriented children cannot permit themselves to feel their vulnerability. It may seem strange that feelings of fulfillment would require openness to feelings of vulnerability. There is no hurt or pain in fulfillment, quite the opposite. Yet there is an underlying emotional logic to this phenomenon. For the child to feel full, he must first feel empty. To feel helped, the child must first feel in need of help. To feel complete, he must have felt incomplete. To experience the joy of reunion, one must first experience the ache of loss.&lt;/li&gt;
&lt;li&gt;(5:25:04) or are too defended against vulnerability to be capable of satiation. Insatiability keeps our children stuck in first gear developmentally, stuck in immaturity, unable to transcend basic instincts. They are thwarted from ever finding rest and remain ever dependent on someone or something outside themselves for satisfaction. Neither the discipline imposed by parents nor the love felt by them can cure this condition. The only hope is to bring children back into the attachment fold where they belong and then soften them up to where our love can actually&lt;/li&gt;
&lt;li&gt;(7:03:27) baseball prospect, a draft pick of the Los Angeles Dodgers for 2003, was found guilty of inviting sexual touching by a minor and sentenced to 45 days in jail. On one occasion, the young athlete had had two girls, ages 12 and 13, perform oral sex on him. At his successful appeal he argued that he had not initiated the contact the girls had. And why? The two alleged victims told the court that it was routine in their community for seventh-grade girls to offer oral sex to boys. One of them said that she participated because everyone else was doing it and&lt;/li&gt;
&lt;li&gt;(7:03:27) baseball prospect, a draft pick of the Los Angeles Dodgers for 2003, was found guilty of inviting sexual touching by a minor and sentenced to 45 days in jail. On one occasion, the young athlete had had two girls, ages 12 and 13, perform oral sex on him. At his successful appeal he argued that he had not initiated the contact, the girls had. And why? The two alleged victims told the court that it was routine in their community for seventh-grade girls to offer oral sex to boys. One of them said that she participated because everyone else was doing it&lt;/li&gt;
&lt;li&gt;(7:38:06) Apart from attachments Highly emergent children usually have areas of keen interest and are intrinsically motivated to learn. They derive great satisfaction from forming an insight or in understanding how something works. They create their own goals around learning. They like to be original and seek self-mastery. Emergent learners take delight in responsibility and spontaneously move to realize their own potential. For teachers who value curiosity, invite questions, and give the child&#39;s interests the lead, emergent learners are a delight to teach.&lt;/li&gt;
&lt;li&gt;(7:43:17) Our pedagogy and curriculum take the integrative abilities of children for granted. When we, as educators, fail to register what&#39;s missing, we also fail to realize what we&#39;re up against in trying to temper children&#39;s thinking or behavior. We try to get them to do something their minds are incapable of, and when we don&#39;t succeed, we punish them for that failure. Those with integrative minds assume that everyone else can think the same way, but this assumption no longer fits the kinds of learners we face in our classrooms today. Children who lack integrative intelligence are not amenable to this form of teaching and need to be&lt;/li&gt;
&lt;li&gt;(7:43:44) someone else can think the same way. But this assumption no longer fits the kinds of learners we face in our classrooms today. Children who lack integrative intelligence are not amenable to this form of teaching and need to be approached differently. Peer-oriented students are more likely to be disabled learners, untempered in thought, feeling, and action. Peer orientation jeopardizes adaptive trial and error learning. Most learning occurs by adaptation, by a process of trial and error.&lt;/li&gt;
&lt;li&gt;(7:43:44) Someone else can think the same way, but this assumption no longer fits the kinds of learners we face in our classrooms today. Children who lack integrative intelligence are not amenable to this form of teaching and need to be approached differently. Peer-oriented students are more likely to be disabled learners, untempered in thought, feeling, and action. Peer orientation jeopardizes adaptive trial and error learning. Most learning occurs by adaptation, by a process of trial and error. We attempt new&lt;/li&gt;
&lt;li&gt;(7:43:54) are not amenable to this form of teaching and need to be approached differently. Peer-oriented students are more likely to be disabled learners, untempered in thought, feeling, and action. Peer orientation jeopardizes adaptive trial-and-error learning. Most learning occurs by adaptation, by a process of trial and error. We attempt new tasks, make mistakes, encounter stumbling blocks, get things wrong, and then draw the appropriate conclusions or have someone else draw them for us.&lt;/li&gt;
&lt;li&gt;(7:44:01) to be disabled learners, untempered in thought, feeling, and action. Peer orientation jeopardizes adaptive trial-and-error learning. Most learning occurs by adaptation, by a process of trial and error. We attempt new tasks, make mistakes, encounter stumbling blocks, get things wrong, and then draw the appropriate conclusions or have someone else draw them for us. Failure is an essential part of the learning process, and correction is the primary instrument of teaching. The flight from&lt;/li&gt;
&lt;li&gt;(7:44:01) to be disabled learners, untempered in thought, feeling, and action. Peer orientation jeopardizes adaptive trial-and-error learning. Most learning occurs by adaptation, by a process of trial and error. We attempt new tasks, make mistakes, encounter stumbling blocks, get things wrong, and then draw the appropriate conclusions or have someone else draw them for us. Failure is an essential part of the learning process, and correction is the primary instrument of teaching.&lt;/li&gt;
&lt;li&gt;(8:13:23) move to restore what psychologist Gershen Kaufman has called the interpersonal bridge, and rebuilding that bridge is always our responsibility. We can&#39;t expect children to do it. They are not mature enough to understand the need for it. For teachers and/or other adults who are in charge of children not their own, collecting them should always be the first item of business. If we try to take care of children or to instruct them without having first collected them, we run counter to their natural instinct to resist the demands and instructions of strangers. It is undoubtedly this act of collecting a child that sets the master teacher&lt;/li&gt;
&lt;li&gt;(8:16:51) of affection are potent. Researchers have identified emotional warmth, enjoyment, and delight at the top of the list as effective activators of attachment. If we have a twinkle in our eye and some warmth in our voice, we invite connection that most children will not turn down. When we give children signs that they matter to us, most children will want to hold on to the knowledge that they are special to us and appreciated in our life. For our own children, the physical component is key. Hugs and embraces were designed for children to hold on to and can warm up a child&lt;/li&gt;
&lt;li&gt;(8:16:51) Researchers have identified emotional warmth, enjoyment, and delight at the top of the list as effective activators of attachment. If we have a twinkle in our eye and some warmth in our voice, we invite connection that most children will not turn down. When we give children signs that they matter to us, most children will want to hold on to the knowledge that they are special to us and appreciated in our life. For our own children, the physical component is key. Hugs and embraces were designed for children to hold on to and can warm up a child&lt;/li&gt;
&lt;li&gt;(8:17:57) For the six modes of attachment, see Chapter 2. Although touch is important, we need to keep in mind that it is certainly not the only way to connect with children. For children who are emotionally defended against attaching in one of the more vulnerable ways, one may have to focus on less vulnerable offerings, like conveying a sense of sameness with a young person or finding an opportunity to demonstrate some loyalty by being on his side. In my work with young offenders, this was almost always where I started. Sometimes it would be as simple as noticing that we both had blue eyes or that we shared a similar interest.&lt;/li&gt;
&lt;li&gt;(8:17:57) For the six modes of attachment, see chapter two. Although touch is important, we need to keep in mind that it is certainly not the only way to connect with children. For children who are emotionally defended against attaching in one of the more vulnerable ways, one may have to focus on less vulnerable offerings, like conveying a sense of sameness with a young person or finding an opportunity to demonstrate some loyalty by being on his side. In my work with young offenders, this was almost always where I started. Sometimes it would be as simple as noticing that we both had blue eyes or that we shared a similar interest.&lt;/li&gt;
&lt;li&gt;(8:18:15) One may have to focus on less vulnerable offerings, like conveying a sense of sameness with the young person or finding an opportunity to demonstrate some loyalty by being on his side. In my work with young offenders, this was almost always where I started. Sometimes it would be as simple as noticing that we both had blue eyes or that we shared a similar interest and had something in common. Above all, an adult has to give something before the child will hold on. The ultimate gift is to make a child feel invited to exist in our presence exactly as he is, to express our delight in his very being.&lt;/li&gt;
&lt;li&gt;(8:19:50) is conditional. Our challenge as parents is to provide an invitation that is too desirable and too important for a child to turn down, a loving acceptance that no peer can provide. In holding on to our gift of unconditional love, the child will be holding on to us emotionally, just as the infant held with closed fist the parent&#39;s finger. The child must perceive our offering to be spontaneous for connection to work. It may seem counterintuitive to say this, and I&#39;ll explain my reasons shortly, but we cannot collect a child by giving what is expected, whether it be part of a ritual&lt;/li&gt;
&lt;li&gt;(8:19:50) is conditional. Our challenge as parents is to provide an invitation that is too desirable and too important for a child to turn down, a loving acceptance that no peer can provide. In holding on to our gift of unconditional love, the child will be holding on to us emotionally, just as the infant held with closed fist the parent&#39;s finger. The child must perceive our offering to be spontaneous for connection to work. It may seem counterintuitive to say this, and I&#39;ll explain my reasons shortly, but we cannot collect a child by giving what is expected, whether it be part of a ritual or as a birth&lt;/li&gt;
&lt;li&gt;(8:20:07) The child will be holding on to us emotionally, just as the infant held with closed fist the parent&#39;s finger. The child must perceive our offering to be spontaneous for connection to work. It may seem counterintuitive to say this, and I&#39;ll explain my reasons shortly, but we cannot collect a child by giving what is expected, whether it be part of a ritual or as a birthday gift or as reward for some accomplishment. No matter how much fuss we may make, what we give under such circumstances will be associated with the situation or event, not with the relationship. Such giving never satisfies.&lt;/li&gt;
&lt;li&gt;(8:20:42) the relationship. Such giving never satisfies. A child may enjoy gifts, whether physical or emotional, that are expected, but her attachment needs cannot be satiated by them. We cannot cultivate connection by indulging a child&#39;s demands, whether for attention, for affection, for recognition, or for significance. Although we can damage the relationship by withholding from a child when he is expressing a genuine need, meeting needs on demand must not be mistaken for enriching the relationship. In collecting a child, the element of initiative and surprise is vital.&lt;/li&gt;
&lt;li&gt;(8:24:06) Responding to the child&#39;s request, the parent can take the initiative, expressing more interest and enthusiasm than the child anticipates. &amp;quot;Oh, that&#39;s a great idea! I was wondering how we could spend some time together. I&#39;m so glad you thought of it.&amp;quot; We take the child by surprise, making him feel that he is the one receiving the invitation. Nor can one collect a child or offer him something to hold on to by showering him with praise. Praise is usually about something the child has done, and as such is neither a gift nor spontaneous. Praise originates not in the adult but in the achievements&lt;/li&gt;
&lt;li&gt;(8:24:16) I was wondering how we could spend some time together, I&#39;m so glad you thought of it. We take the child by surprise, making him feel that he is the one receiving the invitation. Nor can one collect a child or offer him something to hold on to by showering him with praise. Praise is usually about something the child has done, and as such is neither a gift nor spontaneous. Praise originates not in the adult but in the achievements of the child. A child cannot hold on to praise because it is subject to cancellation with every failure. Even if he could hold on to the praise,&lt;/li&gt;
&lt;li&gt;(8:27:11) Proceed without first having gained the child&#39;s trust is asking for trouble. This is true for the parent as well as the daycare worker, the babysitter, the teacher, the foster parent, the step-parent, or the counselor. Here, our new world preoccupation with independence gets in the way. We have no problem inviting the dependents of infants, but past that phase, independence becomes our primary agenda. Whether it is for our children to dress themselves, feed themselves, settle themselves, entertain themselves, think for themselves, solve their own problems, the story is the same.&lt;/li&gt;
&lt;li&gt;(8:28:05) What we are really encouraging with this attitude is not true independence, only independence from us. Dependence is transferred to the peer group. In thousands of little ways, we pull and push our children to grow up, hurrying them along instead of inviting them to rest. We are pushing them away from us rather than bringing them to us. We could never court each other as adults by resisting dependence. Can you imagine the effect on wooing if we conveyed the message, Don&#39;t expect me to help you with anything I think you could or should be able to do yourself.&lt;/li&gt;
&lt;li&gt;(8:29:53) ...are natural processes, we lose perspective. We become afraid our children will get stuck and never grow up. Perhaps we think that if we don&#39;t push a little, they will never leave the nest. Human beings are not like birds in this respect. The more children are pushed, the tighter they cling, or, failing that, they nest with someone else. Life comes in seasons. We cannot get to spring by resisting winter. In winter, plants are dormant. They will burst into bloom when spring comes. We cannot get to independence by resisting dependence. Only when the dependence needs are met&lt;/li&gt;
&lt;li&gt;(8:30:03) They will never leave the nest. Human beings are not like birds in this respect. The more children are pushed, the tighter they cling. Or, failing that, they nest with someone else. Life comes in seasons. We cannot get to spring by resisting winter. In winter, plants are dormant. They will burst into bloom when spring comes. We cannot get to independence by resisting dependence. Only when the dependence needs are met does the quest for true independence begin. By resisting dependence, we thwart the movement to independence and postpone its realization.&lt;/li&gt;
&lt;li&gt;(8:31:47) to depend upon them who are more likely to be effective in fostering independence in the end. A master teacher, rather than pushing pupils toward independence, supplies them instead with generous offerings of assistance. A master teacher wants her students to think for themselves, but knows the students cannot get there if she resists their dependence or chastises them for lacking maturity. Her students are free to lean on her without any sense of shame for their neediness. There is no shortcut to true independence. The only way to become independent is through being dependent.&lt;/li&gt;
&lt;li&gt;(8:34:33) Lost and confused, separated from your belongings, unable to speak or understand the language, and feeling helpless and hopeless about your circumstances. Imagine someone approaching you and offering her assistance in your own language. After she had helped orient you about the persons to contact and places to go, every instinct within you would be primed to maintain closeness with your guide. Once she turned to go, you would undoubtedly seek to prolong the conversation, grasping at straws to keep her close. This being true for adults, how much more so for immature creatures of attachment completely dependent on others to get their bearings.&lt;/li&gt;
&lt;li&gt;(11:41:23) Outings were planned with this in mind. The adults took the lead in collecting the children. This kind of family socializing took us by surprise at first, but it made perfect sense from an attachment perspective. The greater the number of caring adults in a child&#39;s life, the more immune he or she will be to peer orientation. As much as possible, we should be participating with our children in village-like activities that connect children to adults, whether through religious or ethnic centers, sports activities, cultural events, or in the community at large. On a street around the corner from my co-author&#39;s house&lt;/li&gt;
&lt;li&gt;(11:45:19) Any visitor to Africa cannot help but notice the joyful spontaneity, the natural smiles, the freely loose bodily movements of the African child. That comes from close contact with loving adults in the attachment village. Alas, it&#39;s a culture now being devastated by war and famine in many places. I bring up these examples not to blame our own culture, but to show what we have lost by way of instinctive, attachment-based parenting. We may not be able to return to such practices, but we have to compensate for their loss in any way we can. Hence my insistence that we&lt;/li&gt;
&lt;li&gt;(12:11:34) At the core of our being, it is not information about the world that human beings seek, nor even entertainment. When it comes to engaging the attentional mechanisms of our brains, neither information nor entertainment has priority. In fact, in our brain&#39;s hierarchy of importance, information ranks very low. It is more likely to be tuned out than tuned in. The brain filters out most sensory and cognitive data reaching it, lest it lose sight of what is essential at any moment. As we have seen throughout this book, our primary and dominant need is to&lt;/li&gt;
&lt;li&gt;(12:11:34) At the core of our being, it is not information about the world that human beings seek, nor even entertainment. When it comes to engaging the attentional mechanisms of our brains, neither information nor entertainment has priority. In fact, in our brain&#39;s hierarchy of importance, information ranks very low. It is more likely to be tuned out than tuned in. The brain filters out most sensory and cognitive data reaching it, lest it lose sight of what is essential at any moment. As we have seen throughout this book, our primary and dominant need is...&lt;/li&gt;
&lt;li&gt;(12:11:50) In fact, in our brain&#39;s hierarchy of importance, information ranks very low. It is more likely to be tuned out than tuned in. The brain filters out most sensory and cognitive data reaching it, lest it lose sight of what is essential at any moment. As we have seen throughout this book, our primary and dominant need is togetherness. It is connection we seek, not factual information about the world. Human beings, often as adults but especially as immature young creatures, are hungry for information not about the world, but about our attempts&lt;/li&gt;
&lt;li&gt;(12:11:50) as priority. In fact, in our brain&#39;s hierarchy of importance, information ranks very low. It is more likely to be tuned out than tuned in. The brain filters out most sensory and cognitive data reaching it, lest it lose sight of what is essential at any moment. As we have seen throughout this book, our primary and dominant need is togetherness. It is connection we seek, not factual information about the world. Human beings, often as adults but especially as immature young creatures, are hungry for information not about the world, but about our attention.&lt;/li&gt;
&lt;li&gt;(12:12:07) As we have seen throughout this book, our primary and dominant need is togetherness. It is connection we seek, not factual information about the world. Human beings, often as adults but especially as immature young creatures, are hungry for information not about the world but about our attachment status. We want assurance that we belong to those who matter to us. We are concerned that we are seen as similar to those we value, that we are important to them and liked by them, that we are wanted and understood by them, that we matter.&lt;/li&gt;
&lt;li&gt;(12:12:31) We want assurance that we belong to those who matter to us. We are concerned that we are seen as similar to those we value, that we are important to them and liked by them, that we are wanted and understood by them, that we matter. We are driven to know whether or not we are invited into another&#39;s presence, and we present ourselves in the hope that this invitation will be forthcoming. Business is not our highest priority, nor is learning, nor entertainment. What shapes our interaction more than any other factor is attachment.&lt;/li&gt;
&lt;li&gt;(14:07:54) Much of our behavior shapes our social habits and informs our ways of thinking about the world. It can even determine whether or not we are capable of rational thought at all in matters of the greatest importance to our lives. For many of us, it rears its head in our closest partnerships, causing all kinds of relational mischief. It was in 1889 that the pioneering French psychologist Pierre Jeannet first depicted traumatic memory as being held in automatic actions and reactions, sensations and attitudes, replayed and reenacted in viscer...&lt;/li&gt;
&lt;li&gt;(14:07:54) Much of our behavior shapes our social habits and informs our ways of thinking about the world. It can even determine whether or not we are capable of rational thought at all in matters of the greatest importance to our lives. For many of us, it rears its head in our closest partnerships, causing all kinds of relational mischief. It was in 1889 that the pioneering French psychologist Pierre Jeannet first depicted traumatic memory as being held in automatic actions and reactions, sensations and attitudes replayed and reenacted in viss...&lt;/li&gt;
&lt;li&gt;(14:10:21) five or six weeks of my life when I couldn&#39;t see you. I survived thanks to the kindness and courage of the unknown Christian woman to whom my mother entrusted me in the street and who conveyed me to relatives living in hiding under relatively safer circumstances. Reunited with my mother after the Soviet army had put the Germans to flight, I did not so much as look at her for several days. The great twentieth-century British psychiatrist and psychologist John Bowlby was familiar with such behavior. He called it detachment. At his clinic, he observed&lt;/li&gt;
&lt;li&gt;(14:10:21) five or six weeks of my life when I couldn&#39;t see you. I survived thanks to the kindness and courage of the unknown Christian woman to whom my mother entrusted me in the street and who conveyed me to relatives living in hiding under relatively safer circumstances. Reunited with my mother after the Soviet Army had put the Germans to flight, I did not so much as look at her for several days. The great 20th century British psychiatrist and psychologist John Bowlby was familiar with such behavior. He called it detachment. At his clinic, he observed&lt;/li&gt;
&lt;li&gt;(14:10:30) woman to whom my mother entrusted me in the street and who conveyed me to relatives living in hiding under relatively safer circumstances. Reunited with my mother after the Soviet army had put the Germans to flight, I did not so much as look at her for several days. The great 20th century British psychiatrist and psychologist John Bowlby was familiar with such behavior. He called it detachment. At his clinic, he observed ten small children who had to endure prolonged separation from their parents due to uncontrollable circumstances. On meeting mother&lt;/li&gt;
&lt;li&gt;(14:11:04) long separation from their parents due to uncontrollable circumstances. On meeting Mother for the first time after days or weeks away, every one of the children showed some degree of detachment, Bowlby observed. Two seemed not to recognize Mother. The other eight turned away or even walked away from her. Most of them either cried or came close to tears. A number alternated between a tearful and expressionless face. It may seem counterintuitive, but this reflexive rejection of the loving mother is an adaptation. I was so hurt when you abandoned me, says the young child&#39;s mother&lt;/li&gt;
&lt;li&gt;(14:11:04) ...long separation from their parents due to uncontrollable circumstances. On meeting mother for the first time after days or weeks away, every one of the children showed some degree of detachment, Bowlby observed. Two seemed not to recognize mother, the other eight turned away or even walked away from her. Most of them either cried or came close to tears. A number alternated between a tearful and expressionless face. It may seem counterintuitive, but this reflexive rejection of the loving mother is an adaptation. I was so hurt when you abandoned me, says the young child&#39;s mind.&lt;/li&gt;
&lt;li&gt;(14:11:11) Each time after days or weeks away, every one of the children showed some degree of detachment, Bowlby observed. Two seemed not to recognize mother. The other eight turned away or even walked away from her. Most of them either cried or came close to tears. A number alternated between a tearful and expressionless face. It may seem counterintuitive, but this reflexive rejection of the loving mother is an adaptation. I was so hurt when you abandoned me, says the young child&#39;s mind, that I will not reconnect with you. I don&#39;t dare open myself to that pain again.&lt;/li&gt;
&lt;li&gt;(14:11:11) This time, after days or weeks away, every one of the children showed some degree of detachment, Bowlby observed. Two seemed not to recognize mother. The other eight turned away or even walked away from her. Most of them either cried or came close to tears. A number alternated between a tearful and expressionless face. It may seem counterintuitive, but this reflexive rejection of the loving mother is an adaptation. I was so hurt when you abandoned me, says the young child&#39;s mind, that I will not reconnect with you. I don&#39;t dare open myself to that pain again.&lt;/li&gt;
&lt;li&gt;(14:11:31) It may seem counterintuitive, but this reflexive rejection of the loving mother is an adaptation. I was so hurt when you abandoned me, says the young child&#39;s mind, that I will not reconnect with you. I don&#39;t dare open myself to that pain again. In many children, and I was certainly one, early reactions like these become embedded in the nervous system, mind, and body, playing havoc with future relationships. They show up throughout the lifetime in response to any incident even vaguely resembling the original imprint.&lt;/li&gt;
&lt;/ul&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/books/hold-on-to-your-kids/"/>
  </entry><entry>
    <title>What N8n Taught Me About Better Script Architecture</title>
    <updated>2026-08-15T15:25:57Z</updated>
    <id>https://kamilrudnicki.com/archive/what-n8n-taught-me-about-better-script-architecture/</id>
    <content type="html">&lt;p&gt;I recently started using N8n, and something clicked.&lt;/p&gt;
&lt;p&gt;What I love about N8n is deceptively simple: I can pause at any step, inspect the output, and rerun it. All previous steps? Already done. I can see the input and output for every single node in the workflow.&lt;/p&gt;
&lt;p&gt;As someone who&#39;s been programming for almost 20 years, this felt good. And it got me thinking:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How can we achieve the same thing in traditional programming?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Because let&#39;s be honest—coding is fast. Especially now with vibe coding and AI assistants, we can ship things faster than ever. But speed often comes at the cost of visibility and control.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A Simple Architecture That Changes Everything&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Here&#39;s what I came up with—it&#39;s almost embarrassingly simple:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Each step (action in n8n terms) is a single Python file. Input is a JSON file. Output is a JSON file.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;That&#39;s it.&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-sh&quot;&gt;python step_01_fetch_data.py --output data/01_raw.json
python step_02_transform.py --input data/01_raw.json --output data/02_transformed.json
python step_03_enrich.py --input data/02_transformed.json --output data/03_enriched.json
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Why This Works&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Full transparency&lt;/strong&gt; — You can inspect any intermediate state at any time&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Easy debugging&lt;/strong&gt; — Something broke at step 3? Just rerun step 3. Steps 1 and 2 are already done.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Version control friendly&lt;/strong&gt; — JSON outputs can be committed for reproducibility&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Perfect for iteration&lt;/strong&gt; — Tweak one step without touching the rest&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;The Scripting Mindset&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This isn&#39;t about building monolithic applications. It&#39;s about embracing a &lt;strong&gt;scripting style&lt;/strong&gt; of development—small, composable units with clear boundaries.&lt;/p&gt;
&lt;p&gt;In an era of complex pipelines and AI workflows, sometimes the best architecture is the one you can actually &lt;em&gt;see&lt;/em&gt;.&lt;/p&gt;
</content>
    <link href="https://kamilrudnicki.com/archive/what-n8n-taught-me-about-better-script-architecture/"/>
  </entry></feed>

