Live data from Hacker News

Poll: Where do you live?

news.ycombinator.com

51–60 of 563 posts

Re: Poll: Where do you live?

#51

Earlier quoted context omitted.

I'll try to whip up an Excel macro over the weekend, but I can't promise anything.

Excel Macro's... What does a virus have to do with visualizations?! /s

It IS only VIRAL if you make it from clicks on the emails!!

ALWAYS make clicks with the RIGHT to be SAFE from VIRALS

Re: Poll: Where do you live?

#52
post #11

The questions now is where are people from that wouldn't answer this? I'm sure the lurker factor is different per location.

There must be another category "voter" in between commenter and lurker.

Content creator > Commenter > Voter > Lurker

I wonder what percentage of users vote frequently but don't comment.

Re: Poll: Where do you live?

#53
post #25

Pasting this in dev console will give you a quick and dirty rundown. It sorts locations by points. [...document.querySelectorAll('.fatitem table .athing')].map(el => [el.textContent.trim(), el.nextSibling.textContent.trim()]).sort(([,a], [,b]) => parseInt(b) - parseInt(a)).map(a => a.join(' - ')) As of this post, California is leading, followed by other places w/ large tech hubs (Germany, UK, Canada, NY, Washington)

Now we need to divide the votes by the population of each place

Re: Poll: Where do you live?

#55
post #11

The questions now is where are people from that wouldn't answer this? I'm sure the lurker factor is different per location.

Indeed, it could be interesting to make a heatmap based on explicit responses, then another based on HN's internal IP logs (w/ the clunky geo IP deductions that can be made from that), to see if there's any areas of large divergence – then hypothesize if those are more due to:

- selective propensity-to-respond-to-poll

- misleading geo IP data

- other software-agents/traffic-drivers/usage-differences (eg: some areas/cultures skim headlines once a day, others get deep in the comments)

Re: Poll: Where do you live?

#56

We could ask dang if he can share some stats if he’s allowed to. It’s an interesting question!

Don't think there is any way of getting the stats on where people live automatically. At most they would probably be able to get most commonly used locations, as a IP belongs to a location, but that doesn't mean that the user lives there (or even that the user is physically around there [VPNs], but probably usually right).

IP data would be close enough to the actual aggregate proportions

Re: Poll: Where do you live?

#57
post #49

There were similar polls in 2013. We could compare against those to measure tech dispersal over the last decade! - "Poll: Where are you currently living?" (Countries, 2013) https://news.ycombinator.com/item?id=6582647 - "Poll: If you're in the US, What State Do You Live In?" (US states, 2013) https://news.ycombinator.com/item?id=5222370

I'd like to see these votes divided by the total population of each place

Re: Poll: Where do you live?

#58
post #5

Earlier quoted context omitted.

California doesn't have to be the center for tech anymore as the world has shifted to a distributed workforce. The US doesn't, for that matter, and you can tell it's happening due to all of the new international investments. Edit with some sources: https://news.crunchbase.com/news/europe-vc-funding-unicorns-... https://asia.nikkei.com/Spotlight/Market-Spotlight/Venture-c... https://www.bloomberg.com/news/articles/202…

I have heard the hypothesis that the main reason Silicon Valley was able to grow is because non compete clauses are invalid in California. So people can start a side business competing with their employer, and only risk being fired (as long as they dont steal IP) They could also freely hop from company to company without waiting in between.

That’s nice in theory and likely a factor over some areas. The primary differentiator is a culture of local access to VC funding. It explains both the timeline and geographic distribution.

Re: Poll: Where do you live?

#59
post #32

Why does America get states and UK doesn't get England, Wales, Scotland and Northern Ireland?

Also - Canada is a monolith, at least break out Quebec!

Seconded! Toronto, Waterloo, Ottawa, Montreal, Calgary, Vancouver are all large and distinct tech hubs.

Re: Poll: Where do you live?

#60
post #36
post #25

Pasting this in dev console will give you a quick and dirty rundown. It sorts locations by points. [...document.querySelectorAll('.fatitem table .athing')].map(el => [el.textContent.trim(), el.nextSibling.textContent.trim()]).sort(([,a], [,b]) => parseInt(b) - parseInt(a)).map(a => a.join(' - ')) As of this post, California is leading, followed by other places w/ large tech hubs (Germany, UK, Canada, NY, Washington)

This is begging for a console.table console.table([...document.querySelectorAll('.fatitem table .athing')].map(el => [el.textContent.trim(), el.nextSibling.textContent.trim()]).sort(([,a], [,b]) => parseInt(b) - parseInt(a)))

Neat!

Noob question: is there a similar way to dump it to JSON, instead of a table?

Post reply on HN