New plugin: Seeder

It’s nice to pre-populate terms, content or have the ability to only OCCASIONALLY run actions.

~1 min read

Fail Early, Fail Often

Make your code simpler to read and simpler to debug by breaking apart your conditional statements and exiting the function whenever possible.

~1 min read

Developing With Composer

Did you know you can not only use Composer to manage dependencies, but actually develop a package alongside your dependencies?

~1 min read

Testing a Transient Locking Mechanism with Siege

When working with caching strategies, it’s important to step through your invalidation strategies. Namely, thinking through at what point does the data that you’re caching get regenerated, how does it get regenerated and who is regenerating it. It could be regenerated any time a new post is published, on a save_post hook by an author or admin OR it might need to be regenerated every 15 minutes by anyone hitting the front page.

1 min read

Git Bisect

One of the lowest hanging fruits to learn is how to fix code regressions quickly and easily with git bisect.

1 min read

HTTP Error on Image Upload [RESOLVED]

This was a fun little issue to come across - I’ve been using Nginx as my local development server and so far have had few complications, however anytime I went to upload an image I would get a very vague HTTP Error from WordPress.

~1 min read