This list is incomplete. For example "How We Bootstrapped Our SaaS Startup to Ramen Profitability" has 603 points: <a href="https://news.ycombinator.com/item?id=15544378" rel="nofollow">https://news.ycombinator.com/item?id=15544378</a><p>What is your methodology? Here's a BigQuery to get all relevant posts (although you'll have to filter out Twitter Bootstrap manually):<p><pre><code> #standardSQL
SELECT *
FROM `bigquery-public-data.hacker_news.full`
WHERE REGEXP_CONTAINS(title, '[Bb]ootstrap')
ORDER BY score DESC
LIMIT 100</code></pre>