All programmers know that debugging can be one of the most frustrating parts of any development cycle. Debugging can be extremely easy or extremely difficult – and a lot of that depends on the tools available to help the process […] Read More »
Tag: DobsonDev
CSS Columns (Part II)
In last week’s tutorial on CSS Columns I went over the basic creation of columns using the CSS3 properties column-count and column-width. These can be used individually to create columns just fine, but as was mentioned last week the best […] Read More »
CSS Colums
One of the most highly requested features for modern websites is a column layout. Clients want to be able to display their content in 2, 3, 4, etc… columns. There has been a big resurgence in a “print-style” for websites […] Read More »
Vagrant Development Environment
I have done a previous tutorial on creating a Local Development Setup Using MAMP. Although using MAMP works well, it has been recommended to me to use Vagrant as my local development environment. Much more experienced developers praise Vagrant, so […] Read More »
Creating a WordPress Widget
In last week’s tutorial, we Added a Widget Area to our WordPress site. For this tutorial, we will be looking at creating your own custom widget to put into that area. Creating a widget is similar to creating a plugin, […] Read More »
Adding a Widget Area to WordPress
Adding your own widget area to your WordPress site allows a great level of customization to specialized pages. Say for example you want to include a sidebar for a particular page (say a “Meeting Minutes” page for a business) that […] Read More »
Think More, Code Less
It’s often extremely easy to tell your boss that you wrote thousands of lines of code in a project, and subsequently be praised for your productivity and amazing abilities. However, those lines of code are often full of dependencies, hard […] Read More »
Variable Variables in PHP
Variables are the cornerstone to all programming. Any programmer will tell you that variables are their best friend, their lover, any number of other weird things… When you need something you simply call $something, and there it is! One of […] Read More »
Dynamic Variables in PHP
In PHP, and especially when using Database operations like mysqli functions, you will want to create dynamic variable names. Luckily PHP makes this an extremely mundane task to accomplish. First let’s take a look at a simple example so we […] Read More »
The Elvis Operator
The magic that is the Elvis Operator was only recently introduced to me. The Elvis Operator (which is a modified, shortended version of the ternary operator) allows you to clean up your code vastly by reducing the size of simple […] Read More »