
Share
This analysis of 2 million Hacker News comments reveals how discussions around AI mirror those about crypto, offering insights into whether AI is facing its own bubble or sustainable growth.
The recent surge in artificial intelligence (AI) has drawn comparisons to the crypto boom of previous years, with many observers noting the similarities between the two phenomena. While crypto appears to have experienced a significant downturn, the question remains: Is AI headed for a similar fate? To explore this, we analyzed 2 million comments from Hacker News (HN), a platform known for its tech-savvy and influential user base.
To conduct this analysis, I utilized the HN API to extract all 38 million posts and comments in HN history. Using Polars, a data manipulation library, I filtered the dataset to include only front-page stories since 2010 that had at least 30 points and 5 comments:
stories = hn.filter(
(pl.col("type") == "story")
& (pl.col("text").is_null())
& (pl.col("url").is_not_null())
& (pl.col("score") >= 30)
& (pl.col("descendants") >= 5)
& (pl.col("time") >= datetime(2010, 1, 1))
)
# -> 285,603 stories
This narrowed the dataset to 285,603 relevant stories. However, categorizing these posts into AI and crypto discussions using simple keyword searches would have resulted in numerous false negatives. To address this, I employed a more sophisticated approach.
Instead of relying on basic string matching, I used GPT-3.5 to classify the stories. This method allowed for a more nuanced and accurate categorization of content related to AI and crypto. For instance, posts like "Technical Analysis of the Poly Network Hack" and "Kimchi: The latest update to Mina’s proof system," which might not have been captured by simple keyword searches, were correctly identified.
The analysis revealed several key insights:

Sentiment Analysis: The sentiment towards AI is generally more positive compared to the initial hype around crypto. Early crypto discussions were often characterized by optimism but quickly turned to skepticism and caution as the market experienced volatility and regulatory challenges.
Technical Depth: HN users tend to engage in more technically detailed discussions about AI, reflecting a deeper understanding and interest in the underlying technology. Crypto discussions, while also technical, have been more focused on investment opportunities and market dynamics.
The insights from this analysis provide valuable context for investors and tech professionals:
Despite the risks, the growing interest in AI presents several opportunities:
Tags
Original Sources
About the author
Marcus began tracking AI's market implications in 2016, noticing AI-related patent filings accelerating ahead of earnings upgrades before most of the sell-side had caught on. A former fixed-income quantitative analyst, he spent two decades building models that priced risk across emerging markets before pivoting to cover the economic impact of AI full-time. His writing translates opaque technical developments into clear risk/reward terms — and he's rarely diplomatic about the gap between AI valuations and underlying fundamentals. He believes most market participants still underestimate AI's long-run deflationary effect on knowledge work.
More from The Analyst →This Week's Edition
9 November 2023
133 articles
Related Articles
Related Articles
More Stories