Get them early with Source Control!

This semester I’m an adjunct at Bemidji State University! I’m teaching BUAD 3283 E-Commerce Web Development (3 credits) to a mix of business and computer science majors. We’ve had many interns from BSU in the web development department at PBC, and two things that we emphasize with them is source control management (SCM) and test-driven development (TDD). So for my curriculum,… Continue reading Get them early with Source Control!

Getting back into it.

I am trying to get back into the habit of doing a bit drawing every night. Here’s a few of newer ones. I’d like to get one a day done again, collecting a bunch to make a coloring book like I made a few years ago.

.env environment variables when working with Apache

I’m getting in the habit of using a .env file for loading environment variables. Laravel already uses them for setting up configuration. It’s a nice way to setup variables that can be used in bash or through a php library like vlucas/phpdotenv. For a site I’m working on I wanted the environment variable APP_ENV set to “local” in… Continue reading .env environment variables when working with Apache

Installing WordPress Plugins with Composer

I found out a cool usage for composer that I didn’t know about; use it for installing WordPress plugins. I use Phing to do all my deployments (slowly moving towards continuous integration with Jenkins). I wanted a way to get the plugin files and include them with my deployment automagicly. Composer can download and extracting the plugin archive file rather than using… Continue reading Installing WordPress Plugins with Composer

::before and ::after

This is the first in a series of “today I learned” posts. Today it’s all about the pseudo element ::before and ::after.  This isn’t new news to most I’m sure, but I’ve just recently started using these and think they are pretty cool. Say you are working on a site where you have access to the styles… Continue reading ::before and ::after