Hacker News new | ask | show | jobs
by sometimeshuman 1234 days ago
In case you want to filter by country, run this admittedly ugly code, in the console. Change 'US' to your country of interest.

var jq = document.createElement('script');

jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.mi...";

document.getElementsByTagName('head')[0].appendChild(jq);

setTimeout(function() {

$('table').find('tr').each(function() { if ($(this).find('td').first().text() != 'US') {$(this).hide()}});

}, 1000);