Been a while since I’ve covered setting up a brand new LAMP server. This time, I’m going to be using Ubuntu 13.10 and once you are logged into your server you will want to update and upgrade it to the…
And even then, everything has to be so fucking abysmal that there’s no way to avoid it. The only time I’d ever condone a full rewrite is when you are completely abandoning an existing user base else you’re probably going…
Last week’s post on calculating what date Thanksgiving will fall on got me thinking, wouldn’t it be cool is there was an API that you can call to return holidays for a specific date, month or even the entire year?…
tl;dr – I like the Wii U but do have some pain points. Also affiliate links, so many affiliate links. I grew up in the 1980s. I got to experience the 8-bit console wars first hand. The Wizard taught me…
The topic of this post ended up turning into quite the programming exercise for me. In true PHP fashion, I was able to come up with 3 distinct methods to determine what date Thanksgiving falls on (and have another in…
Surrounded by Facebook statuses about how miserable and broke everyone seems to be and with it being the week of Thanksgiving it felt appropriate to drop a quick list of things I’m thankful for: My wife who has the tolerance…
Converting a number from negative to positive is a pretty simple process using the absolute function abs(): $positive = abs(-123); // = 123 $positive = abs(123); // also = 123 Absolute returns a positive integer or float based on what…
For those that aren’t familiar, Wizpert is a platform for chatting with people (Skype, Gtalk and their site) that are experts (referred to as “wizperts”) of specific topics. Earlier in the year I was sent a beta invite to become…
Didn’t see any news about it this AM but it seems that DirectNIC may have been compromised. My wife just spoke with Bank of America regarding fraudulent activity on her credit card. According to the person she spoke with, DirectNIC…
We’ve previously discussed how to assign variables and add in variables and all of that good stuff, but what about if you are dealing with a large block of text? There’s many approaches, most that require you to be mindful…