Category
Programming
Practical notes on programming, web engineering, and clearer code.
-

Programming
Improve your code with Early Return
Early Return (or guard clauses) is a simple way to improve your code readability. Instead of using nested ifs, simply return if a condition is not met.
-
How I learned about fetchpriority and decoding contributing to WordPress
Read article: How I learned about fetchpriority and decoding contributing to WordPressI did some research and it looks like my first contribution to WordPress core was in version 4.9,…
-
There is no “WordPress Dev”
Read article: There is no “WordPress Dev”The block editor in WordPress has created a divide between those who copy and paste code and those…
-

WordPress Health Status and the new Report Parser Tool
Read article: WordPress Health Status and the new Report Parser ToolAlways asking the same questions? Status reports gather all information in a single place. But what do we…
-

Deprecated code in Open Source (with WordPress functions)
Read article: Deprecated code in Open Source (with WordPress functions)Improving your code requires changes: functions, files, structures, everything someday needs a new name or place. How do…
-

What is an API?
Read article: What is an API?What is an API and why is it important to use your favorite framework’s APIs? That and some…