vote up 28 vote down star
16

One of the things I really love about programming is the tradition of building your own tools. Sometimes it's out of necessity. What you need doesn't exist. And sometimes it's out of ignorance (I hand-wrote many parsers before learning about lex & yacc).

What programming tools have you built for yourself?

flag
show 2 more comments

62 Answers

1 2 3 next
vote up 0 vote down

Waaaay back when I was first starting uni, they were teaching us Java, and I got sick of having to enter in all the commands to compile and run our programs, so I wrote an incredibly simple IDE using (wait for it), QBasic.

link|flag
show 4 more comments
vote up 0 vote down

A small HTML editor that highlight HTML keyword. This is back in the early 2000, now I use for small editor NotePad++

link|flag
vote up 1 vote down

The first tool I wrote of any substance was a 6502 machine code disassembler. Like a lot of on-the-side projects, the tool quickly became the main on-the-side, and whatever prompted me to write it is lost in the attic of my memory.

I was probably 14, on a BBC B, writing the majority of it in BASIC, with some bits in assembler. I could bore you with the extra cool features (e.g. 2 passes for labelled jumps) but that'd get this answer into nostalgia.

link|flag
vote up 0 vote down

I once wrote a javadoc like utility for maintaining documented database schemas with SQL create table statements and specially formatted comments on the table and column definitions. It parsed the SQL file and generated a LaTeX or MIF data dictionary document.

Also, I've done quite a few code generators of one sort or another.

My first ever C program was a hex dump utility.

link|flag
show 2 more comments
vote up 0 vote down

Extended Clipboard handler that worked over the local network. (Both text & files) Was handy back when TS couldnt handle files over clipboard.

link|flag
vote up 3 vote down

Visual Studio Add-in that let me configure some XML files for the "in-house" multi-langage system. So in VS when I select a string and do right click and "Convert to language system" I have a form that popup and let me write the string in multiple language. After, all is saved... when I compile I see the string that was saved in the XML files. This is the tool I use every day.

link|flag
vote up 1 vote down

I once co-wrote an entire visual programming environment and compiler to an embedded visualization system. The first question that I was asked when presenting the final result was "why didn't you use Java?"
The reason for that was cost - there was a very weak processor in the machine, but in hindsight it would have been much better commercially to push for a better processor and use embedded Java.

Still, it was fun - and an unexpected trip back to the theoretical days of University.

More recently I wrote a Visual Studio plug-in that tracks build times, errors and warnings and reports them to a central database for various statistical purposes.

In day-to-day work I often hack together quick Python scripts to automate boring repetitive tasks.

link|flag
vote up 0 vote down

I've written a number of specialized code generators (usually outputting C++). These have tended to be project-specific and have saved me more coding than I can shake a stick at.

link|flag
vote up 0 vote down

The two that I used the most were my .NET Class Generator application which generated information object classes from .xls input, saved a bunch of time in C# before Auto Properties.

Also the most popular of all is one that I made available to the public and that is a Regular Expression Tester that supports groups and other items, it has made my work with RegEx a breeze!

link|flag
vote up 6 vote down

I used to write my own unit testing frameworks back when dinosaurs roamed the Earth. This was, of course, before JUnit and TDD, and even before we called it unit testing. I'd written frameworks for testing functions in C, C++, QBasic, and LabVIEW before going back to school to get my CS degree and seeing all the really cool testing tools that we have now.

link|flag
show 2 more comments
vote up 2 vote down

Without wanting to spam/adervtise, but since you ask: All of the ones listed on my site were initially built for myself.

  • A program to send e-Mail from the command line
  • A simple Hash Generator to hash files and strings (MD5, SHA1, SHA2)
  • A tool that replaces the AssemblyVersion in AssemblyInfo.cs with the SVN Revision

They are used in my buildscripts because I did not investigate on doing "proper" MSBuild tasks yet (did not want to spend time with that just yet).

link|flag
vote up 0 vote down

Since I manage a Source Control Management (ClearCase), and I had to be able to integrate its various commands in a in-house release management tool developed in java.

For that, I developed (back in 2002) an encapsulation of System.Runtime in order to:

  • execute the Clearcase CLI commands
  • follow in real-time the output of those lengthy commands and log those outputs

Example code here (that one does not log anything)

The ability to literally follow what is going on when a java program execute a ClearCase command has been incredibly helpful. Even the more recent Java6 Console does not achieve quite what I do with this 'Shell' class.

link|flag
vote up 0 vote down

For reasons I can't remember anymore, the toolchain I was using to target an embedded system couldn't be scripted using batch (this was on Win95). I needed a build script, so I created my own "script" in C++ that invoked the various tools and then initiated the download to the embedded device.

Also, when I was in highschool, I had permission to use gcc on one of the school computers so that I could work on random projects during my down time, but they had the system locked down so that copying executables to and from floppy disks was impossible using the cp command (perhaps to combat the spread of viruses?). I coded myself a new copy command with the compiler as my first project :)

Neither of those are very exciting, I'm afraid. I try as much as possible to not reinvent the wheel.

link|flag
show 1 more comment
vote up 0 vote down

A jar dependency-hell visualizer, to fix an extremely bloated ant script. Made me use the wonderful ASM library.

link|flag
vote up 0 vote down

I like to write code generators for the mundane parts. For example, if you have to write .NET DependencyProperties, the code is verbose, repetitive, and tedious. A code generator is just the ticket.

I usually use PowerShell for external DSLs.

link|flag
vote up 1 vote down

I know this is a little sad, but I always have an Excel Macro ready to paste bugs from Bugzilla and format them as tightly as possible to get all my bugs on a single double-sided piece of 8.5x11.

Bug tracking software never seems to have a way to compress and list your current tasks on paper.

link|flag
show 1 more comment
vote up 1 vote down

I wrote some code generators to avoid repetiting tasks.

I also wrote a metric and program structure tool. To analyse legacy software.

link|flag
show 1 more comment
vote up 0 vote down

Recently, I have written a registration key system for distribution of commercial applications. Currently am fleshing out how to inject the dynamically generated code to handle the validation into an existing assembly. The primary interface is through a Visual Studio add-in that allows you to select the algorithm, define a custom algorithm, and apply it to a specific assembly.

In the past, I have written more data conversion utilities and scubbers than I care to remember, and countless refactoring macros that have (thankfully) been replaced by ReSharper.

link|flag
vote up 3 vote down

i recently got tired of downloading, processing and presenting statistics from the company websites for the guys in marketing. I wrote this tool which they could install on their laptops. From there they could handle the whole process at the click of only one button. That's all the tool has, one button!!! How user friendly could you get for the guys down at marketing.

link|flag
show 3 more comments
vote up 4 vote down

I wrote a little applet that sits in my system tray to log configuration changes whenever I install, update or uninstall software, change the registry or tweak the system.

link|flag
vote up 0 vote down
  1. Nowtpad. I guess you need to be fairly familiar with Yorkshire dialect to get this, but Nowtpad is a text non-editor. In fact it does nowt but display a windows form.
  2. A database scripting utility that calls sp_help and sp_helptext to generate our internal-format sql build script.
link|flag
vote up 1 vote down

I wrote my own Windows Grep tool, which I have used almost daily for a year or more...it is a very satisfying feeling! For some reason it seems to be much faster than the other tools I have tried, probably through liberal use of memory :)

link|flag
vote up 0 vote down
  • A Perl script that scrubs CVS log, presents check-ins grouped by comment and by bug database entry, and (the most important thing) allows me to generate cvs update -j commands to merge changes on per-bug basis.

  • Various framework for writing system tests, specifically for FIX protocol exchange trading systems and for XWindows GUI. All that in Perl.

link|flag
vote up 0 vote down

Back in the dark days, I wrote a number of addins for the Brief editor using their pseudo-Lisp macro language. Later when I move to PWB (Microsoft's first multi-langauge IDE), I wrote a couple addins for it -- they were in compiled C code, which was kinda impressive, since this was in MSDOS back in the days before we had DLLs.

One, which I'd written for both Brief & PWB, would take a highlighted block of text and sort the lines. I've tried translating that into a VS Addin, but when looking at a selected block now, you lose the line & column coordinates.

link|flag
vote up 0 vote down

LOTS (and thank you for the question ;) )

I guess it all started when I tried to write a LISP interpreter back in the BASIC times, with list cells being stored in DIM'ed arrays. And I always wanted to write a file format analyzer, but never found the time to do it.

From database that one of my projects used I derived a documentation database and a Word macro to create some reference documents, and a couple of ASP pages to display this information. These were mainly project-specific hacks.

Before ASP.Net came along, I developed an XML-based generic list-and-forms framework in ASP. Table information and list and form definitions where stored in XML. The ASP application used XSLT to generate ASP pages containing the data on the fly.

Forms Toolkit was written to search and manipulate Oracle Forms files using the Oracle Forms API.

Recently I try to be less project-specific, and try to share my dev tools: I wrote a utility to check for XHTML compliance, search and extract data from aspx pages (graspx), and a tool to script MSSQL database objects (SMOscript) similar to the sql2000 tool scptxfr.

The latest software I am working on is dbscript, which supports importing and uploading of database scripts, definition of value scripts for TSQL and C#, schema comparison, XML generation. It's sufficient for my needs, but a still work-in-progress for public use.

I describe and document these tools on my blog, downloads are available from my homepage.

link|flag
vote up 1 vote down

ASP.NET ViewState Helper to help me troubleshoot issues with ViewState, and just to see what is being stored in there.

http://www.binaryfortress.com/aspnet-viewstate-helper/

link|flag
show 1 more comment
vote up 0 vote down

I wrote a command line tool to find and clear out subversion conflicts. (With user input)

link|flag
vote up 0 vote down

Way back in the dark ages, I wrote a tool that would generate callee/caller info (e.g. info necessary for a call graph) for VB6.

link|flag
vote up 7 vote down
  1. Regex tool: I found myself writing code which required a lot of regex search and replaces, and I didn't want to learn Vim or pay for RegexBuddy, so I wrote my own tool and use it everyday.

  2. Source code line counter: a little tool which counts the number of lines of code in a folder. Has lots of different rules for excluding arbitrary lines in different languages.

Other projects include:

  1. Stock predicting tool: I was really into tracking the stock market, so I wrote a little program which would download data from the internet and perform a lot of technical analysis on the data and forecast bulls and bears. My program could choose stocks with an impressive 60% accuracy ("accurate" prediction means that, within one month of the prediction, a bull increases in value by 15% and bear loses 10% value).

  2. Redneck speak: I owned a somewhat controversial political website. A rival website used to harass my users, so I wrote a little page that converted the rival website's content into Redneck grammar.

  3. Grocery list: contained a list of foods + prices, contained a list of recipes. Program allowed me to pick from a list of foods or pick a recipe, and it would automatically import all of the foods and proper quantities into a list and estimate the total cost. This program is used everytime I go shopping, and is frequently accurate within a few dollars.

  4. Cat fancier: screensaver I wrote for my cats. Has two modes: 1) Serene, which displays a scene of a window overlooking a street. 2) Insanity, which displays highspeed laser dots and flapping butterflies to drive my cats nuts.

  5. Keylogger: my sister wanted to spy into her husbands email, so I wrote a keylogger for her to capture passwords.

  6. Playing with XNA: I was fascinated with Microsoft XNA, so I bought a few books on the topic. My pride and job was a program that allowed me to plug in an XBox controller, fly a spaceship around in cornflower blue space, and shoot missles. You could dynamically load any model in place of the spaceship, which prompted some funny conversations, my favorite being "why is that frog flying around and shooting missles?"

  7. Message board statistics: I'm a messageboard junkie, so I wrote a program that would go through a database and crunch a bunch of meaningless statistics about users, such as their frequency of posts they write on different days of the week and times of day, average length of sentence, average length of post, etc.

There are lots of other miscellaneous projects I could add to that list, but I think if I say too much some of you will rightfully conclude that I have no life.

link|flag
1  
@Jesper: why on earth would I want to reinvent the wheel? Because programming is fun :) Sometimes you just need to write exploratory code, or spend an afternoon writing an interesting program, or you just want to learn more about how some of your favorite programs are implemented, etc. – Juliet Feb 4 at 17:38
show 4 more comments
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.