What's In Your Toolbox?

Published: 08/05/2009

Programming, Servers

One thing almost all computer users have in common, regardless of vocation, is that we use the computer to achieve some goal. The actual goal doesn’t matter so much as the fact that we’re using the computer to do something that, otherwise, we wouldn’t be able to do. To do so though we use various tools that are, usually, purpose built for the task.

Let’s be honest; without the tools we would be useless.

What's in your Toolbox?

Personally I love my tools; specifically, I find developer tools to be some of the most interesting and fun toys available. I don’t want this to turn into a fanboy post but, in the interest of honesty, it just might. You have been warned…

What’s in my Web Developer Toolbox?

My toolbox is full of programs that are purpose built to help every step along the way for building Internet applications. Over the years, like pretty much all developers I’d guess,  I’ve come to rely on the below tools to ease the pain of development as much as possible. I totally vouch for these tools.

Version Control

This one’s crucial. If I had to rank these (and I really don’t plan to) version control would be at the top of the list. There’s a whole slew of options available but, for me, version control starts and ends with Subversion.

Yes, there are all sorts of hype surrounding GIT and Mercurial but, because right now, I work alone my needs are way too simple for anything like distributed version control. Nope; just give me Tortoise and an SVN URL, with credentials, and I’m a happy camper.

Local Development Web Server

Once upon a time the thought of using a local development web server was heresy to my style and philosophy. Now that I’ve been using one for the last year I have to admit I was dead wrong. Dumb even.

Previously, I would always use an external Linux server for all my development. The idea was that since the finished site would be hosted on a Linux server it was important to develop the site in the same environment. There are 2 big problems with this approach though; one is that the project is more likely to be dependent on the environment which can make relocation a problem, and two, is that continued progress on the project requires a connection to the Internet.

On the other hand, developing your projects on a local machine requires finesse and forethought to ensure porting the site from one environment to another doesn’t lead to anarchy. There’s also the knowledge and insight gained from setting up an environment by hand; there’s so much to gain from doing this it’s just silly not to without some edge condition.

Text Editor

Only masochists use Notepad for text editing. In today’s world of fast CPUs and large amounts of RAM it’s really hard to believe anyone would use Notepad for anything other than the most basic of basic editing tasks. If you plan on having a file open, for editing, for any extended period of time it’s just stupid (yes; STUPID) to use it.

Instead, I prefer EditPlus for all my text editing needs. Why? For one killer feature; a right click context menu item. Right click over any file and choose EditPlus to open the file for editing; it makes working very fluid and continuous.  It even handles files in the hundreds of MBs with ease.

There are other options for a text editor (Notepad2 comes to mind) but EditPlus is tough to beat.

Database Tools

Sure, a command line tool is perfectly adequate for administering a database server. The problem though is that I develop on a Windows machine and not using a GUI tool for database administration is kind of silly. It’s like the people who only use VIM for text editing; it’s like trying to prove a point against all logic.

Using MySQL, the easiest, and most familiar tool, is phpMyAdmin; but for remote administration phpMyAdmin starts to break down. Instead, you can’t beat the MySQL Administrator. It offers all the functionality as phpMyAdmin as well as a slew of advanced functionality like the ability to create stored procedures (which you should never, ever, do) and functions.

Remote Connectivity

Since pretty much everything I work on has to go somewhere and I usually need to connect directly to a server for administration I need tools that’ll allow me access. These tools really come down to 3; FTP, SSH and RDP.

For simply moving files between servers FTP or SFTP is obviously the choice. There’s bunches and bunches of options when it comes to FTP clients but I’ve been using CuteFTP for years and, pretty much, I swear by it. Yes, it’s a paid product but CuteFTP is also low impact, easy to use and, more important, doesn’t get in the way of my productivity.

And then there’s system administration which requires full control and access to a server or computer.

Linux has SSH which requires a small client utility. There’s a shitload of options available here but they’re all pretty similar so there’s not much difference between using, say, PuTTy or SSH Secure Shell Client (or any of the myriad other SSH clients out there). You just need to have one.

For Windows as far as I’m concerned there’s really only 2 options; Remote Desktop Connection (RDP) and VNC. For ease of use and quality of experience RDP is the way to go. HINT: There’s a setting to allow mapping of HDDs on the client machine to the server for easier file transfers.

Virtual Machines

In my opinion there’s been no bigger advance in quality assurance (QA) then the advent of the virtual machine (VM). QA probably wasn’t even a goal when VMs were first conceived but, boy, have they filled the gap well.

I’ve already gone into detail about my choice of VM tool as being Virtual Box:

VirtualBox handles the resource detail pretty elegantly; in that it doesn’t use the resource until it needs it. This means that instead of instantly having 10GB of your hard drive used up VirtualBox will only use the amount already taken. You can tweak the settings for a VM whenever you want so you can get just the right mix.

Web Browsers

You need pretty much every modern browser under the sun here. Um… duh?

So, there you go; those are the primary tools I use for web development. There are definitely some other tools I use that didn’t make the list (RegexBuddy, Photoshop and diff tools come to mind) but I didn’t feel they deserved mention because of how rare they’re used.

Did I miss anything else?