Hacker Newsnew | past | comments | ask | show | jobs | submit | kitten_mittens_'s commentslogin

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


The graph ("vs. Headline Rate")[0] follows the same trend lines as the BLS numbers just with a higher percentage. I don't see how the "poverty wage" methodology (which is arbitrary) is helpful here, it doesn't take into account caregivers or disabled people who may be keeping their wage low on purpose due to benefits cliffs.

Effectively they just take the official numbers and add a constant.

0: https://www.lisep.org/tru


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

That seems fine? It's the unemployment rate, after all, not "likes how much money they're making" rate.

Moreover if you compare these alternate measures, they more or less match the same trend as U-3. For instance:

https://www.bls.gov/charts/employment-situation/alternative-...

So if the alternate measures mostly follow the same trend as U-3, and the numbers are only higher because they use a looser criteria, what's the point of bringing them up, other than as a cheap rhetorical device?

Suppose we had some way of objectively determining happiness on a 1-10 scale. The government puts out a metric called the "sad rate", which is people who are 2 or less on the scale. What's the point in coming along and declaring "the real sad rate is not actually 5%. If we change the cutoff to 3, it's actually 10%!"? Heck, why stop at 3? Why not declare everyone under 5 sad? Then the sad rate would be even bigger, great for doomposting!


Turning transparency off significantly improves the look and responsiveness imo.


That's what I did on my phone, yeah. Desktop version still feels all sorts of bad despite that.


Sounds like an improvement. Maybe in the next version, they can make this improvement the default.


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.


That tends to be commercial rates since businesses can have larger spikes in consumption, so the "pipe" needs to be larger. Industrial rates are similar.

There are some like ComEd that you call out that can apply the model to residential rates, though my (now dated) experience is that they are rarer.


Knowing the average of 108 W wouldn't help with knowing your peak demand, as fridges vary significantly from off to startup to running, so knowing the average isn't useful in that situation either.


It would be completely wrong for peak demand. I had to learn this the hard way. While the small fridge I bought only uses 80 W while running the compressor uses 800W+ for a second on startup which was too much for my off the grid inverter.


Sweden just mandated kW prices along with the kWh. I think because we are starting to see the extra strain on the grid with EVs.


That strain does not seem to be reflected in the usage, which has been in a shallow decline since the 90s. Maybe they could consider using smart demand management, which is becoming popular with a lot of utilities to move usage away from peaks and into the quieter times.


I think these tariffs are meant to encourage exactly that. Note also that there are many levels of bottlenecks. One could be in your neighborhood, if all your neighbours have EVs.


Perhaps it will work. I'm just a bit skeptical because it seems unlikely to be a widespread problem. The average driver in Sweden will only need perhaps 6 kWh per day, which at L2 means charging for 35-40 minutes. A bit of demand management from the utility and everyone in the neighborhood can get what they need without stressing the local grid. Or just knock down the rate to something inconsequential and let it trickle all night.


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.


Idaho power has been working at installing batteries across the state I believe for this very reason.

They have a plan to be 100% renewable by 2030 and I believe they'll actually hit that target given how close they already are.


If you look at the all years view on electricity maps (https://app.electricitymaps.com/zone/US-MIDW-MISO/all/yearly), 25% is share of generation from coal in MISO.

I'd be curious to test the GP's point. Since electricity maps doesn't have cost data for most US balancing authorities, you maybe could try figuring out power costs per balancing authority to end customers by using something like the https://www.eia.gov/electricity/data/eia861/ "Sales to Customers Customer Sited" data. Revenue over Megawatthours for Industrial service.


I agree vision zero hasn’t been particularly effective in the US. In Boston, we have roads like Jamaicaway where the speed limit was lowered to 25mph and people regularly drive 50. Speed limits are functionally unenforced.

Human behavior as a focal point of blame is skewered in a book that just came out.

https://a.co/d/21guqjp argues that traffic engineering and design is what has resulted in the much higher death rate in the US than its peer countries. If lanes are wide (3.5m or larger), people will drive as fast as is enforced.


[flagged]


Block the residential streets to through car traffic. Simple.


And degrade the quality of life of every resident who regularly has a car trip living in one of those neighborhoods by making them circle 1-3 blocks of 1-ways and right only intersections (or whatever other solution you implement for making it worse to drive through).

You're basically saying that thousands of people ought to have their lives made marginally worse so you can claim success because the city loses 1.24 lives per year to cars instead of the 1.39 before the change or something like that. This entire attitude is predicated on the idea that experts working at the statistical level know better than the people who have to live it. That's preposterous. Get bent.


Wasn't the point to improve quality of life by making streets children can play on?


There seem to be two competing nomenclatures around strong/weak typing where people mean static/dynamic instead.


Some people mistakenly call dynamic typing "weak typing" because they don't know what those words mean. PSA:

Static typing / dynamic typing refers to whether types are checked at compile time or runtime. "Static" = compile time (eg C, C++, Rust). "Dynamic" = runtime (eg Javascript, Ruby, Excel)

Strong / weak typing refers to how "wibbly wobbly" the type system is. x86 assembly language is "weakly typed" because registers don't have types. You can do (more or less) any operation with the value in any register. Like, you can treat a register value as a float in one instruction and then as a pointer during the next instruction.

Ruby is strongly typed because all values in the system have types. Types affects what you can do. If you treat a number like its an array in ruby, you get an error. (But the error happens at runtime because ruby is dynamically typed - thus typechecking only happens at runtime!).


It's strongly typed, but it's also duck typed. Also, in ruby everything is an object, even the class itself, so type checking there is weird.

Sure it stops you from running into "'1' + 2" issues, but won't stop you from yeeting VeryRawUnvalidatedResponseThatMightNotBeAuthorized to a function that takes TotalValidatedRequestCanUseDownstream. You won't even notice an issue until:

- you manually validate

- you call a method that is unavailable on the wrong object.


You just described why I fell out of love with Ruby.


Because you wanted to do 1 + '1'?


I recall a type theorist once defined the terms as follows (can't find the source): "A strongly typed language is one whose type system the speaker likes. A weakly typed language is one whose type system the speaker dislikes."

Related Stack Overflow post: https://stackoverflow.com/questions/2690544/what-is-the-diff...

So yeah I think we should just give up these terms as a bad job. If people mean "static" or "dynamic" then they can say that, those terms have basically agreed-upon meanings, and if they mean things like "the type system prohibits [specific runtime behavior]" or "the type system allows [specific kind of coercion]" then it's best to say those things explicitly with the details filled in.


I think you might be thinking of https://cdsmith.wordpress.com/2011/01/09/an-old-article-i-wr...

It says:

> I give the following general definitions for strong and weak typing, at least when used as absolutes:

> Strong typing: A type system that I like and feel comfortable with

> Weak typing: A type system that worries me, or makes me feel uncomfortable


yes, untyped names != untyped objects


Doesn’t BYD have a bus factory in LA already?


Why are em dashes a giveaway? They’re auto inserted on Windows for two hyphens still, aren’t they?


LLMs seem to use them at a rate far higher than the average person, same with the words “delve” and “robust” (and many others)


Not in every application -- these are two hyphens, Windows didn't touch them.


I updated to avoid paying the new American tariffs. The advertised AI features were decidedly underwhelming.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: