To ORM or not to ORM?
If you’re a developer, there’s a good chance that you’ve met the acronym “ORM.” “ORM” stands for Object Relational Mapping, and it’s software that bridges the object-oriented format of much…
If you’re a developer, there’s a good chance that you’ve met the acronym “ORM.” “ORM” stands for Object Relational Mapping, and it’s software that bridges the object-oriented format of much…
In Python, a virtual environment is like a sandbox where you can install and handle Python packages without affecting other projects or the Python installation on your computer. If you…
From understanding the importance of iteration and planning to embracing opportunities to teach, Kenn's 21 Rules for Software Development offers valuable insight for both tech professionals and life in general.…
Tech tools are just tools; real power lies in the people who use them. Let's never forget why we're here: to make tools that help others do their jobs, and…
Log files are just good practice; not only can they help in development and debugging, but they can act as silent sentinels, watching over your code and helping you find…
Can't get your WordPress plugin code working as expected? Ensure your plugin won't run until it's ready with the plugins_loaded hook & make sure necessary plugins are installed. Problem solved!
Balance is key to creating fast, secure, and usable web applications. Using tools like Angular.js, React.js, and Vue.js, you can harmoniously blend server- and client-side technologies for an elegant and…
"Is PHP dead? Should you use React or Vue? Find out which tech stack is best for your project and discover why depth, popularity and stability matters for coding success."
In a previous post, I introduced Wordpress Plugin Boilerplate (hereafter referred to as WPBB for brevity), an attempt at standardization for the way Wordpress plugins are developed.
WordPress uses wp_posts to store post, page, and Custom Post Type (CPT) data the wp_postmeta table for Custom Metabox data. To retrieve this data you have to read for the…