HackerTrans
TopNewTrendsCommentsPastAskShowJobs

kitten_mittens_

no profile record

comments

kitten_mittens_
·4 maanden geleden·discuss
When did upper middle class start meaning upper class? Something like 90% of Americans identify as middle class now.
kitten_mittens_
·4 maanden geleden·discuss
U-3 Unemployment doesn't include people not actively looking for work, people making less than they'd like, or working less than they'd like.

https://www.lisep.org has alternate measures that try accounting for take home wages as well as seasonal variability (construction is noted as being volatile but relatively well paying).
kitten_mittens_
·5 maanden geleden·discuss
Turning transparency off significantly improves the look and responsiveness imo.
kitten_mittens_
·9 maanden geleden·discuss
In the US, at least, there are some utilities that charge based on maximum kW (demand) and total kWh used (energy). ComEd in Chicago is a utility with a demand rate plan option.
kitten_mittens_
·9 maanden geleden·discuss
Idaho Power’s local generation is quite clean. But…during the summer in Idaho, almost a third of energy comes from Wyoming and Utah where coal is still a substantial part of generation.
kitten_mittens_
·3 jaar geleden·discuss
With enough fricatives, some languages still manage. See the Serbian for Serbian, srpska https://en.wikipedia.org/wiki/Republika_Srpska.
kitten_mittens_
·4 jaar geleden·discuss
You might mean with pnp as the node linker? Migrating to yarn 3 from yarn 1 wasn't an issue at all for me with `nodeLinker: node_modules`.

I just wrapped up switching over to pnp though, and that '95% of the way there' line you mentioned rings a bell for me.
kitten_mittens_
·4 jaar geleden·discuss
Sounds like https://yarnpkg.com/features/zero-installs might be something to help out. Especially if those installs are mostly just filling out a giant set of node modules folders.
kitten_mittens_
·4 jaar geleden·discuss
Pretty much. It'd get below freezing some days when it was clear and then snow. But that only happened a handful of times. I think Berlin is probably colder than Hamburg. Most of the Fall/Spring was 8C and raining in Hamburg.
kitten_mittens_
·4 jaar geleden·discuss
Having lived in both Hamburg (55deg lat) and Seattle (46), I can say that northwest Europe daylight hours are _brutal_ in the winter.

The first winter I was in Hamburg, I think we got 10 hours of sun all of December.
kitten_mittens_
·5 jaar geleden·discuss
Might be https://apple.stackexchange.com/questions/407177/windowserve...?
kitten_mittens_
·7 jaar geleden·discuss
> a class in most languages is just a group of related static functions.

In class oriented languages like C# and Java, sure. JS with ES modules has the alternative of using functions exported directly from a module.

The latter approach has the benefit of better tree shaking than the class based equivalent.