Today I stumbled upon: Laws of UX. It has Jakob’s Law.
Daily Archives: 2021-05-27 [Thursday]
Alda for music programming
Alda is a text-based programming language for music composition. Interesting!
Voice/SIP
There’s lots to know about Voice/SIP for VoIP.
Unicode Regular Expressions
Found some good info on Unicode in regular expressions: Unicode Regular Expressions. Particularly some good doco about Unicode Categories and how to indicate them in regular expressions.
No meta characters in regex character classes
Today while reading Writing better Regular Expressions in PHP I learned that meta characters are treated as literals in character classes. So '/^(\d[.]\d)$/'
will match '1.2'
but not '1x2'
. Who knew!?
String validation in PHP
Learn about character type checking and filter_var. I bumped into these while reading Writing better Regular Expressions in PHP.