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

Not really a tool per se, but still: As a web developer, I'm using a lot of frameworks (Code Igniter, jQuery, Blueprint...). And in everyone of those frameworks, I have to put in some methods, styling rules, scripts which I'm using all the time.

Those augmented versions of those frameworks are my tools.

link|flag
vote up 0 vote down

I wrote DonsProxy so that I could watch traffic between browsers and the web apps I was building, and between web apps, apps and proxies, etc. I wrote the original at a client site, then did this complete new implementation for the opensource community.

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
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

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

link|flag
vote up 1 vote down

I wrote NValidate (at www.nvalidate.org), so I could replace this:

if(string.IsNullOrEmpty("myParameter"))
   throw new ArgumentException("myParameter);
if(string.Length > 200)
   throw new ArgumentException("myParameter is too long.");

with this:

myParameter.Assert("myParameter").IsNotNullOrEmpty().HasMaxLength(500);

I also wrote a stored procedure wrapper that fairly kicks butt. Still using it.

Ages ago, I accidentally wrote a recursive expression parser that let end users enter VB-like expressions to filter data. (Still scratching my head over that.)

And just two years ago, I stumbled into writing an ORM so I didn't have to write the classes to synch the database and the VB.NET classes. I didn't realize that was what I was doing at the time. Silly me.

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

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

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

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
  • 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 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

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

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

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

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

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

Most recently, Halp makes writing small programs noticeably faster and more fun for me. It's a little like having a spreadsheet for code embedded in my Emacs source-code buffer. I've noticed that I write programs now that I wouldn't have bothered to before, from trying things out and assembling them into a program with less friction from switching between coding and testing, etc.

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

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

I've written a few code generators. If I do something more than twice, I look to automate it.

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 Lua implementation of Perl's Data::Dumper. It makes debugging data structures breeze.

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
  • 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

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
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

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

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
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.