vote up 13 vote down star
3

Which language do you use for "throw away" programs? By "throw away" I don't mean perl one liners, but code that is useful for a current project but may not be added to it.

flag

49 Answers

1 2 next
vote up 9 vote down

Generally any scripting language. Ruby is my personal favorite for desktop scripts and PHP for web scripts, but those are the two I'm most familiar with.

If it might be included, whatever language the project is in. In that case, I treat it like part of the project, and check it in and everything. I just make sure that it's commented clearly that it might not be part of the final release and it's just a development tool.

link|flag
vote up 1 vote down

C++, I know it's not the best language for it. But I've been doing C++ for over 10 years and have a lot of utility stuff already written. So I'm usually much faster than in any other language I know.

That said, my second choice is Python.

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

I think Perl is inherently a throw-away language!

link|flag
vote up 24 vote down

Python

So easy to get quick hitters up and running.

link|flag
vote up 1 vote down

Python is currently my choice du jour.

Unless I need lots of regex, then it's Perl.

link|flag
vote up 1 vote down

It seems I'm against the flow here but I like VB/ASP for ease of use, ease in transferring to VB.NET if it's a keeper, and as a Web based technology it's easy to provide access to others for demonstrations or permanent access.

All that said, I occasionally use new (to me) languages for non-critical applications so my attempts at learning Python mean it's also an option now.

link|flag
vote up 0 vote down

If it needs a GUI, I prefer VB.NET (the express edition of course). It's quick and dirty (just like all my throw away projects)

Other than that, mostly php.

If the project gets bigger, I eventually port it in Java.

link|flag
vote up 1 vote down

Ruby, .NET(C#) in that order

link|flag
vote up 3 vote down

PowerShell or Python. PowerShell being my first choice, since I can call into the .NET framework and use assemblies I've already written (I know IronPython could do that, but PowerShell is more convenient for the moment).

Also, since the PowerShell scripting engine can be embedded in my programs, I can take embed the PS runtime in my app and try various combinations. If things work, I can convert to C# or leave it as PowerShell.

link|flag
vote up 2 vote down

Bash scripting if it's easy enough. Otherwise, generally Ruby.

link|flag
vote up 5 vote down

I used to use Perl, but started forcing myself to use Python - the main reason for that is that I tend to write better code when using Python, simply because there are so many shortcuts available in Perl.

In my experience "throw away" programs can often become more permanent, so I'd think twice before starting to hack away at something that supposedly will be thrown away.

As you write yourself, "may not be added", but it might stick, and if you don't do it properly you might end up with an unmaintainable mess - force yourself to do it right the first time and you'll be happier.

link|flag
vote up 1 vote down

I find Python makes writing throw-away programs that are still readable and maintainable rather easy. Plus, with batteries included, a bit of script can go a long way!

link|flag
vote up 1 vote down

Without a doubt... Boo. Very much like Python but targets .NET. And if you do end up keeping the "throw away" code, then it's really easy to convert to C# or VB.NET if needed (auto in #develop IDE).

Boo Language

link|flag
vote up 5 vote down

It rather depends which language is most suitable for the problem domain.

Even for throwaway programs.

Most recently, sed and xmlstarlet.

link|flag
vote up 1 vote down

Python and C# are favourites for different reasons, and for those reasons I currently am looking at BOO - the best of both worlds!

link|flag
vote up -1 vote down

I'm with izb -- python for most things, but perl if I need regex or more complex string manipulation.

link|flag
vote up 1 vote down

Actually it's still plain old Visual Basic 6.0, because usually my "throw away tools" have to work with strings a lot and I know how to handle these in VB6 ;)

Okay, start to throw rocks... NOW! (JEHOVA, JEHOVA)

link|flag
vote up 0 vote down

I like python for my throwaway type programs and if I'm feeling a little adventurous and need to integrate it with .net IronPython

link|flag
vote up 1 vote down

Matlab, since most of what I do is data-intensive. The built in math functions make testing algorithms easy.

link|flag
vote up 0 vote down

hmm... the same language the project is made in... usually c#

link|flag
vote up 6 vote down

It's kind of funny... but for throwaway apps I immediately turn to VB6.

I'm a fan of VB.NET for more modern development (as I mention in another post... and yes, I am a "real programmer". I choose VB.NET.), but VB.NET did lose some of it's Rapid Application Development gusto when it switched over from VB6. VB6 still lets you push out a quick app in moments.

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

Groovy from the command line, usually. To verify method behavior in Java libraries.

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

The interactive Python shell is vital for occasions like this. No need to bother even creating a text file, just type it and run it! You get the whole the Python standard library to play with, which really helps reduce the amount of code you have to write for almost any task.

link|flag
vote up 0 vote down

C#, or if I'm in Linux land, Perl

link|flag
vote up 2 vote down

If its a web app then Grails allows you to create a functional app that can perform CRUD operations with 5 commands and 1 edit of code:

grails create-app BookStore
cd BookStore
grails create-domain-class Book

Then edit the generated Book.groovy, you could add:

class Book {
    String title
}

and then enter:

grails generate-all Book
grails run-app

and there you go one working web-app.

link|flag
vote up 0 vote down

I willl generally use whatever language / platform the main body of the project is implemented in. There are a couple of reasons for this:

  • It is possible that the throwaway code may be usefull for demonstrating necessities in the final implementation
  • Given that this is the language that I am currently working in it is likely to be my sharpest knife
  • If it is the language of the project then my colleagues are more likely to understand it.
link|flag
vote up 0 vote down

C++.

Usually that code tends to be useful, so it's nice to keep around in a state that it can be used (by my project) in.

MSN

link|flag
vote up 0 vote down

My problem is I have too many that I turn to. It really depends on the specific task that I am doing. I do a lot of this kind of stuff and I really don't throw it away. It may be useful the next time I have to do something quick. For quick useful tasks I try to avoid compilers unless I need the speed.

Here is my current order and why:

  1. Batch file - If it's simple and JPSoft's Take Command can do it I use a Take Command batch file.
  2. PowerShell - Very powerful, but I'm still learning (I hope to make it my solution for most throw aways).
  3. VBScript - Easy, fast, and easy access to a lot of com stuff - also can be used on IIS to create web pages (ie. ASP).
  4. Python - If I'm working on XML this is what I go to.
  5. Perl - Text parsing as long as it's straight forward. I don't like creating write only scripts. If it's complicated I will switch to something like PowerBasic.
  6. PowerBasic - If I need fast small executables with zero runtime.
  7. VB 6 (if I already have code that is close to what I want to do).
  8. C++ (rarely, but again if I already have code that does what I want or I find code online that does what I want).

I have yet to use C# or VB .NET for throw away stuff. In the future that will change as I accumulate more code.

link|flag
vote up 0 vote down

My throw-away are typically to format data or move files around.

For this a good flexable batch file will run on any Win-xxxx based machine.

For a quick reformat GAWK and SSED work great. They can also be zipped with a batch file to pass the quick fix on to others.

I had held off on powershell because it just wasn't on every desktop that I need to touch. And nothing hurts like knowing a solution and not having access to the tools. From all I hear PowerShell has too much .. Power .. to ignore for too long.

  • Josh
link|flag
vote up 0 vote down

bash, perl (under Cygwin if in Winows)

link|flag
1 2 next

Your Answer

Get an OpenID
or

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