Live data from Hacker News

Poll: Where do you live?

news.ycombinator.com

271–280 of 563 posts

Re: Poll: Where do you live?

#271
post #221

Earlier quoted context omitted.

> By land area Canada is about 20 times as large as California Cornfields and tundra don't post on HN much.

Now now, we also have forests and lakes.

And so many mosquitos - we've got an entire province solely inhabited by mosquitos (within a margin of error) that we call Manitoba!

Re: Poll: Where do you live?

#272
post #103

Earlier quoted context omitted.

Texas is without power at the moment.

Actually our grid has held up pretty well this time around.

It also didn't get nearly as cold as last year, and not for as long. Plus, the providers ramped up production the first evening to the point where wholesale rates were negative to incentivize more usage.

Another week+ of 0 degrees would likely have not been as smooth...

Re: Poll: Where do you live?

#274

Earlier quoted context omitted.

Current top 10: 'US: California' '79 points' 'Canada' '48 points' 'US: Washington' '39 points' 'US: New York' '36 points' 'Germany' '35 points' 'United Kingdom' '34 points' 'US: Massachusetts' '19 points' 'Netherlands' '18 points' 'US: Colorado' '17 points' 'Sweden' '16 points' Colorado #9? Really?

As percent of total responses, as of right now: 'US: California', '10.87%' 'Canada', '5.79%' 'United Kingdom', '4.51%' 'US: Washington', '4.45%' 'Germany', '4.45%' 'US: New York', '4.32%' 'US: Colorado', '2.10%' 'US: Texas', '1.97%' 'US: Massachusetts', '1.84%' 'France', '1.78%' The US in total makes up 49% of responses so far (even though it is nearly 10pm in most of Europe) Edit: quick and dirty one-liner to get th…

It would be cool to see it relative to the population of the country.

Re: Poll: Where do you live?

#275

France 28 vs Germany 68 vs Italy 11 I guess that says a lot about the tech scene in Italy

Does it? May it be that HN is more or less known among tech workers in country “X” (eg: due to language, etc…)?

Sure, you can even say that both France and Germany just have larger populations than Italy. But still I would argue that being open to the international tech scene is pretty important to have a local tech scene. It's also crucial to keep up with innovation.

Re: Poll: Where do you live?

#276
post #260

Earlier quoted context omitted.

> so made an assumption You shared lies and slandered a state suggesting its a third world country based on false data.

To be fair, our power grid does have a tendency to fail regularly across the US. Texas last year, California's rolling blackouts, NY blackouts, etc. There's a reason that upper-middle-class homeowners have been buying Generac generators en masse.

Power grids tend to fail just about everywhere that experiences extreme weather. Its not necessarily a US-only thing. Its just that the US experiences a pretty large share of extreme weather compared to most of the developed world. Far more tornadoes, hurricanes, wildfires, etc. affect the US than say, Europe.

Re: Poll: Where do you live?

#279
post #30

Earlier quoted context omitted.

Ask codegolf.stackexchange.com, there's probably a Mathematica one-liner to display a globe with colour-coded areas.

I never understood the purpose of languages with unicode operators that can supposedly express a 30 line script in like 2 symbols. Are they purpose built on the spot for CodeGolf?

Not on the spot, a condition for the answer to be accepted is that the language must exist before the challenge, but yes, many languages exist only just for the purpose of golfing. Mathematica is a legitimate language though, it just is the case that some operations are surprisingly compact.

Re: Poll: Where do you live?

#280
post #36

Earlier quoted context omitted.

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)))

I wanted a total for the US: console.table([...document.querySelectorAll('.fatitem table .athing')].map(el => [el.textContent.replace(/:.*/,'').trim(), parseInt(el.nextSibling.textContent.trim())]).reduce((d, [k,v]) => {d[k]=v + (d[k] || 0); return d}, {})) I can't figure out how to sort that, though...

  Object.entries
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...
Post reply on HN