Been wishing for something like this for a long time
One day we’ll hopefully have the AI synthesize a précis that takes all its sources into account.
I'd love to use a modern GUI that adopted this aesthetic. Even though the content of documents would be in color, having the UI itself restrained to a simple monochrome palette would be very enjoyable to use.
I second Bruce's comment about cup sizes being regional. So are teaspoons and tablespoons for that matter. The wikipedia pages do reasonable coverage on this.
So good to clearly indicate which region's measurements are being used.
Always been a frustration of mine when reading recipes as having to figure out what country the recipe is published in to figure out what the measurements actually are. (Unless they are in metric, which is unambiguous.)
movq $0x2000004, %rax ; // BSD syscalls are divided into classes.
movq $1, %rdi ; // 64-bit registers use %rdi instead of %ebx
lea message(%rip), %rsi; // Relative Address of message
movq $13, %rdx ; // Same Length
syscall ; // x86-64 ASM syscall
movq $0x2000001, %rax ; // Exit Syscall
movq $0, %rdi;
syscall
message: .ascii "Hello World!\n";