HN user

33degrees

670 karma
Posts7
Comments260
View on HN

Is this a by-product of some compliance or self-regulatory requirement like ESRB?

Yes, Steam addressed this an announcement a few years ago:

Q: Why do you KEEP asking my damn age throughout the store?

A: We're with you on this. Unfortunately, many rating agencies have rules that stipulate that we cannot save your age for longer than a single browsing session. It's frustrating, but know we're filling out those age gates too.

https://steamcommunity.com/games/593110/announcements/detail...

I’m definitely not an expert and I haven’t found running postgres any more difficult than mysql. There are some differences that take a bit of getting used to, though.

The 5-Hour CDN 5 years ago

It's supported, but only for NGINX Plus. You can kind of work around it by using proxy_cache_bypass though

I have first hand experience this ,as I was recently diagnosed with reactive hypoglycaemia[1]. The recommended treatment was eating protein and vegetables before carbohydrates, along with daily 12 hour fasting, and within week my symptoms were gone. It's apparently an intestinal issue, where it over-reacts to the presence of carbs when the stomach is empty, and is fairly common in people who have had bariatric surgery.

[1] https://en.wikipedia.org/wiki/Reactive_hypoglycemia

I’ll add to this and say that people are mostly looking for validation when discussing problems, and that should always be your first response. If you feel you have valuable advice to give, ask them if they want it and make sure they’ll actually be receptive.

Next.js 9.2 7 years ago

Nice that they've added CSS Module support. I've been using them for my react projects and find them a good solution when you don't need lots of dynamic styling.

Null Island 7 years ago

In Ruby, nil is a singleton instance of NilClass, and defines #nil?, as well as methods to cast to different types e.g. nil.to_a == []. Rails goes a bit further and adds #blank?, which is handy for things that might be nil or empty strings.

Idempotent means that a given request always has the same result. This GET request fits that definition, since making the same request several times will always return the same thing. The fact that it modifies data means that it’s not safe, but that is a different concern. Remember that PUT and DELETE are also idempotent