Yes, he actually wrote this one.
"This is why people hate C++"

Satoshi explaining what is a Blockchain

Bitcoin use the bas58 format for addresses(non-segwit)
Satoshi explains why he removed look-alike characters.
Satoshi makes a point that script does NOT have loops
Simpler = better security!
This decision is what sets Bitcoin apart today from other blockchains.
Satoshi copied the implementation of SHA256 from the Crypto++ Library maintained by Wei Dai.
This makes a lot of sense, since it's always good to NOT implement your own cryptography.
Seems Satoshi considered using other Eliptic Curves for Bitcoin.
One strange thing here is the 279 value for secp265k1 in this comment. Typo?
Bitcoin uses secp256k1 with the standard 256 bits length.
Satoshi showing a bit of humours.
Since this is the last process that will run, it will close the app, hence closing the lights :)
Links:
- https://github.com/trottier/original-bitcoin/blob/master/src/script.h#L475
- https://github.com/trottier/original-bitcoin/blob/master/src/main.h#L1002
- https://github.com/trottier/original-bitcoin/blob/master/src/base58.h#L7
- https://github.com/trottier/original-bitcoin/blob/master/src/script.cpp#L38
- https://github.com/trottier/original-bitcoin/blob/master/src/sha.cpp
- https://github.com/trottier/original-bitcoin/blob/master/src/key.h
- https://github.com/trottier/original-bitcoin/blob/master/src/ui.cpp#L1444