Peter Naur's classic 1985 essay "Programming as Theory Building" argues that a program is not its source code. A program is a shared mental construct (he uses the word theory) that lives in the minds of the people who work on it. If you lose the people, you lose the program. The code is merely a written representation of the program, and it's lossy, so you can't reconstruct
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Bill Ticehurst, 2020 | |
Emits a minimal 16 x 16 gif suitable for use as an inline favicon | |
GIF spec at https://www.w3.org/Graphics/GIF/spec-gif89a.txt for the structure | |
Favicon formats supported at https://en.wikipedia.org/wiki/Favicon | |
For a transparent GIF (color_table = false, depend_on_background = true) this emits: | |
<link rel="icon" href="data:image/gif;base64,R0lGODlhEAAQAAAAACwAAAAAAQABAAACASgAOw=="> |