What is your methodology? Here's a BigQuery to get all relevant posts (although you'll have to filter out Twitter Bootstrap manually):
#standardSQL SELECT * FROM `bigquery-public-data.hacker_news.full` WHERE REGEXP_CONTAINS(title, '[Bb]ootstrap') ORDER BY score DESC LIMIT 100
What is your methodology? Here's a BigQuery to get all relevant posts (although you'll have to filter out Twitter Bootstrap manually):