HN user

strajk

4 karma
Posts0
Comments6
View on HN
No posts found.

How much is a deposit compared to the full price of a drink?

Here in Czechia it's 3czk deposit for ~20czk full drink price and I've never noticed anybody even asking for the bottles, yet alone "stealing" them.

My favourite rss reader NewsBlur (no affil, just very happy user) allows subscribing to YouTube channels just by entering its URL - no need to digging for RSS feed :)

I prefer importing whole modules too. One of the benefit is much easier code reviews:

Imagine this diff in the middle of a file (in Javascript)

  if (includes(users, userId)) {
    open(load(userId))
  }

vs
  if (_.includes(users, userId)) {
    Modal.open(UserApi.load(userId))
  }