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

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 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 0 vote down

Pretty much anything I do that's repetitive I'll try to write a tool to speed up the process if I have a chance to. We were recently rewriting part of our payroll system. I wrote a calculator that allowed adding and subtracting hours and minutes so I could check the reports it generated. There's also the program for quickly looking up SQL codes. And one for searching PowerBuilder pbls to find which one contains a given object. I wrote one tool that's basically just a textbox with the always on top attribute set to true. And a program to insert comments into a PowerBuilder window formatted according to company standards.

link|flag
vote up 0 vote down

I built a tool that lets me tag important information in method documentations (e.g., don't call this from the UI thread), and then highlights the calls to methods that have those tags so I get some advanced warning that I should probably look at the docs.

I also built a tool that tracks everything I do in Eclipse and lets me quickly record notes to generate and present a journal that I can browse.

link|flag
vote up 0 vote down

I wrote an assembler IDE in C# a couple of weeks ago. I would still use it - but I mucked up the regexes and once you get to abou 2 lines, it takes a minute to do the syntax highlighting!

link|flag
vote up 0 vote down
Sting thisIsIt =  " I've build a \"quotator\" that transforms regular strings into java-code strings       \n"
 + " and the other way around.  Very handy for sql  tests        \n"
 + "         \n"
 + " For instance:        \n"
 + "         \n"
 + "        select * from dual        \n"
 + "        where 1 = 0        \n"
 + "         \n"
 + " is trasformed to:        \n"
 + "  \n"
 + "      "        select * from dual "        \n"
 + "      + "        where 1 = 0 \n"         \n"
 + "  \n"
 + " This is very easy to do in any decent Ide ( and even IntelliJ Idea has it built-in )        \n" 
 + " But the good thing here is that it takes and leaves the data in the clipboard so I just have to:        \n"
 + "         \n"
 + " ctrl-C  double-click-on-my-jar ctrl-v         \n"
 + "  "
 + "         \n"
 + " :)         \n"
link|flag
show 1 more comment
vote up 0 vote down

For Visual Studio, A small c++ class wizard that uses modifiable templates .h/.cpp files . A macro that creates function definitions in the cpp for the highlighted declarations in the corresponding header .

link|flag
vote up 0 vote down
  • Virus removal script (anti Redolf virus)
  • A CD/DVD cataloging program which could index files inside compressed archives
  • A game level editor for a snowboarding game in 320x200 256 color VGA
  • A C++ preprocessor with enhanced support for enums which could be converted to strings and vice-versa
  • A command line program to correct screen brightness through software
  • A power toy calculator like calculator with history and graphing
  • A command line tool to eject removable media (CD/DVD)
  • Tools to convert from hex to dec and vice-versa without clicking any buttons
  • Hex editors
  • a FAT32 hard-disk formatting utility which took a list of bad sectors and skipped them
link|flag
vote up 0 vote down

The most valuable: (circa 1994) a VBA macro that would parse Microsoft Word 2.0 document to extract translation tables for our data warehouse. This gave the business users complete responsibility for maintaining these tables, with commentary, in a form that could be printed and passed around.

The most useful: (circa 1986) a minimal debugger for MS-DOS, that could be linked into a device driver and therefore available as soon as the machine started. Supported breakpoints and arbitrary peek/poke, but not disassembly (hey, if you were good you could do that from a hex dump :-). Allowed me to debug the printing hooks for one of the first PC faxboards.

link|flag
vote up 0 vote down

A Lua implementation of Perl's Data::Dumper. It makes debugging data structures breeze.

link|flag
vote up 0 vote down

I've once written a program to generate about one or two thousand lines of repetitive code. I later realized I could have used the Method class.

link|flag
vote up 0 vote down

A tiny (60-line) MVC engine for PHP:

http://code.google.com/p/barebonesmvc-php/

link|flag
vote up 0 vote down

Not an add in but where I work we have a standardized way of performing database calls with stored procedures. Well ... I got sick of writing basically teh same thing over and over with just different parameters etc. So in my off time I wrote a program that just allows me to choose a stored procedure and click "generate" and it spits out a chunk of code that I can just copy and paste into an application. It has saved me untold hours of rewriting methods with different parameters. Made my life alot easier.

link|flag
vote up 0 vote down

I created an Ant task to compile a Visual Basic 6 project. Some features of the VB6 compiler are not accessible from the command line, so I had to programmatically alter some of the project's properties.

The following properties can be set in the Ant script which are set either through the command line or through temporarily changing the project's source.

  • The executable name
  • Parameters for conditional compilation
  • Replacement of modules

(OK, this sounds pretty useless, but if you have to stick with VB6 you have to think of something to make your coding life easier)

link|flag
vote up 0 vote down

Gobs and gobs. A few notables:

  1. A fairly complete toolchain for managing PEAR packages, including:
    1. Update package.xml changelog from SVN commit messages
    2. Sync on-disk files with what’s in package.xml
    3. Update timestamp
    4. Tag current release in SVN
    5. Python client for unattended package uploads to Chiara PEAR servers
  2. Lots of bits and pieces for Emacs:
    1. An interface to deal with PHPUnit tests. It’ll detect if the source you’re looking at has a corresponding test, allow you to easily (re-)run the test, open the test file, jump to places where errors occurred, etc.
    2. A wrapper around php -l (lint/syntax check)
    3. A wrapper around PHP_CodeSniffer to make sure my code meets CS
    4. A command to open a shell in the same directory as whatever you’re looking at, which reuses an existing shell if it exists. All this stuff works both locally, or with files opened on remote systems.
    5. Persistent, preset SQL server storage/connections
    6. Execution of SQL CLI binaries on remote systems (e.g. where there’s a bastion host in between you and the DB server).
  3. Various web-app tools:
    1. Bootstrap an install to a server from CVS/SVN, generate configuration files, deploy seed databases, configure Apache, etc etc.
    2. Update CVS working copies on remote servers when a commit is checked in.
link|flag
vote up 0 vote down

Because LANSA source (RDML) is stored in a database on the iSeries with one or more records per line of source (1 for every 80 characters), and LANSA has no built-in version control (just a crude check-in, check-out with no diff/merge/roll-back), I built a windows app in .Net that exports source to text files and allows me to launch diffmerge or check-in/refresh from a subversion server.

link|flag
vote up 0 vote down

I wrote

  • Lots of Visual Studio plug-ins (e.g., CodeGenUtils)
  • Some custom tools
  • A few half-finished visual DSL designers
  • Some standalone programs (e.g., typografix)
link|flag
vote up 0 vote down

Various "diff" utilities. They weren't always available.

YAPA (Yet Another Performance Analyzer) that automated call-stack sampling and displayed the results in a butterfly view. Went obsolete with DOS.

Dynamic Dialogs little horn-tooting here, a technique that is so simple and nifty, but also so hard to explain, that I've practically spoiled myself for doing UIs any other way.

Lots of parsers, compilers, code generation hacks of different sorts.

Dumb theorem provers. Used to prove that bubble-sort works. woopee.

Spelling correction algorithm based on trie-search.

FFT algorithm in run-coded images.

link|flag
vote up 0 vote down

I wrote my own code snippet tool, aptly named "Snip-a-Dillie-O". While I enjoyed the Visual Studio snippet manager, I found it a little tedious to get up and running and maintain. I also had a variety of SQL snippets, commenting, and miscellaneous type things that I use frequently and couldn't put in there. I also wanted something to try out C# and SQLite with on the side. I have a "favorites" tab for it, drag and drop capabilities, and the standard copy paste type stuff. I need to retool it so I can minimize to the system try and access the favorites that way.

I have a web based app that will parse Log4Net logs generated in their default XML format called HackSaw (in honor of the original ChainSaw) that I use to parse my log files. Nothing fancy, but it gets the job done.

I also have a "Formatted Text Loader" library that uses an XML "layout file" and will parse a given text file into a strongly typed DataTable. This became invaluable to my at my previous job since there were lots of legacy log/data files there that I need to process. I even set it up so that if you can write a regular expression with groups that captures all your data, you'll get a table out of that.

Oh, and thanks to the SO folks here, I have a small tool that will decode those ASCII Hex Encoded SQL Injection attacks that may be hitting your server thanks to the ASPRox botnet virus that comes and goes. If you're interested in what code they're trying to execute, this'll show ya without having to decode it directly on your SQL Server.

I know I'm pulling out the golden shovel to describe these, but they're nothing to fancy. Hopefully somebody will make them look better unless I get more free time to code 8^D

link|flag
vote up 0 vote down

Awhile ago I developed a GDI/USER resource tracking tool to help with the resource leaks. I figured, the time I spend getting to know any other tool(s) is best spent learning things. The implementation is strictly spartan, but the goal was to reuse as much as possible. It partly relies on code generation to tackle repetitive tasks - something I found to be very helpful.

Hope it'll be useful to someone else.

link|flag
vote up 0 vote down
  • Eclipse plugins that I needed, but didn't exist yet
  • Code generators to create fast Assembler code for sprite graphics, which were specified in a higher level language
  • several editors, like for phpBB MOD files
link|flag
show 1 more comment
vote up 0 vote down

I've written a tiny command line app to write my file header comments for C# and C++ source files, because I needed to write the same comment based on the filename and the date created and of course the author name which the user will specify, so my tool generated that for me because I've had the existing files and I just needed to put that on the top :)

link|flag
vote up 0 vote down

We use ant and gnat for some big projects, and the build tool dumps lots of "building, N% complete" messages.

I wrote an output filter that identifies these lines, jumps the cursor back one line so it is overwritten by the next line (instead of scrolling), and sets my "screen" window title to include the ant task and % complete, so I can see how the build is coming while I'm working on another window.

link|flag
vote up 0 vote down

My pet is the Umbraco Interaction Layer which is a .NET class generator for Umbraco Document Types. It acts as an API replacement when you want to programatically interact with Umbraco

link|flag
vote up 0 vote down

I hated the interface to yacc so much that I built my own parser generator, which generates LL(1) and SLR(1) parsers in three languages. I don't have to declare keywords and I can use EBNF notation.

The project never got to the point where I was willing to let other people use it, and the professionals in Holland make far better parser generators than I can hope to emulate, but I learned an enormous amount by going back to especially the tutorial paper by Aho and Johnson and implementing what I found there.

link|flag
vote up 0 vote down

I wrote a javascript regular expression testing tool. Once done, I found a lot easy to write regex patterns.

link|flag
vote up 0 vote down

Last few months I am building Foglyn, which is an Eclipse plugin which integrates FogBugz into Mylyn. It's helping me to be on top of my cases.

link|flag
vote up 0 vote down

A Validator component for WinForms. It has several builtin rules like check length, if empty or null, if numeric etc..

Also posting here made me realize I wish I've found Mike Hofer's NValidate before starting with mine. Oh well...

link|flag

Your Answer

Get an OpenID
or

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