Live data from Hacker News

Show HN: View the Mood of the World

mymood.today

11–18 of 18 posts

Re: Show HN: View the Mood of the World

#11
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);

Post reply on HN