HN user

balfirevic

2,658 karma
Posts6
Comments1,369
View on HN

even this list kind of leans toward improving other measures as a means of increasing happiness

Since we don't have direct access to happiness dial, every advice for increasing happiness is going to be like that.

But be warned, it takes a long time

What's a "long time"? A month, a year, 10 years?

They're not the cheapest option

Whats "not the cheapest"? 100 EUR, 1000 EUR, 10000 EUR, more?

In Croatia, which is (and has been) seeing a tremendous rise in real estate prices, everyone talks about the high prices, but rarely can you hear about about housing shortage. Indeed, building new housing is sometimes brought up as one of the reasons for rising prices.

The economic illiteracy is just that bad.

The AirPods Effect 1 month ago

In Europe it's strictly forbidden to wear headphones under the helmet.

No it's not.

protective gloves with hardened knuckles is of course mandatory

No it's not.

No one uses their indicators/turn signals as they approach. This is a major issue because it makes the roundabout incredibly ineffective, as every driver needs to treat it effectively like a 4-way stop because you don't know the intentions of the cars around you.

As another commenter mentioned, roundabouts work just fine even if nobody indicates anything (which they usually don't where I live).

People are now ignoring those stop signs (because it’s a roundabout!)

Do you mean they treat it as if they have right-of-way when entering? Because that's also unusual (but not unheard of) in roundabouts.

Some people will sleep through alarms, turning them off without remembering it.

But more importantly, if your sleep schedule is shifted you might not actually be able to fall asleep when you need to, even if you haven't had enough sleep. After a few days you will be exhausted, fall asleep in the afternoon and take a nice 4 hour nap, leaving you unable to fall asleep until very late, after which the cycle continues.

I bet if we all wait a year, the back and forth will die down and we'll be left with a game that gets similar acclaim to Hollow Knight.

Sounds great, because I think it doesn't get much better than that.

My impression was the parent poster was talking about order of operations like projection and selection, where you might more commonly write:

Π(σ(R)) instead of σ(Π(R))

and not about whether relational algebra uses prefix or postfix notation:

Π(σ(R)) vs. R > σ > Π

SQL's WHERE statement (and others) works totally differently from SELECT in that regard, so it doesn't make much sense to say that "SELECT comes first because relational algebra".

It's written that way because it stems from relational algebra, in which the projection is typically (always?) written first.

It's inspired by a mish-mash of both relational algebra and relational calculus, but the reason why SELECT comes first is because authors wanted it to read like English (it was originally called Structured English Query Language).

You can write the relational algebra operators in any order you want to get the result you want.

This was a historical decision because SQL is a declarative language

It would be equally declarative if FROM came first.