Now displaying all site content relating to Development
Dear PHP, I think it’s time we broke up.
Dear PHP, We’ve been together for about five years now. I’ve had a lot of good times and I’ve really enjoyed being with you. However, the more we work together, …
Continue reading “Dear PHP, I think it’s time we broke up.”
Development Random MusingsHow to Develop A Web Portfolio When You’re a Newbie
It’s been some time since I last checked in since I’ve been so busy juggling projects. However, I wanted to make a quick update this weekend. I thought this would …
Continue reading “How to Develop A Web Portfolio When You’re a Newbie”
DevelopmentBleeding Every Last CPU Cycle from PHP
Like most languages, PHP allows developers to accomplish the same tasks using several different methods. I think most of us stick with whatever habits we fall into without really ever …
Continue reading “Bleeding Every Last CPU Cycle from PHP”
DevelopmentThe secret to making a “contact us” form that gets used.
A case study One of the most interesting projects I’ve been involved with was developing and managing a site for an online automotive accessories retailer. At it’s peak, the site …
Continue reading “The secret to making a “contact us” form that gets used.”
DevelopmentPicking the perfect font for writing code.
Programmers use a lot of tools throughout the day. Some of them are pretty obvious: a fast PC, wide monitor (or three), a robust IDE, and good coffee. Other items …
Continue reading “Picking the perfect font for writing code.”
DevelopmentA simple method to toggle a bit column (MySQL, SQL Server, and others)
I’ll occasionally see SQL code that looks something like this: UPDATE products SET in_stock = CASE WHEN in_stock = 1 THEN 0 ELSE 1 END; Or sometimes the developer tries …
Continue reading “A simple method to toggle a bit column (MySQL, SQL Server, and others)”
Development10 things you (probably) didn’t know about PHP.
PHP is simultaneously the most infuriating and joyful languages I’ve ever worked with. I say “infuriating” primarily because the function names are so inconsistant. Despite the fact that I use …
Continue reading “10 things you (probably) didn’t know about PHP.”
Development