Main Content

Category: Web Design & Development

Disabling WordPress’ Heartbeat & Cron To Save CPU

Update: It’s not heartbeat and cron, it’s your server. My journey down running my own server has hit a snag. It seems my machine likes to spike to 100% CPU and get stuck there until I force restart it. So I’ve been digging. One of the ideas I came across was disabling WordPress’ heartbeat. It […]

How to add GIT to a project with existing files.

Here is the code I use to add GIT to an existing project. git init git remote add origin GITURL touch .gitignore (optional see below) git add -A git commit -m ‘first commit’ git push If you try to clone a GIT repository to a folder with existing files, GIT will be unhappy as the […]

Nerd Problems: Letting a domain go is difficult.

Ever try to let a domain expire? It’s hard. Every instinct in me says to keep it; well except for the part that has to pay for it. Over the years I’ve created many sites and registered many domains. After a while I stopped updating sites as I had too many, then I combined a […]

Why does web design and development take so long?

As a web developer, I often talk to clients who don’t understand why it takes so long to build out their website. The answer is that you don’t fully understand how much work has to go into building a website and how many steps are actually involved. I’ve been working on a new version of […]

How To Use the Number Pad in Vim on iTerm2

If you use iTerm2, a great alternative to Terminal on Mac, then you’ve probably tried to use the number pad and realized that it doesn’t type numbers. Good news, there is a setting you can change to make the keypad work. In iTerm2 go to preferences -> profiles -> keys -> load preset… and choose […]

Flashback. WordPress Circa 2005.

Remember 2005? Sin City was big at the box office, Hollaback Girl was on the radio, and WordPress was at version 1.5. Lets take a look back and see how amazing WordPress was back then. Keep in mind their site was run off the latest and greatest version of WordPress at that time.

Free Unlimited Private GIT Code Repositories at Bitbucket

As I learn more and more bout Git, I realize that I’d like to use it to manage all my sites. Sounds great, except GitHub wants $7 a month for private repositories. Bitbucket however seems to be exactly what I’m looking for. I can create as many Git repositories as I want and they are […]

WordPress Multisite 101 – WordUp Presentation

Why have one blog when you can have 50!? Here is the presentation I gave at WordUp 2013 about WordPress Multisite. If you were there, it’ll be a good reminder of what we talked about. If you weren’t, it’ll give you some info but it may be out of context as my speaking notes aren’t […]

Am I the only one that doesn’t like auto updates?

Are auto updates really a good thing? More and more software is opting into auto updating so that the user doesn’t have to worry about it. In some cases I think this is good, in others I’m worried about negative side effects. iOS 7 Auto Updates In iOS 7 Apple introduced auto updates for apps. […]