Unopened, a jar of pasta sauce is good basically indefinitely, but as soon as you actually open the jar the clock starts ticking. We don't make enough pasta at a time to use a full jar, (and in fact will usually use a small fraction of the jar) so I write the date that I opened the jar on the lid to plan its use a little better. "Hey, better find a use for this sauce, it's going to go bad eventually."
Inversely, I've also seen promotions where the gallon is heavily featured in the ads, and they're selling the half gallon for full price. Neat, you're paying extra to get less milk!
Grade school for me - teachers would say "8.5x11" instead of "letter size" or even just "printer paper." I don't know why they did it, and I assume it's for the same reason that I say it too. It's probably what their teachers said to them!
I don't know about his Spanish Scrabble performance, but when he won the French Scrabble championship, there were players who attempted the French equivalent of "play salirás and see if he notices," and Nigel challenged all of them.
For me, its finest purpose is to be a buffer that I can paste formatted text into so that it can strip the formatting. There are many programs that do this natively, but there are many that don't or are really inconsistent about the hotkeys, and Notepad is always there.
Yep, I grew up in the woodsy part of Framingham up by Route 20. A whole bunch of those roads are outright dangerous. My parents groused about how dangerous it was, but mostly trusted me not to be stupid.
Good on your n=1 data, but pedestrian fatalities have been steadily increasing for the last decades.
Also, nothing to do with "being stupid", if there are cars going 60mph right next to where you're walking, it's the luck of the draw whether you get decapitated by a truck or not.
Note that in OCaml, you can't get too screwy with point-free programming because of the value restriction. It is possible to compose functions in a point-free manner, but those functions themselves have to have points if you want them to be generic. Standard example:
let last xs = List.fold_left (fun x y -> Some y) None xs
This is of type
last : 'a list -> 'a option = <fun>
Neat, `'a` is generic. Let's η-reduce out the `xs` and make the function point-free (ignoring the lambda):
let last = List.fold_left (fun x y -> Some y) None
This doesn't work the way that we want:
last : '_weak1 list -> '_weak1 option = <fun>
The moment that we call this weakly polymorphic function, its type is fixed and is no longer generic. In the toplevel:
# last [1;2;3];;
- : int option = Some 3
# last['x';'y';'z'];;
Error: This expression has type char but an expression was expected of type
int
Haskell, of course, is totally happy to let you do point-free mania with Kleisli arrows and all of the rest of it.